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.256 by root, Wed Sep 12 11:10:11 2007 UTC vs.
Revision 1.276 by root, Tue Apr 15 14:21:04 2008 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,2008 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"
27#define PLUGIN_VERSION "cfperl 0.5" 27#define PLUGIN_VERSION "cfperl 0.5"
28
29#define CEDES_PER_TICK 5
30 28
31#if HAVE_EXECINFO_H 29#if HAVE_EXECINFO_H
32# include <execinfo.h> 30# include <execinfo.h>
33#endif 31#endif
34 32
35#include <plugin_common.h>
36#include <sounds.h>
37#include <cstdarg> 33#include <cstdarg>
38#include <sproto.h>
39 34
35#include "global.h"
40#include "loader.h" 36#include "loader.h"
37#include "../random_maps/random_map.h"
41#include "cfperl.h" 38#include "evthread.h"
42#include "shstr.h" 39#include "sproto.h"
43 40
44#include <unistd.h> 41#include <unistd.h>
45#if _POSIX_MEMLOCK 42#if _POSIX_MEMLOCK
46# include <sys/mman.h> 43# include <sys/mman.h>
47#endif 44#endif
48 45
46#if HAVE_MALLOC_H
47# include <malloc.h>
48#endif
49
49#include <EXTERN.h> 50#include <EXTERN.h>
50#include <perl.h> 51#include <perl.h>
51#include <XSUB.h> 52#include <XSUB.h>
52 53
53#include "CoroAPI.h" 54#include "CoroAPI.h"
58typedef object_thawer &object_thawer_ref; 59typedef object_thawer &object_thawer_ref;
59typedef object_freezer &object_freezer_ref; 60typedef object_freezer &object_freezer_ref;
60 61
61typedef std::string std__string; 62typedef std::string std__string;
62 63
63#if IVSIZE >= 8
64 typedef IV val64;
65# define newSVval64 newSViv
66# define SvVAL64 SvIV
67#else
68 typedef double val64;
69# define newSVval64 newSVnv
70# define SvVAL64 SvNV
71#endif
72
73static f_plug_api gethook = cfapi_get_hooks;
74static f_plug_api object_insert = cfapi_object_insert;
75
76static PerlInterpreter *perl; 64static PerlInterpreter *perl;
77 65
78tstamp NOW, runtime; 66tstamp NOW, runtime;
67
68static int tick_inhibit;
69static int tick_pending;
79 70
80global gbl_ev; 71global gbl_ev;
81static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map; 72static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map;
82static SV *sv_runtime, *sv_next_tick; 73static SV *sv_runtime, *sv_tick_start, *sv_next_tick, *sv_now;
83 74
84bitset<NUM_EVENT_TYPES> ev_want_event; 75bitset<NUM_EVENT_TYPES> ev_want_event;
85bitset<NUM_TYPES> ev_want_type; 76bitset<NUM_TYPES> ev_want_type;
86 77
87static HV 78static HV
443inline SV *to_sv (living & v) { return to_sv (&v); } 434inline SV *to_sv (living & v) { return to_sv (&v); }
444 435
445inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); } 436inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); }
446inline SV *to_sv (const treasurelist *v) { return to_sv (v->name); } 437inline SV *to_sv (const treasurelist *v) { return to_sv (v->name); }
447 438
448inline SV *to_sv (UUID v) 439inline SV *to_sv (UUID v) { return newSVpv (v.c_str (), 0); }
449{
450 char buf[128];
451 snprintf (buf, 128, "<1.%" PRIx64 ">", v.seq);
452 return newSVpv (buf, 0);
453}
454 440
455inline void sv_to (SV *sv, shstr &v) { v = SvOK (sv) ? SvPVutf8_nolen (sv) : 0; } 441inline void sv_to (SV *sv, shstr &v) { v = SvOK (sv) ? SvPVutf8_nolen (sv) : 0; }
456inline void sv_to (SV *sv, char * &v) { free (v); v = SvOK (sv) ? strdup (SvPV_nolen (sv)) : 0; } 442inline void sv_to (SV *sv, char * &v) { free (v); v = SvOK (sv) ? strdup (SvPV_nolen (sv)) : 0; }
457inline void sv_to (SV *sv, bool &v) { v = SvIV (sv); } 443inline void sv_to (SV *sv, bool &v) { v = SvIV (sv); }
458inline void sv_to (SV *sv, signed char &v) { v = SvIV (sv); } 444inline void sv_to (SV *sv, signed char &v) { v = SvIV (sv); }
500 v.assign (data, len); 486 v.assign (data, len);
501} 487}
502 488
503inline void sv_to (SV *sv, UUID &v) 489inline void sv_to (SV *sv, UUID &v)
504{ 490{
505 unsigned int version; 491 if (!v.parse (SvPV_nolen (sv)))
506
507 if (2 != sscanf (SvPV_nolen (sv), "<%d.%" SCNx64 ">", &version, &v.seq) || 1 != version)
508 croak ("unparsable uuid: %s", SvPV_nolen (sv)); 492 croak ("unparsable uuid: %s", SvPV_nolen (sv));
509} 493}
510 494
511inline void sv_to (SV *sv, object::flags_t::reference v) { v = SvTRUE (sv); } 495inline void sv_to (SV *sv, object::flags_t::reference v) { v = SvTRUE (sv); }
512 496
590 va_end (ap); 574 va_end (ap);
591 575
592 return sv; 576 return sv;
593} 577}
594 578
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////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 579//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
626 580
627SV * 581SV *
628registry (attachable *ext) 582registry (attachable *ext)
629{ 583{
633 return newRV_inc ((SV *)ext->cb); 587 return newRV_inc ((SV *)ext->cb);
634} 588}
635 589
636///////////////////////////////////////////////////////////////////////////// 590/////////////////////////////////////////////////////////////////////////////
637 591
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
693void 592void
694cfperl_init () 593cfperl_init ()
695{ 594{
595 extern char **environ;
596
696 PERL_SYS_INIT3 (&settings.argc, &settings.argv, 0); 597 PERL_SYS_INIT3 (&settings.argc, &settings.argv, &environ);
697 perl = perl_alloc (); 598 perl = perl_alloc ();
698 perl_construct (perl); 599 perl_construct (perl);
699 600
700 PL_exit_flags |= PERL_EXIT_DESTRUCT_END; 601 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
701 602
702 const char *argv[] = { 603 const char *argv[] = {
703 settings.argv [0], 604 settings.argv [0],
704 "-e" 605 "-e"
705 "use Event; use Coro;" // required for bootstrap 606 "use EV; use Coro;" // required for bootstrap
706 "cf->bootstrap;" // required for datadir :*> 607 "cf->bootstrap;" // required for datadir :*>
707 "unshift @INC, cf::datadir ();" 608 "unshift @INC, cf::datadir ();"
708 "require cf;" 609 "require cf;"
709 }; 610 };
710 611
711 if (perl_parse (perl, xs_init, 2, (char **)argv, (char **)NULL) 612 if (perl_parse (perl, xs_init, 2, (char **)argv, environ)
712 || perl_run (perl)) 613 || perl_run (perl))
713 { 614 {
714 printf ("unable to initialize perl-interpreter, aborting.\n"); 615 printf ("unable to initialize perl-interpreter, aborting.\n");
715 exit (EXIT_FAILURE); 616 exit (EXIT_FAILURE);
716 } 617 }
993} 894}
994 895
995///////////////////////////////////////////////////////////////////////////// 896/////////////////////////////////////////////////////////////////////////////
996// various c++ => perl glue functions 897// various c++ => perl glue functions
997 898
899void cfperl_tick ()
900{
901 tick_pending = 1;
902
903 if (tick_inhibit)
904 return;
905
906 tick_pending = 0;
907
908 dSP;
909
910 PUSHMARK (SP);
911 PUTBACK;
912 call_pv ("cf::tick", G_DISCARD | G_VOID);
913
914 SvNV_set (sv_next_tick, get_next_tick ()); SvNOK_only (sv_next_tick);
915}
916
998void 917void
999cfperl_emergency_save () 918cfperl_emergency_save ()
1000{ 919{
1001 CALL_BEGIN (0); 920 CALL_BEGIN (0);
1002 CALL_CALL ("cf::emergency_save", G_VOID); 921 CALL_CALL ("cf::emergency_save", G_VOID);
1185#endif 1104#endif
1186} 1105}
1187 1106
1188///////////////////////////////////////////////////////////////////////////// 1107/////////////////////////////////////////////////////////////////////////////
1189 1108
1190struct EventAPI *watcher_base::GEventAPI; 1109struct EVAPI *evapi::GEVAPI;
1191struct CoroAPI *coroapi::GCoroAPI; 1110struct CoroAPI *coroapi::GCoroAPI;
1192
1193int coroapi::cede_counter;
1194tstamp coroapi::next_cede;
1195 1111
1196void coroapi::do_cede_to_tick () 1112void coroapi::do_cede_to_tick ()
1197{ 1113{
1198 cede_counter = 0; 1114 cede_pending = 0;
1199
1200 cede (); 1115 cede ();
1201
1202 next_cede += (TICK / CEDES_PER_TICK) * 0.99;
1203 if (next_cede > SvNV (sv_next_tick) - 0.02)
1204 next_cede = SvNV (sv_next_tick);
1205}
1206
1207void coroapi::do_cede_every ()
1208{
1209 cede_counter = 0;
1210
1211 if (coroapi::nready ())
1212 coroapi::cede ();
1213}
1214
1215void coroapi::do_cede_to_tick_every ()
1216{
1217 cede_counter = 0;
1218
1219 cede_to_tick ();
1220} 1116}
1221 1117
1222void 1118void
1223coroapi::wait_for_tick () 1119coroapi::wait_for_tick ()
1224{ 1120{
1233 CALL_BEGIN (0); 1129 CALL_BEGIN (0);
1234 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD); 1130 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD);
1235 CALL_END; 1131 CALL_END;
1236} 1132}
1237 1133
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 1134void
1287iow::poll (int events) 1135iow::poll (int events)
1288{ 1136{
1289 if (pe->poll != events) 1137 if (events != this->events)
1290 { 1138 {
1139 int active = ev_is_active ((ev_io *)this);
1291 if (pe->poll) stop (); 1140 if (active) stop ();
1292 pe->poll = events; 1141 ev_io_set ((ev_io *)this, fd, events);
1293 if (pe->poll) start (); 1142 if (active) start ();
1294 } 1143 }
1295} 1144}
1296 1145
1297void 1146void
1298_connect_to_perl () 1147_connect_to_perl ()
1299{ 1148{
1300 stash_cf = gv_stashpv ("cf" , 1); 1149 stash_cf = gv_stashpv ("cf", 1);
1301 1150
1302 stash_cf_object_wrap = gv_stashpv ("cf::object::wrap", 1); 1151 stash_cf_object_wrap = gv_stashpv ("cf::object::wrap", 1);
1303 stash_cf_object_player_wrap = gv_stashpv ("cf::object::player::wrap", 1); 1152 stash_cf_object_player_wrap = gv_stashpv ("cf::object::player::wrap", 1);
1304 stash_cf_player_wrap = gv_stashpv ("cf::player::wrap", 1); 1153 stash_cf_player_wrap = gv_stashpv ("cf::player::wrap", 1);
1305 stash_cf_map_wrap = gv_stashpv ("cf::map::wrap" , 1); 1154 stash_cf_map_wrap = gv_stashpv ("cf::map::wrap" , 1);
1307 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1); 1156 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1);
1308 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1); 1157 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1);
1309 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1); 1158 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1);
1310 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1); 1159 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1);
1311 1160
1161 sv_now = get_sv ("cf::NOW" , 1); SvUPGRADE (sv_now , SVt_NV);
1312 sv_runtime = get_sv ("cf::RUNTIME" , 1); sv_upgrade (sv_runtime , SVt_NV); 1162 sv_runtime = get_sv ("cf::RUNTIME" , 1); SvUPGRADE (sv_runtime , SVt_NV);
1163 sv_tick_start = get_sv ("cf::TICK_START", 1); SvUPGRADE (sv_tick_start, SVt_NV);
1313 sv_next_tick = get_sv ("cf::NEXT_TICK", 1); sv_upgrade (sv_next_tick, SVt_NV); 1164 sv_next_tick = get_sv ("cf::NEXT_TICK" , 1); SvUPGRADE (sv_next_tick , SVt_NV);
1314 1165
1315 cb_global = get_av ("cf::CB_GLOBAL", 1); 1166 cb_global = get_av ("cf::CB_GLOBAL", 1);
1316 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1); 1167 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1);
1317 cb_object = get_av ("cf::CB_OBJECT", 1); 1168 cb_object = get_av ("cf::CB_OBJECT", 1);
1318 cb_player = get_av ("cf::CB_PLAYER", 1); 1169 cb_player = get_av ("cf::CB_PLAYER", 1);
1323 1174
1324MODULE = cf PACKAGE = cf PREFIX = cf_ 1175MODULE = cf PACKAGE = cf PREFIX = cf_
1325 1176
1326BOOT: 1177BOOT:
1327{ 1178{
1328 I_EVENT_API (PACKAGE); watcher_base::GEventAPI = GEventAPI; 1179 I_EV_API (PACKAGE); evapi::GEVAPI = GEVAPI;
1329 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI; 1180 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI;
1330 1181
1331 _connect_to_perl (); 1182 _connect_to_perl ();
1332 1183
1333 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1)); 1184 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1));
1334 1185
1352 const_iv (Map0Cmd) const_iv (Map1Cmd) const_iv (Map1aCmd) 1203 const_iv (Map0Cmd) const_iv (Map1Cmd) const_iv (Map1aCmd)
1353 1204
1354 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y) 1205 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y)
1355 1206
1356 const_iv (MAX_TIME) 1207 const_iv (MAX_TIME)
1208 const_iv (MAXSOCKBUF)
1357 1209
1358 const_iv (NUM_BODY_LOCATIONS) 1210 const_iv (NUM_BODY_LOCATIONS)
1359 const_iv (body_range) const_iv (body_shield) const_iv (body_combat) 1211 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) 1212 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) 1213 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) 1358 const_iv (P_NO_CLERIC) const_iv (P_OUT_OF_MAP) const_iv (P_NEW_MAP) const_iv (P_UPTODATE)
1507 1359
1508 const_iv (UP_OBJ_INSERT) const_iv (UP_OBJ_REMOVE) const_iv (UP_OBJ_CHANGE) const_iv (UP_OBJ_FACE) 1360 const_iv (UP_OBJ_INSERT) const_iv (UP_OBJ_REMOVE) const_iv (UP_OBJ_CHANGE) const_iv (UP_OBJ_FACE)
1509 1361
1510 const_iv (INS_NO_MERGE) const_iv (INS_ABOVE_FLOOR_ONLY) const_iv (INS_NO_WALK_ON) 1362 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) 1363 const_iv (INS_ON_TOP) const_iv (INS_BELOW_ORIGINATOR)
1512 1364
1513 const_iv (WILL_APPLY_HANDLE) const_iv (WILL_APPLY_TREASURE) const_iv (WILL_APPLY_EARTHWALL) 1365 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) 1366 const_iv (WILL_APPLY_DOOR) const_iv (WILL_APPLY_FOOD)
1515 1367
1516 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE) 1368 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE)
1550 const_iv (ATNR_PARALYZE) const_iv (ATNR_TURN_UNDEAD) const_iv (ATNR_FEAR) const_iv (ATNR_CANCELLATION) 1402 const_iv (ATNR_PARALYZE) const_iv (ATNR_TURN_UNDEAD) const_iv (ATNR_FEAR) const_iv (ATNR_CANCELLATION)
1551 const_iv (ATNR_DEPLETE) const_iv (ATNR_DEATH) const_iv (ATNR_CHAOS) const_iv (ATNR_COUNTERSPELL) 1403 const_iv (ATNR_DEPLETE) const_iv (ATNR_DEATH) const_iv (ATNR_CHAOS) const_iv (ATNR_COUNTERSPELL)
1552 const_iv (ATNR_GODPOWER) const_iv (ATNR_HOLYWORD) const_iv (ATNR_BLIND) const_iv (ATNR_INTERNAL) 1404 const_iv (ATNR_GODPOWER) const_iv (ATNR_HOLYWORD) const_iv (ATNR_BLIND) const_iv (ATNR_INTERNAL)
1553 const_iv (ATNR_LIFE_STEALING) const_iv (ATNR_DISEASE) 1405 const_iv (ATNR_LIFE_STEALING) const_iv (ATNR_DISEASE)
1554 1406
1555 const_iv (MAP_IN_MEMORY) const_iv (MAP_SWAPPED) const_iv (MAP_LOADING) const_iv (MAP_SAVING) 1407 const_iv (MAP_ACTIVE) const_iv (MAP_SWAPPED) const_iv (MAP_LOADING) const_iv (MAP_SAVING)
1408 const_iv (MAP_INACTIVE)
1556 1409
1557 const_iv (KLASS_ATTACHABLE) const_iv (KLASS_GLOBAL) const_iv (KLASS_OBJECT) 1410 const_iv (KLASS_ATTACHABLE) const_iv (KLASS_GLOBAL) const_iv (KLASS_OBJECT)
1558 const_iv (KLASS_CLIENT) const_iv (KLASS_PLAYER) const_iv (KLASS_MAP) 1411 const_iv (KLASS_CLIENT) const_iv (KLASS_PLAYER) const_iv (KLASS_MAP)
1559 1412
1560 const_iv (VERSION_CS) const_iv (VERSION_SC) 1413 const_iv (VERSION_CS) const_iv (VERSION_SC)
1665 } 1518 }
1666 1519
1667 SvCUR_set (data_sv, dst - SvPVX (data_sv)); 1520 SvCUR_set (data_sv, dst - SvPVX (data_sv));
1668} 1521}
1669 1522
1523void evthread_start (int aiofd)
1524
1670void _post_tick () 1525void cede_to_tick ()
1671 CODE: 1526 CODE:
1672 coroapi::next_cede = SvNV (sv_next_tick) - TICK * (1. - 1. / CEDES_PER_TICK); 1527 coroapi::cede_to_tick ();
1673 1528
1674NV till_cede () 1529NV till_tick ()
1675 CODE: 1530 CODE:
1676 RETVAL = coroapi::next_cede - now (); 1531 RETVAL = SvNVX (sv_next_tick) - now ();
1677 OUTPUT: 1532 OUTPUT:
1678 RETVAL 1533 RETVAL
1679 1534
1680NV till_tick () 1535int tick_inhibit ()
1681 CODE: 1536 CODE:
1682 RETVAL = SvNV (sv_next_tick) - now (); 1537 RETVAL = tick_inhibit;
1683 OUTPUT: 1538 OUTPUT:
1684 RETVAL 1539 RETVAL
1540
1541void tick_inhibit_inc ()
1542 CODE:
1543 ++tick_inhibit;
1544
1545void tick_inhibit_dec ()
1546 CODE:
1547 if (!--tick_inhibit)
1548 if (tick_pending)
1549 {
1550 ev_async_send (EV_DEFAULT, &tick_watcher);
1551 coroapi::cede ();
1552 }
1553
1554void server_tick ()
1555 CODE:
1556{
1557 NOW = ev_now (EV_DEFAULT);
1558 SvNV_set (sv_now, NOW); SvNOK_only (sv_now);
1559 SvNV_set (sv_tick_start, NOW); SvNOK_only (sv_tick_start);
1560 runtime = SvNVX (sv_runtime);
1561
1562 server_tick ();
1563
1564 NOW = ev_time ();
1565 SvNV_set (sv_now, NOW); SvNOK_only (sv_now);
1566 runtime += TICK;
1567 SvNV_set (sv_runtime, runtime); SvNOK_only (sv_runtime);
1568}
1685 1569
1686NV floor (NV x) 1570NV floor (NV x)
1687 1571
1688NV ceil (NV x) 1572NV ceil (NV x)
1689 1573
1709 CODE: 1593 CODE:
1710 RETVAL = lerp (value, min_in, max_in, min_out, max_out); 1594 RETVAL = lerp (value, min_in, max_in, min_out, max_out);
1711 OUTPUT: 1595 OUTPUT:
1712 RETVAL 1596 RETVAL
1713 1597
1714void cede_to_tick () 1598void weaken (...)
1715 CODE: 1599 PROTOTYPE: @
1716 coroapi::cede_to_tick (); 1600 CODE:
1717 1601 while (items > 0)
1718void server_tick () 1602 sv_rvweaken (ST (--items));
1719 CODE:
1720 NOW = now ();
1721 runtime = SvNVx (sv_runtime);
1722 server_tick ();
1723 1603
1724void 1604void
1725log_backtrace (utf8_string msg) 1605log_backtrace (utf8_string msg)
1726 1606
1727void 1607void
1732octet_string path_combine (octet_string base, octet_string path) 1612octet_string path_combine (octet_string base, octet_string path)
1733 PROTOTYPE: $$ 1613 PROTOTYPE: $$
1734 1614
1735octet_string path_combine_and_normalize (octet_string base, octet_string path) 1615octet_string path_combine_and_normalize (octet_string base, octet_string path)
1736 PROTOTYPE: $$ 1616 PROTOTYPE: $$
1617
1618void
1619mallinfo ()
1620 PPCODE:
1621{
1622#if __GLIBC__
1623 struct mallinfo mai = mallinfo ();
1624 EXTEND (SP, 10*2);
1625 PUSHs (sv_2mortal (newSVpv ("arena" , 0))); PUSHs (sv_2mortal (newSViv (mai.arena)));
1626 PUSHs (sv_2mortal (newSVpv ("ordblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.ordblks)));
1627 PUSHs (sv_2mortal (newSVpv ("smblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.smblks)));
1628 PUSHs (sv_2mortal (newSVpv ("hblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.hblks)));
1629 PUSHs (sv_2mortal (newSVpv ("hblkhd" , 0))); PUSHs (sv_2mortal (newSViv (mai.hblkhd)));
1630 PUSHs (sv_2mortal (newSVpv ("usmblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.usmblks)));
1631 PUSHs (sv_2mortal (newSVpv ("fsmblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.fsmblks)));
1632 PUSHs (sv_2mortal (newSVpv ("uordblks", 0))); PUSHs (sv_2mortal (newSViv (mai.uordblks)));
1633 PUSHs (sv_2mortal (newSVpv ("fordblks", 0))); PUSHs (sv_2mortal (newSViv (mai.fordblks)));
1634 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost)));
1635#endif
1636 EXTEND (SP, 2*2);
1637 PUSHs (sv_2mortal (newSVpv ("slice_alloc", 0))); PUSHs (sv_2mortal (newSVuv (slice_alloc)));
1638 PUSHs (sv_2mortal (newSVpv ("shstr_alloc", 0))); PUSHs (sv_2mortal (newSVuv (shstr_alloc)));
1639}
1737 1640
1738void 1641void
1739sub_generation_inc () 1642sub_generation_inc ()
1740 CODE: 1643 CODE:
1741 PL_sub_generation++; 1644 PL_sub_generation++;
1766 1669
1767void abort () 1670void abort ()
1768 1671
1769void reset_signals () 1672void reset_signals ()
1770 1673
1771void fork_abort (octet_string cause = "cf::fork_abort") 1674void fork_abort (const_octet_string cause = "cf::fork_abort")
1772 1675
1773void cleanup (octet_string cause, bool make_core = false) 1676void cleanup (const_octet_string cause, bool make_core = false)
1774 1677
1775void emergency_save () 1678void emergency_save ()
1776 1679
1777void _exit (int status = EXIT_SUCCESS) 1680void _exit (int status = EXIT_SUCCESS)
1778 1681
1779UV sv_2watcher (SV *w)
1780 CODE:
1781 RETVAL = (UV)GEventAPI->sv_2watcher (w);
1782 OUTPUT:
1783 RETVAL
1784
1785#if _POSIX_MEMLOCK 1682#if _POSIX_MEMLOCK
1786 1683
1787int mlockall (int flags = MCL_CURRENT | MCL_FUTURE) 1684int mlockall (int flags = MCL_CURRENT | MCL_FUTURE)
1685 INIT:
1686 mallopt (M_PERTURB, 0xaa); // bug-workaround for linux glibc+mlockall+calloc
1788 1687
1789int munlockall () 1688int munlockall ()
1790 1689
1791#endif 1690#endif
1792 1691
1834 RETVAL = newSVpv (resist_plus[atnr], 0); 1733 RETVAL = newSVpv (resist_plus[atnr], 0);
1835 else 1734 else
1836 XSRETURN_UNDEF; 1735 XSRETURN_UNDEF;
1837 OUTPUT: RETVAL 1736 OUTPUT: RETVAL
1838 1737
1738UUID
1739uuid_cur ()
1740 CODE:
1741 RETVAL = UUID::cur;
1742 OUTPUT:
1743 RETVAL
1744
1745UUID
1746uuid_gen ()
1747 CODE:
1748 RETVAL = UUID::gen ();
1749 OUTPUT:
1750 RETVAL
1751
1752val64
1753uuid_seq (UUID uuid)
1754 CODE:
1755 RETVAL = uuid.seq;
1756 OUTPUT:
1757 RETVAL
1758
1759UUID
1760uuid_str (val64 seq)
1761 CODE:
1762 RETVAL.seq = seq;
1763 OUTPUT:
1764 RETVAL
1765
1766void
1767coin_names ()
1768 PPCODE:
1769 EXTEND (SP, NUM_COINS);
1770 for (int i = 0; i < NUM_COINS; ++i)
1771 PUSHs (sv_2mortal (newSVpv (coins [i], 0)));
1772
1773void
1774coin_archetypes ()
1775 PPCODE:
1776 EXTEND (SP, NUM_COINS);
1777 for (int i = 0; i < NUM_COINS; ++i)
1778 PUSHs (sv_2mortal (to_sv (archetype::find (coins [i]))));
1779
1839bool 1780bool
1840load_resource_file (octet_string filename) 1781load_resource_file (octet_string filename)
1841 1782
1842MODULE = cf PACKAGE = cf::attachable 1783MODULE = cf PACKAGE = cf::attachable
1843 1784
1981 1922
1982int need_identify (object *obj); 1923int need_identify (object *obj);
1983 1924
1984int apply_shop_mat (object *shop_mat, object *op); 1925int apply_shop_mat (object *shop_mat, object *op);
1985 1926
1986int move_player (object *op, int dir)
1987 CODE:
1988 RETVAL = move_player (op, dir);
1989 OUTPUT:
1990 RETVAL
1991
1992int move (object *op, int dir, object *originator = op) 1927int move (object *op, int dir, object *originator = op)
1993 CODE: 1928 CODE:
1994 RETVAL = move_ob (op, dir, originator); 1929 RETVAL = move_ob (op, dir, originator);
1995 OUTPUT: 1930 OUTPUT:
1996 RETVAL 1931 RETVAL
2002void apply_below (object *op) 1937void apply_below (object *op)
2003 CODE: 1938 CODE:
2004 player_apply_below (op); 1939 player_apply_below (op);
2005 1940
2006int cast_heal (object *op, object *caster, object *spell, int dir = 0) 1941int cast_heal (object *op, object *caster, object *spell, int dir = 0)
2007
2008object *cf_object_present_archname_inside (object *op, utf8_string whatstr)
2009
2010int cf_object_transfer (object *op, int x, int y, int r = 0, object_ornull *orig = 0)
2011
2012int cf_object_change_map (object *op, int x, int y, maptile *map)
2013 1942
2014#//TODO 1943#//TODO
2015object *clone_ (object *op, int recursive = 0) 1944object *clone_ (object *op, int recursive = 0)
2016 CODE: 1945 CODE:
2017 if (recursive) 1946 if (recursive)
2064 1993
2065void drop (object *who, object *op) 1994void drop (object *who, object *op)
2066 1995
2067void pick_up (object *who, object *op) 1996void pick_up (object *who, object *op)
2068 1997
2069int cf_object_teleport (object *op, maptile *map, int x, int y)
2070
2071void update_object (object *op, int action) 1998void update_object (object *op, int action)
2072 1999
2073object *cf_create_object_by_name (utf8_string name)
2074
2075void change_exp (object *op, uint64 exp, utf8_string skill_name = 0, int flag = 0) 2000void change_exp (object *op, uint64 exp, utf8_string skill_name = 0, int flag = 0)
2076 2001
2077void player_lvl_adj (object *who, object *skill = 0) 2002void player_lvl_adj (object *who, object *skill = 0)
2078 2003
2079int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL) 2004int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL)
2090 2015
2091void handle_apply_yield (object *op); 2016void handle_apply_yield (object *op);
2092 2017
2093 2018
2094MODULE = cf PACKAGE = cf::object PREFIX = cf_ 2019MODULE = cf PACKAGE = cf::object PREFIX = cf_
2095
2096object *cf_insert_ob_in_ob (object *ob, object *where)
2097 2020
2098# no clean way to get an object from an archetype - stupid idiotic 2021# no clean way to get an object from an archetype - stupid idiotic
2099# dumb kludgy misdesigned plug-in api slowly gets on my nerves. 2022# dumb kludgy misdesigned plug-in api slowly gets on my nerves.
2100 2023
2101object *new (utf8_string archetype = 0) 2024object *new (utf8_string archetype = 0)
2110# TODO: nuke 2033# TODO: nuke
2111object *insert_ob_in_map_at (object *ob, maptile *where, object_ornull *orig, int flag, int x, int y) 2034object *insert_ob_in_map_at (object *ob, maptile *where, object_ornull *orig, int flag, int x, int y)
2112 PROTOTYPE: $$$$$$ 2035 PROTOTYPE: $$$$$$
2113 CODE: 2036 CODE:
2114{ 2037{
2115 int unused_type; 2038 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y);
2116 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y);
2117} 2039}
2118 2040
2119const_utf8_string get_ob_key_value (object *op, utf8_string key) 2041const_utf8_string get_ob_key_value (object *op, utf8_string key)
2120 2042
2121bool set_ob_key_value (object *op, utf8_string key, utf8_string value = 0, int add_key = 1) 2043bool set_ob_key_value (object *op, utf8_string key, utf8_string value = 0, int add_key = 1)
2134 EXTEND (SP, 5); 2056 EXTEND (SP, 5);
2135 PUSHs (newSVuv (rv.distance)); 2057 PUSHs (newSVuv (rv.distance));
2136 PUSHs (newSViv (rv.distance_x)); 2058 PUSHs (newSViv (rv.distance_x));
2137 PUSHs (newSViv (rv.distance_y)); 2059 PUSHs (newSViv (rv.distance_y));
2138 PUSHs (newSViv (rv.direction)); 2060 PUSHs (newSViv (rv.direction));
2139 PUSHs (newSVcfapi (CFAPI_POBJECT, rv.part)); 2061 PUSHs (to_sv (rv.part));
2140} 2062}
2141 2063
2142bool on_same_map_as (object *ob, object *other) 2064bool on_same_map_as (object *ob, object *other)
2143 CODE: 2065 CODE:
2144 RETVAL = on_same_map (ob, other); 2066 RETVAL = on_same_map (ob, other);
2164player *player (object *op) 2086player *player (object *op)
2165 CODE: 2087 CODE:
2166 RETVAL = op->contr; 2088 RETVAL = op->contr;
2167 OUTPUT: RETVAL 2089 OUTPUT: RETVAL
2168 2090
2091bool move_player (object *op, int dir)
2092
2169void check_score (object *op) 2093void check_score (object *op)
2170 2094
2171void message (object *op, utf8_string txt, int flags = NDI_ORANGE | NDI_UNIQUE) 2095void message (object *op, utf8_string txt, int flags = NDI_ORANGE | NDI_UNIQUE)
2172 CODE: 2096 CODE:
2173 new_draw_info (flags, 0, op, txt); 2097 new_draw_info (flags, 0, op, txt);
2174 2098
2175void kill_player (object *op) 2099void kill_player (object *op)
2176 2100
2101void esrv_send_item (object *pl, object *item)
2102
2177void esrv_update_item (object *op, int what, object *item) 2103void esrv_update_item (object *pl, int what, object *item)
2178 C_ARGS: what, op, item 2104 C_ARGS: what, pl, item
2105
2106void esrv_del_item (object *pl, int tag)
2107 C_ARGS: pl->contr, tag
2179 2108
2180int command_summon (object *op, utf8_string params) 2109int command_summon (object *op, utf8_string params)
2181 2110
2182int command_arrest (object *op, utf8_string params) 2111int command_arrest (object *op, utf8_string params)
2183 2112
2204 pl->ob->stats.grace = pl->ob->stats.maxgrace; 2133 pl->ob->stats.grace = pl->ob->stats.maxgrace;
2205 pl->orig_stats = pl->ob->stats; 2134 pl->orig_stats = pl->ob->stats;
2206 2135
2207void clear_los (player *pl) 2136void clear_los (player *pl)
2208 2137
2209void cf_player_move (player *pl, int dir)
2210
2211bool 2138bool
2212cell_visible (player *pl, int dx, int dy) 2139cell_visible (player *pl, int dx, int dy)
2213 CODE: 2140 CODE:
2214 RETVAL = FABS (dx) <= pl->ns->mapx / 2 && FABS (dy) <= pl->ns->mapy / 2 2141 RETVAL = FABS (dx) <= pl->ns->mapx / 2 && FABS (dy) <= pl->ns->mapy / 2
2215 && !pl->blocked_los [dx + pl->ns->mapx / 2][dy + pl->ns->mapy / 2]; 2142 && !pl->blocked_los [dx + pl->ns->mapx / 2][dy + pl->ns->mapy / 2];
2221 CODE: 2148 CODE:
2222{ 2149{
2223 STRLEN len; 2150 STRLEN len;
2224 char *buf = SvPVbyte (packet, len); 2151 char *buf = SvPVbyte (packet, len);
2225 2152
2153 if (len > MAXSOCKBUF)
2154 pl->failmsg ("[packet too long for client]");
2226 if (pl->ns) 2155 else if (pl->ns)
2227 pl->ns->send_packet (buf, len); 2156 pl->ns->send_packet (buf, len);
2228} 2157}
2229 2158
2230int 2159int
2231listening (player *pl, int new_value = -1) 2160listening (player *pl, int new_value = -1)
2432get_connection (maptile *map, long connection) 2361get_connection (maptile *map, long connection)
2433 PPCODE: 2362 PPCODE:
2434 oblinkpt *obp = get_connection_links (map, connection); 2363 oblinkpt *obp = get_connection_links (map, connection);
2435 if (obp) 2364 if (obp)
2436 for (objectlink *ol = obp->link; ol; ol = ol->next) 2365 for (objectlink *ol = obp->link; ol; ol = ol->next)
2437 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, (object *)ol->ob))); 2366 XPUSHs (sv_2mortal (to_sv ((object *)ol->ob)));
2438
2439object *cf_map_insert_object_there (maptile *where, object *op, object *originator, int flags)
2440
2441object *cf_map_insert_object (maptile *where, object* op, int x, int y)
2442
2443object* cf_map_present_arch_by_name (maptile *map, const char* str, int nx, int ny)
2444 C_ARGS: str, map, nx, ny
2445 2367
2446void 2368void
2447get_map_flags (maptile *map, int x, int y) 2369get_map_flags (maptile *map, int x, int y)
2448 PPCODE: 2370 PPCODE:
2449{ 2371{
2454 EXTEND (SP, 4); 2376 EXTEND (SP, 4);
2455 PUSHs (sv_2mortal (newSViv (flags))); 2377 PUSHs (sv_2mortal (newSViv (flags)));
2456 2378
2457 if (GIMME_V == G_ARRAY) 2379 if (GIMME_V == G_ARRAY)
2458 { 2380 {
2459 PUSHs (sv_2mortal (newSVcfapi (CFAPI_PMAP, nmap))); 2381 PUSHs (sv_2mortal (to_sv (nmap)));
2460 PUSHs (sv_2mortal (newSViv (nx))); 2382 PUSHs (sv_2mortal (newSViv (nx)));
2461 PUSHs (sv_2mortal (newSViv (ny))); 2383 PUSHs (sv_2mortal (newSViv (ny)));
2462 } 2384 }
2463} 2385}
2464 2386
2473 2395
2474 get_map_flags (map, &nmap, x, y, &nx, &ny); 2396 get_map_flags (map, &nmap, x, y, &nx, &ny);
2475 2397
2476 if (nmap) 2398 if (nmap)
2477 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above) 2399 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above)
2478 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 2400 XPUSHs (sv_2mortal (to_sv (o)));
2479} 2401}
2480 2402
2481SV * 2403SV *
2482bot_at (maptile *obj, unsigned int x, unsigned int y) 2404bot_at (maptile *obj, unsigned int x, unsigned int y)
2483 PROTOTYPE: $$$ 2405 PROTOTYPE: $$$
2492 INIT: 2414 INIT:
2493 if (x >= obj->width || y >= obj->height) XSRETURN_UNDEF; 2415 if (x >= obj->width || y >= obj->height) XSRETURN_UNDEF;
2494 CODE: 2416 CODE:
2495 switch (ix) 2417 switch (ix)
2496 { 2418 {
2497 case 0: RETVAL = newSVcfapi (CFAPI_POBJECT, GET_MAP_OB (obj, x, y)); break; 2419 case 0: RETVAL = to_sv (GET_MAP_OB (obj, x, y)); break;
2498 case 1: RETVAL = newSVcfapi (CFAPI_POBJECT, GET_MAP_TOP (obj, x, y)); break; 2420 case 1: RETVAL = to_sv (GET_MAP_TOP (obj, x, y)); break;
2499 case 2: RETVAL = newSVuv ( GET_MAP_FLAGS (obj, x, y)); break; 2421 case 2: RETVAL = newSVuv (GET_MAP_FLAGS (obj, x, y)); break;
2500 case 3: RETVAL = newSViv ( GET_MAP_LIGHT (obj, x, y)); break; 2422 case 3: RETVAL = newSViv (GET_MAP_LIGHT (obj, x, y)); break;
2501 case 4: RETVAL = newSVuv ( GET_MAP_MOVE_BLOCK (obj, x, y)); break; 2423 case 4: RETVAL = newSVuv (GET_MAP_MOVE_BLOCK (obj, x, y)); break;
2502 case 5: RETVAL = newSVuv ( GET_MAP_MOVE_SLOW (obj, x, y)); break; 2424 case 5: RETVAL = newSVuv (GET_MAP_MOVE_SLOW (obj, x, y)); break;
2503 case 6: RETVAL = newSVuv ( GET_MAP_MOVE_ON (obj, x, y)); break; 2425 case 6: RETVAL = newSVuv (GET_MAP_MOVE_ON (obj, x, y)); break;
2504 case 7: RETVAL = newSVuv ( GET_MAP_MOVE_OFF (obj, x, y)); break; 2426 case 7: RETVAL = newSVuv (GET_MAP_MOVE_OFF (obj, x, y)); break;
2505 } 2427 }
2506 OUTPUT: RETVAL 2428 OUTPUT: RETVAL
2507 2429
2508void fix_walls (maptile *map, int x, int y) 2430void fix_walls (maptile *map, int x, int y)
2509 2431
2690 CODE: 2612 CODE:
2691{ 2613{
2692 STRLEN len; 2614 STRLEN len;
2693 char *buf = SvPVbyte (packet, len); 2615 char *buf = SvPVbyte (packet, len);
2694 2616
2617 if (len > MAXSOCKBUF)
2618 {
2619 // ugly
2620 if (THIS->pl)
2621 THIS->pl->failmsg ("[packet too long for client]");
2622 }
2623 else
2695 THIS->send_packet (buf, len); 2624 THIS->send_packet (buf, len);
2696} 2625}
2697 2626
2698faceidx 2627faceidx
2699client::need_face (utf8_string name, int pri = 0) 2628client::need_face (utf8_string name, int pri = 0)
2700 CODE: 2629 CODE:
2799 } 2728 }
2800} 2729}
2801 2730
2802int get_data_size (faceidx idx, int faceset = 0) 2731int get_data_size (faceidx idx, int faceset = 0)
2803 CODE: 2732 CODE:
2804 facedata *d = face_data (idx, faceset); assert (d); 2733 facedata *d = face_data (idx, faceset);
2734 if (!d) XSRETURN_UNDEF;
2805 RETVAL = d->data.size (); 2735 RETVAL = d->data.size ();
2806 OUTPUT: 2736 OUTPUT:
2807 RETVAL 2737 RETVAL
2808 2738
2809SV *get_chksum (faceidx idx, int faceset = 0) 2739SV *get_chksum (faceidx idx, int faceset = 0)
2810 CODE: 2740 CODE:
2811 facedata *d = face_data (idx, faceset); assert (d); 2741 facedata *d = face_data (idx, faceset);
2742 if (!d) XSRETURN_UNDEF;
2812 RETVAL = newSVpvn ((char *)d->chksum, CHKSUM_SIZE); 2743 RETVAL = newSVpvn ((char *)d->chksum, CHKSUM_SIZE);
2744 OUTPUT:
2745 RETVAL
2746
2747SV *get_data (faceidx idx, int faceset = 0)
2748 CODE:
2749 facedata *d = face_data (idx, faceset);
2750 if (!d) XSRETURN_UNDEF;
2751 RETVAL = newSVpvn (d->data.data (), d->data.length ());
2813 OUTPUT: 2752 OUTPUT:
2814 RETVAL 2753 RETVAL
2815 2754
2816void invalidate (faceidx idx) 2755void invalidate (faceidx idx)
2817 CODE: 2756 CODE:
2909extract_tags (object_thawer *self) 2848extract_tags (object_thawer *self)
2910 PPCODE: 2849 PPCODE:
2911 while (self->kw != KW_EOF) 2850 while (self->kw != KW_EOF)
2912 { 2851 {
2913 PUTBACK; 2852 PUTBACK;
2914 coroapi::cede_to_tick_every (5000); 2853 coroapi::cede_to_tick ();
2915 SPAGAIN; 2854 SPAGAIN;
2916 2855
2917 if (self->kw == KW_tag) 2856 if (self->kw == KW_tag)
2918 XPUSHs (sv_2mortal (newSVpv_utf8 (self->get_str ()))); 2857 XPUSHs (sv_2mortal (newSVpv_utf8 (self->get_str ())));
2919 2858

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines