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.42 by root, Tue Mar 28 16:48:12 2006 UTC vs.
Revision 1.57 by root, Tue Jul 11 15:25:00 2006 UTC

1/*****************************************************************************/ 1/*****************************************************************************/
2/* CrossFire, A Multiplayer game for the X Window System */ 2/* CrossFire, A Multiplayer game for the X Window System */
3/* */
4/*****************************************************************************/ 3/*****************************************************************************/
5 4
6/* 5/*
7 * This code is placed under the GNU General Public Licence (GPL) 6 * This code is placed under the GNU General Public Licence (GPL)
8 * 7 *
29#include <XSUB.h> 28#include <XSUB.h>
30 29
31#undef save_long // clashes with libproto.h 30#undef save_long // clashes with libproto.h
32 31
33#define PLUGIN_NAME "perl" 32#define PLUGIN_NAME "perl"
34#define PLUGIN_VERSION "cfperl 0.2" 33#define PLUGIN_VERSION "cfperl 0.3"
35 34
36#ifndef __CEXTRACT__ 35#ifndef __CEXTRACT__
37#include <plugin.h> 36#include <plugin.h>
38#endif 37#endif
39 38
46#include <plugin_common.h> 45#include <plugin_common.h>
47#include <sounds.h> 46#include <sounds.h>
48 47
49#include <stdarg.h> 48#include <stdarg.h>
50 49
50//#include "EventAPI.h"
51#include "perlxsi.c" 51#include "perlxsi.c"
52 52
53typedef object object_ornull; 53typedef object object_ornull;
54typedef mapstruct mapstruct_ornull; 54typedef mapstruct mapstruct_ornull;
55 55
65typedef struct 65typedef struct
66{ 66{
67 object* who; 67 object* who;
68 object* activator; 68 object* activator;
69 object* third; 69 object* third;
70 object* event;
70 mapstruct* map; 71 mapstruct* map;
71 char message[1024]; 72 char message[1024];
72 int fix; // seems to be python-only, and should not be part of the API 73 int fix; // seems to be python-only, and should not be part of the API
73 int event_code; 74 int event_code;
74 char extension[1024]; // name field, should invoke specific perl extension 75 char extension[1024]; // name field, should invoke specific perl extension
77} CFPContext; 78} CFPContext;
78 79
79static HV *obj_cache; 80static HV *obj_cache;
80static PerlInterpreter *perl; 81static PerlInterpreter *perl;
81 82
83#define PUSHcfapi(type,value) PUSHs (sv_2mortal (newSVcfapi (CFAPI_ ## type, (value))))
82#define PUSHcfapi(type,ctype) PUSHs (sv_2mortal (newSVcfapi ((type), va_arg (args, ctype)))) 84#define PUSHcfapi_va(type,ctype) PUSHcfapi (type, va_arg (args, ctype))
83#define PUSH_OB PUSHcfapi(CFAPI_POBJECT, object *) 85#define PUSH_OB PUSHcfapi_va(POBJECT, object *)
84#define PUSH_PL PUSHcfapi(CFAPI_PPLAYER, player *) 86#define PUSH_PL PUSHcfapi_va(PPLAYER, player *)
85#define PUSH_MAP PUSHcfapi(CFAPI_PMAP, mapstruct *) 87#define PUSH_MAP PUSHcfapi_va(PMAP, mapstruct *)
86#define PUSH_PV PUSHcfapi(CFAPI_STRING, const char *) 88#define PUSH_PV PUSHcfapi_va(STRING, const char *)
87#define PUSH_IV PUSHcfapi(CFAPI_INT, int) 89#define PUSH_IV PUSHs (sv_2mortal (newSViv (va_arg (args, int))))
88 90
89////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 91//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
90 92
91// garbage collect some perl objects, if possible 93// garbage collect some perl objects, if possible
92// all objects no longer referenced and empty are 94// all objects no longer referenced and empty are
228 case CFAPI_LONG: 230 case CFAPI_LONG:
229 sv = newSVnv ((double)*va_arg (args, sint64 *)); /* oh, the humanity! */ 231 sv = newSVnv ((double)*va_arg (args, sint64 *)); /* oh, the humanity! */
230 break; 232 break;
231 233
232 case CFAPI_DOUBLE: 234 case CFAPI_DOUBLE:
233 sv = newSViv (*va_arg (args, double *)); 235 sv = newSVnv (*va_arg (args, double *));
234 break; 236 break;
235 237
236 case CFAPI_STRING: 238 case CFAPI_STRING:
237 { 239 {
238 char *str = va_arg (args, char *); 240 char *str = va_arg (args, char *);
245 object *obj = va_arg (args, object *); 247 object *obj = va_arg (args, object *);
246 248
247 if (!obj) 249 if (!obj)
248 sv = &PL_sv_undef; 250 sv = &PL_sv_undef;
249 else 251 else
250 switch (*(int *)cf_object_get_property (obj, CFAPI_OBJECT_PROP_TYPE)) 252 switch (obj->type)
251 { 253 {
252 case MAP: 254 case MAP:
253 sv = newSVptr_cached (obj, "cf::object::map"); 255 sv = newSVptr_cached (obj, "cf::object::map");
254 break; 256 break;
255 257
291 va_end (args); 293 va_end (args);
292 294
293 return sv; 295 return sv;
294} 296}
295 297
296/////////////////////////////////////////////////////////////////////////////
297
298void
299inject_event (const char *func, CFPContext *context)
300{
301 dSP;
302
303 ENTER;
304 SAVETMPS;
305
306 PUSHMARK (SP);
307
308 EXTEND (SP, 10);
309
310 HV *hv = newHV ();
311#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context->expr), 0)
312 hv_context (CFAPI_POBJECT, ,who);
313 hv_context (CFAPI_POBJECT, ,activator);
314 hv_context (CFAPI_POBJECT, ,third);
315 hv_context (CFAPI_PMAP, ,map);
316 hv_context (CFAPI_STRING , ,message);
317 hv_context (CFAPI_INT ,&,fix);
318 hv_context (CFAPI_INT ,&,event_code);
319 hv_context (CFAPI_STRING , ,options);
320 hv_context (CFAPI_STRING , ,extension);
321
322 PUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
323
324 PUTBACK;
325 int count = call_pv (func, G_SCALAR | G_EVAL);
326 SPAGAIN;
327
328 if (SvTRUE (ERRSV))
329 LOG (llevError, "event '%d' callback evaluation error: %s", context->event_code, SvPV_nolen (ERRSV));
330
331 context->returnvalue = count > 0 ? POPi : 0;
332
333 PUTBACK;
334 FREETMPS;
335 LEAVE;
336}
337
338///////////////////////////////////////////////////////////////////////////// 298/////////////////////////////////////////////////////////////////////////////
339 299
340int 300int
341initPlugin (const char *iversion, f_plug_api gethooksptr) 301initPlugin (const char *iversion, f_plug_api gethooksptr)
342{ 302{
468 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener); 428 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener);
469 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener); 429 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener);
470 registerGlobalEvent (NULL, EVENT_FREE_OB, PLUGIN_NAME, globalEventListener); 430 registerGlobalEvent (NULL, EVENT_FREE_OB, PLUGIN_NAME, globalEventListener);
471 registerGlobalEvent (NULL, EVENT_PLAYER_LOAD, PLUGIN_NAME, globalEventListener); 431 registerGlobalEvent (NULL, EVENT_PLAYER_LOAD, PLUGIN_NAME, globalEventListener);
472 registerGlobalEvent (NULL, EVENT_PLAYER_SAVE, PLUGIN_NAME, globalEventListener); 432 registerGlobalEvent (NULL, EVENT_PLAYER_SAVE, PLUGIN_NAME, globalEventListener);
433 registerGlobalEvent (NULL, EVENT_EXTCMD, PLUGIN_NAME, globalEventListener);
473 434
474 char *argv[] = { 435 char *argv[] = {
475 "", 436 "",
476 "-e" 437 "-e"
477 "BEGIN {" 438 "BEGIN {"
483 }; 444 };
484 445
485 perl = perl_alloc (); 446 perl = perl_alloc ();
486 perl_construct (perl); 447 perl_construct (perl);
487 448
449 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
450
488 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) || perl_run (perl)) 451 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) || perl_run (perl))
489 { 452 {
490 printf ("unable to initialize perl-interpreter, continuing without.\n"); 453 printf ("unable to initialize perl-interpreter, continuing without.\n");
491 454
492 perl_destruct (perl); 455 perl_destruct (perl);
526 if (sv) 489 if (sv)
527 clearSVptr (sv); 490 clearSVptr (sv);
528 491
529 rv = 0; 492 rv = 0;
530 } 493 }
494 else if (event_code == EVENT_CLOCK)
495 {
496 dSP;
497 int i, count;
498
499 clean_obj_cache ();
500
501 ENTER;
502 SAVETMPS;
503
504 // service up to 8 events per tick better would be
505 // to check for elapsed time and stop processing after
506 // 0.25 * server_tick or so
507 for (i = 9; --i; )
508 {
509 PUSHMARK (SP);
510 XPUSHs (sv_2mortal (newSViv (0)));
511 PUTBACK;
512 count = call_pv ("Event::one_event", G_SCALAR | G_EVAL);
513 SPAGAIN;
514
515 if (!count || !POPi)
516 break;
517 }
518
519 FREETMPS;
520 LEAVE;
521 }
531 else 522 else
532 { 523 {
533 dSP; 524 dSP;
534 525
535 ENTER; 526 ENTER;
583 case EVENT_KICK: 574 case EVENT_KICK:
584 PUSH_OB; 575 PUSH_OB;
585 PUSH_PV; 576 PUSH_PV;
586 break; 577 break;
587 578
588 case EVENT_CLOCK: 579 case EVENT_EXTCMD:
589 clean_obj_cache (); 580 PUSH_PL;
581 {
582 char *buf = va_arg (args, char *);
583 int len = va_arg (args, int);
584 PUSHs (sv_2mortal (newSVpvn (buf, len)));
585 }
590 break; 586 break;
591 587
592 case EVENT_TELL: 588 case EVENT_TELL:
593 break; 589 break;
594 } 590 }
598 PUTBACK; 594 PUTBACK;
599 int count = call_pv ("cf::inject_global_event", G_SCALAR | G_EVAL); 595 int count = call_pv ("cf::inject_global_event", G_SCALAR | G_EVAL);
600 SPAGAIN; 596 SPAGAIN;
601 597
602 if (SvTRUE (ERRSV)) 598 if (SvTRUE (ERRSV))
603 LOG (llevError, "event '%d' callback evaluation error: %s", event_code, SvPV_nolen (ERRSV)); 599 LOG (llevError, "global event '%d' callback evaluation error: %s", event_code, SvPV_nolen (ERRSV));
604 600
605 rv = count > 0 ? POPi : 0; 601 rv = count > 0 ? POPi : 0;
606 602
607 PUTBACK; 603 PUTBACK;
608 FREETMPS; 604 FREETMPS;
613} 609}
614 610
615void * 611void *
616eventListener (int *type, ...) 612eventListener (int *type, ...)
617{ 613{
618 static int rv = 0; 614 static int rv;
619 va_list args; 615 va_list args;
620 char *buf; 616 int event_code;
621 CFPContext context; 617 object *who, *activator, *third, *event;
622 object *eob; 618 char *message, *extension, *options;
623 619
624 if (!perl) 620 if (!perl)
625 return; 621 return;
626 622
627 memset (&context, 0, sizeof (context));
628
629 va_start (args, type); 623 va_start (args, type);
630
631 context.who = va_arg (args, object *); 624 who = va_arg (args, object *);
632 context.event_code = va_arg (args, int); 625 event_code = va_arg (args, int);
633 context.activator = va_arg (args, object *); 626 activator = va_arg (args, object *);
634 context.third = va_arg (args, object *); 627 third = va_arg (args, object *);
635
636 buf = va_arg (args, char *); 628 message = va_arg (args, char *);
637 if (buf != 0) 629 va_arg (args, int); // fix yourself
638 strncpy (context.message, buf, sizeof (context.message)); 630 extension = va_arg (args, char *);
639 631 options = va_arg (args, char *);
640 context.fix = va_arg (args, int);
641 strncpy (context.extension, va_arg (args, char *), sizeof (context.extension));
642 strncpy (context.options, va_arg (args, char *), sizeof (context.options));
643 eob = va_arg (args, object *); 632 event = va_arg (args, object *);
644 context.returnvalue = 0;
645 va_end (args); 633 va_end (args);
646 634
647 inject_event ("cf::inject_event", &context); 635 {
636 dSP;
637
638 ENTER;
639 SAVETMPS;
640
641 PUSHMARK (SP);
642 EXTEND (SP, 10);
643
644 PUSHcfapi (STRING, extension);
645 PUSHs (sv_2mortal (newSViv (event_code)));
646
647 PUSHcfapi (POBJECT, event);
648 PUSHcfapi (POBJECT, who);
649
650 switch (event_code)
651 {
652 case EVENT_STOP: // $ob (e.g. arrow)
653 case EVENT_TIME: // $ob
654 case EVENT_TIMER: // $ob
655 break;
656
657 case EVENT_APPLY: // $ob, $who
658 case EVENT_DROP: // $ob, $who
659 case EVENT_CLOSE: // $ob, $who
660 case EVENT_DEATH: // $ob[, $killer]
661 case EVENT_MOVE: // $ob, $enemy
662 case EVENT_THROW: // $ob, $thrower
663 PUSHcfapi (POBJECT, activator);
664 break;
665
666 case EVENT_ATTACK: // $ob, $who, $victim (?? please god enlighten me)
667 PUSHcfapi (POBJECT, activator);
668 PUSHcfapi (POBJECT, third);
669 break;
670
671 case EVENT_TRIGGER: // $ob, $originator, [$victim], [$msg]
672 PUSHcfapi (POBJECT, activator);
673 PUSHcfapi (POBJECT, third);
674 PUSHcfapi (POBJECT, message);
675 break;
676
677 case EVENT_SAY: // $ob, $who, $msg
678 PUSHcfapi (POBJECT, activator);
679 PUSHcfapi (STRING, message);
680 break;
681
682 default:
683 LOG (llevError, "perl plugin called for unsupported event type %d", event_code);
684 break;
685 }
686
687 PUTBACK;
688 int count = call_pv ("cf::inject_event", G_SCALAR | G_EVAL);
689 SPAGAIN;
690
691 if (SvTRUE (ERRSV))
692 LOG (llevError, "event '%d' callback evaluation error: %s", event_code, SvPV_nolen (ERRSV));
693
694 rv = count > 0 ? POPi : 0;
695
696 PUTBACK;
697 FREETMPS;
698 LEAVE;
699 }
648 700
649 rv = context.returnvalue;
650 return &rv; 701 return &rv;
651} 702}
652 703
653int 704int
654closePlugin () 705closePlugin ()
1074 const_iv (SK_SUMMONING) 1125 const_iv (SK_SUMMONING)
1075 const_iv (SK_PYROMANCY) 1126 const_iv (SK_PYROMANCY)
1076 const_iv (SK_EVOCATION) 1127 const_iv (SK_EVOCATION)
1077 const_iv (SK_SORCERY) 1128 const_iv (SK_SORCERY)
1078 const_iv (SK_TWO_HANDED_WEAPON) 1129 const_iv (SK_TWO_HANDED_WEAPON)
1130 const_iv (SK_SPARK_TOUCH)
1131 const_iv (SK_SHIVER)
1132 const_iv (SK_ACID_SPLASH)
1133 const_iv (SK_POISON_NAIL)
1079 1134
1080 const_iv (SOUND_NEW_PLAYER) 1135 const_iv (SOUND_NEW_PLAYER)
1081 const_iv (SOUND_FIRE_ARROW) 1136 const_iv (SOUND_FIRE_ARROW)
1082 const_iv (SOUND_LEARN_SPELL) 1137 const_iv (SOUND_LEARN_SPELL)
1083 const_iv (SOUND_FUMBLE_SPELL) 1138 const_iv (SOUND_FUMBLE_SPELL)
1099 const_iv (SOUND_CLOCK) 1154 const_iv (SOUND_CLOCK)
1100 const_iv (SOUND_TURN_HANDLE) 1155 const_iv (SOUND_TURN_HANDLE)
1101 const_iv (SOUND_FALL_HOLE) 1156 const_iv (SOUND_FALL_HOLE)
1102 const_iv (SOUND_DRINK_POISON) 1157 const_iv (SOUND_DRINK_POISON)
1103 const_iv (SOUND_CAST_SPELL_0) 1158 const_iv (SOUND_CAST_SPELL_0)
1159
1160 const_iv (MAP_FLUSH)
1161 const_iv (MAP_PLAYER_UNIQUE)
1162 const_iv (MAP_BLOCK)
1163 const_iv (MAP_STYLE)
1164 const_iv (MAP_OVERLAY)
1165
1166 const_iv (MAP_IN_MEMORY)
1167 const_iv (MAP_SWAPPED)
1168 const_iv (MAP_LOADING)
1169 const_iv (MAP_SAVING)
1104 }; 1170 };
1105 1171
1106 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1172 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1107 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1173 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1108 1174
1125 const_event (CLOSE) 1191 const_event (CLOSE)
1126 const_event (TIMER) 1192 const_event (TIMER)
1127 const_event (MOVE) 1193 const_event (MOVE)
1128 1194
1129 const_event (BORN) 1195 const_event (BORN)
1130 const_event (CLOCK) 1196 //const_event (CLOCK)
1131 const_event (CRASH) 1197 const_event (CRASH)
1132 const_event (PLAYER_DEATH) 1198 const_event (PLAYER_DEATH)
1133 const_event (PLAYER_LOAD) 1199 const_event (PLAYER_LOAD)
1134 const_event (PLAYER_SAVE) 1200 const_event (PLAYER_SAVE)
1135 const_event (GKILL) 1201 const_event (GKILL)
1145 const_event (REMOVE) 1211 const_event (REMOVE)
1146 const_event (SHOUT) 1212 const_event (SHOUT)
1147 const_event (TELL) 1213 const_event (TELL)
1148 const_event (MUZZLE) 1214 const_event (MUZZLE)
1149 const_event (KICK) 1215 const_event (KICK)
1216 const_event (EXTCMD)
1150 //const_event (FREE_OB) 1217 //const_event (FREE_OB)
1151 }; 1218 };
1152 1219
1153 AV *av = get_av ("cf::EVENT", 1); 1220 AV *av = get_av ("cf::EVENT", 1);
1154 1221
1288 for (cprop = prop_table + sizeof (prop_table) / sizeof (prop_table [0]); cprop-- > prop_table; ) 1355 for (cprop = prop_table + sizeof (prop_table) / sizeof (prop_table [0]); cprop-- > prop_table; )
1289 { 1356 {
1290 hv_store (prop_type, cprop->name, strlen (cprop->name), newSViv (cprop->dtype), 0); 1357 hv_store (prop_type, cprop->name, strlen (cprop->name), newSViv (cprop->dtype), 0);
1291 hv_store (prop_idx, cprop->name, strlen (cprop->name), newSViv (cprop->idx ), 0); 1358 hv_store (prop_idx, cprop->name, strlen (cprop->name), newSViv (cprop->idx ), 0);
1292 } 1359 }
1360
1361 //I_EVENT_API (PACKAGE);
1293} 1362}
1294 1363
1295void 1364void
1296LOG (int level, char *msg) 1365LOG (int level, char *msg)
1297 PROTOTYPE: $$ 1366 PROTOTYPE: $$
1298 C_ARGS: level, "%s", msg 1367 C_ARGS: level, "%s", msg
1368
1369char *path_combine (char *base, char *path)
1370 PROTOTYPE: $$
1371
1372char *path_combine_and_normalize (char *base, char *path)
1373 PROTOTYPE: $$
1299 1374
1300char * 1375char *
1301cf_get_maps_directory (char *path) 1376cf_get_maps_directory (char *path)
1302 PROTOTYPE: $ 1377 PROTOTYPE: $
1303 ALIAS: maps_directory = 0 1378 ALIAS: maps_directory = 0
1472 1547
1473void cf_object_update (object *op, int flags) 1548void cf_object_update (object *op, int flags)
1474 1549
1475void cf_object_pickup (object *op, object *what) 1550void cf_object_pickup (object *op, object *what)
1476 1551
1477char *cf_object_get_key (object *op, char *keyname)
1478 ALIAS: key = 0
1479
1480void cf_object_set_key (object *op, char *keyname, char *value)
1481
1482object *cf_create_object_by_name (const char *name) 1552object *cf_create_object_by_name (const char *name)
1483 1553
1484void change_exp (object *op, double exp, const char *skill_name = 0, int flag = 0) 1554void change_exp (object *op, double exp, const char *skill_name = 0, int flag = 0)
1485 1555
1486void player_lvl_adj (object *who, object *skill = 0) 1556void player_lvl_adj (object *who, object *skill = 0)
1487 1557
1558int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL)
1488 1559
1489MODULE = cf PACKAGE = cf::object PREFIX = cf_ 1560MODULE = cf PACKAGE = cf::object PREFIX = cf_
1490 1561
1491void cf_fix_object (object *pl) 1562void cf_fix_object (object *pl)
1492 ALIAS: fix = 0 1563 ALIAS: fix = 0
1508 CODE: 1579 CODE:
1509{ 1580{
1510 int unused_type; 1581 int unused_type;
1511 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y); 1582 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y);
1512} 1583}
1584
1585# syntatic sugar for easier use in event callbacks.
1586const char *options (object *op)
1587 CODE:
1588 RETVAL = op->name;
1589 OUTPUT:
1590 RETVAL
1513 1591
1514const char *get_ob_key_value (object *op, const char *key) 1592const char *get_ob_key_value (object *op, const char *key)
1515 1593
1516bool set_ob_key_value (object *op, const char *key, const char *value = 0, int add_key = 1) 1594bool set_ob_key_value (object *op, const char *key, const char *value = 0, int add_key = 1)
1517 1595
1554 1632
1555MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_ 1633MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_
1556 1634
1557player *player (object *op) 1635player *player (object *op)
1558 CODE: 1636 CODE:
1559 RETVAL = cf_player_find (cf_query_name (op)); 1637 RETVAL = op->contr;
1560 OUTPUT: RETVAL 1638 OUTPUT: RETVAL
1561 1639
1562void cf_player_message (object *obj, char *txt, int flags = NDI_ORANGE | NDI_UNIQUE) 1640void cf_player_message (object *obj, char *txt, int flags = NDI_ORANGE | NDI_UNIQUE)
1563 1641
1564object *cf_player_send_inventory (object *op) 1642object *cf_player_send_inventory (object *op)
1581 1659
1582void cf_player_set_party (object *op, partylist *party) 1660void cf_player_set_party (object *op, partylist *party)
1583 1661
1584void change_skill (object *op, double exp, char *skill_name = 0, int flag = 0) 1662void change_skill (object *op, double exp, char *skill_name = 0, int flag = 0)
1585 1663
1664void kill_player (object *op)
1665
1586MODULE = cf PACKAGE = cf::object::map PREFIX = cf_ 1666MODULE = cf PACKAGE = cf::object::map PREFIX = cf_
1587 1667
1588MODULE = cf PACKAGE = cf::player PREFIX = cf_player_ 1668MODULE = cf PACKAGE = cf::player PREFIX = cf_player_
1589 1669
1590player *cf_player_find (char *name) 1670player *cf_player_find (char *name)
1609 1689
1610player *next (player *pl) 1690player *next (player *pl)
1611 CODE: 1691 CODE:
1612 RETVAL = pl->next; 1692 RETVAL = pl->next;
1613 OUTPUT: RETVAL 1693 OUTPUT: RETVAL
1694
1695bool
1696cell_visible (player *pl, int dx, int dy)
1697 CODE:
1698 RETVAL = FABS (dx) <= pl->socket.mapx / 2 && FABS (dy) <= pl->socket.mapy / 2
1699 && !pl->blocked_los [dx + pl->socket.mapx / 2][dy + pl->socket.mapy / 2];
1700 OUTPUT:
1701 RETVAL
1702
1703void
1704send (player *pl, SV *packet)
1705 CODE:
1706{
1707 STRLEN len;
1708 char *buf = SvPVbyte (packet, len);
1709
1710 Write_String_To_Socket (&pl->socket, buf, len);
1711}
1712
1713int
1714listening (player *pl, int new_value = -1)
1715 CODE:
1716 RETVAL = pl->listening;
1717 if (new_value >= 0)
1718 pl->listening = new_value;
1719 OUTPUT:
1720 RETVAL
1614 1721
1615void get_savebed (player *pl) 1722void get_savebed (player *pl)
1616 ALIAS: 1723 ALIAS:
1617 savebed = 0 1724 savebed = 0
1618 PPCODE: 1725 PPCODE:
1634 player *pl; 1741 player *pl;
1635 for (pl = first_player; pl; pl = pl->next) 1742 for (pl = first_player; pl; pl = pl->next)
1636 XPUSHs (newSVcfapi (CFAPI_PPLAYER, pl)); 1743 XPUSHs (newSVcfapi (CFAPI_PPLAYER, pl));
1637} 1744}
1638 1745
1746bool
1747peaceful (player *pl, bool new_setting = 0)
1748 PROTOTYPE: $;$
1749 CODE:
1750 RETVAL = pl->peaceful;
1751 if (items > 1)
1752 pl->peaceful = new_setting;
1753 OUTPUT:
1754 RETVAL
1755
1639living * 1756living *
1640orig_stats (player *pl) 1757orig_stats (player *pl)
1641 CODE: 1758 CODE:
1642 RETVAL = &pl->orig_stats; 1759 RETVAL = &pl->orig_stats;
1643 OUTPUT: RETVAL 1760 OUTPUT: RETVAL
1683 1800
1684void clean_tmp_map (mapstruct *map) 1801void clean_tmp_map (mapstruct *map)
1685 1802
1686void play_sound_map (mapstruct *map, int x, int y, int sound_num) 1803void play_sound_map (mapstruct *map, int x, int y, int sound_num)
1687 1804
1805mapstruct *tile_map (mapstruct *map, unsigned int dir)
1806 CODE:
1807 RETVAL = dir < 4 ? map->tile_map [dir] : 0;
1808 OUTPUT:
1809 RETVAL
1810
1811char *tile_path (mapstruct *map, unsigned int dir)
1812 CODE:
1813 if (dir >= 4)
1814 XSRETURN_UNDEF;
1815 RETVAL = map->tile_path [dir];
1816 OUTPUT:
1817 RETVAL
1818
1688mapstruct *cf_map_get_map (char *name) 1819mapstruct *cf_map_get_map (char *name)
1689 PROTOTYPE: $ 1820 PROTOTYPE: $
1690 ALIAS: map = 0 1821 ALIAS: map = 0
1691 1822
1823mapstruct *has_been_loaded (char *name)
1824 PROTOTYPE: $
1825
1692mapstruct *cf_map_get_first () 1826mapstruct *cf_map_get_first ()
1693 PROTOTYPE: 1827 PROTOTYPE:
1694 ALIAS: first = 0 1828 ALIAS: first = 0
1695 1829
1696# whoever "designed" the plug-in api should have wasted 1830# whoever "designed" the plug-in api should have wasted
1697# his/her time with staying away form the project - would have 1831# his/her time with staying away from the project - would have
1698# saved others a lot of time, without doubt. 1832# saved others a lot of time, without doubt.
1699void set_path (mapstruct *where, char *path) 1833void set_path (mapstruct *where, char *path)
1700 CODE: 1834 CODE:
1701 strcpy (where->path, path); 1835 strcpy (where->path, path);
1836
1837int in_memory (mapstruct *map)
1838 CODE:
1839 RETVAL = map->in_memory;
1840 OUTPUT:
1841 RETVAL
1702 1842
1703bool unique (mapstruct *map) 1843bool unique (mapstruct *map)
1704 CODE: 1844 CODE:
1705 RETVAL = map->unique; 1845 RETVAL = map->unique;
1706 OUTPUT: 1846 OUTPUT:
1715object *cf_map_insert_object (mapstruct *where, object* op, int x, int y) 1855object *cf_map_insert_object (mapstruct *where, object* op, int x, int y)
1716 1856
1717object* cf_map_present_arch_by_name (mapstruct *map, const char* str, int nx, int ny) 1857object* cf_map_present_arch_by_name (mapstruct *map, const char* str, int nx, int ny)
1718 C_ARGS: str, map, nx, ny 1858 C_ARGS: str, map, nx, ny
1719 1859
1720#int cf_map_get_flags (mapstruct* map, mapstruct** nmap, I16 x, I16 y, I16 *nx, I16 *ny)
1721
1722void 1860void
1861cf_map_normalise (mapstruct *map, int x, int y)
1862 PPCODE:
1863{
1864 mapstruct *nmap = 0;
1865 I16 nx = 0, ny = 0;
1866 int flags = cf_map_get_flags (map, &nmap, x, y, &nx, &ny);
1867
1868 EXTEND (SP, 4);
1869 PUSHs (sv_2mortal (newSViv (flags)));
1870
1871 if (GIMME_V == G_ARRAY)
1872 {
1873 PUSHs (sv_2mortal (newSVcfapi (CFAPI_PMAP, nmap)));
1874 PUSHs (sv_2mortal (newSViv (nx)));
1875 PUSHs (sv_2mortal (newSViv (ny)));
1876 }
1877}
1878
1879void
1723at (mapstruct *obj, unsigned int x, unsigned int y) 1880at (mapstruct *map, unsigned int x, unsigned int y)
1724 PROTOTYPE: $$$ 1881 PROTOTYPE: $$$
1725 INIT:
1726 if (x >= MAP_WIDTH (obj) || y >= MAP_HEIGHT (obj)) XSRETURN_EMPTY;
1727 PPCODE: 1882 PPCODE:
1728{ 1883{
1729 object *o; 1884 object *o;
1730 1885 mapstruct *nmap = 0;
1886 I16 nx, ny;
1887
1888 cf_map_get_flags (map, &nmap, x, y, &nx, &ny);
1889
1890 if (nmap)
1731 for (o = GET_MAP_OB (obj, x, y); o; o = o->above) 1891 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above)
1732 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 1892 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
1733} 1893}
1734 1894
1735SV * 1895SV *
1736bot_at (mapstruct *obj, unsigned int x, unsigned int y) 1896bot_at (mapstruct *obj, unsigned int x, unsigned int y)
1737 PROTOTYPE: $$$ 1897 PROTOTYPE: $$$

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines