ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/cfperl.xs
(Generate patch)

Comparing deliantra/server/server/cfperl.xs (file contents):
Revision 1.52 by root, Mon Sep 11 20:26:41 2006 UTC vs.
Revision 1.70 by elmex, Mon Dec 4 15:15:34 2006 UTC

40 40
41#include "perlxsi.c" 41#include "perlxsi.c"
42 42
43extern sint64 *levels; // the experience table 43extern sint64 *levels; // the experience table
44 44
45typedef object object_ornull; 45typedef object object_ornull;
46typedef mapstruct mapstruct_ornull; 46typedef maptile maptile_ornull;
47 47
48typedef double val64; 48typedef double val64;
49#define newSVval64 newSVnv 49#define newSVval64 newSVnv
50#define SvVAL64 SvNV 50#define SvVAL64 SvNV
51 51
52static f_plug_api gethook = cfapi_get_hooks; 52static f_plug_api gethook = cfapi_get_hooks;
53static f_plug_api object_set_property = cfapi_object_set_property; 53static f_plug_api object_set_property = cfapi_object_set_property;
54static f_plug_api object_insert = cfapi_object_insert; 54static f_plug_api object_insert = cfapi_object_insert;
55 55
56static HV *obj_cache;
57static PerlInterpreter *perl; 56static PerlInterpreter *perl;
58 57
59static AV *cb_global, *cb_object, *cb_player, *cb_type, *cb_map; 58static AV *cb_global, *cb_object, *cb_player, *cb_type, *cb_map;
60
61#define PUSHcfapi(type,value) PUSHs (sv_2mortal (newSVcfapi (CFAPI_ ## type, (value))))
62#define PUSHcfapi_va(type,ctype) PUSHcfapi (type, va_arg (args, ctype))
63#define PUSH_OB PUSHcfapi_va(POBJECT, object *)
64#define PUSH_PL PUSHcfapi_va(PPLAYER, player *)
65#define PUSH_MAP PUSHcfapi_va(PMAP, mapstruct *)
66#define PUSH_PV PUSHcfapi_va(STRING, const char *)
67#define PUSH_IV PUSHs (sv_2mortal (newSViv (va_arg (args, int))))
68 59
69////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 60//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
70 61
71static SV * 62static SV *
72newSVptr (void *ptr, const char *klass, HV *hv = newHV ()) 63newSVptr (void *ptr, const char *klass, HV *hv = newHV ())
89 80
90 if (!obj->self) 81 if (!obj->self)
91 obj->self = newSVptr (obj, klass); 82 obj->self = newSVptr (obj, klass);
92 83
93 return newSVsv (obj->self); 84 return newSVsv (obj->self);
94}
95
96static void
97SVptr_cache_set (void *ptr, SV *sv)
98{
99 hv_store (obj_cache, (char *)&ptr, sizeof (ptr), sv, 0);
100}
101
102static SV *
103SVptr_cache_get (void *ptr)
104{
105 SV **he = hv_fetch (obj_cache, (char *)&ptr, sizeof (ptr), 0);
106
107 return he ? *he : 0;
108}
109
110static SV *
111newSVptr_cached (void *ptr, const char *klass)
112{
113 SV *sv;
114
115 if (!ptr)
116 return &PL_sv_undef;
117
118 sv = SVptr_cache_get (ptr);
119
120 if (!sv)
121 {
122 HV *hv = newHV ();
123 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
124 sv = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
125
126 SVptr_cache_set (ptr, sv);
127 }
128
129 return newSVsv (sv);
130} 85}
131 86
132static void 87static void
133clearSVptr (SV *sv) 88clearSVptr (SV *sv)
134{ 89{
177inline SV *to_sv (unsigned long long v) { return newSVval64 (v); } 132inline SV *to_sv (unsigned long long v) { return newSVval64 (v); }
178inline SV *to_sv (float v) { return newSVnv (v); } 133inline SV *to_sv (float v) { return newSVnv (v); }
179inline SV *to_sv (double v) { return newSVnv (v); } 134inline SV *to_sv (double v) { return newSVnv (v); }
180inline SV *to_sv (player * v) { return newSVattachable (v, "cf::player::wrap"); } 135inline SV *to_sv (player * v) { return newSVattachable (v, "cf::player::wrap"); }
181inline SV *to_sv (object * v) { return newSVattachable (v, v && v->type == PLAYER ? "cf::object::player::wrap" : "cf::object::wrap"); } 136inline SV *to_sv (object * v) { return newSVattachable (v, v && v->type == PLAYER ? "cf::object::player::wrap" : "cf::object::wrap"); }
182inline SV *to_sv (mapstruct * v) { return newSVattachable (v, "cf::map::wrap"); } 137inline SV *to_sv (maptile * v) { return newSVattachable (v, "cf::map::wrap"); }
183inline SV *to_sv (archetype * v) { return newSVptr (v, "cf::arch::wrap"); } 138inline SV *to_sv (archetype * v) { return newSVptr (v, "cf::arch::wrap"); }
184inline SV *to_sv (partylist * v) { return newSVptr (v, "cf::party::wrap"); } 139inline SV *to_sv (partylist * v) { return newSVptr (v, "cf::party::wrap"); }
185inline SV *to_sv (region * v) { return newSVptr (v, "cf::region::wrap"); } 140inline SV *to_sv (region * v) { return newSVptr (v, "cf::region::wrap"); }
186inline SV *to_sv (living * v) { return newSVptr (v, "cf::living::wrap"); } 141inline SV *to_sv (living * v) { return newSVptr (v, "cf::living::wrap"); }
187 142
190 145
191//TODO: 146//TODO:
192inline SV *to_sv (New_Face * v) { return to_sv (v->name); } 147inline SV *to_sv (New_Face * v) { return to_sv (v->name); }
193inline SV *to_sv (treasurelist * v) { return to_sv (v->name); } 148inline SV *to_sv (treasurelist * v) { return to_sv (v->name); }
194 149
150inline SV *to_sv (UUID v)
151{
152 char buf[128];
153 snprintf (buf, 128, "<1,%llx>", (unsigned long long)v.seq);
154 return newSVpv (buf, 0);
155}
156
195inline void sv_to (SV *sv, shstr &v) { v = SvPV_nolen (sv); } 157inline void sv_to (SV *sv, shstr &v) { v = SvOK (sv) ? SvPV_nolen (sv) : 0; }
196inline void sv_to (SV *sv, char * &v) { free (v); v = strdup (SvPV_nolen (sv)); } //TODO: verify that all simple pointers are strdup-managed 158inline void sv_to (SV *sv, char * &v) { free (v); v = SvOK (sv) ? strdup (SvPV_nolen (sv)) : 0; } //TODO: verify that all simple pointers are strdup-managed
197inline void sv_to (SV *sv, bool &v) { v = SvIV (sv); } 159inline void sv_to (SV *sv, bool &v) { v = SvIV (sv); }
198inline void sv_to (SV *sv, signed char &v) { v = SvIV (sv); } 160inline void sv_to (SV *sv, signed char &v) { v = SvIV (sv); }
199inline void sv_to (SV *sv, unsigned char &v) { v = SvIV (sv); } 161inline void sv_to (SV *sv, unsigned char &v) { v = SvIV (sv); }
200inline void sv_to (SV *sv, signed short &v) { v = SvIV (sv); } 162inline void sv_to (SV *sv, signed short &v) { v = SvIV (sv); }
201inline void sv_to (SV *sv, unsigned short &v) { v = SvIV (sv); } 163inline void sv_to (SV *sv, unsigned short &v) { v = SvIV (sv); }
202inline void sv_to (SV *sv, signed int &v) { v = SvIV (sv); } 164inline void sv_to (SV *sv, signed int &v) { v = SvIV (sv); }
203inline void sv_to (SV *sv, unsigned int &v) { v = SvUV (sv); } 165inline void sv_to (SV *sv, unsigned int &v) { v = SvUV (sv); }
204inline void sv_to (SV *sv, signed long &v) { v = SvIV (sv); } 166inline void sv_to (SV *sv, signed long &v) { v = SvIV (sv); }
205inline void sv_to (SV *sv, unsigned long &v) { v = SvUV (sv); } 167inline void sv_to (SV *sv, unsigned long &v) { v = SvUV (sv); }
206inline void sv_to (SV *sv, signed long long &v) { v = SvVAL64 (sv); } 168inline void sv_to (SV *sv, signed long long &v) { v = ( signed long long)SvVAL64 (sv); }
207inline void sv_to (SV *sv, unsigned long long &v) { v = SvVAL64 (sv); } 169inline void sv_to (SV *sv, unsigned long long &v) { v = (unsigned long long)SvVAL64 (sv); }
208inline void sv_to (SV *sv, float &v) { v = SvNV (sv); } 170inline void sv_to (SV *sv, float &v) { v = SvNV (sv); }
209inline void sv_to (SV *sv, double &v) { v = SvNV (sv); } 171inline void sv_to (SV *sv, double &v) { v = SvNV (sv); }
210inline void sv_to (SV *sv, player * &v) { v = (player *)SvPTR_ornull (sv, "cf::player"); } 172inline void sv_to (SV *sv, player * &v) { v = (player *)SvPTR_ornull (sv, "cf::player"); }
211inline void sv_to (SV *sv, object * &v) { v = (object *)SvPTR_ornull (sv, "cf::object"); } 173inline void sv_to (SV *sv, object * &v) { v = (object *)SvPTR_ornull (sv, "cf::object"); }
212inline void sv_to (SV *sv, archetype * &v) { v = (archetype *)SvPTR_ornull (sv, "cf::arch"); } 174inline void sv_to (SV *sv, archetype * &v) { v = (archetype *)SvPTR_ornull (sv, "cf::arch"); }
213inline void sv_to (SV *sv, mapstruct * &v) { v = (mapstruct *)SvPTR_ornull (sv, "cf::map"); } 175inline void sv_to (SV *sv, maptile * &v) { v = (maptile *)SvPTR_ornull (sv, "cf::map"); }
214inline void sv_to (SV *sv, partylist * &v) { v = (partylist *)SvPTR_ornull (sv, "cf::party"); } 176inline void sv_to (SV *sv, partylist * &v) { v = (partylist *)SvPTR_ornull (sv, "cf::party"); }
215inline void sv_to (SV *sv, region * &v) { v = (region *)SvPTR_ornull (sv, "cf::region"); } 177inline void sv_to (SV *sv, region * &v) { v = (region *)SvPTR_ornull (sv, "cf::region"); }
216inline void sv_to (SV *sv, living * &v) { v = (living *)SvPTR_ornull (sv, "cf::living"); } 178inline void sv_to (SV *sv, living * &v) { v = (living *)SvPTR_ornull (sv, "cf::living"); }
217 179
218inline void sv_to (SV *sv, New_Face * &v) { v = &new_faces[FindFace (SvPV_nolen (sv), 0)]; } //TODO 180inline void sv_to (SV *sv, New_Face * &v) { v = &new_faces[FindFace (SvPV_nolen (sv), 0)]; } //TODO
220 182
221template<class T> 183template<class T>
222inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; } 184inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; }
223 185
224template<int N> 186template<int N>
225inline void sv_to (SV *sv, char (&v)[N]) { snprintf (v, N, "%s", SvPV_nolen (sv)); } 187inline void sv_to (SV *sv, char (&v)[N]) { assign (v, SvPV_nolen (sv)); }
188
189inline void sv_to (SV *sv, UUID &v)
190{
191 unsigned int version;
192 unsigned long long seq;
193
194 if (2 != sscanf (SvPV_nolen (sv), "<%d.%llx>", &version, &seq) || 1 != version)
195 croak ("unparsable uuid: %s", SvPV_nolen (sv));
196
197 v.seq = seq;
198}
226 199
227static SV * 200static SV *
228newSVdt_va (va_list &ap, data_type type) 201newSVdt_va (va_list &ap, data_type type)
229{ 202{
230 SV *sv; 203 SV *sv;
262 sv = to_sv (va_arg (ap, object *)); 235 sv = to_sv (va_arg (ap, object *));
263 break; 236 break;
264 237
265 case DT_MAP: 238 case DT_MAP:
266 // va_arg (object *) when void * is passed is an XSI extension 239 // va_arg (object *) when void * is passed is an XSI extension
267 sv = to_sv (va_arg (ap, mapstruct *)); 240 sv = to_sv (va_arg (ap, maptile *));
268 break; 241 break;
269 242
270 case DT_PLAYER: 243 case DT_PLAYER:
271 sv = to_sv (va_arg (ap, player *)); 244 sv = to_sv (va_arg (ap, player *));
272 break; 245 break;
349 { 322 {
350 if (cb) 323 if (cb)
351 if (SvROK (*av_fetch (cb, EVENT_OBJECT_DESTROY, 1))) 324 if (SvROK (*av_fetch (cb, EVENT_OBJECT_DESTROY, 1)))
352 INVOKE_OBJECT (DESTROY, static_cast<object *>(this)); 325 INVOKE_OBJECT (DESTROY, static_cast<object *>(this));
353 else if (SvROK (*av_fetch (cb, EVENT_MAP_DESTROY, 1))) 326 else if (SvROK (*av_fetch (cb, EVENT_MAP_DESTROY, 1)))
354 INVOKE_MAP (DESTROY, static_cast<mapstruct *>(this)); 327 INVOKE_MAP (DESTROY, static_cast<maptile *>(this));
355 328
356 // disconnect Perl from C, to avoid crashes 329 // disconnect Perl from C, to avoid crashes
357 sv_unmagic (SvRV ((SV *)self), PERL_MAGIC_ext); 330 sv_unmagic (SvRV ((SV *)self), PERL_MAGIC_ext);
358 331
359 // clear the perl hash, might or might not be a good idea 332 // clear the perl hash, might or might not be a good idea
487 call_pv ("cf::object_freezer_save", G_VOID | G_DISCARD | G_EVAL); 460 call_pv ("cf::object_freezer_save", G_VOID | G_DISCARD | G_EVAL);
488 FREETMPS; 461 FREETMPS;
489 LEAVE; 462 LEAVE;
490} 463}
491 464
465char *object_freezer::as_string ()
466{
467 dSP;
468 ENTER;
469 SAVETMPS;
470 PUSHMARK (SP);
471 EXTEND (SP, 3);
472 PUSHs (sv_2mortal (newRV_noinc (newSVpvn ((char *)linearise (), size ()))));
473 PUSHs (sv_2mortal (newRV_inc ((SV *)av)));
474 PUTBACK;
475
476 char *res = call_pv ("cf::object_freezer_as_string", G_SCALAR | G_EVAL) > 0
477 ? strdup (SvPVbyte_nolen (POPs))
478 : strdup ("[fatal error]");
479
480 FREETMPS;
481 LEAVE;
482
483 return res;
484}
485
492int fprintf (object_freezer &freezer, const char *format, ...) 486int fprintf (object_freezer &freezer, const char *format, ...)
493{ 487{
494 va_list ap; 488 va_list ap;
495 489
496 va_start (ap, format); 490 va_start (ap, format);
505 499
506int fputs (const char *s, object_freezer &freezer) 500int fputs (const char *s, object_freezer &freezer)
507{ 501{
508 freezer.add (s); 502 freezer.add (s);
509} 503}
504
505static const char thawer_eof[] = "\n\n\n\0\0\0";
510 506
511object_thawer::object_thawer (const char *filename) 507object_thawer::object_thawer (const char *filename)
512{ 508{
513 static const char eof[] = "\n\n\n\0\0\0"; 509 static const char eof[] = "\n\n\n\0\0\0";
514 510
552 548
553 PUTBACK; 549 PUTBACK;
554 FREETMPS; 550 FREETMPS;
555 LEAVE; 551 LEAVE;
556 } 552 }
553}
554
555object_thawer::object_thawer (const char *data, AV *perlav)
556{
557 av = perlav;
558 text = newSVpv (data, 0);
559 sv_catpv (text, thawer_eof);
560 line = SvPVbyte_nolen (text);
557} 561}
558 562
559void object_thawer::get (data_type type, void *obj, attachable_base *ext, int oid) 563void object_thawer::get (data_type type, void *obj, attachable_base *ext, int oid)
560{ 564{
561 if (!av || oid < 0) // this is actually an error of sorts 565 if (!av || oid < 0) // this is actually an error of sorts
877 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) || perl_run (perl)) 881 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) || perl_run (perl))
878 { 882 {
879 printf ("unable to initialize perl-interpreter, aborting.\n"); 883 printf ("unable to initialize perl-interpreter, aborting.\n");
880 exit (EXIT_FAILURE); 884 exit (EXIT_FAILURE);
881 } 885 }
882
883 obj_cache = newHV ();
884} 886}
885 887
886void cfperl_main () 888void cfperl_main ()
887{ 889{
888 dSP; 890 dSP;
939 941
940 AV *callbacks = 0; 942 AV *callbacks = 0;
941 943
942 object *op; 944 object *op;
943 player *pl; 945 player *pl;
944 mapstruct *map; 946 maptile *map;
945 947
946 // callback call ordering is: 948 // callback call ordering is:
947 // 1. per-object callback (NYI) 949 // 1. per-object callback (NYI)
948 // 2. per-class object 950 // 2. per-class object
949 // 2a. per-type callback 951 // 2a. per-type callback
999 break; 1001 break;
1000 1002
1001 case KLASS_MAP: 1003 case KLASS_MAP:
1002 dt = (data_type) va_arg (ap, int); 1004 dt = (data_type) va_arg (ap, int);
1003 assert (("first argument must be of type object", dt == DT_MAP)); 1005 assert (("first argument must be of type object", dt == DT_MAP));
1004 map = va_arg (ap, mapstruct *); 1006 map = va_arg (ap, maptile *);
1005 1007
1006 if (map->cb) 1008 if (map->cb)
1007 gather_callbacks (callbacks, map->cb, event); 1009 gather_callbacks (callbacks, map->cb, event);
1008 1010
1009 gather_callbacks (callbacks, cb_map, event); 1011 gather_callbacks (callbacks, cb_map, event);
1089MODULE = cf PACKAGE = cf PREFIX = cf_ 1091MODULE = cf PACKAGE = cf PREFIX = cf_
1090 1092
1091BOOT: 1093BOOT:
1092{ 1094{
1093 HV *stash = gv_stashpv ("cf", 1); 1095 HV *stash = gv_stashpv ("cf", 1);
1096
1097 newCONSTSUB (stash, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1));
1094 1098
1095 static const struct { 1099 static const struct {
1096 const char *name; 1100 const char *name;
1097 IV iv; 1101 IV iv;
1098 } *civ, const_iv[] = { 1102 } *civ, const_iv[] = {
1391 const_iv (NDI_MAX_COLOR) 1395 const_iv (NDI_MAX_COLOR)
1392 const_iv (NDI_COLOR_MASK) 1396 const_iv (NDI_COLOR_MASK)
1393 const_iv (NDI_UNIQUE) 1397 const_iv (NDI_UNIQUE)
1394 const_iv (NDI_ALL) 1398 const_iv (NDI_ALL)
1395 1399
1400 const_iv (UPD_LOCATION)
1401 const_iv (UPD_FLAGS)
1402 const_iv (UPD_WEIGHT)
1403 const_iv (UPD_FACE)
1404 const_iv (UPD_NAME)
1405 const_iv (UPD_ANIM)
1406 const_iv (UPD_ANIMSPEED)
1407 const_iv (UPD_NROF)
1408
1409 const_iv (UPD_SP_MANA)
1410 const_iv (UPD_SP_GRACE)
1411 const_iv (UPD_SP_DAMAGE)
1412
1396 const_iv (F_APPLIED) 1413 const_iv (F_APPLIED)
1397 const_iv (F_LOCATION) 1414 const_iv (F_LOCATION)
1398 const_iv (F_UNPAID) 1415 const_iv (F_UNPAID)
1399 const_iv (F_MAGIC) 1416 const_iv (F_MAGIC)
1400 const_iv (F_CURSED) 1417 const_iv (F_CURSED)
1613{ 1630{
1614 // reattach to all attachable objects in the game. 1631 // reattach to all attachable objects in the game.
1615 for (player *pl = first_player; pl; pl = pl->next) 1632 for (player *pl = first_player; pl; pl = pl->next)
1616 reattach (pl); 1633 reattach (pl);
1617 1634
1618 for (mapstruct *map = first_map; map; map = map->next) 1635 for (maptile *map = first_map; map; map = map->next)
1619 reattach (map); 1636 reattach (map);
1620 1637
1621 for (object *op = objects; op; op = op->next) 1638 for (object *op = object::first; op; op = op->next)
1622 reattach (op); 1639 reattach (op);
1623} 1640}
1624 1641
1625NV floor (NV x) 1642NV floor (NV x)
1626 1643
1674 case 5: RETVAL = settings.playerdir; break; 1691 case 5: RETVAL = settings.playerdir; break;
1675 case 6: RETVAL = settings.datadir ; break; 1692 case 6: RETVAL = settings.datadir ; break;
1676 } 1693 }
1677 OUTPUT: RETVAL 1694 OUTPUT: RETVAL
1678 1695
1679int 1696void _exit (int status = 0)
1697
1680cf_find_animation (char *text) 1698int cf_find_animation (char *text)
1681 PROTOTYPE: $ 1699 PROTOTYPE: $
1682 1700
1683int random_roll(int min, int max, object *op, int goodbad); 1701int random_roll(int min, int max, object *op, int goodbad);
1684 1702
1685const char *cost_string_from_value(uint64 cost, int approx = 0) 1703const char *cost_string_from_value(uint64 cost, int approx = 0)
1738 OUTPUT: 1756 OUTPUT:
1739 RETVAL 1757 RETVAL
1740 1758
1741MODULE = cf PACKAGE = cf::object PREFIX = cf_object_ 1759MODULE = cf PACKAGE = cf::object PREFIX = cf_object_
1742 1760
1761INCLUDE: $PERL genacc object ../include/object.h |
1762
1743int invoke (object *op, int event, ...) 1763int invoke (object *op, int event, ...)
1744 CODE: 1764 CODE:
1745 if (KLASS_OF (event) != KLASS_OBJECT) croak ("event class must be OBJECT"); 1765 if (KLASS_OF (event) != KLASS_OBJECT) croak ("event class must be OBJECT");
1746 AV *av = (AV *)sv_2mortal ((SV *)newAV ()); 1766 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
1747 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i))); 1767 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
1752 CODE: 1772 CODE:
1753 RETVAL = registry_of (op); 1773 RETVAL = registry_of (op);
1754 OUTPUT: 1774 OUTPUT:
1755 RETVAL 1775 RETVAL
1756 1776
1757INCLUDE: $PERL genacc object ../include/object.h | 1777void mortals ()
1778 PPCODE:
1779 EXTEND (SP, object::mortals.size ());
1780 for (AUTODECL (i, object::mortals.begin ()); i != object::mortals.end (); ++i)
1781 PUSHs (to_sv (*i));
1782
1783object *first ()
1784 CODE:
1785 RETVAL = object::first;
1786 OUTPUT: RETVAL
1758 1787
1759# missing properties 1788# missing properties
1760 1789
1761int flag (object *op, int flag, int value = 1) 1790int flag (object *op, int flag, int value = 1)
1762 PROTOTYPE: $$;$ 1791 PROTOTYPE: $$;$
1767 SET_FLAG (op, flag); 1796 SET_FLAG (op, flag);
1768 else 1797 else
1769 CLEAR_FLAG (op, flag); 1798 CLEAR_FLAG (op, flag);
1770 OUTPUT: RETVAL 1799 OUTPUT: RETVAL
1771 1800
1801object *head (object *op)
1802 PROTOTYPE: $
1803 CODE:
1804 RETVAL = op->head ? op->head : op;
1805 OUTPUT: RETVAL
1806
1807int is_head (object *op)
1808 PROTOTYPE: $
1809 CODE:
1810 RETVAL = !op->head;
1811 OUTPUT: RETVAL
1812
1772void 1813void
1773inv (object *obj) 1814inv (object *obj)
1774 PROTOTYPE: $ 1815 PROTOTYPE: $
1775 PPCODE: 1816 PPCODE:
1776{ 1817{
1777 object *o; 1818 object *o;
1778 for (o = obj->inv; o; o = o->below) 1819 for (o = obj->inv; o; o = o->below)
1779 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 1820 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
1780} 1821}
1781 1822
1823object *find_best_object_match (object *op, const char *match)
1824
1825object *find_marked_object (object *op)
1826
1782int cf_object_get_resistance (object *op, int rtype) 1827int cf_object_get_resistance (object *op, int rtype)
1783 ALIAS: resistance = 0 1828 ALIAS: resistance = 0
1784 1829
1785int need_identify (const object *obj); 1830int need_identify (const object *obj);
1786 1831
1802 1847
1803object *cf_object_present_archname_inside (object *op, char *whatstr) 1848object *cf_object_present_archname_inside (object *op, char *whatstr)
1804 1849
1805int cf_object_transfer (object *op, int x, int y, int r = 0, object_ornull *orig = 0) 1850int cf_object_transfer (object *op, int x, int y, int r = 0, object_ornull *orig = 0)
1806 1851
1807int cf_object_change_map (object *op, int x, int y, mapstruct *map) 1852int cf_object_change_map (object *op, int x, int y, maptile *map)
1808 1853
1809object *cf_object_clone (object *op, int clonetype = 0) 1854object *cf_object_clone (object *op, int clonetype = 0)
1810 1855
1811int cf_object_pay_item (object *op, object *buyer) 1856int cf_object_pay_item (object *op, object *buyer)
1812 1857
1844 1889
1845object *cf_object_insert_object (object *op, object *container) 1890object *cf_object_insert_object (object *op, object *container)
1846 1891
1847object *cf_object_insert_in_ob (object *ob, object *where) 1892object *cf_object_insert_in_ob (object *ob, object *where)
1848 1893
1849int cf_object_teleport (object *op, mapstruct *map, int x, int y) 1894int cf_object_teleport (object *op, maptile *map, int x, int y)
1850 1895
1851void cf_object_update (object *op, int flags) 1896void cf_object_update (object *op, int flags)
1852 1897
1853void cf_object_pickup (object *op, object *what) 1898void cf_object_pickup (object *op, object *what)
1854 1899
1864 1909
1865void push_button (object *op); 1910void push_button (object *op);
1866 1911
1867void use_trigger (object *op); 1912void use_trigger (object *op);
1868 1913
1869void add_button_link (object *button, mapstruct *map, int connected); 1914void add_button_link (object *button, maptile *map, int connected);
1870 1915
1871void remove_button_link (object *op); 1916void remove_button_link (object *op);
1872 1917
1873void 1918void
1874cf_object_set_resistance (object *op, int rtype, int val) 1919cf_object_set_resistance (object *op, int rtype, int val)
1892 CODE: 1937 CODE:
1893 RETVAL = archetype ? get_archetype (archetype) : cf_create_object (); 1938 RETVAL = archetype ? get_archetype (archetype) : cf_create_object ();
1894 OUTPUT: 1939 OUTPUT:
1895 RETVAL 1940 RETVAL
1896 1941
1897object *insert_ob_in_map_at (object *ob, mapstruct *where, object_ornull *orig, int flag, int x, int y) 1942object *insert_ob_in_map_at (object *ob, maptile *where, object_ornull *orig, int flag, int x, int y)
1898 PROTOTYPE: $$$$$$ 1943 PROTOTYPE: $$$$$$
1899 CODE: 1944 CODE:
1900{ 1945{
1901 int unused_type; 1946 int unused_type;
1902 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y); 1947 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y);
1940bool on_same_map_as (object *ob, object *other) 1985bool on_same_map_as (object *ob, object *other)
1941 CODE: 1986 CODE:
1942 RETVAL = on_same_map (ob, other); 1987 RETVAL = on_same_map (ob, other);
1943 OUTPUT: RETVAL 1988 OUTPUT: RETVAL
1944 1989
1945char * 1990const char *
1946base_name (object *ob, int plural) 1991base_name (object *op, int plural = op->nrof > 1)
1947 CODE: 1992 CODE:
1948 RETVAL = cf_query_base_name (ob, plural); 1993 RETVAL = query_base_name (op, plural);
1949 OUTPUT: RETVAL 1994 OUTPUT: RETVAL
1950 1995
1951MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_ 1996MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_
1952 1997
1953player *player (object *op) 1998player *player (object *op)
1972 2017
1973void cf_player_set_party (object *op, partylist *party) 2018void cf_player_set_party (object *op, partylist *party)
1974 2019
1975void kill_player (object *op) 2020void kill_player (object *op)
1976 2021
2022void esrv_update_item (object *op, int what, object *item)
2023 C_ARGS: what, op, item
2024
2025void clear_los (object *op)
2026
2027int command_reset (object *op, char *params)
2028
2029int command_teleport (object *op, char *params)
2030
2031int command_summon (object *op, char *params)
2032
2033int command_arrest (object *op, char *params)
2034
2035int command_kick (object *op, char *params)
2036
2037int command_banish (object *op, char *params)
2038
2039
1977MODULE = cf PACKAGE = cf::player PREFIX = cf_player_ 2040MODULE = cf PACKAGE = cf::player PREFIX = cf_player_
2041
2042INCLUDE: $PERL genacc player ../include/newserver.h ../include/player.h |
2043
2044char *
2045client (player *pl)
2046 CODE:
2047 RETVAL = pl->socket.client;
2048 OUTPUT:
2049 RETVAL
2050
2051char *
2052host (player *pl)
2053 CODE:
2054 RETVAL = pl->socket.host;
2055 OUTPUT:
2056 RETVAL
1978 2057
1979int invoke (player *pl, int event, ...) 2058int invoke (player *pl, int event, ...)
1980 CODE: 2059 CODE:
1981 if (KLASS_OF (event) != KLASS_PLAYER) croak ("event class must be PLAYER"); 2060 if (KLASS_OF (event) != KLASS_PLAYER) croak ("event class must be PLAYER");
1982 AV *av = (AV *)sv_2mortal ((SV *)newAV ()); 2061 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
1995 2074
1996void cf_player_move (player *pl, int dir) 2075void cf_player_move (player *pl, int dir)
1997 2076
1998void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0); 2077void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0);
1999 2078
2000# nonstandard
2001object *ob (player *pl)
2002 CODE:
2003 RETVAL = pl->ob;
2004 OUTPUT: RETVAL
2005
2006player *first () 2079player *first ()
2007 CODE: 2080 CODE:
2008 RETVAL = first_player; 2081 RETVAL = first_player;
2009 OUTPUT: RETVAL 2082 OUTPUT: RETVAL
2010 2083
2016bool 2089bool
2017cell_visible (player *pl, int dx, int dy) 2090cell_visible (player *pl, int dx, int dy)
2018 CODE: 2091 CODE:
2019 RETVAL = FABS (dx) <= pl->socket.mapx / 2 && FABS (dy) <= pl->socket.mapy / 2 2092 RETVAL = FABS (dx) <= pl->socket.mapx / 2 && FABS (dy) <= pl->socket.mapy / 2
2020 && !pl->blocked_los [dx + pl->socket.mapx / 2][dy + pl->socket.mapy / 2]; 2093 && !pl->blocked_los [dx + pl->socket.mapx / 2][dy + pl->socket.mapy / 2];
2021 OUTPUT:
2022 RETVAL
2023
2024char *
2025client (player *pl)
2026 CODE:
2027 RETVAL = pl->socket.client;
2028 OUTPUT:
2029 RETVAL
2030
2031char *
2032host (player *pl)
2033 CODE:
2034 RETVAL = pl->socket.host;
2035 OUTPUT:
2036 RETVAL
2037
2038char *
2039killer (player *pl, char *killer = 0)
2040 CODE:
2041 if (killer)
2042 snprintf (pl->killer, sizeof (pl->killer), "%s", killer);
2043 RETVAL = pl->killer;
2044 OUTPUT: 2094 OUTPUT:
2045 RETVAL 2095 RETVAL
2046 2096
2047void 2097void
2048buggy_mapscroll (player *pl, int value = 1) 2098buggy_mapscroll (player *pl, int value = 1)
2114 OUTPUT: RETVAL 2164 OUTPUT: RETVAL
2115 2165
2116 2166
2117MODULE = cf PACKAGE = cf::map PREFIX = cf_map_ 2167MODULE = cf PACKAGE = cf::map PREFIX = cf_map_
2118 2168
2119mapstruct *first () 2169maptile *first ()
2120 PROTOTYPE: 2170 PROTOTYPE:
2121 CODE: 2171 CODE:
2122 RETVAL = first_map; 2172 RETVAL = first_map;
2123 OUTPUT: RETVAL 2173 OUTPUT: RETVAL
2124 2174
2125int invoke (mapstruct *map, int event, ...) 2175int invoke (maptile *map, int event, ...)
2126 CODE: 2176 CODE:
2127 if (KLASS_OF (event) != KLASS_MAP) croak ("event class must be MAP"); 2177 if (KLASS_OF (event) != KLASS_MAP) croak ("event class must be MAP");
2128 AV *av = (AV *)sv_2mortal ((SV *)newAV ()); 2178 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
2129 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i))); 2179 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
2130 RETVAL = INVOKE_((event_type)event, ARG_MAP (map), ARG_AV (av)); 2180 RETVAL = INVOKE_((event_type)event, ARG_MAP (map), ARG_AV (av));
2131 OUTPUT: RETVAL 2181 OUTPUT: RETVAL
2132 2182
2133SV *registry (mapstruct *map) 2183SV *registry (maptile *map)
2134 CODE: 2184 CODE:
2135 RETVAL = registry_of (map); 2185 RETVAL = registry_of (map);
2136 OUTPUT: 2186 OUTPUT:
2137 RETVAL 2187 RETVAL
2138 2188
2139INCLUDE: $PERL genacc mapstruct ../include/map.h | 2189INCLUDE: $PERL genacc maptile ../include/map.h |
2140 2190
2141mapstruct *new (int width, int height) 2191maptile *new (int width, int height)
2142 PROTOTYPE: 2192 PROTOTYPE:
2143 CODE: 2193 CODE:
2144{ 2194{
2145 RETVAL = get_empty_map (width, height); 2195 RETVAL = get_empty_map (width, height);
2146} 2196}
2147 OUTPUT: 2197 OUTPUT:
2148 RETVAL 2198 RETVAL
2149 2199
2150void delete_map (mapstruct *map) 2200void delete_map (maptile *map)
2151 2201
2152void clean_tmp_map (mapstruct *map) 2202void clean_tmp_map (maptile *map)
2153 2203
2154void play_sound_map (mapstruct *map, int x, int y, int sound_num) 2204void play_sound_map (maptile *map, int x, int y, int sound_num)
2155 2205
2156mapstruct *tile_map (mapstruct *map, unsigned int dir) 2206maptile *tile_map (maptile *map, unsigned int dir)
2157 CODE: 2207 CODE:
2158 RETVAL = dir < 4 ? map->tile_map [dir] : 0; 2208 RETVAL = dir < 4 ? map->tile_map [dir] : 0;
2159 OUTPUT: 2209 OUTPUT:
2160 RETVAL 2210 RETVAL
2161 2211
2162char *tile_path (mapstruct *map, unsigned int dir) 2212char *tile_path (maptile *map, unsigned int dir)
2163 CODE: 2213 CODE:
2164 if (dir >= 4) 2214 if (dir >= 4)
2165 XSRETURN_UNDEF; 2215 XSRETURN_UNDEF;
2166 RETVAL = map->tile_path [dir]; 2216 RETVAL = map->tile_path [dir];
2167 OUTPUT: 2217 OUTPUT:
2168 RETVAL 2218 RETVAL
2169 2219
2170mapstruct *ready_map_name (char *name, int flags = 0) 2220maptile *ready_map_name (char *name, int flags = 0)
2171 PROTOTYPE: $;$ 2221 PROTOTYPE: $;$
2172 ALIAS: 2222 ALIAS:
2173 find = 0 2223 find = 0
2174 get_map = 1 2224 get_map = 1
2175 2225
2176mapstruct *has_been_loaded (char *name) 2226maptile *has_been_loaded (char *name)
2177 PROTOTYPE: $ 2227 PROTOTYPE: $
2178 2228
2179int in_memory (mapstruct *map) 2229int in_memory (maptile *map)
2180 CODE: 2230 CODE:
2181 RETVAL = map->in_memory; 2231 RETVAL = map->in_memory;
2182 OUTPUT: 2232 OUTPUT:
2183 RETVAL 2233 RETVAL
2184 2234
2185void 2235void
2186trigger (mapstruct *map, long connection, bool state = true) 2236trigger (maptile *map, long connection, bool state = true)
2187 CODE: 2237 CODE:
2188 activate_connection (map, connection, state); 2238 activate_connection (map, connection, state);
2189 2239
2190void 2240void
2191get_connection (mapstruct *map, long connection) 2241get_connection (maptile *map, long connection)
2192 PPCODE: 2242 PPCODE:
2193 oblinkpt *obp = get_connection_links (map, connection); 2243 oblinkpt *obp = get_connection_links (map, connection);
2194 if (obp) 2244 if (obp)
2195 for (objectlink *ol = obp->link; ol; ol = ol->next) 2245 for (objectlink *ol = obp->link; ol; ol = ol->next)
2196 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, ol->ob))); 2246 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, (object *)ol->ob)));
2197 2247
2198object *cf_map_insert_object_there (mapstruct *where, object *op, object *originator, int flags) 2248object *cf_map_insert_object_there (maptile *where, object *op, object *originator, int flags)
2199 2249
2200object *cf_map_insert_object (mapstruct *where, object* op, int x, int y) 2250object *cf_map_insert_object (maptile *where, object* op, int x, int y)
2201 2251
2202object* cf_map_present_arch_by_name (mapstruct *map, const char* str, int nx, int ny) 2252object* cf_map_present_arch_by_name (maptile *map, const char* str, int nx, int ny)
2203 C_ARGS: str, map, nx, ny 2253 C_ARGS: str, map, nx, ny
2204 2254
2205void 2255void
2206cf_map_normalise (mapstruct *map, int x, int y) 2256cf_map_normalise (maptile *map, int x, int y)
2207 PPCODE: 2257 PPCODE:
2208{ 2258{
2209 mapstruct *nmap = 0; 2259 maptile *nmap = 0;
2210 I16 nx = 0, ny = 0; 2260 I16 nx = 0, ny = 0;
2211 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny); 2261 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny);
2212 2262
2213 EXTEND (SP, 4); 2263 EXTEND (SP, 4);
2214 PUSHs (sv_2mortal (newSViv (flags))); 2264 PUSHs (sv_2mortal (newSViv (flags)));
2220 PUSHs (sv_2mortal (newSViv (ny))); 2270 PUSHs (sv_2mortal (newSViv (ny)));
2221 } 2271 }
2222} 2272}
2223 2273
2224void 2274void
2225at (mapstruct *map, unsigned int x, unsigned int y) 2275at (maptile *map, unsigned int x, unsigned int y)
2226 PROTOTYPE: $$$ 2276 PROTOTYPE: $$$
2227 PPCODE: 2277 PPCODE:
2228{ 2278{
2229 object *o; 2279 object *o;
2230 mapstruct *nmap = 0; 2280 maptile *nmap = 0;
2231 I16 nx, ny; 2281 I16 nx, ny;
2232 2282
2233 get_map_flags (map, &nmap, x, y, &nx, &ny); 2283 get_map_flags (map, &nmap, x, y, &nx, &ny);
2234 2284
2235 if (nmap) 2285 if (nmap)
2236 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above) 2286 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above)
2237 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 2287 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
2238} 2288}
2239 2289
2240SV * 2290SV *
2241bot_at (mapstruct *obj, unsigned int x, unsigned int y) 2291bot_at (maptile *obj, unsigned int x, unsigned int y)
2242 PROTOTYPE: $$$ 2292 PROTOTYPE: $$$
2243 ALIAS: 2293 ALIAS:
2244 top_at = 1 2294 top_at = 1
2245 flags_at = 2 2295 flags_at = 2
2246 light_at = 3 2296 light_at = 3
2263 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break; 2313 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break;
2264 } 2314 }
2265 OUTPUT: 2315 OUTPUT:
2266 RETVAL 2316 RETVAL
2267 2317
2318void fix_walls (maptile *map, int x, int y)
2319
2320void fix_walls_around (maptile *map, int x, int y)
2268 2321
2269MODULE = cf PACKAGE = cf::arch 2322MODULE = cf PACKAGE = cf::arch
2270 2323
2271archetype *find (const char *name) 2324archetype *find (const char *name)
2272 CODE: 2325 CODE:
2273 RETVAL = find_archetype (name); 2326 RETVAL = archetype::find (name);
2274 OUTPUT: 2327 OUTPUT:
2275 RETVAL 2328 RETVAL
2276 2329
2277archetype *first() 2330archetype *first()
2278 PROTOTYPE: 2331 PROTOTYPE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines