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.12 by root, Tue Feb 7 03:01:29 2006 UTC vs.
Revision 1.31 by root, Tue Mar 7 13:48:27 2006 UTC

28#include <perl.h> 28#include <perl.h>
29#include <XSUB.h> 29#include <XSUB.h>
30 30
31#undef save_long // clashes with libproto.h 31#undef save_long // clashes with libproto.h
32 32
33#define PLUGIN_NAME "cfperl" 33#define PLUGIN_NAME "perl"
34#define PLUGIN_VERSION "cfperl 0.0" 34#define PLUGIN_VERSION "cfperl 0.2"
35 35
36#ifndef __CEXTRACT__ 36#ifndef __CEXTRACT__
37#include <plugin.h> 37#include <plugin.h>
38#endif 38#endif
39 39
46#include <plugin_common.h> 46#include <plugin_common.h>
47 47
48#include <stdarg.h> 48#include <stdarg.h>
49 49
50#include "perlxsi.c" 50#include "perlxsi.c"
51
52typedef object object_ornull;
53typedef mapstruct mapstruct_ornull;
51 54
52static f_plug_api gethook; 55static f_plug_api gethook;
53static f_plug_api registerGlobalEvent; 56static f_plug_api registerGlobalEvent;
54static f_plug_api unregisterGlobalEvent; 57static f_plug_api unregisterGlobalEvent;
55static f_plug_api systemDirectory; 58static f_plug_api systemDirectory;
56static f_plug_api object_set_property; 59static f_plug_api object_set_property;
57static f_plug_api map_get_map; 60static f_plug_api map_get_map;
61static f_plug_api object_insert;
58 62
63/* this is a stupid way to do things, and awkward to use for plug-in authors */
59typedef struct 64typedef struct
60{ 65{
61 object* who; 66 object* who;
62 object* activator; 67 object* activator;
63 object* third; 68 object* third;
69 mapstruct* map;
64 char message[1024]; 70 char message[1024];
65 int fix; 71 int fix; // seems to be python-only, and should not be part of the API
66 int event_code; 72 int event_code;
67 char options[1024]; 73 char extension[1024]; // name field, should invoke specific perl extension
74 char options[1024]; // slaying field of event_connectors
68 int returnvalue; 75 int returnvalue;
69} CFPContext; 76} CFPContext;
70 77
71//static int current_command = -999; 78static HV *obj_cache;
72
73static PerlInterpreter *perl; 79static PerlInterpreter *perl;
74 80
75////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 81//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
82
83// garbage collect some perl objects, if possible
84// all objects no longer referenced and empty are
85// eligible for destruction.
86void
87clean_obj_cache ()
88{
89 static int count;
90
91 if (++count & 7)
92 return;
93
94 int todo = 1000;
95 do
96 {
97 I32 klen;
98 char *key;
99 HE *he = hv_iternext (obj_cache);
100
101 if (he)
102 {
103 SV *sv = hv_iterval (obj_cache, he);
104
105 // empty and unreferenced? nuke it
106 if (SvREFCNT (sv) == 1 && SvREFCNT (SvRV (sv)) == 1 && !HvFILL ((HV *)(SvRV (sv))))
107 {
108 hv_delete (obj_cache, HeKEY (he), HeKLEN (he), G_DISCARD);
109 todo++;
110 }
111 }
112 else
113 break;
114 }
115 while (--todo);
116}
76 117
77static SV * 118static SV *
78newSVptr (void *ptr, const char *klass) 119newSVptr (void *ptr, const char *klass)
79{ 120{
121 SV *sv;
122
80 if (!ptr) 123 if (!ptr)
81 return &PL_sv_undef; 124 return &PL_sv_undef;
82 125
126 sv = newSV (0);
127 sv_magic (sv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
128 return sv_bless (newRV_noinc (sv), gv_stashpv (klass, 1));
129}
130
131static void
132SVptr_cache_set (void *ptr, SV *sv)
133{
134 hv_store (obj_cache, (char *)&ptr, sizeof (ptr), sv, 0);
135}
136
137static SV *
138SVptr_cache_get (void *ptr)
139{
140 SV **he = hv_fetch (obj_cache, (char *)&ptr, sizeof (ptr), 0);
141
142 return he ? *he : 0;
143}
144
145static SV *
146newSVptr_cached (void *ptr, const char *klass)
147{
148 SV *sv;
149
150 if (!ptr)
151 return &PL_sv_undef;
152
153 sv = SVptr_cache_get (ptr);
154
155 if (!sv)
156 {
83 HV *hv = newHV (); 157 HV *hv = newHV ();
84 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0); 158 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
85 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1)); 159 sv = sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
160
161 SVptr_cache_set (ptr, sv);
162 }
163
164 return newSVsv (sv);
86} 165}
87 166
88static void 167static void
89clearSVptr (SV *sv) 168clearSVptr (SV *sv)
90{ 169{
107 croak ("perl code used %s object, but C object is already destroyed, caught", klass); 186 croak ("perl code used %s object, but C object is already destroyed, caught", klass);
108 187
109 return (long)mg->mg_ptr; 188 return (long)mg->mg_ptr;
110} 189}
111 190
191static long
192SvPTR_ornull (SV *sv, const char *klass)
193{
194 if (SvOK (sv))
195 return SvPTR (sv, klass);
196 else
197 return 0;
198}
199
112SV * 200SV *
113newSVcfapi (int type, ...) 201newSVcfapi (int type, ...)
114{ 202{
115 SV *sv; 203 SV *sv;
116 204
117 va_list args; 205 va_list args;
118 va_start (args, type); 206 va_start (args, type);
119 207
120 switch (type) 208 switch (type)
121 { 209 {
210#if 0
211 case CFAPI_INT16:
212 sv = newSViv (*va_arg (args, sint16_t *));
213 break;
214#endif
215
122 case CFAPI_INT: 216 case CFAPI_INT:
123 sv = newSViv (*va_arg (args, int *)); 217 sv = newSViv (*va_arg (args, int *));
124 break; 218 break;
125 219
126 case CFAPI_LONG: 220 case CFAPI_LONG:
146 sv = &PL_sv_undef; 240 sv = &PL_sv_undef;
147 else 241 else
148 switch (*(int *)cf_object_get_property (obj, CFAPI_OBJECT_PROP_TYPE)) 242 switch (*(int *)cf_object_get_property (obj, CFAPI_OBJECT_PROP_TYPE))
149 { 243 {
150 case MAP: 244 case MAP:
151 sv = newSVptr (obj, "cf::object::map"); 245 sv = newSVptr_cached (obj, "cf::object::map");
152 break; 246 break;
153 247
154 case PLAYER: 248 case PLAYER:
155 sv = newSVptr (obj, "cf::object::player"); 249 sv = newSVptr_cached (obj, "cf::object::player");
156 break; 250 break;
157 251
158 default: 252 default:
159 sv = newSVptr (obj, "cf::object"); 253 sv = newSVptr_cached (obj, "cf::object");
160 break; 254 break;
161 } 255 }
162 } 256 }
163 break; 257 break;
164 258
192} 286}
193 287
194///////////////////////////////////////////////////////////////////////////// 288/////////////////////////////////////////////////////////////////////////////
195 289
196void 290void
197inject_event (CFPContext *context) 291inject_event (const char *func, CFPContext *context)
198{ 292{
199 dSP; 293 dSP;
200 294
201 ENTER; 295 ENTER;
202 SAVETMPS; 296 SAVETMPS;
203 297
204 PUSHMARK (SP); 298 PUSHMARK (SP);
205
206 EXTEND (SP, 2);
207 //PUSHs (sv_2mortal (newSViv (type)));
208 299
209 HV *hv = newHV (); 300 HV *hv = newHV ();
210#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context->expr), 0) 301#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context->expr), 0)
211 hv_context (CFAPI_POBJECT, ,who); 302 hv_context (CFAPI_POBJECT, ,who);
212 hv_context (CFAPI_POBJECT, ,activator); 303 hv_context (CFAPI_POBJECT, ,activator);
213 hv_context (CFAPI_POBJECT, ,third); 304 hv_context (CFAPI_POBJECT, ,third);
305 hv_context (CFAPI_PMAP, ,map);
214 hv_context (CFAPI_STRING , ,message); 306 hv_context (CFAPI_STRING , ,message);
215 hv_context (CFAPI_INT ,&,fix); 307 hv_context (CFAPI_INT ,&,fix);
216 hv_context (CFAPI_INT ,&,event_code); 308 hv_context (CFAPI_INT ,&,event_code);
217 hv_context (CFAPI_STRING , ,options); 309 hv_context (CFAPI_STRING , ,options);
310 hv_context (CFAPI_STRING , ,extension);
218 311
219 PUSHs (sv_2mortal (newRV_noinc ((SV *)hv))); 312 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
220 313
221 PUTBACK; 314 PUTBACK;
222 int count = call_pv ("cf::inject_event", G_SCALAR | G_EVAL); 315 int count = call_pv (func, G_SCALAR | G_EVAL);
223 SPAGAIN; 316 SPAGAIN;
224 317
225 if (SvTRUE (ERRSV)) 318 if (SvTRUE (ERRSV))
226 LOG (llevError, "event '%d' callback evaluation error: %s", context->event_code, SvPV_nolen (ERRSV)); 319 LOG (llevError, "event '%d' callback evaluation error: %s", context->event_code, SvPV_nolen (ERRSV));
227 320
338 registerGlobalEvent = gethook (&rtype, hooktype, "cfapi_system_register_global_event"); 431 registerGlobalEvent = gethook (&rtype, hooktype, "cfapi_system_register_global_event");
339 unregisterGlobalEvent = gethook (&rtype, hooktype, "cfapi_system_unregister_global_event"); 432 unregisterGlobalEvent = gethook (&rtype, hooktype, "cfapi_system_unregister_global_event");
340 systemDirectory = gethook (&rtype, hooktype, "cfapi_system_directory"); 433 systemDirectory = gethook (&rtype, hooktype, "cfapi_system_directory");
341 object_set_property = gethook (&rtype, hooktype, "cfapi_object_set_property"); 434 object_set_property = gethook (&rtype, hooktype, "cfapi_object_set_property");
342 map_get_map = gethook (&rtype, hooktype, "cfapi_map_get_map"); 435 map_get_map = gethook (&rtype, hooktype, "cfapi_map_get_map");
436 object_insert = gethook (&rtype, hooktype, "cfapi_object_insert");
343 437
344 cf_init_plugin (gethook); 438 cf_init_plugin (gethook);
345 439
346 /* Pick the global events you want to monitor from this plugin */ 440 /* Pick the global events you want to monitor from this plugin */
347 registerGlobalEvent (NULL, EVENT_BORN, PLUGIN_NAME, globalEventListener); 441 registerGlobalEvent (NULL, EVENT_BORN, PLUGIN_NAME, globalEventListener);
352 registerGlobalEvent (NULL, EVENT_LOGIN, PLUGIN_NAME, globalEventListener); 446 registerGlobalEvent (NULL, EVENT_LOGIN, PLUGIN_NAME, globalEventListener);
353 registerGlobalEvent (NULL, EVENT_LOGOUT, PLUGIN_NAME, globalEventListener); 447 registerGlobalEvent (NULL, EVENT_LOGOUT, PLUGIN_NAME, globalEventListener);
354 registerGlobalEvent (NULL, EVENT_MAPENTER, PLUGIN_NAME, globalEventListener); 448 registerGlobalEvent (NULL, EVENT_MAPENTER, PLUGIN_NAME, globalEventListener);
355 registerGlobalEvent (NULL, EVENT_MAPLEAVE, PLUGIN_NAME, globalEventListener); 449 registerGlobalEvent (NULL, EVENT_MAPLEAVE, PLUGIN_NAME, globalEventListener);
356 registerGlobalEvent (NULL, EVENT_MAPRESET, PLUGIN_NAME, globalEventListener); 450 registerGlobalEvent (NULL, EVENT_MAPRESET, PLUGIN_NAME, globalEventListener);
451 registerGlobalEvent (NULL, EVENT_MAPLOAD, PLUGIN_NAME, globalEventListener);
452 registerGlobalEvent (NULL, EVENT_MAPOUT, PLUGIN_NAME, globalEventListener);
453 registerGlobalEvent (NULL, EVENT_MAPIN, PLUGIN_NAME, globalEventListener);
454 registerGlobalEvent (NULL, EVENT_MAPCLEAN, PLUGIN_NAME, globalEventListener);
357 registerGlobalEvent (NULL, EVENT_REMOVE, PLUGIN_NAME, globalEventListener); 455 registerGlobalEvent (NULL, EVENT_REMOVE, PLUGIN_NAME, globalEventListener);
358 registerGlobalEvent (NULL, EVENT_SHOUT, PLUGIN_NAME, globalEventListener); 456 registerGlobalEvent (NULL, EVENT_SHOUT, PLUGIN_NAME, globalEventListener);
359 registerGlobalEvent (NULL, EVENT_TELL, PLUGIN_NAME, globalEventListener); 457 registerGlobalEvent (NULL, EVENT_TELL, PLUGIN_NAME, globalEventListener);
360 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener); 458 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener);
361 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener); 459 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener);
460 registerGlobalEvent (NULL, EVENT_FREE_OB, PLUGIN_NAME, globalEventListener);
362 461
363 char *argv[] = { 462 char *argv[] = {
364 "", 463 "",
365 "-e" 464 "-e"
366 "BEGIN {" 465 "BEGIN {"
380 479
381 perl_destruct (perl); 480 perl_destruct (perl);
382 perl_free (perl); 481 perl_free (perl);
383 perl = 0; 482 perl = 0;
384 } 483 }
484 else
485 {
486 obj_cache = newHV ();
487 }
385 488
386 return 0; 489 return 0;
387} 490}
388 491
389void * 492void *
408 { 511 {
409 case EVENT_CRASH: 512 case EVENT_CRASH:
410 printf ("Unimplemented for now\n"); 513 printf ("Unimplemented for now\n");
411 break; 514 break;
412 515
516 case EVENT_MAPLOAD:
517 case EVENT_MAPOUT:
518 case EVENT_MAPIN:
519 case EVENT_MAPCLEAN:
520 context.map = va_arg (args, mapstruct *);
521 break;
522
523 case EVENT_MAPENTER:
524 case EVENT_MAPLEAVE:
525 case EVENT_FREE_OB:
413 case EVENT_BORN: 526 case EVENT_BORN:
527 case EVENT_REMOVE:
414 context.activator = va_arg (args, object *); 528 context.activator = va_arg (args, object *);
415 break; 529 break;
416 530
417 case EVENT_PLAYER_DEATH: 531 case EVENT_PLAYER_DEATH:
418 context.who = va_arg (args, object *); 532 context.who = va_arg (args, object *);
422 context.who = va_arg (args, object *); 536 context.who = va_arg (args, object *);
423 context.activator = va_arg (args, object *); 537 context.activator = va_arg (args, object *);
424 break; 538 break;
425 539
426 case EVENT_LOGIN: 540 case EVENT_LOGIN:
427 pl = va_arg (args, player *);
428 context.activator = pl->ob;
429 buf = va_arg (args, char *);
430 if (buf != 0)
431 strcpy (context.message, buf);
432 break;
433
434 case EVENT_LOGOUT: 541 case EVENT_LOGOUT:
435 pl = va_arg (args, player *); 542 pl = va_arg (args, player *);
436 context.activator = pl->ob; 543 context.activator = pl->ob;
437 buf = va_arg (args, char *); 544 buf = va_arg (args, char *);
438 if (buf != 0) 545 if (buf != 0)
439 strcpy (context.message, buf); 546 strncpy (context.message, buf, sizeof (context.message));
440 break;
441
442 case EVENT_REMOVE:
443 context.activator = va_arg (args, object *);
444 break; 547 break;
445 548
446 case EVENT_SHOUT: 549 case EVENT_SHOUT:
447 context.activator = va_arg (args, object *);
448 buf = va_arg (args, char *);
449 if (buf != 0)
450 strcpy (context.message, buf);
451 break;
452
453 case EVENT_MUZZLE: 550 case EVENT_MUZZLE:
454 context.activator = va_arg (args, object *);
455 buf = va_arg (args, char *);
456 if (buf != 0)
457 strcpy (context.message, buf);
458 break;
459
460 case EVENT_KICK: 551 case EVENT_KICK:
461 context.activator = va_arg (args, object *); 552 context.activator = va_arg (args, object *);
462 buf = va_arg (args, char *); 553 buf = va_arg (args, char *);
463 if (buf != 0) 554 if (buf != 0)
464 strcpy (context.message, buf); 555 strncpy (context.message, buf, sizeof (context.message));
465 break;
466
467 case EVENT_MAPENTER:
468 context.activator = va_arg (args, object *);
469 break;
470
471 case EVENT_MAPLEAVE:
472 context.activator = va_arg (args, object *);
473 break; 556 break;
474 557
475 case EVENT_CLOCK: 558 case EVENT_CLOCK:
559 clean_obj_cache ();
560 break;
561
562 case EVENT_TELL:
476 break; 563 break;
477 564
478 case EVENT_MAPRESET: 565 case EVENT_MAPRESET:
566 /* stupid, should be the map itself, not "message"??? */
479 buf = va_arg (args, char *); 567 buf = va_arg (args, char *);
480 if (buf != 0) 568 if (buf != 0)
481 strcpy (context.message, buf); 569 strncpy (context.message, buf, sizeof (context.message));
482 break;
483
484 case EVENT_TELL:
485 break; 570 break;
486 } 571 }
487 572
488 va_end (args); 573 va_end (args);
489 574
490 inject_event (&context); 575 if (context.event_code == EVENT_FREE_OB)
576 {
577 SV *sv = hv_delete (obj_cache, (char *)&context.activator, sizeof (void *), 0);
578
579 if (sv)
580 clearSVptr (sv);
581 }
582 else
583 inject_event ("cf::inject_global_event", &context);
491 584
492 rv = context.returnvalue; 585 rv = context.returnvalue;
493 586
494 return &rv; 587 return &rv;
495} 588}
511 604
512 context.who = va_arg (args, object *); 605 context.who = va_arg (args, object *);
513 context.event_code = va_arg (args, int); 606 context.event_code = va_arg (args, int);
514 context.activator = va_arg (args, object *); 607 context.activator = va_arg (args, object *);
515 context.third = va_arg (args, object *); 608 context.third = va_arg (args, object *);
609
516 buf = va_arg (args, char *); 610 buf = va_arg (args, char *);
517
518 if (buf != 0) 611 if (buf != 0)
519 strcpy (context.message, buf); 612 strncpy (context.message, buf, sizeof (context.message));
520 613
521 context.fix = va_arg (args, int); 614 context.fix = va_arg (args, int);
615 strncpy (context.extension, va_arg (args, char *), sizeof (context.extension));
522 strcpy (context.options, va_arg (args, char *)); 616 strncpy (context.options, va_arg (args, char *), sizeof (context.options));
523 context.returnvalue = 0; 617 context.returnvalue = 0;
524 va_end (args); 618 va_end (args);
525 619
526 inject_event (&context); 620 inject_event ("cf::inject_event", &context);
527 621
528 rv = context.returnvalue; 622 rv = context.returnvalue;
529 return &rv; 623 return &rv;
530} 624}
531 625
688 const_iv (ST_BD_REMOVE) 782 const_iv (ST_BD_REMOVE)
689 const_iv (ST_MAT_FLOOR) 783 const_iv (ST_MAT_FLOOR)
690 const_iv (ST_MAT_WALL) 784 const_iv (ST_MAT_WALL)
691 const_iv (ST_MAT_ITEM) 785 const_iv (ST_MAT_ITEM)
692 786
787 const_iv (AT_PHYSICAL)
788 const_iv (AT_MAGIC)
789 const_iv (AT_FIRE)
790 const_iv (AT_ELECTRICITY)
791 const_iv (AT_COLD)
792 const_iv (AT_CONFUSION)
793 const_iv (AT_ACID)
794 const_iv (AT_DRAIN)
795 const_iv (AT_WEAPONMAGIC)
796 const_iv (AT_GHOSTHIT)
797 const_iv (AT_POISON)
798 const_iv (AT_SLOW)
799 const_iv (AT_PARALYZE)
800 const_iv (AT_TURN_UNDEAD)
801 const_iv (AT_FEAR)
802 const_iv (AT_CANCELLATION)
803 const_iv (AT_DEPLETE)
804 const_iv (AT_DEATH)
805 const_iv (AT_CHAOS)
806 const_iv (AT_COUNTERSPELL)
807 const_iv (AT_GODPOWER)
808 const_iv (AT_HOLYWORD)
809 const_iv (AT_BLIND)
810 const_iv (AT_INTERNAL)
811 const_iv (AT_LIFE_STEALING)
812 const_iv (AT_DISEASE)
813
693 const_iv (QUEST_IN_PROGRESS) 814 const_iv (QUEST_IN_PROGRESS)
694 const_iv (QUEST_DONE_QUEST) 815 const_iv (QUEST_DONE_QUEST)
695 const_iv (QUEST_DONE_TASK) 816 const_iv (QUEST_DONE_TASK)
696 const_iv (QUEST_START_QUEST) 817 const_iv (QUEST_START_QUEST)
697 const_iv (QUEST_END_QUEST) 818 const_iv (QUEST_END_QUEST)
846 const_iv (P_NO_CLERIC) 967 const_iv (P_NO_CLERIC)
847 const_iv (P_NEED_UPDATE) 968 const_iv (P_NEED_UPDATE)
848 const_iv (P_NO_ERROR) 969 const_iv (P_NO_ERROR)
849 const_iv (P_OUT_OF_MAP) 970 const_iv (P_OUT_OF_MAP)
850 const_iv (P_NEW_MAP) 971 const_iv (P_NEW_MAP)
972
973 const_iv (UP_OBJ_INSERT)
974 const_iv (UP_OBJ_REMOVE)
975 const_iv (UP_OBJ_CHANGE)
976 const_iv (UP_OBJ_FACE)
977
978 const_iv (INS_NO_MERGE)
979 const_iv (INS_ABOVE_FLOOR_ONLY)
980 const_iv (INS_NO_WALK_ON)
981 const_iv (INS_ON_TOP)
982 const_iv (INS_BELOW_ORIGINATOR)
983 const_iv (INS_MAP_LOAD)
984
985 const_iv (WILL_APPLY_HANDLE)
986 const_iv (WILL_APPLY_TREASURE)
987 const_iv (WILL_APPLY_EARTHWALL)
988 const_iv (WILL_APPLY_DOOR)
989 const_iv (WILL_APPLY_FOOD)
990
991 const_iv (SAVE_MODE)
992 const_iv (SAVE_DIR_MODE)
851 }; 993 };
852 994
853 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 995 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
854 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 996 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
855 997
869 const_event (TIME) 1011 const_event (TIME)
870 const_event (THROW) 1012 const_event (THROW)
871 const_event (TRIGGER) 1013 const_event (TRIGGER)
872 const_event (CLOSE) 1014 const_event (CLOSE)
873 const_event (TIMER) 1015 const_event (TIMER)
1016 const_event (MOVE)
874 1017
875 const_event (BORN) 1018 const_event (BORN)
876 const_event (CLOCK) 1019 const_event (CLOCK)
877 const_event (CRASH) 1020 const_event (CRASH)
878 const_event (PLAYER_DEATH) 1021 const_event (PLAYER_DEATH)
880 const_event (LOGIN) 1023 const_event (LOGIN)
881 const_event (LOGOUT) 1024 const_event (LOGOUT)
882 const_event (MAPENTER) 1025 const_event (MAPENTER)
883 const_event (MAPLEAVE) 1026 const_event (MAPLEAVE)
884 const_event (MAPRESET) 1027 const_event (MAPRESET)
1028 const_event (MAPLOAD)
1029 const_event (MAPOUT)
1030 const_event (MAPIN)
885 const_event (REMOVE) 1031 const_event (REMOVE)
886 const_event (SHOUT) 1032 const_event (SHOUT)
887 const_event (TELL) 1033 const_event (TELL)
888 const_event (MUZZLE) 1034 const_event (MUZZLE)
889 const_event (KICK) 1035 const_event (KICK)
1036 //const_event (FREE_OB)
890 }; 1037 };
891 1038
892 AV *av = get_av ("cf::EVENT", 1); 1039 AV *av = get_av ("cf::EVENT", 1);
893 1040
894 for (event = event_list + sizeof (event_list) / sizeof (event_list [0]); event-- > event_list; ) 1041 for (event = event_list + sizeof (event_list) / sizeof (event_list [0]); event-- > event_list; )
1088 int unused_type; 1235 int unused_type;
1089 object_set_property (&unused_type, obj, idx, (double)SvNV (newval)); 1236 object_set_property (&unused_type, obj, idx, (double)SvNV (newval));
1090 } 1237 }
1091 break; 1238 break;
1092 case CFAPI_STRING: 1239 case CFAPI_STRING:
1093 cf_object_set_string_property (obj, idx, SvPV_nolen (newval)); 1240 cf_object_set_string_property (obj, idx, SvOK (newval) ? SvPV_nolen (newval) : 0);
1241 break;
1242 case CFAPI_POBJECT:
1243 {
1244 int unused_type;
1245 object_set_property (&unused_type, obj, idx, (object *)SvPTR_ornull (newval, "cf::object"));
1246 }
1094 break; 1247 break;
1095 default: 1248 default:
1096 croak ("unhandled type '%d' in set_property '%d'", type, idx); 1249 croak ("unhandled type '%d' in set_property '%d'", type, idx);
1097 } 1250 }
1098 1251
1099SV * 1252# missing properties
1253
1254void
1255set_attacktype (object *obj, U32 attacktype)
1256 CODE:
1257 obj->attacktype = attacktype;
1258
1259U32
1260get_attacktype (object *obj)
1261 ALIAS:
1262 attacktype = 0
1263 CODE:
1264 RETVAL = obj->attacktype;
1265 OUTPUT: RETVAL
1266
1267void
1268set_food (object *obj, int food)
1269 CODE:
1270 obj->stats.food = food;
1271
1272int
1273get_food (object *obj)
1274 ALIAS:
1275 food = 0
1276 CODE:
1277 RETVAL = obj->stats.food;
1278 OUTPUT: RETVAL
1279
1280void
1100inv (object *obj) 1281inv (object *obj)
1101 PROTOTYPE: $ 1282 PROTOTYPE: $
1102 PPCODE: 1283 PPCODE:
1103{ 1284{
1104 object *o; 1285 object *o;
1105 for (o = obj->inv; o; o = o->below) 1286 for (o = obj->inv; o; o = o->below)
1106 XPUSHs (newSVcfapi (CFAPI_POBJECT, o)); 1287 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
1107} 1288}
1108 1289
1109int cf_object_get_resistance (object *op, int rtype) 1290int cf_object_get_resistance (object *op, int rtype)
1110 ALIAS: resistance = 0 1291 ALIAS: resistance = 0
1111 1292
1112int cf_object_get_flag (object *op, int flag) 1293int cf_object_get_flag (object *op, int flag)
1113 ALIAS: flag = 0 1294 ALIAS: flag = 0
1114 1295
1115void cf_object_set_flag (object *op, int flag, int value) 1296void cf_object_set_flag (object *op, int flag, int value)
1116 1297
1117void cf_object_move (object *op, object *originator, int dir) 1298void cf_object_move (object *op, int dir, object *originator = op)
1118 1299
1119void cf_object_apply (object *op, object *author, int flags) 1300void cf_object_apply (object *op, object *author, int flags = 0)
1120 1301
1121void cf_object_apply_below (object *op) 1302void cf_object_apply_below (object *op)
1122 1303
1123void cf_object_remove (object *op) 1304void cf_object_remove (object *op)
1124 1305
1128 1309
1129int cf_object_transfer (object *op, int x, int y, int r, object *orig) 1310int cf_object_transfer (object *op, int x, int y, int r, object *orig)
1130 1311
1131int cf_object_change_map (object *op, int x, int y, mapstruct *map) 1312int cf_object_change_map (object *op, int x, int y, mapstruct *map)
1132 1313
1133object *cf_object_clone (object *op, int clonetype) 1314object *cf_object_clone (object *op, int clonetype = 0)
1134 1315
1135int cf_object_pay_item (object *op, object *buyer) 1316int cf_object_pay_item (object *op, object *buyer)
1136 1317
1137int cf_object_pay_amount (object *op, double amount) 1318int cf_object_pay_amount (object *op, double amount)
1138 1319
1139int cf_object_cast_spell (object *caster, object *ctoo, int dir, object *sp_, char *flags) 1320int cf_object_cast_spell (object *caster, object *ctoo, int dir, object *spell_ob, char *stringarg = 0)
1140 1321
1141int cf_object_cast_ability (object *caster, object *ctoo, int dir, object *sp_, char *flags) 1322int cf_object_cast_ability (object *caster, object *ctoo, int dir, object *sp_, char *stringarg = 0)
1142 1323
1143void cf_object_learn_spell (object *op, object *sp) 1324void cf_object_learn_spell (object *op, object *sp)
1144 1325
1145void cf_object_forget_spell (object *op, object *sp) 1326void cf_object_forget_spell (object *op, object *sp)
1146 1327
1181 1362
1182char *cf_object_get_key (object *op, char *keyname) 1363char *cf_object_get_key (object *op, char *keyname)
1183 ALIAS: key = 0 1364 ALIAS: key = 0
1184 1365
1185void cf_object_set_key (object *op, char *keyname, char *value) 1366void cf_object_set_key (object *op, char *keyname, char *value)
1367
1368object *cf_create_object_by_name (const char *name)
1369
1370MODULE = cf PACKAGE = cf::object PREFIX = cf_
1371
1372void cf_fix_object (object *pl)
1373 ALIAS: fix = 0
1374
1375object *cf_insert_ob_in_ob (object *ob, object *where)
1376
1377# no clean way to get an object from an archetype - stupid idiotic
1378# dumb kludgy misdesigned plug-in api slowly gets on my nerves.
1379
1380object *new (const char *archetype = 0)
1381 PROTOTYPE: ;$
1382 CODE:
1383 RETVAL = archetype ? get_archetype (archetype) : cf_create_object ();
1384 OUTPUT:
1385 RETVAL
1386
1387object *insert_ob_in_map_at (object *ob, mapstruct *where, object_ornull *orig, int flag, int x, int y)
1388 PROTOTYPE: $$$$$$
1389 CODE:
1390{
1391 int unused_type;
1392 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y);
1393}
1394
1395object *get_nearest_player (object *ob)
1396 ALIAS: nearest_player = 0
1397 PREINIT:
1398 extern object *get_nearest_player (object *);
1399
1400void rangevector (object *ob, object *other, int flags = 0)
1401 PROTOTYPE: $$;$
1402 PPCODE:
1403{
1404 rv_vector rv;
1405 get_rangevector (ob, other, &rv, flags);
1406 EXTEND (SP, 5);
1407 PUSHs (newSVuv (rv.distance));
1408 PUSHs (newSViv (rv.distance_x));
1409 PUSHs (newSViv (rv.distance_y));
1410 PUSHs (newSViv (rv.direction));
1411 PUSHs (newSVcfapi (CFAPI_POBJECT, rv.part));
1412}
1413
1414bool on_same_map_as (object *ob, object *other)
1415 CODE:
1416 RETVAL = on_same_map (ob, other);
1417 OUTPUT: RETVAL
1186 1418
1187char * 1419char *
1188base_name (object *ob, int plural) 1420base_name (object *ob, int plural)
1189 CODE: 1421 CODE:
1190 RETVAL = cf_query_base_name (ob, plural); 1422 RETVAL = cf_query_base_name (ob, plural);
1191 OUTPUT: RETVAL 1423 OUTPUT: RETVAL
1192 1424
1193MODULE = cf PACKAGE = cf::object PREFIX = cf_object_
1194
1195object *cf_create_object_by_name (const char *name = 0)
1196 PROTOTYPE: ;$
1197 ALIAS:
1198 create_object = 0
1199 new = 0
1200 CODE:
1201 RETVAL = name ? cf_create_object_by_name (name) : cf_create_object ();
1202 OUTPUT:
1203 RETVAL
1204
1205void cf_fix_object (object *pl)
1206 ALIAS: fix = 0
1207
1208object *cf_insert_ob_in_ob (object *ob, object *where)
1209
1210 1425
1211MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_ 1426MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_
1212 1427
1213player *player (object *op) 1428player *player (object *op)
1214 CODE: 1429 CODE:
1217 1432
1218void cf_player_message (object *obj, char *txt, int flags = NDI_ORANGE | NDI_UNIQUE) 1433void cf_player_message (object *obj, char *txt, int flags = NDI_ORANGE | NDI_UNIQUE)
1219 1434
1220object *cf_player_send_inventory (object *op) 1435object *cf_player_send_inventory (object *op)
1221 1436
1437player *contr (object *op)
1438 CODE:
1439 RETVAL = op->contr;
1440 OUTPUT: RETVAL
1441
1222char *cf_player_get_ip (object *op) 1442char *cf_player_get_ip (object *op)
1223 ALIAS: ip = 0 1443 ALIAS: ip = 0
1224 1444
1225object *cf_player_get_marked_item (object *op) 1445object *cf_player_get_marked_item (object *op)
1226 ALIAS: marked_item = 0 1446 ALIAS: marked_item = 0
1239 1459
1240player *cf_player_find (char *name) 1460player *cf_player_find (char *name)
1241 PROTOTYPE: $ 1461 PROTOTYPE: $
1242 1462
1243void cf_player_move (player *pl, int dir) 1463void cf_player_move (player *pl, int dir)
1464
1465void MapNewmapCmd (player *pl)
1244 1466
1245# nonstandard 1467# nonstandard
1246object *ob (player *pl) 1468object *ob (player *pl)
1247 CODE: 1469 CODE:
1248 RETVAL = pl->ob; 1470 RETVAL = pl->ob;
1249 OUTPUT: RETVAL 1471 OUTPUT: RETVAL
1472
1473player *first ()
1474 CODE:
1475 RETVAL = first_player;
1476 OUTPUT: RETVAL
1477
1478player *next (player *pl)
1479 CODE:
1480 RETVAL = pl->next;
1481 OUTPUT: RETVAL
1482
1483void
1484list ()
1485 PPCODE:
1486{
1487 player *pl;
1488 for (pl = first_player; pl; pl = pl->next)
1489 XPUSHs (newSVcfapi (CFAPI_PPLAYER, pl));
1490}
1250 1491
1251 1492
1252MODULE = cf PACKAGE = cf::map PREFIX = cf_map_ 1493MODULE = cf PACKAGE = cf::map PREFIX = cf_map_
1253 1494
1254SV * 1495SV *
1294object* cf_map_present_arch_by_name (mapstruct *map, const char* str, int nx, int ny) 1535object* cf_map_present_arch_by_name (mapstruct *map, const char* str, int nx, int ny)
1295 C_ARGS: str, map, nx, ny 1536 C_ARGS: str, map, nx, ny
1296 1537
1297#int cf_map_get_flags (mapstruct* map, mapstruct** nmap, I16 x, I16 y, I16 *nx, I16 *ny) 1538#int cf_map_get_flags (mapstruct* map, mapstruct** nmap, I16 x, I16 y, I16 *nx, I16 *ny)
1298 1539
1299SV * 1540void
1300at (mapstruct *obj, unsigned int x, unsigned int y) 1541at (mapstruct *obj, unsigned int x, unsigned int y)
1301 PROTOTYPE: $$$ 1542 PROTOTYPE: $$$
1302 INIT: 1543 INIT:
1303 if (x >= MAP_WIDTH (obj) || y >= MAP_HEIGHT (obj)) XSRETURN_UNDEF; 1544 if (x >= MAP_WIDTH (obj) || y >= MAP_HEIGHT (obj)) XSRETURN_EMPTY;
1304 PPCODE: 1545 PPCODE:
1305{ 1546{
1306 object *o; 1547 object *o;
1548
1307 for (o = GET_MAP_OB (obj, x, y); o; o = o->above) 1549 for (o = GET_MAP_OB (obj, x, y); o; o = o->above)
1308 XPUSHs (newSVcfapi (CFAPI_POBJECT, o)); 1550 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
1309} 1551}
1310 1552
1311SV * 1553SV *
1312bot_at (mapstruct *obj, unsigned int x, unsigned int y) 1554bot_at (mapstruct *obj, unsigned int x, unsigned int y)
1313 PROTOTYPE: $$$ 1555 PROTOTYPE: $$$
1334 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break; 1576 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break;
1335 } 1577 }
1336 OUTPUT: 1578 OUTPUT:
1337 RETVAL 1579 RETVAL
1338 1580
1581# "serialise" map perl data into a ref
1582void
1583_get_obs (mapstruct *map)
1584 PPCODE:
1585{
1586 object *o;
1587 int x, y;
1588 AV *obs = newAV ();
1589 int nonnull = 0;
1590
1591 for (y = 0; y < MAP_HEIGHT (map); y++)
1592 for (x = 0; x < MAP_WIDTH (map); x++)
1593 {
1594 AV *av = newAV ();
1595
1596 for (o = GET_MAP_OB (map, x, y); o; o = o->above)
1597 {
1598 SV *sv = SVptr_cache_get (o);
1599
1600 if (sv && HvFILL (SvRV (sv)))
1601 {
1602 nonnull = 1;
1603 sv = newSVsv (sv);
1604 }
1605 else
1606 sv = &PL_sv_undef;
1607
1608 av_push (av, sv);
1609 }
1610
1611 av_store (obs, x + y * MAP_HEIGHT (map), newRV_noinc ((SV *)av));
1612 }
1613
1614 if (nonnull)
1615 XPUSHs (sv_2mortal (newRV_noinc ((SV *)obs)));
1616 else
1617 SvREFCNT_dec (obs);
1618}
1619
1620# "deserialise" perl map data into the map
1621void
1622_set_obs (mapstruct *map, SV *sv)
1623 CODE:
1624{
1625 object *o;
1626 AV *av;
1627 int x, y;
1628 AV *obs = (AV *)SvRV (sv);
1629
1630 for (y = 0; y < MAP_HEIGHT (map); y++)
1631 for (x = 0; x < MAP_WIDTH (map); x++)
1632 {
1633 sv = *av_fetch (obs, x + y * MAP_HEIGHT (map), 1);
1634
1635 if (!SvROK (sv))
1636 continue;
1637
1638 av = (AV *)SvRV (sv);
1639
1640 for (o = GET_MAP_OB (map, x, y); o; o = o->above)
1641 {
1642 sv = av_shift (av);
1643
1644 if (SvROK (sv))
1645 {
1646 sv_magic ((SV *)SvRV (sv), 0, PERL_MAGIC_ext, (char *)o, 0);
1647 SVptr_cache_set (o, sv);
1648 }
1649 }
1650 }
1651}
1339 1652
1340MODULE = cf PACKAGE = cf::arch PREFIX = cf_archetype_ 1653MODULE = cf PACKAGE = cf::arch PREFIX = cf_archetype_
1341 1654
1342archetype *cf_archetype_get_first() 1655archetype *cf_archetype_get_first()
1343 PROTOTYPE: 1656 PROTOTYPE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines