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.253 by root, Mon Sep 10 17:24:36 2007 UTC vs.
Revision 1.265 by root, Wed Nov 14 08:09:46 2007 UTC

1/* 1/*
2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team 4 * Copyright (©) 2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2001-2005,2007 by Chachkoff Yann 5 * Copyright (©) 2001-2005,2007 by Chachkoff Yann
6 * Copyright (©) 2006,2007 by Marc Lehmann <cf@schmorp.de> 6 * Copyright (©) 2006,2007 by Marc Lehmann <cf@schmorp.de>
7 * 7 *
8 * Crossfire TRT is free software: you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or 10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * 20 *
21 * The authors can be reached via e-mail to <crossfire@schmorp.de> 21 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 22 */
23 23
24#include "autoconf.h" 24#include "autoconf.h"
25 25
26#define PLUGIN_NAME "perl" 26#define PLUGIN_NAME "perl"
30 30
31#if HAVE_EXECINFO_H 31#if HAVE_EXECINFO_H
32# include <execinfo.h> 32# include <execinfo.h>
33#endif 33#endif
34 34
35#include <plugin_common.h>
36#include <sounds.h>
37#include <cstdarg> 35#include <cstdarg>
36
37#include "global.h"
38#include "loader.h"
39#include "../random_maps/random_map.h"
38#include <sproto.h> 40#include <sproto.h>
39
40#include "loader.h"
41#include "cfperl.h"
42#include "shstr.h"
43 41
44#include <unistd.h> 42#include <unistd.h>
45#if _POSIX_MEMLOCK 43#if _POSIX_MEMLOCK
46# include <sys/mman.h> 44# include <sys/mman.h>
45#endif
46
47#if HAVE_MALLOC_H
48# include <malloc.h>
47#endif 49#endif
48 50
49#include <EXTERN.h> 51#include <EXTERN.h>
50#include <perl.h> 52#include <perl.h>
51#include <XSUB.h> 53#include <XSUB.h>
67#else 69#else
68 typedef double val64; 70 typedef double val64;
69# define newSVval64 newSVnv 71# define newSVval64 newSVnv
70# define SvVAL64 SvNV 72# define SvVAL64 SvNV
71#endif 73#endif
72
73static f_plug_api gethook = cfapi_get_hooks;
74static f_plug_api object_insert = cfapi_object_insert;
75 74
76static PerlInterpreter *perl; 75static PerlInterpreter *perl;
77 76
78tstamp NOW, runtime; 77tstamp NOW, runtime;
79 78
590 va_end (ap); 589 va_end (ap);
591 590
592 return sv; 591 return sv;
593} 592}
594 593
595static SV *
596newSVcfapi (int type, ...)
597{
598 SV *sv;
599
600 va_list ap;
601 va_start (ap, type);
602
603 switch (type)
604 {
605 case CFAPI_INT: sv = newSViv (*va_arg (ap, int * )); break;
606 case CFAPI_LONG: sv = newSVval64 (*va_arg (ap, sint64 *)); break;
607 case CFAPI_DOUBLE: sv = newSVnv (*va_arg (ap, double *)); break;
608 case CFAPI_STRING: sv = newSVdt_va (ap, DT_STRING); break;
609 case CFAPI_POBJECT: sv = newSVdt_va (ap, DT_OBJECT); break;
610 case CFAPI_PMAP: sv = newSVdt_va (ap, DT_MAP ); break;
611 case CFAPI_PPLAYER: sv = newSVdt_va (ap, DT_PLAYER); break;
612 case CFAPI_PARCH: sv = newSVdt_va (ap, DT_ARCH ); break;
613 case CFAPI_PPARTY: sv = newSVdt_va (ap, DT_PARTY ); break;
614 case CFAPI_PREGION: sv = newSVdt_va (ap, DT_REGION); break;
615
616 default:
617 assert (("unhandled type in newSVcfapi", 0));
618 }
619
620 va_end (ap);
621
622 return sv;
623}
624
625////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 594//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
626 595
627SV * 596SV *
628registry (attachable *ext) 597registry (attachable *ext)
629{ 598{
632 601
633 return newRV_inc ((SV *)ext->cb); 602 return newRV_inc ((SV *)ext->cb);
634} 603}
635 604
636///////////////////////////////////////////////////////////////////////////// 605/////////////////////////////////////////////////////////////////////////////
637
638extern "C" int cfperl_initPlugin (const char *iversion, f_plug_api gethooksptr)
639{
640 return 0;
641}
642
643static CommArray_s rtn_cmd;
644
645static int
646runPluginCommand (object *obj, char *params)
647{
648 return -1;
649}
650
651extern "C" void *cfperl_getPluginProperty (int *type, ...)
652{
653 va_list args;
654 char *propname;
655 int i;
656 va_start (args, type);
657 propname = va_arg (args, char *);
658 //printf ("Property name: %s\n", propname);
659
660 if (!strcmp (propname, "command?"))
661 return NULL;
662 else if (!strcmp (propname, "Identification"))
663 {
664 va_end (args);
665 return (void *)PLUGIN_NAME;
666 }
667 else if (!strcmp (propname, "FullName"))
668 {
669 va_end (args);
670 return (void *)PLUGIN_VERSION;
671 }
672 else
673 va_end (args);
674
675 return NULL;
676}
677
678extern "C" int cfperl_postInitPlugin ()
679{
680 int hooktype = 1;
681 int rtype = 0;
682
683 cf_init_plugin (gethook);
684
685 return 0;
686}
687
688extern "C" int cfperl_closePlugin ()
689{
690 return 0;
691}
692 606
693void 607void
694cfperl_init () 608cfperl_init ()
695{ 609{
696 PERL_SYS_INIT3 (&settings.argc, &settings.argv, 0); 610 PERL_SYS_INIT3 (&settings.argc, &settings.argv, 0);
700 PL_exit_flags |= PERL_EXIT_DESTRUCT_END; 614 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
701 615
702 const char *argv[] = { 616 const char *argv[] = {
703 settings.argv [0], 617 settings.argv [0],
704 "-e" 618 "-e"
705 "use Event; use Coro;" // required for bootstrap 619 "use EV; use Coro;" // required for bootstrap
706 "cf->bootstrap;" // required for datadir :*> 620 "cf->bootstrap;" // required for datadir :*>
707 "unshift @INC, cf::datadir ();" 621 "unshift @INC, cf::datadir ();"
708 "require cf;" 622 "require cf;"
709 }; 623 };
710 624
711 if (perl_parse (perl, xs_init, 2, (char **)argv, (char **)NULL) 625 if (perl_parse (perl, xs_init, 2, (char **)argv, (char **)NULL)
1185#endif 1099#endif
1186} 1100}
1187 1101
1188///////////////////////////////////////////////////////////////////////////// 1102/////////////////////////////////////////////////////////////////////////////
1189 1103
1190struct EventAPI *watcher_base::GEventAPI; 1104struct EVAPI *evapi::GEVAPI;
1191struct CoroAPI *coroapi::GCoroAPI; 1105struct CoroAPI *coroapi::GCoroAPI;
1192 1106
1193int coroapi::cede_counter; 1107int coroapi::cede_counter;
1194tstamp coroapi::next_cede; 1108tstamp coroapi::next_cede;
1195 1109
1196void coroapi::do_cede_to_tick () 1110void coroapi::do_cede_to_tick ()
1233 CALL_BEGIN (0); 1147 CALL_BEGIN (0);
1234 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD); 1148 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD);
1235 CALL_END; 1149 CALL_END;
1236} 1150}
1237 1151
1238static void
1239iw_dispatch (pe_event *ev)
1240{
1241 iw *w = (iw *)ev->ext_data;
1242 w->call (*w);
1243}
1244
1245void
1246iw::alloc ()
1247{
1248 pe = GEventAPI->new_idle (0, 0);
1249
1250 WaREENTRANT_off (pe);
1251 pe->base.callback = (void *)iw_dispatch;
1252 pe->base.ext_data = (void *)this;
1253}
1254
1255static void iow_dispatch (pe_event *ev)
1256{
1257 iow *w = (iow *)ev->ext_data;
1258 w->call (*w, ((pe_ioevent *)ev)->got);
1259}
1260
1261void
1262iow::alloc ()
1263{
1264 pe = GEventAPI->new_io (0, 0);
1265
1266 WaREENTRANT_off (pe);
1267 pe->base.callback = (void *)iow_dispatch;
1268 pe->base.ext_data = (void *)this;
1269
1270 pe->fd = -1;
1271 pe->poll = 0;
1272}
1273
1274void
1275iow::fd (int fd)
1276{
1277 pe->fd = fd;
1278}
1279
1280int
1281iow::poll ()
1282{
1283 return pe->poll;
1284}
1285
1286void 1152void
1287iow::poll (int events) 1153iow::poll (int events)
1288{ 1154{
1289 if (pe->poll != events) 1155 if (events != this->events)
1290 { 1156 {
1157 int active = ev_is_active ((ev_io *)this);
1291 if (pe->poll) stop (); 1158 if (active) stop ();
1292 pe->poll = events; 1159 ev_io_set ((ev_io *)this, fd, events);
1293 if (pe->poll) start (); 1160 if (active) start ();
1294 } 1161 }
1295} 1162}
1296 1163
1297void 1164void
1298_connect_to_perl () 1165_connect_to_perl ()
1323 1190
1324MODULE = cf PACKAGE = cf PREFIX = cf_ 1191MODULE = cf PACKAGE = cf PREFIX = cf_
1325 1192
1326BOOT: 1193BOOT:
1327{ 1194{
1328 I_EVENT_API (PACKAGE); watcher_base::GEventAPI = GEventAPI; 1195 I_EV_API (PACKAGE); evapi::GEVAPI = GEVAPI;
1329 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI; 1196 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI;
1330 1197
1331 _connect_to_perl (); 1198 _connect_to_perl ();
1332 1199
1333 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1)); 1200 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1));
1334 1201
1352 const_iv (Map0Cmd) const_iv (Map1Cmd) const_iv (Map1aCmd) 1219 const_iv (Map0Cmd) const_iv (Map1Cmd) const_iv (Map1aCmd)
1353 1220
1354 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y) 1221 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y)
1355 1222
1356 const_iv (MAX_TIME) 1223 const_iv (MAX_TIME)
1224 const_iv (MAXSOCKBUF)
1357 1225
1358 const_iv (NUM_BODY_LOCATIONS) 1226 const_iv (NUM_BODY_LOCATIONS)
1359 const_iv (body_range) const_iv (body_shield) const_iv (body_combat) 1227 const_iv (body_range) const_iv (body_shield) const_iv (body_combat)
1360 const_iv (body_arm) const_iv (body_torso) const_iv (body_head) 1228 const_iv (body_arm) const_iv (body_torso) const_iv (body_head)
1361 const_iv (body_neck) const_iv (body_skill) const_iv (body_finger) 1229 const_iv (body_neck) const_iv (body_skill) const_iv (body_finger)
1506 const_iv (P_NO_CLERIC) const_iv (P_OUT_OF_MAP) const_iv (P_NEW_MAP) const_iv (P_UPTODATE) 1374 const_iv (P_NO_CLERIC) const_iv (P_OUT_OF_MAP) const_iv (P_NEW_MAP) const_iv (P_UPTODATE)
1507 1375
1508 const_iv (UP_OBJ_INSERT) const_iv (UP_OBJ_REMOVE) const_iv (UP_OBJ_CHANGE) const_iv (UP_OBJ_FACE) 1376 const_iv (UP_OBJ_INSERT) const_iv (UP_OBJ_REMOVE) const_iv (UP_OBJ_CHANGE) const_iv (UP_OBJ_FACE)
1509 1377
1510 const_iv (INS_NO_MERGE) const_iv (INS_ABOVE_FLOOR_ONLY) const_iv (INS_NO_WALK_ON) 1378 const_iv (INS_NO_MERGE) const_iv (INS_ABOVE_FLOOR_ONLY) const_iv (INS_NO_WALK_ON)
1511 const_iv (INS_ON_TOP) const_iv (INS_BELOW_ORIGINATOR) const_iv (INS_MAP_LOAD) 1379 const_iv (INS_ON_TOP) const_iv (INS_BELOW_ORIGINATOR)
1512 1380
1513 const_iv (WILL_APPLY_HANDLE) const_iv (WILL_APPLY_TREASURE) const_iv (WILL_APPLY_EARTHWALL) 1381 const_iv (WILL_APPLY_HANDLE) const_iv (WILL_APPLY_TREASURE) const_iv (WILL_APPLY_EARTHWALL)
1514 const_iv (WILL_APPLY_DOOR) const_iv (WILL_APPLY_FOOD) 1382 const_iv (WILL_APPLY_DOOR) const_iv (WILL_APPLY_FOOD)
1515 1383
1516 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE) 1384 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE)
1732octet_string path_combine (octet_string base, octet_string path) 1600octet_string path_combine (octet_string base, octet_string path)
1733 PROTOTYPE: $$ 1601 PROTOTYPE: $$
1734 1602
1735octet_string path_combine_and_normalize (octet_string base, octet_string path) 1603octet_string path_combine_and_normalize (octet_string base, octet_string path)
1736 PROTOTYPE: $$ 1604 PROTOTYPE: $$
1605
1606void
1607mallinfo ()
1608 PPCODE:
1609{
1610#if __GLIBC__
1611 struct mallinfo mai = mallinfo ();
1612 EXTEND (SP, 10*2);
1613 PUSHs (sv_2mortal (newSVpv ("arena" , 0))); PUSHs (sv_2mortal (newSViv (mai.arena)));
1614 PUSHs (sv_2mortal (newSVpv ("ordblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.ordblks)));
1615 PUSHs (sv_2mortal (newSVpv ("smblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.smblks)));
1616 PUSHs (sv_2mortal (newSVpv ("hblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.hblks)));
1617 PUSHs (sv_2mortal (newSVpv ("hblkhd" , 0))); PUSHs (sv_2mortal (newSViv (mai.hblkhd)));
1618 PUSHs (sv_2mortal (newSVpv ("usmblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.usmblks)));
1619 PUSHs (sv_2mortal (newSVpv ("fsmblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.fsmblks)));
1620 PUSHs (sv_2mortal (newSVpv ("uordblks", 0))); PUSHs (sv_2mortal (newSViv (mai.uordblks)));
1621 PUSHs (sv_2mortal (newSVpv ("fordblks", 0))); PUSHs (sv_2mortal (newSViv (mai.fordblks)));
1622 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost)));
1623#endif
1624 EXTEND (SP, 2*2);
1625 PUSHs (sv_2mortal (newSVpv ("slice_alloc", 0))); PUSHs (sv_2mortal (newSVuv (slice_alloc)));
1626 PUSHs (sv_2mortal (newSVpv ("shstr_alloc", 0))); PUSHs (sv_2mortal (newSVuv (shstr_alloc)));
1627}
1737 1628
1738void 1629void
1739sub_generation_inc () 1630sub_generation_inc ()
1740 CODE: 1631 CODE:
1741 PL_sub_generation++; 1632 PL_sub_generation++;
1774 1665
1775void emergency_save () 1666void emergency_save ()
1776 1667
1777void _exit (int status = EXIT_SUCCESS) 1668void _exit (int status = EXIT_SUCCESS)
1778 1669
1779UV sv_2watcher (SV *w)
1780 CODE:
1781 RETVAL = (UV)GEventAPI->sv_2watcher (w);
1782 OUTPUT:
1783 RETVAL
1784
1785#if _POSIX_MEMLOCK 1670#if _POSIX_MEMLOCK
1786 1671
1787int mlockall (int flags = MCL_CURRENT | MCL_FUTURE) 1672int mlockall (int flags = MCL_CURRENT | MCL_FUTURE)
1788 1673
1789int munlockall () 1674int munlockall ()
1939void 1824void
1940inv (object *obj) 1825inv (object *obj)
1941 PROTOTYPE: $ 1826 PROTOTYPE: $
1942 PPCODE: 1827 PPCODE:
1943{ 1828{
1944 object *o;
1945 for (o = obj->inv; o; o = o->below) 1829 for (object *o = obj->inv; o; o = o->below)
1946 XPUSHs (sv_2mortal (to_sv (o))); 1830 XPUSHs (sv_2mortal (to_sv (o)));
1947} 1831}
1948 1832
1949void 1833void
1950set_animation (object *op, int idx) 1834set_animation (object *op, int idx)
1982 1866
1983int need_identify (object *obj); 1867int need_identify (object *obj);
1984 1868
1985int apply_shop_mat (object *shop_mat, object *op); 1869int apply_shop_mat (object *shop_mat, object *op);
1986 1870
1987int move_player (object *op, int dir)
1988 CODE:
1989 RETVAL = move_player (op, dir);
1990 OUTPUT:
1991 RETVAL
1992
1993int move (object *op, int dir, object *originator = op) 1871int move (object *op, int dir, object *originator = op)
1994 CODE: 1872 CODE:
1995 RETVAL = move_ob (op, dir, originator); 1873 RETVAL = move_ob (op, dir, originator);
1996 OUTPUT: 1874 OUTPUT:
1997 RETVAL 1875 RETVAL
2003void apply_below (object *op) 1881void apply_below (object *op)
2004 CODE: 1882 CODE:
2005 player_apply_below (op); 1883 player_apply_below (op);
2006 1884
2007int cast_heal (object *op, object *caster, object *spell, int dir = 0) 1885int cast_heal (object *op, object *caster, object *spell, int dir = 0)
2008
2009object *cf_object_present_archname_inside (object *op, utf8_string whatstr)
2010
2011int cf_object_transfer (object *op, int x, int y, int r = 0, object_ornull *orig = 0)
2012
2013int cf_object_change_map (object *op, int x, int y, maptile *map)
2014 1886
2015#//TODO 1887#//TODO
2016object *clone_ (object *op, int recursive = 0) 1888object *clone_ (object *op, int recursive = 0)
2017 CODE: 1889 CODE:
2018 if (recursive) 1890 if (recursive)
2065 1937
2066void drop (object *who, object *op) 1938void drop (object *who, object *op)
2067 1939
2068void pick_up (object *who, object *op) 1940void pick_up (object *who, object *op)
2069 1941
2070int cf_object_teleport (object *op, maptile *map, int x, int y)
2071
2072void update_object (object *op, int action) 1942void update_object (object *op, int action)
2073 1943
2074object *cf_create_object_by_name (utf8_string name)
2075
2076void change_exp (object *op, uint64 exp, utf8_string skill_name = 0, int flag = 0) 1944void change_exp (object *op, uint64 exp, utf8_string skill_name = 0, int flag = 0)
2077 1945
2078void player_lvl_adj (object *who, object *skill = 0) 1946void player_lvl_adj (object *who, object *skill = 0)
2079 1947
2080int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL) 1948int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL)
2091 1959
2092void handle_apply_yield (object *op); 1960void handle_apply_yield (object *op);
2093 1961
2094 1962
2095MODULE = cf PACKAGE = cf::object PREFIX = cf_ 1963MODULE = cf PACKAGE = cf::object PREFIX = cf_
2096
2097object *cf_insert_ob_in_ob (object *ob, object *where)
2098 1964
2099# no clean way to get an object from an archetype - stupid idiotic 1965# no clean way to get an object from an archetype - stupid idiotic
2100# dumb kludgy misdesigned plug-in api slowly gets on my nerves. 1966# dumb kludgy misdesigned plug-in api slowly gets on my nerves.
2101 1967
2102object *new (utf8_string archetype = 0) 1968object *new (utf8_string archetype = 0)
2111# TODO: nuke 1977# TODO: nuke
2112object *insert_ob_in_map_at (object *ob, maptile *where, object_ornull *orig, int flag, int x, int y) 1978object *insert_ob_in_map_at (object *ob, maptile *where, object_ornull *orig, int flag, int x, int y)
2113 PROTOTYPE: $$$$$$ 1979 PROTOTYPE: $$$$$$
2114 CODE: 1980 CODE:
2115{ 1981{
2116 int unused_type; 1982 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y);
2117 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y);
2118} 1983}
2119 1984
2120const_utf8_string get_ob_key_value (object *op, utf8_string key) 1985const_utf8_string get_ob_key_value (object *op, utf8_string key)
2121 1986
2122bool set_ob_key_value (object *op, utf8_string key, utf8_string value = 0, int add_key = 1) 1987bool set_ob_key_value (object *op, utf8_string key, utf8_string value = 0, int add_key = 1)
2135 EXTEND (SP, 5); 2000 EXTEND (SP, 5);
2136 PUSHs (newSVuv (rv.distance)); 2001 PUSHs (newSVuv (rv.distance));
2137 PUSHs (newSViv (rv.distance_x)); 2002 PUSHs (newSViv (rv.distance_x));
2138 PUSHs (newSViv (rv.distance_y)); 2003 PUSHs (newSViv (rv.distance_y));
2139 PUSHs (newSViv (rv.direction)); 2004 PUSHs (newSViv (rv.direction));
2140 PUSHs (newSVcfapi (CFAPI_POBJECT, rv.part)); 2005 PUSHs (to_sv (rv.part));
2141} 2006}
2142 2007
2143bool on_same_map_as (object *ob, object *other) 2008bool on_same_map_as (object *ob, object *other)
2144 CODE: 2009 CODE:
2145 RETVAL = on_same_map (ob, other); 2010 RETVAL = on_same_map (ob, other);
2151 RETVAL = query_base_name (op, plural); 2016 RETVAL = query_base_name (op, plural);
2152 OUTPUT: RETVAL 2017 OUTPUT: RETVAL
2153 2018
2154object *decrease_ob_nr (object *op, unsigned long i) 2019object *decrease_ob_nr (object *op, unsigned long i)
2155 2020
2021# return the tail of an object, excluding itself
2022void
2023tail (object *op)
2024 PPCODE:
2025 while ((op = op->more))
2026 XPUSHs (sv_2mortal (to_sv (op)));
2027
2156MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_ 2028MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_
2157 2029
2158player *player (object *op) 2030player *player (object *op)
2159 CODE: 2031 CODE:
2160 RETVAL = op->contr; 2032 RETVAL = op->contr;
2161 OUTPUT: RETVAL 2033 OUTPUT: RETVAL
2162 2034
2035bool move_player (object *op, int dir)
2036
2163void check_score (object *op) 2037void check_score (object *op)
2164 2038
2165void message (object *op, utf8_string txt, int flags = NDI_ORANGE | NDI_UNIQUE) 2039void message (object *op, utf8_string txt, int flags = NDI_ORANGE | NDI_UNIQUE)
2166 CODE: 2040 CODE:
2167 new_draw_info (flags, 0, op, txt); 2041 new_draw_info (flags, 0, op, txt);
2168 2042
2169void kill_player (object *op) 2043void kill_player (object *op)
2170 2044
2045void esrv_send_item (object *pl, object *item)
2046
2171void esrv_update_item (object *op, int what, object *item) 2047void esrv_update_item (object *pl, int what, object *item)
2172 C_ARGS: what, op, item 2048 C_ARGS: what, pl, item
2049
2050void esrv_del_item (object *pl, int tag)
2051 C_ARGS: pl->contr, tag
2173 2052
2174int command_summon (object *op, utf8_string params) 2053int command_summon (object *op, utf8_string params)
2175 2054
2176int command_arrest (object *op, utf8_string params) 2055int command_arrest (object *op, utf8_string params)
2177 2056
2198 pl->ob->stats.grace = pl->ob->stats.maxgrace; 2077 pl->ob->stats.grace = pl->ob->stats.maxgrace;
2199 pl->orig_stats = pl->ob->stats; 2078 pl->orig_stats = pl->ob->stats;
2200 2079
2201void clear_los (player *pl) 2080void clear_los (player *pl)
2202 2081
2203void cf_player_move (player *pl, int dir)
2204
2205bool 2082bool
2206cell_visible (player *pl, int dx, int dy) 2083cell_visible (player *pl, int dx, int dy)
2207 CODE: 2084 CODE:
2208 RETVAL = FABS (dx) <= pl->ns->mapx / 2 && FABS (dy) <= pl->ns->mapy / 2 2085 RETVAL = FABS (dx) <= pl->ns->mapx / 2 && FABS (dy) <= pl->ns->mapy / 2
2209 && !pl->blocked_los [dx + pl->ns->mapx / 2][dy + pl->ns->mapy / 2]; 2086 && !pl->blocked_los [dx + pl->ns->mapx / 2][dy + pl->ns->mapy / 2];
2215 CODE: 2092 CODE:
2216{ 2093{
2217 STRLEN len; 2094 STRLEN len;
2218 char *buf = SvPVbyte (packet, len); 2095 char *buf = SvPVbyte (packet, len);
2219 2096
2097 if (len > MAXSOCKBUF)
2098 pl->failmsg ("[packet too long for client]");
2220 if (pl->ns) 2099 else if (pl->ns)
2221 pl->ns->send_packet (buf, len); 2100 pl->ns->send_packet (buf, len);
2222} 2101}
2223 2102
2224int 2103int
2225listening (player *pl, int new_value = -1) 2104listening (player *pl, int new_value = -1)
2261 RETVAL = map->invoke ((event_type)event, ARG_AV (av), DT_END); 2140 RETVAL = map->invoke ((event_type)event, ARG_AV (av), DT_END);
2262 OUTPUT: RETVAL 2141 OUTPUT: RETVAL
2263 2142
2264SV *registry (maptile *map) 2143SV *registry (maptile *map)
2265 2144
2145void
2146find_tagged_objects (maptile *map, utf8_string tag = 0)
2147 PPCODE:
2148{
2149 if (!map->spaces)
2150 XSRETURN_EMPTY;
2151
2152 if (tag)
2153 {
2154 shstr_cmp tag_ (tag);
2155
2156 for (mapspace *ms = map->spaces + map->size (); ms-- > map->spaces; )
2157 for (object *op = ms->bot; op; op = op->above)
2158 if (op->tag == tag_)
2159 XPUSHs (sv_2mortal (to_sv (op)));
2160 }
2161 else
2162 {
2163 for (mapspace *ms = map->spaces + map->size (); ms-- > map->spaces; )
2164 for (object *op = ms->bot; op; op = op->above)
2165 if (op->tag)
2166 XPUSHs (sv_2mortal (to_sv (op)));
2167 }
2168}
2169
2266INCLUDE: $PERL $srcdir/genacc maptile ../include/map.h | 2170INCLUDE: $PERL $srcdir/genacc maptile ../include/map.h |
2267 2171
2268void 2172void
2269maptile::instantiate () 2173maptile::instantiate ()
2270 2174
2401get_connection (maptile *map, long connection) 2305get_connection (maptile *map, long connection)
2402 PPCODE: 2306 PPCODE:
2403 oblinkpt *obp = get_connection_links (map, connection); 2307 oblinkpt *obp = get_connection_links (map, connection);
2404 if (obp) 2308 if (obp)
2405 for (objectlink *ol = obp->link; ol; ol = ol->next) 2309 for (objectlink *ol = obp->link; ol; ol = ol->next)
2406 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, (object *)ol->ob))); 2310 XPUSHs (sv_2mortal (to_sv ((object *)ol->ob)));
2407
2408object *cf_map_insert_object_there (maptile *where, object *op, object *originator, int flags)
2409
2410object *cf_map_insert_object (maptile *where, object* op, int x, int y)
2411
2412object* cf_map_present_arch_by_name (maptile *map, const char* str, int nx, int ny)
2413 C_ARGS: str, map, nx, ny
2414 2311
2415void 2312void
2416get_map_flags (maptile *map, int x, int y) 2313get_map_flags (maptile *map, int x, int y)
2417 PPCODE: 2314 PPCODE:
2418{ 2315{
2423 EXTEND (SP, 4); 2320 EXTEND (SP, 4);
2424 PUSHs (sv_2mortal (newSViv (flags))); 2321 PUSHs (sv_2mortal (newSViv (flags)));
2425 2322
2426 if (GIMME_V == G_ARRAY) 2323 if (GIMME_V == G_ARRAY)
2427 { 2324 {
2428 PUSHs (sv_2mortal (newSVcfapi (CFAPI_PMAP, nmap))); 2325 PUSHs (sv_2mortal (to_sv (nmap)));
2429 PUSHs (sv_2mortal (newSViv (nx))); 2326 PUSHs (sv_2mortal (newSViv (nx)));
2430 PUSHs (sv_2mortal (newSViv (ny))); 2327 PUSHs (sv_2mortal (newSViv (ny)));
2431 } 2328 }
2432} 2329}
2433 2330
2442 2339
2443 get_map_flags (map, &nmap, x, y, &nx, &ny); 2340 get_map_flags (map, &nmap, x, y, &nx, &ny);
2444 2341
2445 if (nmap) 2342 if (nmap)
2446 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above) 2343 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above)
2447 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 2344 XPUSHs (sv_2mortal (to_sv (o)));
2448} 2345}
2449 2346
2450SV * 2347SV *
2451bot_at (maptile *obj, unsigned int x, unsigned int y) 2348bot_at (maptile *obj, unsigned int x, unsigned int y)
2452 PROTOTYPE: $$$ 2349 PROTOTYPE: $$$
2461 INIT: 2358 INIT:
2462 if (x >= obj->width || y >= obj->height) XSRETURN_UNDEF; 2359 if (x >= obj->width || y >= obj->height) XSRETURN_UNDEF;
2463 CODE: 2360 CODE:
2464 switch (ix) 2361 switch (ix)
2465 { 2362 {
2466 case 0: RETVAL = newSVcfapi (CFAPI_POBJECT, GET_MAP_OB (obj, x, y)); break; 2363 case 0: RETVAL = to_sv (GET_MAP_OB (obj, x, y)); break;
2467 case 1: RETVAL = newSVcfapi (CFAPI_POBJECT, GET_MAP_TOP (obj, x, y)); break; 2364 case 1: RETVAL = to_sv (GET_MAP_TOP (obj, x, y)); break;
2468 case 2: RETVAL = newSVuv ( GET_MAP_FLAGS (obj, x, y)); break; 2365 case 2: RETVAL = newSVuv (GET_MAP_FLAGS (obj, x, y)); break;
2469 case 3: RETVAL = newSViv ( GET_MAP_LIGHT (obj, x, y)); break; 2366 case 3: RETVAL = newSViv (GET_MAP_LIGHT (obj, x, y)); break;
2470 case 4: RETVAL = newSVuv ( GET_MAP_MOVE_BLOCK (obj, x, y)); break; 2367 case 4: RETVAL = newSVuv (GET_MAP_MOVE_BLOCK (obj, x, y)); break;
2471 case 5: RETVAL = newSVuv ( GET_MAP_MOVE_SLOW (obj, x, y)); break; 2368 case 5: RETVAL = newSVuv (GET_MAP_MOVE_SLOW (obj, x, y)); break;
2472 case 6: RETVAL = newSVuv ( GET_MAP_MOVE_ON (obj, x, y)); break; 2369 case 6: RETVAL = newSVuv (GET_MAP_MOVE_ON (obj, x, y)); break;
2473 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break; 2370 case 7: RETVAL = newSVuv (GET_MAP_MOVE_OFF (obj, x, y)); break;
2474 } 2371 }
2475 OUTPUT: RETVAL 2372 OUTPUT: RETVAL
2476 2373
2477void fix_walls (maptile *map, int x, int y) 2374void fix_walls (maptile *map, int x, int y)
2478 2375
2659 CODE: 2556 CODE:
2660{ 2557{
2661 STRLEN len; 2558 STRLEN len;
2662 char *buf = SvPVbyte (packet, len); 2559 char *buf = SvPVbyte (packet, len);
2663 2560
2561 if (len > MAXSOCKBUF)
2562 {
2563 // ugly
2564 if (THIS->pl)
2565 THIS->pl->failmsg ("[packet too long for client]");
2566 }
2567 else
2664 THIS->send_packet (buf, len); 2568 THIS->send_packet (buf, len);
2665} 2569}
2666 2570
2667faceidx 2571faceidx
2668client::need_face (utf8_string name, int pri = 0) 2572client::need_face (utf8_string name, int pri = 0)
2669 CODE: 2573 CODE:
2874 sv_to (sv, self); 2778 sv_to (sv, self);
2875 delete self; 2779 delete self;
2876 2780
2877void 2781void
2878extract_tags (object_thawer *self) 2782extract_tags (object_thawer *self)
2879 CODE: 2783 PPCODE:
2880 while (self->kw != KW_EOF) 2784 while (self->kw != KW_EOF)
2881 { 2785 {
2786 PUTBACK;
2882 coroapi::cede_to_tick_every (5000); 2787 coroapi::cede_to_tick_every (5000);
2788 SPAGAIN;
2883 2789
2884 if (self->kw == KW_tag) 2790 if (self->kw == KW_tag)
2885 XPUSHs (sv_2mortal (to_sv (self->get_str ()))); 2791 XPUSHs (sv_2mortal (newSVpv_utf8 (self->get_str ())));
2886 2792
2887 self->skip (); 2793 self->skip ();
2888 } 2794 }
2889 2795

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines