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.45 by root, Fri Mar 31 20:59:17 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
78} CFPContext; 78} CFPContext;
79 79
80static HV *obj_cache; 80static HV *obj_cache;
81static PerlInterpreter *perl; 81static PerlInterpreter *perl;
82 82
83#define PUSHcfapi(type,value) PUSHs (sv_2mortal (newSVcfapi (CFAPI_ ## type, (value))))
83#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))
84#define PUSH_OB PUSHcfapi(CFAPI_POBJECT, object *) 85#define PUSH_OB PUSHcfapi_va(POBJECT, object *)
85#define PUSH_PL PUSHcfapi(CFAPI_PPLAYER, player *) 86#define PUSH_PL PUSHcfapi_va(PPLAYER, player *)
86#define PUSH_MAP PUSHcfapi(CFAPI_PMAP, mapstruct *) 87#define PUSH_MAP PUSHcfapi_va(PMAP, mapstruct *)
87#define PUSH_PV PUSHcfapi(CFAPI_STRING, const char *) 88#define PUSH_PV PUSHcfapi_va(STRING, const char *)
88#define PUSH_IV PUSHcfapi(CFAPI_INT, int) 89#define PUSH_IV PUSHs (sv_2mortal (newSViv (va_arg (args, int))))
89 90
90////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 91//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
91 92
92// garbage collect some perl objects, if possible 93// garbage collect some perl objects, if possible
93// all objects no longer referenced and empty are 94// all objects no longer referenced and empty are
229 case CFAPI_LONG: 230 case CFAPI_LONG:
230 sv = newSVnv ((double)*va_arg (args, sint64 *)); /* oh, the humanity! */ 231 sv = newSVnv ((double)*va_arg (args, sint64 *)); /* oh, the humanity! */
231 break; 232 break;
232 233
233 case CFAPI_DOUBLE: 234 case CFAPI_DOUBLE:
234 sv = newSViv (*va_arg (args, double *)); 235 sv = newSVnv (*va_arg (args, double *));
235 break; 236 break;
236 237
237 case CFAPI_STRING: 238 case CFAPI_STRING:
238 { 239 {
239 char *str = va_arg (args, char *); 240 char *str = va_arg (args, char *);
246 object *obj = va_arg (args, object *); 247 object *obj = va_arg (args, object *);
247 248
248 if (!obj) 249 if (!obj)
249 sv = &PL_sv_undef; 250 sv = &PL_sv_undef;
250 else 251 else
251 switch (*(int *)cf_object_get_property (obj, CFAPI_OBJECT_PROP_TYPE)) 252 switch (obj->type)
252 { 253 {
253 case MAP: 254 case MAP:
254 sv = newSVptr_cached (obj, "cf::object::map"); 255 sv = newSVptr_cached (obj, "cf::object::map");
255 break; 256 break;
256 257
427 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener); 428 registerGlobalEvent (NULL, EVENT_MUZZLE, PLUGIN_NAME, globalEventListener);
428 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener); 429 registerGlobalEvent (NULL, EVENT_KICK, PLUGIN_NAME, globalEventListener);
429 registerGlobalEvent (NULL, EVENT_FREE_OB, PLUGIN_NAME, globalEventListener); 430 registerGlobalEvent (NULL, EVENT_FREE_OB, PLUGIN_NAME, globalEventListener);
430 registerGlobalEvent (NULL, EVENT_PLAYER_LOAD, PLUGIN_NAME, globalEventListener); 431 registerGlobalEvent (NULL, EVENT_PLAYER_LOAD, PLUGIN_NAME, globalEventListener);
431 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);
432 434
433 char *argv[] = { 435 char *argv[] = {
434 "", 436 "",
435 "-e" 437 "-e"
436 "BEGIN {" 438 "BEGIN {"
442 }; 444 };
443 445
444 perl = perl_alloc (); 446 perl = perl_alloc ();
445 perl_construct (perl); 447 perl_construct (perl);
446 448
449 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
450
447 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))
448 { 452 {
449 printf ("unable to initialize perl-interpreter, continuing without.\n"); 453 printf ("unable to initialize perl-interpreter, continuing without.\n");
450 454
451 perl_destruct (perl); 455 perl_destruct (perl);
485 if (sv) 489 if (sv)
486 clearSVptr (sv); 490 clearSVptr (sv);
487 491
488 rv = 0; 492 rv = 0;
489 } 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 }
490 else 522 else
491 { 523 {
492 dSP; 524 dSP;
493 525
494 ENTER; 526 ENTER;
542 case EVENT_KICK: 574 case EVENT_KICK:
543 PUSH_OB; 575 PUSH_OB;
544 PUSH_PV; 576 PUSH_PV;
545 break; 577 break;
546 578
547 case EVENT_CLOCK: 579 case EVENT_EXTCMD:
548 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 }
549 break; 586 break;
550 587
551 case EVENT_TELL: 588 case EVENT_TELL:
552 break; 589 break;
553 } 590 }
557 PUTBACK; 594 PUTBACK;
558 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);
559 SPAGAIN; 596 SPAGAIN;
560 597
561 if (SvTRUE (ERRSV)) 598 if (SvTRUE (ERRSV))
562 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));
563 600
564 rv = count > 0 ? POPi : 0; 601 rv = count > 0 ? POPi : 0;
565 602
566 PUTBACK; 603 PUTBACK;
567 FREETMPS; 604 FREETMPS;
572} 609}
573 610
574void * 611void *
575eventListener (int *type, ...) 612eventListener (int *type, ...)
576{ 613{
577 static int rv = 0; 614 static int rv;
578 va_list args; 615 va_list args;
579 char *buf; 616 int event_code;
580 CFPContext context; 617 object *who, *activator, *third, *event;
618 char *message, *extension, *options;
581 619
582 if (!perl) 620 if (!perl)
583 return; 621 return;
584 622
585 memset (&context, 0, sizeof (context));
586
587 va_start (args, type); 623 va_start (args, type);
588
589 context.who = va_arg (args, object *); 624 who = va_arg (args, object *);
590 context.event_code = va_arg (args, int); 625 event_code = va_arg (args, int);
591 context.activator = va_arg (args, object *); 626 activator = va_arg (args, object *);
592 context.third = va_arg (args, object *); 627 third = va_arg (args, object *);
593
594 buf = va_arg (args, char *); 628 message = va_arg (args, char *);
595 if (buf != 0) 629 va_arg (args, int); // fix yourself
596 strncpy (context.message, buf, sizeof (context.message)); 630 extension = va_arg (args, char *);
597 631 options = va_arg (args, char *);
598 context.fix = va_arg (args, int);
599 strncpy (context.extension, va_arg (args, char *), sizeof (context.extension));
600 strncpy (context.options, va_arg (args, char *), sizeof (context.options));
601 context.event = va_arg (args, object *); 632 event = va_arg (args, object *);
602 va_end (args); 633 va_end (args);
603 634
604 { 635 {
605 dSP; 636 dSP;
606 637
607 ENTER; 638 ENTER;
608 SAVETMPS; 639 SAVETMPS;
609 640
610 PUSHMARK (SP); 641 PUSHMARK (SP);
611
612 EXTEND (SP, 10); 642 EXTEND (SP, 10);
613 643
614 HV *hv = newHV (); 644 PUSHcfapi (STRING, extension);
615#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context.expr), 0) 645 PUSHs (sv_2mortal (newSViv (event_code)));
616 hv_context (CFAPI_POBJECT, ,who);
617 hv_context (CFAPI_POBJECT, ,activator);
618 hv_context (CFAPI_POBJECT, ,third);
619 hv_context (CFAPI_POBJECT, ,event);
620 hv_context (CFAPI_PMAP, ,map);
621 hv_context (CFAPI_STRING , ,message);
622 hv_context (CFAPI_INT ,&,fix);
623 hv_context (CFAPI_INT ,&,event_code);
624 hv_context (CFAPI_STRING , ,options);
625 hv_context (CFAPI_STRING , ,extension);
626 646
627 PUSHs (sv_2mortal (newRV_noinc ((SV *)hv))); 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 }
628 686
629 PUTBACK; 687 PUTBACK;
630 int count = call_pv ("cf::inject_event", G_SCALAR | G_EVAL); 688 int count = call_pv ("cf::inject_event", G_SCALAR | G_EVAL);
631 SPAGAIN; 689 SPAGAIN;
632 690
633 if (SvTRUE (ERRSV)) 691 if (SvTRUE (ERRSV))
634 LOG (llevError, "event '%d' callback evaluation error: %s", context.event_code, SvPV_nolen (ERRSV)); 692 LOG (llevError, "event '%d' callback evaluation error: %s", event_code, SvPV_nolen (ERRSV));
635 693
636 context.returnvalue = count > 0 ? POPi : 0; 694 rv = count > 0 ? POPi : 0;
637 695
638 PUTBACK; 696 PUTBACK;
639 FREETMPS; 697 FREETMPS;
640 LEAVE; 698 LEAVE;
641 } 699 }
642 700
643 rv = context.returnvalue;
644 return &rv; 701 return &rv;
645} 702}
646 703
647int 704int
648closePlugin () 705closePlugin ()
1068 const_iv (SK_SUMMONING) 1125 const_iv (SK_SUMMONING)
1069 const_iv (SK_PYROMANCY) 1126 const_iv (SK_PYROMANCY)
1070 const_iv (SK_EVOCATION) 1127 const_iv (SK_EVOCATION)
1071 const_iv (SK_SORCERY) 1128 const_iv (SK_SORCERY)
1072 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)
1073 1134
1074 const_iv (SOUND_NEW_PLAYER) 1135 const_iv (SOUND_NEW_PLAYER)
1075 const_iv (SOUND_FIRE_ARROW) 1136 const_iv (SOUND_FIRE_ARROW)
1076 const_iv (SOUND_LEARN_SPELL) 1137 const_iv (SOUND_LEARN_SPELL)
1077 const_iv (SOUND_FUMBLE_SPELL) 1138 const_iv (SOUND_FUMBLE_SPELL)
1093 const_iv (SOUND_CLOCK) 1154 const_iv (SOUND_CLOCK)
1094 const_iv (SOUND_TURN_HANDLE) 1155 const_iv (SOUND_TURN_HANDLE)
1095 const_iv (SOUND_FALL_HOLE) 1156 const_iv (SOUND_FALL_HOLE)
1096 const_iv (SOUND_DRINK_POISON) 1157 const_iv (SOUND_DRINK_POISON)
1097 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)
1098 }; 1170 };
1099 1171
1100 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; )
1101 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1173 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1102 1174
1119 const_event (CLOSE) 1191 const_event (CLOSE)
1120 const_event (TIMER) 1192 const_event (TIMER)
1121 const_event (MOVE) 1193 const_event (MOVE)
1122 1194
1123 const_event (BORN) 1195 const_event (BORN)
1124 const_event (CLOCK) 1196 //const_event (CLOCK)
1125 const_event (CRASH) 1197 const_event (CRASH)
1126 const_event (PLAYER_DEATH) 1198 const_event (PLAYER_DEATH)
1127 const_event (PLAYER_LOAD) 1199 const_event (PLAYER_LOAD)
1128 const_event (PLAYER_SAVE) 1200 const_event (PLAYER_SAVE)
1129 const_event (GKILL) 1201 const_event (GKILL)
1139 const_event (REMOVE) 1211 const_event (REMOVE)
1140 const_event (SHOUT) 1212 const_event (SHOUT)
1141 const_event (TELL) 1213 const_event (TELL)
1142 const_event (MUZZLE) 1214 const_event (MUZZLE)
1143 const_event (KICK) 1215 const_event (KICK)
1216 const_event (EXTCMD)
1144 //const_event (FREE_OB) 1217 //const_event (FREE_OB)
1145 }; 1218 };
1146 1219
1147 AV *av = get_av ("cf::EVENT", 1); 1220 AV *av = get_av ("cf::EVENT", 1);
1148 1221
1282 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; )
1283 { 1356 {
1284 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);
1285 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);
1286 } 1359 }
1360
1361 //I_EVENT_API (PACKAGE);
1287} 1362}
1288 1363
1289void 1364void
1290LOG (int level, char *msg) 1365LOG (int level, char *msg)
1291 PROTOTYPE: $$ 1366 PROTOTYPE: $$
1292 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: $$
1293 1374
1294char * 1375char *
1295cf_get_maps_directory (char *path) 1376cf_get_maps_directory (char *path)
1296 PROTOTYPE: $ 1377 PROTOTYPE: $
1297 ALIAS: maps_directory = 0 1378 ALIAS: maps_directory = 0
1466 1547
1467void cf_object_update (object *op, int flags) 1548void cf_object_update (object *op, int flags)
1468 1549
1469void cf_object_pickup (object *op, object *what) 1550void cf_object_pickup (object *op, object *what)
1470 1551
1471char *cf_object_get_key (object *op, char *keyname)
1472 ALIAS: key = 0
1473
1474void cf_object_set_key (object *op, char *keyname, char *value)
1475
1476object *cf_create_object_by_name (const char *name) 1552object *cf_create_object_by_name (const char *name)
1477 1553
1478void 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)
1479 1555
1480void player_lvl_adj (object *who, object *skill = 0) 1556void player_lvl_adj (object *who, object *skill = 0)
1481 1557
1558int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL)
1482 1559
1483MODULE = cf PACKAGE = cf::object PREFIX = cf_ 1560MODULE = cf PACKAGE = cf::object PREFIX = cf_
1484 1561
1485void cf_fix_object (object *pl) 1562void cf_fix_object (object *pl)
1486 ALIAS: fix = 0 1563 ALIAS: fix = 0
1502 CODE: 1579 CODE:
1503{ 1580{
1504 int unused_type; 1581 int unused_type;
1505 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);
1506} 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
1507 1591
1508const char *get_ob_key_value (object *op, const char *key) 1592const char *get_ob_key_value (object *op, const char *key)
1509 1593
1510bool 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)
1511 1595
1548 1632
1549MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_ 1633MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_
1550 1634
1551player *player (object *op) 1635player *player (object *op)
1552 CODE: 1636 CODE:
1553 RETVAL = cf_player_find (cf_query_name (op)); 1637 RETVAL = op->contr;
1554 OUTPUT: RETVAL 1638 OUTPUT: RETVAL
1555 1639
1556void 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)
1557 1641
1558object *cf_player_send_inventory (object *op) 1642object *cf_player_send_inventory (object *op)
1575 1659
1576void cf_player_set_party (object *op, partylist *party) 1660void cf_player_set_party (object *op, partylist *party)
1577 1661
1578void 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)
1579 1663
1664void kill_player (object *op)
1665
1580MODULE = cf PACKAGE = cf::object::map PREFIX = cf_ 1666MODULE = cf PACKAGE = cf::object::map PREFIX = cf_
1581 1667
1582MODULE = cf PACKAGE = cf::player PREFIX = cf_player_ 1668MODULE = cf PACKAGE = cf::player PREFIX = cf_player_
1583 1669
1584player *cf_player_find (char *name) 1670player *cf_player_find (char *name)
1603 1689
1604player *next (player *pl) 1690player *next (player *pl)
1605 CODE: 1691 CODE:
1606 RETVAL = pl->next; 1692 RETVAL = pl->next;
1607 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
1608 1721
1609void get_savebed (player *pl) 1722void get_savebed (player *pl)
1610 ALIAS: 1723 ALIAS:
1611 savebed = 0 1724 savebed = 0
1612 PPCODE: 1725 PPCODE:
1687 1800
1688void clean_tmp_map (mapstruct *map) 1801void clean_tmp_map (mapstruct *map)
1689 1802
1690void 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)
1691 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
1692mapstruct *cf_map_get_map (char *name) 1819mapstruct *cf_map_get_map (char *name)
1693 PROTOTYPE: $ 1820 PROTOTYPE: $
1694 ALIAS: map = 0 1821 ALIAS: map = 0
1695 1822
1823mapstruct *has_been_loaded (char *name)
1824 PROTOTYPE: $
1825
1696mapstruct *cf_map_get_first () 1826mapstruct *cf_map_get_first ()
1697 PROTOTYPE: 1827 PROTOTYPE:
1698 ALIAS: first = 0 1828 ALIAS: first = 0
1699 1829
1700# whoever "designed" the plug-in api should have wasted 1830# whoever "designed" the plug-in api should have wasted
1701# his/her time with staying away form the project - would have 1831# his/her time with staying away from the project - would have
1702# saved others a lot of time, without doubt. 1832# saved others a lot of time, without doubt.
1703void set_path (mapstruct *where, char *path) 1833void set_path (mapstruct *where, char *path)
1704 CODE: 1834 CODE:
1705 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
1706 1842
1707bool unique (mapstruct *map) 1843bool unique (mapstruct *map)
1708 CODE: 1844 CODE:
1709 RETVAL = map->unique; 1845 RETVAL = map->unique;
1710 OUTPUT: 1846 OUTPUT:
1719object *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)
1720 1856
1721object* 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)
1722 C_ARGS: str, map, nx, ny 1858 C_ARGS: str, map, nx, ny
1723 1859
1724#int cf_map_get_flags (mapstruct* map, mapstruct** nmap, I16 x, I16 y, I16 *nx, I16 *ny)
1725
1726void 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
1727at (mapstruct *obj, unsigned int x, unsigned int y) 1880at (mapstruct *map, unsigned int x, unsigned int y)
1728 PROTOTYPE: $$$ 1881 PROTOTYPE: $$$
1729 INIT:
1730 if (x >= MAP_WIDTH (obj) || y >= MAP_HEIGHT (obj)) XSRETURN_EMPTY;
1731 PPCODE: 1882 PPCODE:
1732{ 1883{
1733 object *o; 1884 object *o;
1734 1885 mapstruct *nmap = 0;
1886 I16 nx, ny;
1887
1888 cf_map_get_flags (map, &nmap, x, y, &nx, &ny);
1889
1890 if (nmap)
1735 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)
1736 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 1892 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o)));
1737} 1893}
1738 1894
1739SV * 1895SV *
1740bot_at (mapstruct *obj, unsigned int x, unsigned int y) 1896bot_at (mapstruct *obj, unsigned int x, unsigned int y)
1741 PROTOTYPE: $$$ 1897 PROTOTYPE: $$$

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines