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

Comparing deliantra/server/plugins/cfperl/cfperl.xs (file contents):
Revision 1.27 by root, Sun Mar 5 18:48:50 2006 UTC vs.
Revision 1.28 by root, Mon Mar 6 22:59:26 2006 UTC

58static f_plug_api systemDirectory; 58static f_plug_api systemDirectory;
59static f_plug_api object_set_property; 59static f_plug_api object_set_property;
60static f_plug_api map_get_map; 60static f_plug_api map_get_map;
61static f_plug_api object_insert; 61static f_plug_api object_insert;
62 62
63/* this is a stupid way to do things, and awkward to use for plug-in authors */
63typedef struct 64typedef struct
64{ 65{
65 object* who; 66 object* who;
66 object* activator; 67 object* activator;
67 object* third; 68 object* third;
69 mapstruct* map;
68 char message[1024]; 70 char message[1024];
69 int fix; // seems to be python-only, and should not be part of the API 71 int fix; // seems to be python-only, and should not be part of the API
70 int event_code; 72 int event_code;
71 char extension[1024]; // name field, should invoke specific perl extension 73 char extension[1024]; // name field, should invoke specific perl extension
72 char options[1024]; // slaying field of event_connectors 74 char options[1024]; // slaying field of event_connectors
125 sv_magic (sv, 0, PERL_MAGIC_ext, (char *)ptr, 0); 127 sv_magic (sv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
126 return sv_bless (newRV_noinc (sv), gv_stashpv (klass, 1)); 128 return sv_bless (newRV_noinc (sv), gv_stashpv (klass, 1));
127} 129}
128 130
129static SV * 131static SV *
132SVptr_cached (void *ptr)
133{
134 SV **he = hv_fetch (obj_cache, (char *)&ptr, sizeof (ptr), 0);
135
136 return he ? *he : 0;
137}
138
139static SV *
130newSVptr_cached (void *ptr, const char *klass) 140newSVptr_cached (void *ptr, const char *klass)
131{ 141{
132 SV *sv, **he; 142 SV *sv;
133 143
134 if (!ptr) 144 if (!ptr)
135 return &PL_sv_undef; 145 return &PL_sv_undef;
136 146
137 he = hv_fetch (obj_cache, (char *)&ptr, sizeof (ptr), 0); 147 sv = SVptr_cached (ptr);
138 148
139 if (he) 149 if (!sv)
140 sv = *he;
141 else
142 { 150 {
143 HV *hv = newHV (); 151 HV *hv = newHV ();
144 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0); 152 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
145 sv = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1)); 153 sv = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
146 hv_store (obj_cache, (char *)&ptr, sizeof (ptr), sv, 0); 154 hv_store (obj_cache, (char *)&ptr, sizeof (ptr), sv, 0);
285 HV *hv = newHV (); 293 HV *hv = newHV ();
286#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context->expr), 0) 294#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context->expr), 0)
287 hv_context (CFAPI_POBJECT, ,who); 295 hv_context (CFAPI_POBJECT, ,who);
288 hv_context (CFAPI_POBJECT, ,activator); 296 hv_context (CFAPI_POBJECT, ,activator);
289 hv_context (CFAPI_POBJECT, ,third); 297 hv_context (CFAPI_POBJECT, ,third);
298 hv_context (CFAPI_PMAP, ,map);
290 hv_context (CFAPI_STRING , ,message); 299 hv_context (CFAPI_STRING , ,message);
291 hv_context (CFAPI_INT ,&,fix); 300 hv_context (CFAPI_INT ,&,fix);
292 hv_context (CFAPI_INT ,&,event_code); 301 hv_context (CFAPI_INT ,&,event_code);
293 hv_context (CFAPI_STRING , ,options); 302 hv_context (CFAPI_STRING , ,options);
294 hv_context (CFAPI_STRING , ,extension); 303 hv_context (CFAPI_STRING , ,extension);
430 registerGlobalEvent (NULL, EVENT_LOGIN, PLUGIN_NAME, globalEventListener); 439 registerGlobalEvent (NULL, EVENT_LOGIN, PLUGIN_NAME, globalEventListener);
431 registerGlobalEvent (NULL, EVENT_LOGOUT, PLUGIN_NAME, globalEventListener); 440 registerGlobalEvent (NULL, EVENT_LOGOUT, PLUGIN_NAME, globalEventListener);
432 registerGlobalEvent (NULL, EVENT_MAPENTER, PLUGIN_NAME, globalEventListener); 441 registerGlobalEvent (NULL, EVENT_MAPENTER, PLUGIN_NAME, globalEventListener);
433 registerGlobalEvent (NULL, EVENT_MAPLEAVE, PLUGIN_NAME, globalEventListener); 442 registerGlobalEvent (NULL, EVENT_MAPLEAVE, PLUGIN_NAME, globalEventListener);
434 registerGlobalEvent (NULL, EVENT_MAPRESET, PLUGIN_NAME, globalEventListener); 443 registerGlobalEvent (NULL, EVENT_MAPRESET, PLUGIN_NAME, globalEventListener);
444 registerGlobalEvent (NULL, EVENT_MAPLOAD, PLUGIN_NAME, globalEventListener);
445 registerGlobalEvent (NULL, EVENT_MAPOUT, PLUGIN_NAME, globalEventListener);
446 registerGlobalEvent (NULL, EVENT_MAPIN, PLUGIN_NAME, globalEventListener);
435 registerGlobalEvent (NULL, EVENT_REMOVE, PLUGIN_NAME, globalEventListener); 447 registerGlobalEvent (NULL, EVENT_REMOVE, PLUGIN_NAME, globalEventListener);
436 registerGlobalEvent (NULL, EVENT_SHOUT, PLUGIN_NAME, globalEventListener); 448 registerGlobalEvent (NULL, EVENT_SHOUT, PLUGIN_NAME, globalEventListener);
437 registerGlobalEvent (NULL, EVENT_TELL, PLUGIN_NAME, globalEventListener); 449 registerGlobalEvent (NULL, EVENT_TELL, PLUGIN_NAME, globalEventListener);
438 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener); 450 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener);
439 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener); 451 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener);
491 { 503 {
492 case EVENT_CRASH: 504 case EVENT_CRASH:
493 printf ("Unimplemented for now\n"); 505 printf ("Unimplemented for now\n");
494 break; 506 break;
495 507
508 case EVENT_MAPLOAD:
509 case EVENT_MAPOUT:
510 case EVENT_MAPIN:
511 context.map = va_arg (args, mapstruct *);
512 break;
513
496 case EVENT_MAPENTER: 514 case EVENT_MAPENTER:
497 case EVENT_MAPLEAVE: 515 case EVENT_MAPLEAVE:
498 case EVENT_FREE_OB: 516 case EVENT_FREE_OB:
499 case EVENT_BORN: 517 case EVENT_BORN:
500 case EVENT_REMOVE: 518 case EVENT_REMOVE:
534 552
535 case EVENT_TELL: 553 case EVENT_TELL:
536 break; 554 break;
537 555
538 case EVENT_MAPRESET: 556 case EVENT_MAPRESET:
557 /* stupid, should be the map itself, not "message"??? */
539 buf = va_arg (args, char *); 558 buf = va_arg (args, char *);
540 if (buf != 0) 559 if (buf != 0)
541 strncpy (context.message, buf, sizeof (context.message)); 560 strncpy (context.message, buf, sizeof (context.message));
542 break; 561 break;
543 } 562 }
992 const_event (LOGIN) 1011 const_event (LOGIN)
993 const_event (LOGOUT) 1012 const_event (LOGOUT)
994 const_event (MAPENTER) 1013 const_event (MAPENTER)
995 const_event (MAPLEAVE) 1014 const_event (MAPLEAVE)
996 const_event (MAPRESET) 1015 const_event (MAPRESET)
1016 const_event (MAPLOAD)
1017 const_event (MAPOUT)
1018 const_event (MAPIN)
997 const_event (REMOVE) 1019 const_event (REMOVE)
998 const_event (SHOUT) 1020 const_event (SHOUT)
999 const_event (TELL) 1021 const_event (TELL)
1000 const_event (MUZZLE) 1022 const_event (MUZZLE)
1001 const_event (KICK) 1023 const_event (KICK)
1509 INIT: 1531 INIT:
1510 if (x >= MAP_WIDTH (obj) || y >= MAP_HEIGHT (obj)) XSRETURN_EMPTY; 1532 if (x >= MAP_WIDTH (obj) || y >= MAP_HEIGHT (obj)) XSRETURN_EMPTY;
1511 PPCODE: 1533 PPCODE:
1512{ 1534{
1513 object *o; 1535 object *o;
1536
1514 for (o = GET_MAP_OB (obj, x, y); o; o = o->above) 1537 for (o = GET_MAP_OB (obj, x, y); o; o = o->above)
1515 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 1538 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
1516} 1539}
1517 1540
1518SV * 1541SV *
1541 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break; 1564 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break;
1542 } 1565 }
1543 OUTPUT: 1566 OUTPUT:
1544 RETVAL 1567 RETVAL
1545 1568
1569void
1570_get_obs (mapstruct *map)
1571 PPCODE:
1572{
1573 object *o;
1574 int x, y;
1575 AV *obs = newAV ();
1576 int nonnull = 0;
1577
1578 for (y = 0; y < MAP_HEIGHT (map); y++)
1579 for (x = 0; x < MAP_WIDTH (map); x++)
1580 {
1581 AV *av = newAV ();
1582
1583 for (o = GET_MAP_OB (map, x, y); o; o = o->above)
1584 {
1585 SV *sv = SVptr_cached (o);
1586
1587 if (sv && HvFILL (SvRV (sv)))
1588 {
1589 nonnull = 1;
1590 sv = newSVsv (sv);
1591 }
1592 else
1593 sv = &PL_sv_undef;
1594
1595 av_push (av, sv);
1596 }
1597
1598 av_store (obs, x + y * MAP_HEIGHT (map), newRV_noinc ((SV *)av));
1599 }
1600
1601 if (nonnull)
1602 XPUSHs (sv_2mortal (newRV_noinc ((SV *)obs)));
1603 else
1604 SvREFCNT_dec (obs);
1605}
1546 1606
1547MODULE = cf PACKAGE = cf::arch PREFIX = cf_archetype_ 1607MODULE = cf PACKAGE = cf::arch PREFIX = cf_archetype_
1548 1608
1549archetype *cf_archetype_get_first() 1609archetype *cf_archetype_get_first()
1550 PROTOTYPE: 1610 PROTOTYPE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines