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.369 by root, Wed Apr 14 02:31:24 2010 UTC vs.
Revision 1.427 by root, Tue Nov 20 14:50:17 2012 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2006,2007,2008,2009,2010,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * 5 *
6 * Deliantra is free software: you can redistribute it and/or modify it under 6 * Deliantra is free software: you can redistribute it and/or modify it under
7 * the terms of the Affero GNU General Public License as published by the 7 * the terms of the Affero GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your 8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version. 9 * option) any later version.
10 * 10 *
11 * This program is distributed in the hope that it will be useful, 11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details. 14 * GNU General Public License for more details.
15 * 15 *
16 * You should have received a copy of the Affero GNU General Public License 16 * You should have received a copy of the Affero GNU General Public License
17 * and the GNU General Public License along with this program. If not, see 17 * and the GNU General Public License along with this program. If not, see
18 * <http://www.gnu.org/licenses/>. 18 * <http://www.gnu.org/licenses/>.
19 * 19 *
20 * The authors can be reached via e-mail to <support@deliantra.net> 20 * The authors can be reached via e-mail to <support@deliantra.net>
21 */ 21 */
22 22
23#include "autoconf.h" 23#include "autoconf.h"
24 24
28 28
29#include <cstdarg> 29#include <cstdarg>
30#include <typeinfo> 30#include <typeinfo>
31 31
32#include "global.h" 32#include "global.h"
33#include "../random_maps/random_map.h" 33#include "rmg.h"
34#include "noise.h"
34#include "evthread.h" 35#include "evthread.h"
35#include "sproto.h" 36#include "sproto.h"
36 37
37#include <unistd.h> 38#include <unistd.h>
38#if _POSIX_MEMLOCK 39#if _POSIX_MEMLOCK
52#include <XSUB.h> 53#include <XSUB.h>
53 54
54#include "CoroAPI.h" 55#include "CoroAPI.h"
55#include "perlxsi.c" 56#include "perlxsi.c"
56 57
57extern sint64 *levels; // the experience table
58
59typedef object_thawer &object_thawer_ref; 58typedef object_thawer &object_thawer_ref;
60typedef object_freezer &object_freezer_ref; 59typedef object_freezer &object_freezer_ref;
61 60
62typedef std::string std__string; 61typedef std::string std__string;
63 62
68static int tick_inhibit; 67static int tick_inhibit;
69static int tick_pending; 68static int tick_pending;
70 69
71global gbl_ev; 70global gbl_ev;
72static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map; 71static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map;
73static SV *sv_runtime, *sv_tick_start, *sv_next_tick, *sv_now; 72static SV *sv_runtime, *sv_tick_start, *sv_next_tick, *sv_now, *sv_server_tick;
74static AV *av_reflect; 73static AV *av_reflect;
75 74
76bitset<NUM_EVENT_TYPES> ev_want_event; 75bitset<NUM_EVENT_TYPES> ev_want_event;
77bitset<NUM_TYPES> ev_want_type; 76bitset<NUM_TYPES> ev_want_type;
78 77
85 *stash_cf_mapspace_wrap, 84 *stash_cf_mapspace_wrap,
86 *stash_cf_client_wrap, 85 *stash_cf_client_wrap,
87 *stash_cf_arch_wrap, 86 *stash_cf_arch_wrap,
88 *stash_cf_party_wrap, 87 *stash_cf_party_wrap,
89 *stash_cf_region_wrap, 88 *stash_cf_region_wrap,
90 *stash_cf_living_wrap; 89 *stash_cf_living_wrap,
90 *stash_cf_layout_wrap,
91 *stash_ext_map_world;
91 92
92static SV 93static SV
93 *cv_cf_do_invoke, 94 *cv_cf_do_invoke,
94 *cv_cf__can_merge, 95 *cv_cf__can_merge,
95 *cv_cf_client_send_msg, 96 *cv_cf_client_send_msg,
97 *cv_cf_ix,
96 *cv_cf_tick, 98 *cv_cf_tick,
97 *cv_cf_match_match; 99 *cv_cf_match_match;
98 100
99#ifndef newSVpv_utf8 101#ifndef newSVpv_utf8
100static SV * 102static SV *
123 125
124 return sv; 126 return sv;
125} 127}
126#endif 128#endif
127 129
128static noinline utf8_string 130noinline utf8_string
129cfSvPVutf8_nolen (SV *sv) 131cfSvPVutf8_nolen (SV *sv)
130{ 132{
131 SvGETMAGIC (sv); 133 SvGETMAGIC (sv);
132 134
133 if (SvPOK (sv)) 135 if (SvPOK (sv))
252 { 254 {
253 static int last_mortalcount; 255 static int last_mortalcount;
254 if (mortals.size () != last_mortalcount) 256 if (mortals.size () != last_mortalcount)
255 { 257 {
256 last_mortalcount = mortals.size (); 258 last_mortalcount = mortals.size ();
257 LOG (llevInfo, "%d mortals.\n", (int)mortals.size ()); 259 object *specimen = is_a<object> (mortals [rndm (mortals.size ())]);
260
261 LOG (llevInfo, "%d mortals (random specimen: %s).\n",
262 (int)mortals.size (), specimen ? specimen->debug_desc () : "(not an object)");
258 263
259 if (0) 264 if (0)
260 { 265 {
261 for (int j = 0; j < mortals.size (); ++j)//D 266 for (int j = 0; j < mortals.size (); ++j)//D
262 fprintf (stderr, "%d:%s %p ", j, &((object *)mortals[j])->name, mortals[j]);//D 267 fprintf (stderr, "%d:%s %p ", j, &((object *)mortals[j])->name, mortals[j]);//D
353#endif 358#endif
354 359
355////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 360//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
356 361
357static SV * 362static SV *
358newSVptr (void *ptr, HV *stash, HV *hv = newHV ()) 363newSVptr (void *ptr, HV *stash, HV *hv)
359{ 364{
360 SV *sv;
361
362 if (!ptr) 365 if (!ptr)
363 return newSV (0); 366 return newSV (0);
364 367
365 sv_magicext ((SV *)hv, 0, PERL_MAGIC_ext, 0, (char *)ptr, 0); 368 sv_magicext ((SV *)hv, 0, PERL_MAGIC_ext, 0, (char *)ptr, 0);
366 return sv_bless (newRV_noinc ((SV *)hv), stash); 369 return sv_bless (newRV_noinc ((SV *)hv), stash);
370}
371
372static SV * noinline
373newSVptr (void *ptr, HV *stash)
374{
375 return newSVptr (ptr, stash, newHV ());
367} 376}
368 377
369static int 378static int
370attachable_free (pTHX_ SV *sv, MAGIC *mg) 379attachable_free (pTHX_ SV *sv, MAGIC *mg)
371{ 380{
383 return 0; 392 return 0;
384} 393}
385 394
386MGVTBL attachable::vtbl = {0, 0, 0, 0, attachable_free}; 395MGVTBL attachable::vtbl = {0, 0, 0, 0, attachable_free};
387 396
388static SV * 397static SV * noinline
389newSVattachable (attachable *obj, HV *stash) 398newSVattachable (attachable *obj, HV *stash)
390{ 399{
391 if (!obj) 400 if (!obj)
392 return newSV (0); 401 return newSV (0);
393 402
479 || (SvSTASH (SvRV (sv)) != stash_cf_object_wrap 488 || (SvSTASH (SvRV (sv)) != stash_cf_object_wrap
480 && SvSTASH (SvRV (sv)) != stash_cf_object_player_wrap 489 && SvSTASH (SvRV (sv)) != stash_cf_object_player_wrap
481 && SvSTASH (SvRV (sv)) != stash_cf_arch_wrap 490 && SvSTASH (SvRV (sv)) != stash_cf_arch_wrap
482 && !sv_derived_from (sv, "cf::object"))) 491 && !sv_derived_from (sv, "cf::object")))
483 croak ("object of type cf::object expected"); 492 croak ("object of type cf::object expected");
493
494 return SvPTR_nc (sv);
495}
496
497static long noinline
498SvPTR_ornull_maptile (SV *sv)
499{
500 if (expect_false (!SvOK (sv))) return 0;
501
502 if (!SvROK (sv)
503 || (SvSTASH (SvRV (sv)) != stash_cf_map_wrap
504 && SvSTASH (SvRV (sv)) != stash_ext_map_world
505 && !sv_derived_from (sv, "cf::map")))
506 croak ("object of type cf::map expected");
484 507
485 return SvPTR_nc (sv); 508 return SvPTR_nc (sv);
486} 509}
487 510
488static long noinline 511static long noinline
513static inline SV *to_sv (unsigned long long v) { return newSVval64 (v); } 536static inline SV *to_sv (unsigned long long v) { return newSVval64 (v); }
514static inline SV *to_sv (float v) { return newSVnv (v); } 537static inline SV *to_sv (float v) { return newSVnv (v); }
515static inline SV *to_sv (double v) { return newSVnv (v); } 538static inline SV *to_sv (double v) { return newSVnv (v); }
516static inline SV *to_sv (client * v) { return newSVattachable (v, stash_cf_client_wrap); } 539static inline SV *to_sv (client * v) { return newSVattachable (v, stash_cf_client_wrap); }
517static inline SV *to_sv (player * v) { return newSVattachable (v, stash_cf_player_wrap); } 540static inline SV *to_sv (player * v) { return newSVattachable (v, stash_cf_player_wrap); }
541// gcc dislikes noilnine on to_sv
518static inline SV *to_sv (object * v) { return newSVattachable (v, v && v->type == PLAYER ? stash_cf_object_player_wrap : stash_cf_object_wrap); } 542static noinline SV *to_sv_ni (object * v) { return newSVattachable (v, v && v->type == PLAYER ? stash_cf_object_player_wrap : stash_cf_object_wrap); }
543static inline SV *to_sv (object * v) { return to_sv_ni (v); }
519static inline SV *to_sv (maptile * v) { return newSVattachable (v, stash_cf_map_wrap); } 544static inline SV *to_sv (maptile * v) { return newSVattachable (v, stash_cf_map_wrap); }
520static inline SV *to_sv (archetype * v) { return newSVattachable (v, stash_cf_arch_wrap); } 545static inline SV *to_sv (archetype * v) { return newSVattachable (v, stash_cf_arch_wrap); }
521static inline SV *to_sv (region * v) { return newSVattachable (v, stash_cf_region_wrap); } 546static inline SV *to_sv (region * v) { return newSVattachable (v, stash_cf_region_wrap); }
522static inline SV *to_sv (partylist * v) { return newSVptr (v, stash_cf_party_wrap); } 547static inline SV *to_sv (partylist * v) { return newSVptr (v, stash_cf_party_wrap); }
523static inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); } 548static inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); }
524static inline SV *to_sv (mapspace * v) { return newSVptr (v, stash_cf_mapspace_wrap); } 549static inline SV *to_sv (mapspace * v) { return newSVptr (v, stash_cf_mapspace_wrap); }
550static inline SV *to_sv (layout * v) { return newSVptr (v, stash_cf_layout_wrap); }
525 551
526static inline SV *to_sv (object & v) { return to_sv (&v); } 552static inline SV *to_sv (object & v) { return to_sv (&v); }
527static inline SV *to_sv (living & v) { return to_sv (&v); } 553static inline SV *to_sv (living & v) { return to_sv (&v); }
528 554
529static inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); } 555static inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); }
565static inline void sv_to (SV *sv, unsigned long &v) { v = SvUV (sv); } 591static inline void sv_to (SV *sv, unsigned long &v) { v = SvUV (sv); }
566static inline void sv_to (SV *sv, signed long long &v) { v = ( signed long long)SvVAL64 (sv); } 592static inline void sv_to (SV *sv, signed long long &v) { v = ( signed long long)SvVAL64 (sv); }
567static inline void sv_to (SV *sv, unsigned long long &v) { v = (unsigned long long)SvVAL64 (sv); } 593static inline void sv_to (SV *sv, unsigned long long &v) { v = (unsigned long long)SvVAL64 (sv); }
568static inline void sv_to (SV *sv, float &v) { v = SvNV (sv); } 594static inline void sv_to (SV *sv, float &v) { v = SvNV (sv); }
569static inline void sv_to (SV *sv, double &v) { v = SvNV (sv); } 595static inline void sv_to (SV *sv, double &v) { v = SvNV (sv); }
570static inline void sv_to (SV *sv, client * &v) { v = (client *) (attachable *)SvPTR_ornull_client (sv); } 596static inline void sv_to (SV *sv, client * &v) { v = (client *) (attachable *)SvPTR_ornull_client (sv); }
571static inline void sv_to (SV *sv, player * &v) { v = (player *) (attachable *)SvPTR_ornull_player (sv); } 597static inline void sv_to (SV *sv, player * &v) { v = (player *) (attachable *)SvPTR_ornull_player (sv); }
572static inline void sv_to (SV *sv, object * &v) { v = (object *) (attachable *)SvPTR_ornull_object (sv); } 598static inline void sv_to (SV *sv, object * &v) { v = (object *) (attachable *)SvPTR_ornull_object (sv); }
599static inline void sv_to (SV *sv, maptile * &v) { v = (maptile *) (attachable *)SvPTR_ornull_maptile (sv); }
573static inline void sv_to (SV *sv, archetype * &v) { v = (archetype *)(attachable *)SvPTR_ornull (sv, "cf::arch"); } 600static inline void sv_to (SV *sv, archetype * &v) { v = (archetype *)(attachable *)SvPTR_ornull (sv, "cf::arch"); }
574static inline void sv_to (SV *sv, maptile * &v) { v = (maptile *) (attachable *)SvPTR_ornull (sv, "cf::map"); }
575static inline void sv_to (SV *sv, region * &v) { v = (region *) (attachable *)SvPTR_ornull (sv, "cf::region"); } 601static inline void sv_to (SV *sv, region * &v) { v = (region *) (attachable *)SvPTR_ornull (sv, "cf::region"); }
576static inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); } 602static inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); }
577static inline void sv_to (SV *sv, partylist * &v) { v = (partylist *) SvPTR_ornull (sv, "cf::party"); } 603static inline void sv_to (SV *sv, partylist * &v) { v = (partylist *) SvPTR_ornull (sv, "cf::party"); }
578static inline void sv_to (SV *sv, living * &v) { v = (living *) SvPTR_ornull (sv, "cf::living"); } 604static inline void sv_to (SV *sv, living * &v) { v = (living *) SvPTR_ornull (sv, "cf::living"); }
579static inline void sv_to (SV *sv, mapspace * &v) { v = (mapspace *) SvPTR_ornull (sv, "cf::mapspace"); } 605static inline void sv_to (SV *sv, mapspace * &v) { v = (mapspace *) SvPTR_ornull (sv, "cf::mapspace"); }
606static inline void sv_to (SV *sv, layout * &v) { v = (layout *) SvPTR_ornull (sv, "cf::layout"); }
580static inline void sv_to (SV *sv, object_freezer * &v) { v = (object_freezer *) SvPTR_ornull (sv, "cf::object::freezer"); } 607static inline void sv_to (SV *sv, object_freezer * &v) { v = (object_freezer *) SvPTR_ornull (sv, "cf::object::freezer"); }
581static inline void sv_to (SV *sv, object_thawer * &v) { v = (object_thawer *) SvPTR_ornull (sv, "cf::object::thawer" ); } 608static inline void sv_to (SV *sv, object_thawer * &v) { v = (object_thawer *) SvPTR_ornull (sv, "cf::object::thawer" ); }
582 609
583//static inline void sv_to (SV *sv, faceinfo * &v) { v = &faces [face_find (SvPV_nolen (sv), 0)]; } 610//static inline void sv_to (SV *sv, faceinfo * &v) { v = &faces [face_find (SvPV_nolen (sv), 0)]; }
584static inline void sv_to (SV *sv, treasurelist * &v) { v = treasurelist::find (SvPV_nolen (sv)); } 611static inline void sv_to (SV *sv, treasurelist * &v) { v = treasurelist::find (SvPV_nolen (sv)); }
597static inline void sv_to (SV *sv, std::string &v) 624static inline void sv_to (SV *sv, std::string &v)
598{ 625{
599 STRLEN len; 626 STRLEN len;
600 char *data = SvPVbyte (sv, len); 627 char *data = SvPVbyte (sv, len);
601 v.assign (data, len); 628 v.assign (data, len);
629}
630
631static inline void sv_to (SV *sv, refcnt_buf &v)
632{
633 STRLEN len;
634 char *data = SvPVbyte (sv, len);
635 refcnt_buf buf (data, len);
636 v = buf;
602} 637}
603 638
604static inline void sv_to (SV *sv, UUID &v) 639static inline void sv_to (SV *sv, UUID &v)
605{ 640{
606 if (!v.parse (SvPV_nolen (sv))) 641 if (!v.parse (SvPV_nolen (sv)))
695template<class type> 730template<class type>
696static void noinline 731static void noinline
697cf_obj_to (SV *arg, type &var) 732cf_obj_to (SV *arg, type &var)
698{ 733{
699 sv_to (arg, var); 734 sv_to (arg, var);
700 if (!var) 735 if (expect_false (!var))
701 croak ("must not pass invalid/null cf_obj here"); 736 croak ("must not pass invalid/null cf_obj here");
702} 737}
703 738
704template<class object> 739template<class object>
705static void noinline 740static void noinline
706cf_obj_ornull_to (SV *arg, object *&var) 741cf_obj_ornull_to (SV *arg, object *&var)
707{ 742{
708 if (SvOK (arg)) 743 if (SvOK (arg))
709 { 744 {
710 sv_to (arg, var); 745 sv_to (arg, var);
711 if (!var) 746 if (expect_false (!var))
712 croak ("unable to convert perl object to C++ object"); 747 croak ("unable to convert perl object to C++ object");
713 } 748 }
714 else 749 else
715 var = 0; 750 var = 0;
716} 751}
751 exit (EXIT_FAILURE); 786 exit (EXIT_FAILURE);
752 } 787 }
753 788
754 eval_pv ( 789 eval_pv (
755 "#line 1 'cfperl init'\n" 790 "#line 1 'cfperl init'\n"
756 "use EV ();\n" 791 "use EV ();\n" // required by bootstrap
757 "use Coro ();\n" 792 "use Coro ();\n" // required by bootstrap
758 "cf->bootstrap;\n" 793 "cf->bootstrap;\n" // required for cf::datadir
759 "unshift @INC, cf::datadir ();\n" 794 "unshift @INC, cf::datadir ();\n" // required for 'require' :)
760 "require cf;\n", 795 "require cf;\n",
761 0 796 0
762 ); 797 );
763 798
764 if (SvTRUE (ERRSV)) 799 if (SvTRUE (ERRSV))
1123 CALL_ARG (originator); 1158 CALL_ARG (originator);
1124 CALL_CALL ("cf::mapscript::activate", G_VOID); 1159 CALL_CALL ("cf::mapscript::activate", G_VOID);
1125 CALL_END; 1160 CALL_END;
1126} 1161}
1127 1162
1163void cfperl_ix (client *ns, int set, faceidx idx, int pri)
1164{
1165 CALL_BEGIN (3);
1166 CALL_ARG (ns);
1167 CALL_ARG (set);
1168 CALL_ARG (idx);
1169 CALL_ARG (pri);
1170 CALL_CALL (cv_cf_ix, G_VOID);
1171 CALL_END;
1172}
1173
1128player * 1174player *
1129player::find (const_utf8_string name) 1175player::find (const_utf8_string name)
1130{ 1176{
1131 CALL_BEGIN (1); 1177 CALL_BEGIN (1);
1132 CALL_ARG (name); 1178 CALL_ARG (name);
1226 CALL_ARG (y); 1272 CALL_ARG (y);
1227 CALL_CALL ("cf::object::player::goto", G_VOID); 1273 CALL_CALL ("cf::object::player::goto", G_VOID);
1228 CALL_END; 1274 CALL_END;
1229} 1275}
1230 1276
1231const_utf8_string 1277const_utf8_string
1232object::ref () const 1278object::ref () const
1233{ 1279{
1234 if (type == PLAYER) 1280 if (type == PLAYER)
1235 return format ("player/<1.%llx>/%s", (unsigned long long)uuid.seq, &name); 1281 return format ("player/<1.%llx>/%s", (unsigned long long)uuid.seq, &name);
1236 else 1282 else
1378 stash_cf_client_wrap = gv_stashpv ("cf::client::wrap", 1); 1424 stash_cf_client_wrap = gv_stashpv ("cf::client::wrap", 1);
1379 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1); 1425 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1);
1380 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1); 1426 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1);
1381 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1); 1427 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1);
1382 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1); 1428 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1);
1429 stash_cf_layout_wrap = gv_stashpv ("cf::layout::wrap", 1);
1430 stash_ext_map_world = gv_stashpv ("ext::map_world" , 1);
1383 1431
1384 sv_now = get_sv ("cf::NOW" , 1); SvUPGRADE (sv_now , SVt_NV); 1432 sv_now = get_sv ("cf::NOW" , 1); SvUPGRADE (sv_now , SVt_NV);
1385 sv_runtime = get_sv ("cf::RUNTIME" , 1); SvUPGRADE (sv_runtime , SVt_NV); 1433 sv_runtime = get_sv ("cf::RUNTIME" , 1); SvUPGRADE (sv_runtime , SVt_NV);
1434 sv_server_tick = get_sv ("cf::SERVER_TICK", 1); SvUPGRADE (sv_server_tick, SVt_IV);
1386 sv_tick_start = get_sv ("cf::TICK_START", 1); SvUPGRADE (sv_tick_start, SVt_NV); 1435 sv_tick_start = get_sv ("cf::TICK_START" , 1); SvUPGRADE (sv_tick_start , SVt_NV);
1387 sv_next_tick = get_sv ("cf::NEXT_TICK" , 1); SvUPGRADE (sv_next_tick , SVt_NV); 1436 sv_next_tick = get_sv ("cf::NEXT_TICK" , 1); SvUPGRADE (sv_next_tick , SVt_NV);
1388 1437
1389 cb_global = get_av ("cf::CB_GLOBAL", 1); 1438 cb_global = get_av ("cf::CB_GLOBAL", 1);
1390 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1); 1439 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1);
1391 cb_object = get_av ("cf::CB_OBJECT", 1); 1440 cb_object = get_av ("cf::CB_OBJECT", 1);
1392 cb_player = get_av ("cf::CB_PLAYER", 1); 1441 cb_player = get_av ("cf::CB_PLAYER", 1);
1399_connect_to_perl_2 () 1448_connect_to_perl_2 ()
1400{ 1449{
1401 cv_cf_do_invoke = (SV *)get_cv ("cf::do_invoke" , 0); assert (cv_cf_do_invoke); 1450 cv_cf_do_invoke = (SV *)get_cv ("cf::do_invoke" , 0); assert (cv_cf_do_invoke);
1402 cv_cf__can_merge = (SV *)get_cv ("cf::_can_merge" , 0); assert (cv_cf__can_merge); 1451 cv_cf__can_merge = (SV *)get_cv ("cf::_can_merge" , 0); assert (cv_cf__can_merge);
1403 cv_cf_client_send_msg = (SV *)get_cv ("cf::client::send_msg", 0); assert (cv_cf_client_send_msg); 1452 cv_cf_client_send_msg = (SV *)get_cv ("cf::client::send_msg", 0); assert (cv_cf_client_send_msg);
1453 cv_cf_ix = (SV *)get_cv ("cf::face::ix" , 0); assert (cv_cf_ix);
1404 cv_cf_tick = (SV *)get_cv ("cf::tick" , 0); assert (cv_cf_tick); 1454 cv_cf_tick = (SV *)get_cv ("cf::tick" , 0); assert (cv_cf_tick);
1405 cv_cf_match_match = (SV *)get_cv ("cf::match::match" , 0); assert (cv_cf_match_match); 1455 cv_cf_match_match = (SV *)get_cv ("cf::match::match" , 0); assert (cv_cf_match_match);
1406} 1456}
1407 1457
1408MODULE = cf PACKAGE = cf PREFIX = cf_ 1458MODULE = cf PACKAGE = cf PREFIX = cf_
1413 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI; 1463 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI;
1414 1464
1415 _connect_to_perl_1 (); 1465 _connect_to_perl_1 ();
1416 1466
1417 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1)); 1467 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1));
1418
1419 //{
1420 // require_pv ("Time::HiRes");
1421 //
1422 // SV **svp = hv_fetch (PL_modglobal, "Time::NVtime", 12, 0);
1423 // if (!svp) croak ("Time::HiRes is required");
1424 // if (!SvIOK(*svp)) croak ("Time::NVtime isn’t a function pointer");
1425 // coroapi::time = INT2PTR (double(*)(), SvIV(*svp));
1426 //}
1427 1468
1428 static const struct { 1469 static const struct {
1429 const char *name; 1470 const char *name;
1430 IV iv; 1471 IV iv;
1431 } *civ, const_iv[] = { 1472 } *civ, const_iv[] = {
1435# include "attackinc.h" 1476# include "attackinc.h"
1436# undef def 1477# undef def
1437# define def(uc, flags) const_iv (SK_ ## uc) 1478# define def(uc, flags) const_iv (SK_ ## uc)
1438# include "skillinc.h" 1479# include "skillinc.h"
1439# undef def 1480# undef def
1440 1481# define def(name, use, nonuse) const_iv (body_ ## name)
1441 const_iv (llevError) const_iv (llevInfo) const_iv (llevDebug) const_iv (llevMonster) 1482# include "slotinc.h"
1442 const_iv (logBacktrace) 1483# undef def
1443
1444 const_iv (Map0Cmd) const_iv (Map1Cmd) const_iv (Map1aCmd)
1445 1484
1446 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y) 1485 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y)
1447 1486
1448 const_iv (MAX_TIME) 1487 const_iv (MAX_TIME)
1449 const_iv (MAXSOCKBUF) 1488 const_iv (MAXSOCKBUF)
1463 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE) 1502 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE)
1464 1503
1465 const_iv (SK_EXP_ADD_SKILL) const_iv (SK_EXP_TOTAL) const_iv (SK_EXP_NONE) 1504 const_iv (SK_EXP_ADD_SKILL) const_iv (SK_EXP_TOTAL) const_iv (SK_EXP_NONE)
1466 const_iv (SK_SUBTRACT_SKILL_EXP) const_iv (SK_EXP_SKILL_ONLY) 1505 const_iv (SK_SUBTRACT_SKILL_EXP) const_iv (SK_EXP_SKILL_ONLY)
1467 1506
1468 const_iv (MAP_ACTIVE) const_iv (MAP_SWAPPED) const_iv (MAP_LOADING) const_iv (MAP_SAVING)
1469 const_iv (MAP_INACTIVE)
1470
1471 const_iv (KLASS_ATTACHABLE) const_iv (KLASS_GLOBAL) const_iv (KLASS_OBJECT) 1507 const_iv (KLASS_ATTACHABLE) const_iv (KLASS_GLOBAL) const_iv (KLASS_OBJECT)
1472 const_iv (KLASS_CLIENT) const_iv (KLASS_PLAYER) const_iv (KLASS_MAP) 1508 const_iv (KLASS_CLIENT) const_iv (KLASS_PLAYER) const_iv (KLASS_MAP)
1473 1509
1474 const_iv (CS_QUERY_YESNO) const_iv (CS_QUERY_SINGLECHAR) const_iv (CS_QUERY_HIDEINPUT) 1510 const_iv (CS_QUERY_YESNO) const_iv (CS_QUERY_SINGLECHAR) const_iv (CS_QUERY_HIDEINPUT)
1475 1511
1476 const_iv (IO_HEADER) const_iv (IO_OBJECTS) const_iv (IO_UNIQUES) 1512 const_iv (IO_HEADER) const_iv (IO_OBJECTS) const_iv (IO_UNIQUES)
1477 }; 1513 };
1478 1514
1479 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1515 for (civ = const_iv + array_length (const_iv); civ-- > const_iv; )
1480 newCONSTSUB (stash_cf, (char *)civ->name, newSViv (civ->iv)); 1516 newCONSTSUB (stash_cf, (char *)civ->name, newSViv (civ->iv));
1481 1517
1482 static const struct { 1518 static const struct {
1483 const char *name; 1519 const char *name;
1484 int skip; 1520 int skip;
1490# undef def 1526# undef def
1491 }; 1527 };
1492 1528
1493 AV *av = get_av ("cf::EVENT", 1); 1529 AV *av = get_av ("cf::EVENT", 1);
1494 1530
1495 for (eiv = event_iv + sizeof (event_iv) / sizeof (event_iv [0]); eiv-- > event_iv; ) 1531 for (eiv = event_iv + array_length (event_iv); eiv-- > event_iv; )
1496 { 1532 {
1497 AV *event = newAV (); 1533 AV *event = newAV ();
1498 av_push (event, newSVpv ((char *)eiv->name + eiv->skip, 0)); 1534 av_push (event, newSVpv ((char *)eiv->name + eiv->skip, 0));
1499 av_push (event, newSViv (eiv->klass)); 1535 av_push (event, newSViv (eiv->klass));
1500 av_store (av, eiv->iv, newRV_noinc ((SV *)event)); 1536 av_store (av, eiv->iv, newRV_noinc ((SV *)event));
1507 1543
1508void _gv_clear (SV *gv) 1544void _gv_clear (SV *gv)
1509 CODE: 1545 CODE:
1510 assert (SvTYPE (gv) == SVt_PVGV); 1546 assert (SvTYPE (gv) == SVt_PVGV);
1511# define f(sv) { SV *sv_ = (SV *)(sv); sv = 0; SvREFCNT_dec (sv_); } 1547# define f(sv) { SV *sv_ = (SV *)(sv); sv = 0; SvREFCNT_dec (sv_); }
1548 SvREFCNT_inc (gv);
1512 f (GvGP (gv)->gp_form); 1549 f (GvGP (gv)->gp_form);
1513 f (GvGP (gv)->gp_io); 1550 f (GvGP (gv)->gp_io);
1514 f (GvGP (gv)->gp_sv); 1551 f (GvGP (gv)->gp_sv);
1515 f (GvGP (gv)->gp_av); 1552 f (GvGP (gv)->gp_av);
1516 f (GvGP (gv)->gp_hv); 1553 f (GvGP (gv)->gp_hv);
1517 f (GvGP (gv)->gp_cv); 1554 f (GvGP (gv)->gp_cv);
1518 GvCVGEN (gv) = 0; 1555 GvCVGEN (gv) = 0;
1519 GvMULTI_off (gv); 1556 GvMULTI_off (gv);
1557 SvREFCNT_dec (gv);
1520# undef f 1558# undef f
1521 1559
1522void _connect_to_perl_1 () 1560void _connect_to_perl_1 ()
1523 1561
1524void _connect_to_perl_2 () 1562void _connect_to_perl_2 ()
1535 1573
1536 for_all_objects (op) 1574 for_all_objects (op)
1537 op->reattach (); 1575 op->reattach ();
1538} 1576}
1539 1577
1540# support function for map-world.ext
1541void _quantise (SV *data_sv, SV *plt_sv)
1542 CODE:
1543{
1544 if (!SvROK (plt_sv) || SvTYPE (SvRV (plt_sv)) != SVt_PVAV)
1545 croak ("_quantise called with invalid agruments");
1546
1547 plt_sv = SvRV (plt_sv);
1548 SV **plt = AvARRAY (plt_sv);
1549 int plt_count = AvFILL (plt_sv) + 1;
1550
1551 STRLEN len;
1552 char *data = SvPVbyte (data_sv, len);
1553 char *dst = data;
1554
1555 while (len >= 3)
1556 {
1557 for (SV **val_sv = plt + plt_count; val_sv-- > plt; )
1558 {
1559 char *val = SvPVX (*val_sv);
1560
1561 if (val [0] == data [0]
1562 && val [1] == data [1]
1563 && val [2] == data [2])
1564 {
1565 *dst++ = val [3];
1566 goto next;
1567 }
1568 }
1569
1570 croak ("_quantise: color not found in palette: #%02x%02x%02x, at offset %d %d",
1571 (uint8_t)data [0], (uint8_t)data [1], (uint8_t)data [2],
1572 dst - SvPVX (data_sv), len);
1573
1574 next:
1575 data += 3;
1576 len -= 3;
1577 }
1578
1579 SvCUR_set (data_sv, dst - SvPVX (data_sv));
1580}
1581
1582void init_anim () 1578void init_anim ()
1583 1579
1584void init_globals () 1580void init_globals ()
1585 1581
1586void init_experience ()
1587
1588void init_attackmess () 1582void init_attackmess ()
1589 1583
1590void init_dynamic () 1584void init_dynamic ()
1591 1585
1592void load_settings () 1586void load_settings ()
1593 1587
1588void _reload_exp_table ()
1589
1594void load_materials () 1590void _reload_materials ()
1595 1591
1596void init_uuid () 1592void init_uuid ()
1597 CODE: 1593 CODE:
1598 UUID::init (); 1594 UUID::init ();
1599 1595
1610 coroapi::cede_to_tick (); 1606 coroapi::cede_to_tick ();
1611 1607
1612NV till_tick () 1608NV till_tick ()
1613 CODE: 1609 CODE:
1614 RETVAL = SvNVX (sv_next_tick) - now (); 1610 RETVAL = SvNVX (sv_next_tick) - now ();
1615 OUTPUT: 1611 OUTPUT: RETVAL
1616 RETVAL
1617 1612
1618int tick_inhibit () 1613int tick_inhibit ()
1619 CODE: 1614 CODE:
1620 RETVAL = tick_inhibit; 1615 RETVAL = tick_inhibit;
1621 OUTPUT: 1616 OUTPUT: RETVAL
1622 RETVAL
1623 1617
1624void tick_inhibit_inc () 1618void tick_inhibit_inc ()
1625 CODE: 1619 CODE:
1626 ++tick_inhibit; 1620 ++tick_inhibit;
1627 1621
1632 { 1626 {
1633 ev_async_send (EV_DEFAULT, &tick_watcher); 1627 ev_async_send (EV_DEFAULT, &tick_watcher);
1634 coroapi::cede (); 1628 coroapi::cede ();
1635 } 1629 }
1636 1630
1637void server_tick () 1631void one_tick ()
1638 CODE: 1632 CODE:
1639{ 1633{
1640 ev_now_update (EV_DEFAULT); 1634 ev_now_update (EV_DEFAULT);
1641 NOW = ev_now (EV_DEFAULT); 1635 NOW = ev_now (EV_DEFAULT);
1642 SvNV_set (sv_now, NOW); SvNOK_only (sv_now); 1636 SvNV_set (sv_now, NOW); SvNOK_only (sv_now);
1643 SvNV_set (sv_tick_start, NOW); SvNOK_only (sv_tick_start); 1637 SvNV_set (sv_tick_start, NOW); SvNOK_only (sv_tick_start);
1644 runtime = SvNVX (sv_runtime); 1638 runtime = SvNVX (sv_runtime);
1645 1639
1640 one_tick ();
1641
1646 server_tick (); 1642 ++server_tick;
1643 SvUV_set (sv_server_tick, server_tick); SvIOK_only_UV (sv_server_tick);
1647 1644
1648 ev_now_update (EV_DEFAULT); 1645 ev_now_update (EV_DEFAULT);
1649 NOW = ev_now (EV_DEFAULT); 1646 NOW = ev_now (EV_DEFAULT);
1650 SvNV_set (sv_now, NOW); SvNOK_only (sv_now); 1647 SvNV_set (sv_now, NOW); SvNOK_only (sv_now);
1648
1651 runtime += TICK; 1649 runtime += TICK;
1652 SvNV_set (sv_runtime, runtime); SvNOK_only (sv_runtime); 1650 SvNV_set (sv_runtime, runtime); SvNOK_only (sv_runtime);
1653} 1651}
1654 1652
1655NV floor (NV x) 1653NV floor (NV x)
1659NV rndm (...) 1657NV rndm (...)
1660 ALIAS: 1658 ALIAS:
1661 rmg_rndm = 1 1659 rmg_rndm = 1
1662 CODE: 1660 CODE:
1663{ 1661{
1664 rand_gen &gen = ix ? rmg_rndm : rndm; 1662 rand_gen &gen = ix ? rmg_rndm : rndm;
1665 switch (items) 1663 switch (items)
1666 { 1664 {
1667 case 0: RETVAL = gen (); break; 1665 case 0: RETVAL = gen (); break;
1668 case 1: RETVAL = gen (SvUV (ST (0))); break; 1666 case 1: RETVAL = gen (SvUV (ST (0))); break;
1669 case 2: RETVAL = gen (SvIV (ST (0)), SvIV (ST (1))); break; 1667 case 2: RETVAL = gen (SvIV (ST (0)), SvIV (ST (1))); break;
1670 default: croak ("cf::rndm requires zero, one or two parameters."); break; 1668 default: croak ("cf::rndm requires zero, one or two parameters."); break;
1671 } 1669 }
1672} 1670}
1673 OUTPUT: 1671 OUTPUT: RETVAL
1674 RETVAL
1675 1672
1676NV clamp (NV value, NV min_value, NV max_value) 1673NV clamp (NV value, NV min_value, NV max_value)
1677 CODE: 1674 CODE:
1678 RETVAL = clamp (value, min_value, max_value); 1675 RETVAL = clamp (value, min_value, max_value);
1679 OUTPUT: 1676 OUTPUT: RETVAL
1680 RETVAL
1681 1677
1682NV lerp (NV value, NV min_in, NV max_in, NV min_out, NV max_out) 1678NV lerp (NV value, NV min_in, NV max_in, NV min_out, NV max_out)
1683 CODE: 1679 CODE:
1684 RETVAL = lerp (value, min_in, max_in, min_out, max_out); 1680 RETVAL = lerp (value, min_in, max_in, min_out, max_out);
1685 OUTPUT: 1681 OUTPUT: RETVAL
1686 RETVAL
1687 1682
1688const char *ordinal (int i) 1683const char *ordinal (int i)
1689 1684
1690void weaken (...) 1685void weaken (...)
1691 PROTOTYPE: @ 1686 PROTOTYPE: @
1754 1749
1755int mlockall (int flags = MCL_CURRENT | MCL_FUTURE) 1750int mlockall (int flags = MCL_CURRENT | MCL_FUTURE)
1756 INIT: 1751 INIT:
1757#if __GLIBC__ 1752#if __GLIBC__
1758 mallopt (M_TOP_PAD, 1024 * 1024); 1753 mallopt (M_TOP_PAD, 1024 * 1024);
1759 mallopt (M_MMAP_THRESHOLD, 1024 * 1024 * 128); 1754 mallopt (M_MMAP_THRESHOLD, 1024 * 1024);
1760 mallopt (M_MMAP_MAX, 0); // likely bug-workaround, also frees memory 1755 mallopt (M_MMAP_MAX, 0); // likely bug-workaround, also frees memory
1756 if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 10))
1761 mallopt (M_PERTURB, 0xee); // bug-workaround for linux glibc+mlockall+calloc 1757 mallopt (M_PERTURB, 0xee); // bug-workaround for linux glibc+mlockall+calloc
1762#endif 1758#endif
1763 1759
1764int munlockall () 1760int munlockall ()
1765 1761
1766#endif 1762#endif
1792 PUSHs (sv_2mortal (newSVpv ("objects" , 0))); PUSHs (sv_2mortal (newSVuv (objects.size () * sizeof (object)))); 1788 PUSHs (sv_2mortal (newSVpv ("objects" , 0))); PUSHs (sv_2mortal (newSVuv (objects.size () * sizeof (object))));
1793 PUSHs (sv_2mortal (newSVpv ("sv_count" , 0))); PUSHs (sv_2mortal (newSVuv (PL_sv_count))); 1789 PUSHs (sv_2mortal (newSVpv ("sv_count" , 0))); PUSHs (sv_2mortal (newSVuv (PL_sv_count)));
1794 PUSHs (sv_2mortal (newSVpv ("sv_objcount", 0))); PUSHs (sv_2mortal (newSVuv (PL_sv_objcount))); 1790 PUSHs (sv_2mortal (newSVpv ("sv_objcount", 0))); PUSHs (sv_2mortal (newSVuv (PL_sv_objcount)));
1795} 1791}
1796 1792
1797int find_animation (utf8_string text)
1798 PROTOTYPE: $
1799
1800int random_roll (int min, int max, object *op, int goodbad); 1793int random_roll (int min, int max, object *op, int goodbad);
1801 1794
1802const_utf8_string cost_string_from_value(uint64 cost, int approx = 0) 1795const_utf8_string cost_string_from_value(uint64 cost, int approx = 0)
1803 1796
1797int exp_to_level (val64 exp)
1798
1799val64 level_to_min_exp (int level)
1800
1801const_utf8_string
1802spellpathnames (int idx)
1803 CODE:
1804 RETVAL = spellpathnames [idx];
1805 OUTPUT: RETVAL
1806
1807SV *
1808attacktype_name (int atnr)
1809 CODE:
1810 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1811 ? newSVpv (attacktype_name [atnr], 0)
1812 : &PL_sv_undef;
1813 OUTPUT: RETVAL
1814
1815SV *
1816attacktype_desc (int atnr)
1817 CODE:
1818 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1819 ? newSVpv (attacktype_desc [atnr], 0)
1820 : &PL_sv_undef;
1821 OUTPUT: RETVAL
1822
1823SV *
1824resist_plus (int atnr)
1825 CODE:
1826 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1827 ? newSVpv (resist_plus [atnr], 0)
1828 : &PL_sv_undef;
1829 OUTPUT: RETVAL
1830
1831SV *
1832change_resist_msg (int atnr)
1833 CODE:
1834 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1835 ? newSVpv (change_resist_msg [atnr], 0)
1836 : &PL_sv_undef;
1837 OUTPUT: RETVAL
1838
1804int 1839int
1805exp_to_level (val64 exp) 1840skill_flags (int idx)
1806 CODE: 1841 CODE:
1807{ 1842 if (idx < 0 || idx >= array_length (skill_flags))
1808 int i = 0; 1843 croak ("skill_flags: index out of bounds");
1809 1844 RETVAL = skill_flags [idx];
1810 RETVAL = settings.max_level;
1811
1812 for (i = 1; i <= settings.max_level; i++)
1813 {
1814 if (levels[i] > exp)
1815 {
1816 RETVAL = i - 1;
1817 break;
1818 }
1819 }
1820}
1821 OUTPUT: RETVAL
1822
1823val64
1824level_to_min_exp (int level)
1825 CODE:
1826 if (level > settings.max_level)
1827 RETVAL = levels[settings.max_level];
1828 else if (level < 1)
1829 RETVAL = 0;
1830 else
1831 RETVAL = levels[level];
1832 OUTPUT: RETVAL 1845 OUTPUT: RETVAL
1833
1834SV *
1835resistance_to_string (int atnr)
1836 CODE:
1837 if (atnr >= 0 && atnr < NROFATTACKS)
1838 RETVAL = newSVpv (resist_plus[atnr], 0);
1839 else
1840 XSRETURN_UNDEF;
1841 OUTPUT: RETVAL
1842 1846
1843UUID 1847UUID
1844uuid_cur () 1848uuid_cur ()
1845 CODE: 1849 CODE:
1846 RETVAL = UUID::cur; 1850 RETVAL = UUID::cur;
1847 OUTPUT: 1851 OUTPUT: RETVAL
1848 RETVAL
1849 1852
1850UUID 1853UUID
1851uuid_gen () 1854uuid_gen ()
1852 CODE: 1855 CODE:
1853 RETVAL = UUID::gen (); 1856 RETVAL = UUID::gen ();
1854 OUTPUT: 1857 OUTPUT: RETVAL
1855 RETVAL
1856 1858
1857val64 1859val64
1858uuid_seq (UUID uuid) 1860uuid_seq (UUID uuid)
1859 CODE: 1861 CODE:
1860 RETVAL = uuid.seq; 1862 RETVAL = uuid.seq;
1861 OUTPUT: 1863 OUTPUT: RETVAL
1862 RETVAL
1863 1864
1864UUID 1865UUID
1865uuid_str (val64 seq) 1866uuid_str (val64 seq)
1866 CODE: 1867 CODE:
1867 RETVAL.seq = seq; 1868 RETVAL.seq = seq;
1868 OUTPUT: 1869 OUTPUT: RETVAL
1869 RETVAL
1870 1870
1871void 1871void
1872coin_names () 1872coin_names ()
1873 PPCODE: 1873 PPCODE:
1874 EXTEND (SP, NUM_COINS); 1874 EXTEND (SP, NUM_COINS);
1886load_resource_file_ (octet_string filename) 1886load_resource_file_ (octet_string filename)
1887 1887
1888void 1888void
1889fix_weight () 1889fix_weight ()
1890 1890
1891utf8_string
1892expand_cfpod (int hintmode, int gender, const_utf8_string cfpod)
1893 PPCODE:
1894 XPUSHs (to_sv (player::expand_cfpod (hintmode, gender, cfpod)));
1895
1891MODULE = cf PACKAGE = cf::attachable 1896MODULE = cf PACKAGE = cf::attachable
1892 1897
1893int 1898int
1894valid (SV *obj) 1899valid (SV *obj)
1895 CODE: 1900 CODE:
1896 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext); 1901 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext);
1897 OUTPUT: 1902 OUTPUT: RETVAL
1898 RETVAL 1903
1904bool should_invoke (attachable *obj, int event)
1905 CODE:
1906 RETVAL = obj->should_invoke ((event_type)event);
1907 OUTPUT: RETVAL
1899 1908
1900void 1909void
1901debug_trace (attachable *obj, bool on = true) 1910debug_trace (attachable *obj, bool on = true)
1902 CODE: 1911 CODE:
1903 obj->attachable_flags &= ~attachable::F_DEBUG_TRACE; 1912 obj->attachable_flags &= ~attachable::F_DEBUG_TRACE;
1963int mortals_size () 1972int mortals_size ()
1964 CODE: 1973 CODE:
1965 RETVAL = attachable::mortals.size (); 1974 RETVAL = attachable::mortals.size ();
1966 OUTPUT: RETVAL 1975 OUTPUT: RETVAL
1967 1976
1968const_utf8_string slot_use_name (U32 slot) 1977const_utf8_string slot_name (U32 slot)
1969 ALIAS: 1978 ALIAS:
1979 slot_name = 0
1980 slot_use_name = 1
1970 slot_nonuse_name = 1 1981 slot_nonuse_name = 2
1971 CODE: 1982 CODE:
1972{ 1983{
1973 if (slot >= NUM_BODY_LOCATIONS) 1984 if (slot >= NUM_BODY_LOCATIONS)
1974 croak ("body slot index out of range"); 1985 croak ("body slot index out of range");
1975 1986
1976 switch (ix) 1987 switch (ix)
1977 { 1988 {
1989 case 0: RETVAL = body_locations[slot].name ; break;
1978 case 0: RETVAL = body_locations[slot].use_name; break; 1990 case 1: RETVAL = body_locations[slot].use_name ; break;
1979 case 1: RETVAL = body_locations[slot].nonuse_name; break; 1991 case 2: RETVAL = body_locations[slot].nonuse_name; break;
1980 } 1992 }
1981} 1993}
1982 OUTPUT: 1994 OUTPUT: RETVAL
1983 RETVAL
1984 1995
1985# missing properties 1996# missing properties
1986 1997
1987object *head (object *op) 1998object *head (object *op)
1988 PROTOTYPE: $ 1999 PROTOTYPE: $
2024 if (ix) 2035 if (ix)
2025 op->slot[slot].used = value; 2036 op->slot[slot].used = value;
2026 else 2037 else
2027 op->slot[slot].info = value; 2038 op->slot[slot].info = value;
2028} 2039}
2029 OUTPUT: 2040 OUTPUT: RETVAL
2030 RETVAL
2031 2041
2032object *find_best_object_match (object *op, utf8_string match) 2042object *find_best_object_match (object *op, utf8_string match)
2033 2043
2034object *find_marked_object (object *op)
2035
2036int need_identify (object *obj);
2037
2038int apply_shop_mat (object *shop_mat, object *op); 2044int apply_shop_mat (object *shop_mat, object *op);
2039 2045
2040int move (object *op, int dir, object *originator = op) 2046int move (object *op, int dir, object *originator = op)
2041 CODE: 2047 CODE:
2042 RETVAL = op->move (dir, originator); 2048 RETVAL = op->move (dir, originator);
2043 OUTPUT: 2049 OUTPUT: RETVAL
2044 RETVAL
2045 2050
2046void apply_below (object *op) 2051void apply_below (object *op)
2047 CODE: 2052 CODE:
2048 player_apply_below (op); 2053 player_apply_below (op);
2049 2054
2094 2099
2095void pick_up (object *who, object *op) 2100void pick_up (object *who, object *op)
2096 2101
2097void update_object (object *op, int action) 2102void update_object (object *op, int action)
2098 2103
2099void change_exp (object *op, uint64 exp, utf8_string skill_name = 0, int flag = 0) 2104void change_exp (object *op, uint64 exp, shstr_tmp skill_name = shstr_tmp (), int flag = 0)
2100 2105
2101void player_lvl_adj (object *who, object *skill = 0) 2106void player_lvl_adj (object *who, object *skill = 0)
2102 2107
2103int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL) 2108int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL)
2104 2109
2113int convert_item (object *item, object *converter) 2118int convert_item (object *item, object *converter)
2114 2119
2115void fix_generated_item (object *op, object *creator, int difficulty, int max_magic, int flags); 2120void fix_generated_item (object *op, object *creator, int difficulty, int max_magic, int flags);
2116 2121
2117MODULE = cf PACKAGE = cf::object PREFIX = cf_ 2122MODULE = cf PACKAGE = cf::object PREFIX = cf_
2118
2119# no clean way to get an object from an archetype - stupid idiotic
2120# dumb kludgy misdesigned plug-in api slowly gets on my nerves.
2121 2123
2122object *new (utf8_string archetype = 0) 2124object *new (utf8_string archetype = 0)
2123 PROTOTYPE: ;$ 2125 PROTOTYPE: ;$
2124 CODE: 2126 CODE:
2125 RETVAL = archetype ? get_archetype (archetype) : object::create (); 2127 RETVAL = archetype
2128 ? archetype::get (archetype)
2129 : object::create ();
2126 OUTPUT: 2130 OUTPUT: RETVAL
2127 RETVAL
2128 2131
2129object *generate (utf8_string arch, object *creator) 2132object *generate (utf8_string arch, object *creator)
2130 CODE: 2133 CODE:
2131 object *obj = get_archetype (arch); 2134 object *obj = archetype::get (arch);
2132 fix_generated_item (obj, creator, 0, 0, GT_MINIMAL); 2135 fix_generated_item (obj, creator, 0, 0, GT_MINIMAL);
2133 RETVAL = obj; 2136 RETVAL = obj;
2134 OUTPUT: 2137 OUTPUT: RETVAL
2135 RETVAL
2136 2138
2137object *find_object (U32 tag) 2139object *find_object (U32 tag)
2138 2140
2139object *find_object_uuid (UUID i) 2141object *find_object_uuid (UUID i)
2140 2142
2146 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y); 2148 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y);
2147 2149
2148 if (RETVAL->destroyed ()) 2150 if (RETVAL->destroyed ())
2149 RETVAL = 0; 2151 RETVAL = 0;
2150} 2152}
2153 OUTPUT: RETVAL
2151 2154
2152shstr 2155shstr
2153object::kv_get (shstr key) 2156object::kv_get (shstr key)
2157 CODE:
2158 RETVAL = THIS->kv.get (key);
2159 OUTPUT: RETVAL
2154 2160
2155void 2161void
2156object::kv_del (shstr key) 2162object::kv_del (shstr key)
2163 CODE:
2164 THIS->kv.del (key);
2157 2165
2158void 2166void
2159object::kv_set (shstr key, shstr value) 2167object::kv_set (shstr key, shstr value)
2168 CODE:
2169 THIS->kv.set (key, value);
2160 2170
2161object *get_nearest_player (object *ob) 2171object *get_nearest_player (object *ob)
2162 ALIAS: nearest_player = 0 2172 ALIAS: nearest_player = 0
2163 PREINIT: 2173 PREINIT:
2164 extern object *get_nearest_player (object *); 2174 extern object *get_nearest_player (object *);
2253#d# TODO: replace by blocked_los accessor, fix code using this 2263#d# TODO: replace by blocked_los accessor, fix code using this
2254bool 2264bool
2255cell_visible (player *pl, int dx, int dy) 2265cell_visible (player *pl, int dx, int dy)
2256 CODE: 2266 CODE:
2257 RETVAL = pl->blocked_los (dx, dy) != LOS_BLOCKED; 2267 RETVAL = pl->blocked_los (dx, dy) != LOS_BLOCKED;
2258 OUTPUT: 2268 OUTPUT: RETVAL
2259 RETVAL
2260 2269
2261void 2270void
2262send (player *pl, SV *packet) 2271send (player *pl, SV *packet)
2263 CODE: 2272 CODE:
2264{ 2273{
2340outdoor_darkness (int darkness = 0) 2349outdoor_darkness (int darkness = 0)
2341 CODE: 2350 CODE:
2342 RETVAL = maptile::outdoor_darkness; 2351 RETVAL = maptile::outdoor_darkness;
2343 if (items) 2352 if (items)
2344 maptile::outdoor_darkness = darkness; 2353 maptile::outdoor_darkness = darkness;
2345 OUTPUT: 2354 OUTPUT: RETVAL
2346 RETVAL
2347 2355
2348void 2356void
2349maptile::instantiate () 2357maptile::instantiate ()
2350 2358
2351maptile *new () 2359maptile *new ()
2352 PROTOTYPE: 2360 PROTOTYPE:
2353 CODE: 2361 CODE:
2354 RETVAL = new maptile; 2362 RETVAL = new maptile;
2355 OUTPUT: 2363 OUTPUT: RETVAL
2356 RETVAL
2357 2364
2358void 2365void
2359maptile::players () 2366maptile::players ()
2360 PPCODE: 2367 PPCODE:
2361 if (GIMME_V == G_SCALAR) 2368 if (GIMME_V == G_SCALAR)
2367 if (pl->ob && pl->ob->map == THIS) 2374 if (pl->ob && pl->ob->map == THIS)
2368 PUSHs (sv_2mortal (to_sv (pl->ob))); 2375 PUSHs (sv_2mortal (to_sv (pl->ob)));
2369 } 2376 }
2370 2377
2371void 2378void
2379maptile::gen_quadmap (int x, int y, int z)
2380 CODE:
2381 gen_quadmap (THIS, x * 50, y * 50, z);
2382
2383void
2372maptile::add_underlay (SV *data, int offset, int stride, SV *palette) 2384maptile::add_underlay (SV *data, int offset, int stride, SV *palette)
2373 CODE: 2385 CODE:
2374{ 2386{
2375 if (!SvROK (palette) || SvTYPE (SvRV (palette)) != SVt_PVAV) 2387 if (!SvROK (palette) || SvTYPE (SvRV (palette)) != SVt_PVAV)
2376 croak ("maptile::add_underlay: palette must be arrayref"); 2388 croak ("maptile::add_underlay: palette must be arrayref");
2377 2389
2378 palette = SvRV (palette); 2390 palette = SvRV (palette);
2379 2391
2380 STRLEN idxlen; 2392 STRLEN idxlen;
2381 const uint8_t *idx = (const uint8_t *)SvPVbyte (data, idxlen); 2393 const uint8 *idx = (const uint8 *)SvPVbyte (data, idxlen);
2382 2394
2383 for (int x = 0; x < THIS->width; ++x) 2395 for (int x = 0; x < THIS->width; ++x)
2384 for (int y = 0; y < THIS->height; ++y) 2396 for (int y = 0; y < THIS->height; ++y)
2385 { 2397 {
2386 for (object *op = THIS->at (x, y).bot; op; op = op->above) 2398 for (object *op = THIS->at (x, y).bot; op; op = op->above)
2392 2404
2393 if (IN_RANGE_EXC (offs, 0, idxlen)) 2405 if (IN_RANGE_EXC (offs, 0, idxlen))
2394 { 2406 {
2395 if (SV **elem = av_fetch ((AV *)palette, idx [offs], 0)) 2407 if (SV **elem = av_fetch ((AV *)palette, idx [offs], 0))
2396 { 2408 {
2397 object *ob = get_archetype (cfSvPVutf8_nolen (*elem)); 2409 object *ob = archetype::get (cfSvPVutf8_nolen (*elem));
2398 ob->flag [FLAG_NO_MAP_SAVE] = true; 2410 ob->flag [FLAG_NO_MAP_SAVE] = true;
2399 THIS->insert (ob, x, y, 0, INS_ABOVE_FLOOR_ONLY); 2411 THIS->insert (ob, x, y, 0, INS_ABOVE_FLOOR_ONLY);
2400 2412
2401 if (ob->randomitems && !ob->above) 2413 if (ob->randomitems && !ob->above)
2402 { 2414 {
2406 op->flag [FLAG_NO_MAP_SAVE] = true; 2418 op->flag [FLAG_NO_MAP_SAVE] = true;
2407 // TODO: if this is a pickable object, then the item 2419 // TODO: if this is a pickable object, then the item
2408 // will at a bit weird - saving inside the player 2420 // will at a bit weird - saving inside the player
2409 // will clear the flag, but when the player drops 2421 // will clear the flag, but when the player drops
2410 // it without logging out, it keeps the flag. 2422 // it without logging out, it keeps the flag.
2411 // nobody ahs reported this, but this can be rather 2423 // nobody has reported this, but this can be rather
2412 // annoying on persistent maps. 2424 // annoying on persistent maps.
2413 } 2425 }
2414 } 2426 }
2415 } 2427 }
2416 } 2428 }
2417
2418 skip: ; 2429 skip: ;
2419 } 2430 }
2420} 2431}
2421 2432
2422void 2433void
2427 croak ("maptile::set_regiondata: palette must be arrayref"); 2438 croak ("maptile::set_regiondata: palette must be arrayref");
2428 2439
2429 palette = SvRV (palette); 2440 palette = SvRV (palette);
2430 2441
2431 STRLEN idxlen; 2442 STRLEN idxlen;
2432 const uint8_t *idx = (const uint8_t *)SvPVbyte (data, idxlen); 2443 const uint8 *idx = (const uint8 *)SvPVbyte (data, idxlen);
2433 2444
2434 region_ptr *regionmap = new region_ptr [av_len ((AV *)palette) + 1]; 2445 region_ptr *regionmap = new region_ptr [av_len ((AV *)palette) + 1];
2435 uint8_t *regions = salloc<uint8_t> (THIS->size ()); 2446 uint8 *regions = salloc<uint8_t> (THIS->size ());
2436 2447
2437 for (int i = av_len ((AV *)palette) + 1; i--; ) 2448 for (int i = av_len ((AV *)palette) + 1; i--; )
2438 regionmap [i] = region::find (cfSvPVutf8_nolen (*av_fetch ((AV *)palette, i, 1))); 2449 regionmap [i] = region::find (cfSvPVutf8_nolen (*av_fetch ((AV *)palette, i, 1)));
2439 2450
2440 for (int y = 0; y < THIS->height; ++y) 2451 for (int y = 0; y < THIS->height; ++y)
2453 for (int x = 0; x < THIS->width; ++x) 2464 for (int x = 0; x < THIS->width; ++x)
2454 for (int y = 0; y < THIS->height; ++y) 2465 for (int y = 0; y < THIS->height; ++y)
2455 { 2466 {
2456 region *rgn = THIS->region (x, y); 2467 region *rgn = THIS->region (x, y);
2457 2468
2458 //fprintf (stderr, "%d,%d %f %p\n", x, y, rgn->treasure_density,rgn->treasure);//D
2459 if (object *op = THIS->at (x, y).top) 2469 if (object *op = THIS->at (x, y).top)
2460 if (rgn->treasure && rndm () < rgn->treasure_density) 2470 if (rgn->treasure && rndm () < rgn->treasure_density)
2461 create_treasure (rgn->treasure, op, GT_ENVIRONMENT, THIS->difficulty); 2471 create_treasure (rgn->treasure, op, GT_ENVIRONMENT, THIS->difficulty);
2462 } 2472 }
2463 2473
2469 if (oblinkpt *obp = map->find_link (connection)) 2479 if (oblinkpt *obp = map->find_link (connection))
2470 for (objectlink *ol = obp->link; ol; ol = ol->next) 2480 for (objectlink *ol = obp->link; ol; ol = ol->next)
2471 XPUSHs (sv_2mortal (to_sv ((object *)ol->ob))); 2481 XPUSHs (sv_2mortal (to_sv ((object *)ol->ob)));
2472 2482
2473void 2483void
2474get_map_flags (maptile *map, int x, int y) 2484xy_normalise (maptile *map, int x, int y, int dir = 0)
2475 PPCODE: 2485 PPCODE:
2476{ 2486{
2477 maptile *nmap = 0; 2487 mapxy pos (map, x, y);
2478 I16 nx = 0, ny = 0; 2488 if (!pos.move (dir).normalise ())
2489 XSRETURN_EMPTY;
2479 2490
2480 PUTBACK;
2481 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny);
2482 SPAGAIN;
2483
2484 EXTEND (SP, 4); 2491 EXTEND (SP, 3);
2485 PUSHs (sv_2mortal (newSViv (flags)));
2486
2487 if (GIMME_V == G_ARRAY)
2488 {
2489 PUSHs (sv_2mortal (to_sv (nmap))); 2492 PUSHs (sv_2mortal (to_sv (pos.m)));
2490 PUSHs (sv_2mortal (newSViv (nx))); 2493 PUSHs (sv_2mortal (to_sv (pos.x)));
2491 PUSHs (sv_2mortal (newSViv (ny))); 2494 PUSHs (sv_2mortal (to_sv (pos.y)));
2492 }
2493} 2495}
2494 2496
2495mapspace * 2497mapspace *
2496ms (maptile *map, unsigned int x, unsigned int y) 2498ms (maptile *map, unsigned int x, unsigned int y, int dir = 0)
2497 PROTOTYPE: $$$ 2499 PROTOTYPE: $$$;$
2498 CODE: 2500 CODE:
2499{ 2501{
2500 maptile *nmap = 0; 2502 mapxy pos (map, x, y);
2501 I16 nx, ny; 2503 if (!pos.move (dir).normalise ())
2502
2503 PUTBACK;
2504 get_map_flags (map, &nmap, x, y, &nx, &ny);
2505 SPAGAIN;
2506
2507 if (!nmap)
2508 XSRETURN_UNDEF; 2504 XSRETURN_UNDEF;
2509 2505
2510 RETVAL = &nmap->at (nx, ny);
2511}
2512 OUTPUT:
2513 RETVAL 2506 RETVAL = &*pos;
2507}
2508 OUTPUT: RETVAL
2514 2509
2515void 2510void
2516at (maptile *map, unsigned int x, unsigned int y) 2511at (maptile *map, unsigned int x, unsigned int y, int dir = 0)
2517 PROTOTYPE: $$$ 2512 PROTOTYPE: $$$;$
2518 PPCODE: 2513 PPCODE:
2519{ 2514 mapxy pos (map, x, y);
2520 maptile *nmap = 0; 2515 if (pos.move (dir).normalise ())
2521 I16 nx, ny;
2522
2523 PUTBACK;
2524 get_map_flags (map, &nmap, x, y, &nx, &ny);
2525 SPAGAIN;
2526
2527 if (nmap)
2528 for (object *o = nmap->at (nx, ny).bot; o; o = o->above) 2516 for (object *o = pos->bot; o; o = o->above)
2529 XPUSHs (sv_2mortal (to_sv (o))); 2517 XPUSHs (sv_2mortal (to_sv (o)));
2530}
2531 2518
2532SV * 2519SV *
2533bot_at (maptile *map, unsigned int x, unsigned int y) 2520bot_at (maptile *map, unsigned int x, unsigned int y, int dir = 0)
2534 PROTOTYPE: $$$ 2521 PROTOTYPE: $$$;$
2535 ALIAS: 2522 ALIAS:
2536 top_at = 1 2523 top_at = 1
2537 flags_at = 2 2524 flags_at = 2
2538 light_at = 3 2525 light_at = 3
2539 move_block_at = 4 2526 move_block_at = 4
2540 move_slow_at = 5 2527 move_slow_at = 5
2541 move_on_at = 6 2528 move_on_at = 6
2542 move_off_at = 7 2529 move_off_at = 7
2543 CODE: 2530 CODE:
2544{ 2531{
2545 sint16 nx = x; 2532 mapxy pos (map, x, y);
2546 sint16 ny = y; 2533 if (!pos.move (dir).normalise ())
2547
2548 if (!xy_normalise (map, nx, ny))
2549 XSRETURN_UNDEF; 2534 XSRETURN_UNDEF;
2550 2535
2551 mapspace &ms = map->at (nx, ny); 2536 mapspace &ms = *pos;
2552 2537
2553 ms.update (); 2538 ms.update ();
2554 2539
2555 switch (ix) 2540 switch (ix)
2556 { 2541 {
2566} 2551}
2567 OUTPUT: RETVAL 2552 OUTPUT: RETVAL
2568 2553
2569# worst xs function of my life 2554# worst xs function of my life
2570bool 2555bool
2571_create_random_map (\ 2556_create_random_map (maptile *self, SV *options)
2572 maptile *self,\
2573 utf8_string wallstyle,\
2574 utf8_string wall_name,\
2575 utf8_string floorstyle,\
2576 utf8_string monsterstyle,\
2577 utf8_string treasurestyle,\
2578 utf8_string layoutstyle,\
2579 utf8_string doorstyle,\
2580 utf8_string decorstyle,\
2581 utf8_string miningstyle,\
2582 utf8_string origin_map,\
2583 utf8_string final_map,\
2584 utf8_string exitstyle,\
2585 utf8_string this_map,\
2586 utf8_string exit_on_final_map,\
2587 int xsize,\
2588 int ysize,\
2589 int expand2x,\
2590 int layoutoptions1,\
2591 int layoutoptions2,\
2592 int layoutoptions3,\
2593 int symmetry,\
2594 int difficulty,\
2595 int difficulty_given,\
2596 float difficulty_increase,\
2597 int dungeon_level,\
2598 int dungeon_depth,\
2599 int decoroptions,\
2600 int orientation,\
2601 int origin_y,\
2602 int origin_x,\
2603 U32 random_seed,\
2604 val64 total_map_hp,\
2605 int map_layout_style,\
2606 int treasureoptions,\
2607 int symmetry_used,\
2608 region *region,\
2609 utf8_string custom\
2610)
2611 CODE: 2557 CODE:
2612{ 2558{
2613 random_map_params rmp; 2559 random_map_params rmp ((HV *)SvRV (options));
2614
2615 assign (rmp.wallstyle , wallstyle);
2616 assign (rmp.wall_name , wall_name);
2617 assign (rmp.floorstyle , floorstyle);
2618 assign (rmp.monsterstyle , monsterstyle);
2619 assign (rmp.treasurestyle , treasurestyle);
2620 assign (rmp.layoutstyle , layoutstyle);
2621 assign (rmp.doorstyle , doorstyle);
2622 assign (rmp.decorstyle , decorstyle);
2623 assign (rmp.miningstyle , miningstyle);
2624 assign (rmp.exitstyle , exitstyle);
2625 assign (rmp.exit_on_final_map, exit_on_final_map);
2626
2627 rmp.origin_map = origin_map;
2628 rmp.final_map = final_map;
2629 rmp.this_map = this_map;
2630 rmp.xsize = xsize;
2631 rmp.ysize = ysize;
2632 rmp.expand2x = expand2x;
2633 rmp.layoutoptions1 = layoutoptions1;
2634 rmp.layoutoptions2 = layoutoptions2;
2635 rmp.layoutoptions3 = layoutoptions3;
2636 rmp.symmetry = symmetry;
2637 rmp.difficulty = difficulty;
2638 rmp.difficulty_given = difficulty_given;
2639 rmp.difficulty_increase = difficulty_increase;
2640 rmp.dungeon_level = dungeon_level;
2641 rmp.dungeon_depth = dungeon_depth;
2642 rmp.decoroptions = decoroptions;
2643 rmp.orientation = orientation;
2644 rmp.origin_y = origin_y;
2645 rmp.origin_x = origin_x;
2646 rmp.random_seed = random_seed;
2647 rmp.total_map_hp = (uint64_t) total_map_hp;
2648 rmp.map_layout_style = map_layout_style;
2649 rmp.treasureoptions = treasureoptions;
2650 rmp.symmetry_used = symmetry_used;
2651 rmp.region = region;
2652 rmp.custom = custom;
2653
2654 RETVAL = self->generate_random_map (&rmp); 2560 RETVAL = self->generate_random_map (&rmp);
2655} 2561}
2656 OUTPUT: 2562 OUTPUT: RETVAL
2657 RETVAL
2658 2563
2659MODULE = cf PACKAGE = cf::mapspace 2564MODULE = cf PACKAGE = cf::mapspace
2660 2565
2661INCLUDE: $PERL $srcdir/genacc mapspace $srcdir/../include/map.h | 2566INCLUDE: $PERL $srcdir/genacc mapspace $srcdir/../include/map.h |
2662 2567
2669 2574
2670archetype *archetypes (U32 index) 2575archetype *archetypes (U32 index)
2671 CODE: 2576 CODE:
2672 RETVAL = index < archetypes.size () ? archetypes [index] : 0; 2577 RETVAL = index < archetypes.size () ? archetypes [index] : 0;
2673 OUTPUT: RETVAL 2578 OUTPUT: RETVAL
2579
2580int skillvec_size ()
2581 CODE:
2582 RETVAL = skillvec.size ();
2583 OUTPUT: RETVAL
2584
2585archetype *skillvec (U32 index)
2586 CODE:
2587 RETVAL = index < skillvec.size () ? (archetype *)(object *)skillvec [index] : 0;
2588 OUTPUT: RETVAL
2589
2590void
2591find_by_type (int type)
2592 PPCODE:
2593 for_all_archetypes (arch)
2594 if (arch->type == type)
2595 XPUSHs (sv_2mortal (to_sv (arch)));
2674 2596
2675INCLUDE: $PERL $srcdir/genacc archetype $srcdir/../include/object.h | 2597INCLUDE: $PERL $srcdir/genacc archetype $srcdir/../include/object.h |
2676 2598
2677MODULE = cf PACKAGE = cf::party 2599MODULE = cf PACKAGE = cf::party
2678 2600
2690list () 2612list ()
2691 PPCODE: 2613 PPCODE:
2692 for_all_regions (rgn) 2614 for_all_regions (rgn)
2693 XPUSHs (sv_2mortal (to_sv (rgn))); 2615 XPUSHs (sv_2mortal (to_sv (rgn)));
2694 2616
2695region *find (utf8_string name)
2696 PROTOTYPE: $
2697 CODE:
2698 RETVAL = region::find (name);
2699 OUTPUT: RETVAL
2700
2701int specificity (region *rgn) 2617int specificity (region *rgn)
2702 CODE: 2618 CODE:
2703 RETVAL = 0; 2619 RETVAL = 0;
2704 while (rgn = rgn->parent) 2620 while (rgn = rgn->parent)
2705 RETVAL++; 2621 RETVAL++;
2733list () 2649list ()
2734 PPCODE: 2650 PPCODE:
2735 EXTEND (SP, clients.size ()); 2651 EXTEND (SP, clients.size ());
2736 for (sockvec::iterator i = clients.begin (); i != clients.end (); ++i) 2652 for (sockvec::iterator i = clients.begin (); i != clients.end (); ++i)
2737 PUSHs (sv_2mortal (to_sv (*i))); 2653 PUSHs (sv_2mortal (to_sv (*i)));
2654
2655STRLEN
2656client::inbuf_append (SV *data)
2657 CODE:
2658{
2659 STRLEN len;
2660 char *ptr = SvPVbyte (data, len);
2661
2662 min_it (len, sizeof (THIS->inbuf) - THIS->inbuf_len);
2663 memcpy (THIS->inbuf + THIS->inbuf_len, ptr, len);
2664 THIS->inbuf_len += len;
2665
2666 THIS->inbuf_handle ();
2667
2668 RETVAL = len;
2669}
2670 OUTPUT: RETVAL
2738 2671
2739void 2672void
2740client::send_packet (SV *packet) 2673client::send_packet (SV *packet)
2741 CODE: 2674 CODE:
2742{ 2675{
2760 if (RETVAL) 2693 if (RETVAL)
2761 { 2694 {
2762 THIS->send_face (RETVAL, pri); 2695 THIS->send_face (RETVAL, pri);
2763 THIS->flush_fx (); 2696 THIS->flush_fx ();
2764 } 2697 }
2765 OUTPUT: 2698 OUTPUT: RETVAL
2766 RETVAL
2767 2699
2768int 2700int
2769client::fx_want (int idx, int value = -1) 2701client::fx_want (int idx, int value = -1)
2770 CODE: 2702 CODE:
2771 if (0 < idx && idx < FT_NUM) 2703 if (0 < idx && idx < FT_NUM)
2774 if (items > 2) 2706 if (items > 2)
2775 THIS->fx_want [idx] = value; 2707 THIS->fx_want [idx] = value;
2776 } 2708 }
2777 else 2709 else
2778 RETVAL = 0; 2710 RETVAL = 0;
2779 OUTPUT: 2711 OUTPUT: RETVAL
2780 RETVAL
2781 2712
2782MODULE = cf PACKAGE = cf::sound PREFIX = sound_ 2713MODULE = cf PACKAGE = cf::sound PREFIX = sound_
2783 2714
2784faceidx sound_find (utf8_string name) 2715faceidx sound_find (utf8_string name)
2785 2716
2798faceidx face_find (utf8_string name, faceidx defidx = 0) 2729faceidx face_find (utf8_string name, faceidx defidx = 0)
2799 2730
2800faceidx alloc (utf8_string name) 2731faceidx alloc (utf8_string name)
2801 CODE: 2732 CODE:
2802{ 2733{
2803 do 2734 RETVAL = face_alloc ();
2804 {
2805 RETVAL = faces.size ();
2806 faces.resize (RETVAL + 1);
2807 }
2808 while (!RETVAL); // crude way to leave index 0
2809 2735
2810 faces [RETVAL].name = name; 2736 faces [RETVAL].name = name;
2811 facehash.insert (std::make_pair (faces [RETVAL].name, RETVAL)); 2737 facehash.insert (std::make_pair (faces [RETVAL].name, RETVAL));
2812 2738
2813 if (!strcmp (name, BLANK_FACE_NAME )) blank_face = RETVAL; 2739 if (!strcmp (name, BLANK_FACE_NAME )) blank_face = RETVAL;
2814 if (!strcmp (name, EMPTY_FACE_NAME )) empty_face = RETVAL; 2740 if (!strcmp (name, EMPTY_FACE_NAME )) empty_face = RETVAL;
2815 if (!strcmp (name, MAGICMOUTH_FACE_NAME)) magicmouth_face = RETVAL; 2741 if (!strcmp (name, MAGICMOUTH_FACE_NAME)) magicmouth_face = RETVAL;
2816} 2742}
2743 OUTPUT: RETVAL
2744
2745faceidx faces_size ()
2746 CODE:
2747 RETVAL = faces.size ();
2817 OUTPUT: RETVAL 2748 OUTPUT: RETVAL
2818 2749
2819void set_type (faceidx idx, int value) 2750void set_type (faceidx idx, int value)
2820 ALIAS: 2751 ALIAS:
2821 set_type = 0 2752 set_type = 0
2832 case 2: f->magicmap = value; break; 2763 case 2: f->magicmap = value; break;
2833 case 3: f->smooth = value; break; 2764 case 3: f->smooth = value; break;
2834 case 4: f->smoothlevel = value; break; 2765 case 4: f->smoothlevel = value; break;
2835 } 2766 }
2836 2767
2837void set_data (faceidx idx, int faceset, SV *data, SV *chksum) 2768void set_csum (faceidx idx, int faceset, SV *chksum)
2838 CODE: 2769 CODE:
2839{ 2770{
2840 faceinfo *f = face_info (idx); assert (f); 2771 faceinfo *f = face_info (idx); assert (f);
2841 facedata *d = &(faceset ? f->data64 : f->data32); 2772 facedata *d = f->face + faceset;
2842 sv_to (data, d->data);
2843 STRLEN clen; 2773 STRLEN clen;
2844 char *cdata = SvPVbyte (chksum, clen); 2774 char *cdata = SvPVbyte (chksum, clen);
2845 clen = min (CHKSUM_MAXLEN, clen);
2846 2775
2776 assert (("cf::face::set_data called with too long checksum", clen <= CHKSUM_MAXLEN));
2847 assert (("cf::face::set_data must be called with a non-empty checksum", clen)); 2777 assert (("cf::face::set_data must be called with a non-empty checksum", clen));
2848 2778
2849 if (clen != d->chksum_len || memcmp (d->chksum, cdata, clen)) 2779 if (clen != d->chksum_len || memcmp (d->chksum, cdata, clen))
2850 { 2780 {
2851 d->chksum_len = clen; 2781 d->chksum_len = clen;
2852 memcpy (d->chksum, cdata, clen); 2782 memcpy (d->chksum, cdata, clen);
2853 2783
2854 // invalidate existing client face info 2784 // invalidate existing client face info
2855 for_all_clients (ns) 2785 for_all_clients (ns)
2856 if (ns->faceset == faceset) 2786 ns->invalidate_face (idx);
2857 {
2858 ns->faces_sent [idx] = false;
2859 ns->force_newmap = true;
2860 }
2861 } 2787 }
2862} 2788}
2863 2789
2864int get_data_size (faceidx idx, int faceset = 0) 2790SV *mangle_csum (SV *chksum)
2865 CODE: 2791 CODE:
2866 facedata *d = face_data (idx, faceset); 2792 STRLEN len;
2867 if (!d) XSRETURN_UNDEF; 2793 char *data = SvPVbyte (chksum, len);
2868 RETVAL = d->data.size (); 2794 RETVAL = newSVpvn (data, min (len, CHKSUM_MAXLEN));
2869 OUTPUT: 2795 OUTPUT: RETVAL
2870 RETVAL
2871 2796
2872SV *get_chksum (faceidx idx, int faceset = 0) 2797SV *get_csum (faceidx idx, int faceset = 0)
2873 CODE: 2798 CODE:
2874 facedata *d = face_data (idx, faceset); 2799 facedata *d = face_data (idx, faceset);
2875 if (!d) XSRETURN_UNDEF; 2800 if (!d) XSRETURN_UNDEF;
2876 RETVAL = newSVpvn ((char *)d->chksum, d->chksum_len); 2801 RETVAL = newSVpvn ((char *)d->chksum, d->chksum_len);
2877 OUTPUT: 2802 OUTPUT: RETVAL
2878 RETVAL
2879 2803
2880SV *get_data (faceidx idx, int faceset = 0) 2804int get_type (faceidx idx)
2881 CODE: 2805 CODE:
2882 facedata *d = face_data (idx, faceset); 2806 faceinfo *f = face_info (idx);
2883 if (!d) XSRETURN_UNDEF; 2807 if (!f) XSRETURN_UNDEF;
2884 RETVAL = newSVpvn (d->data.data (), d->data.length ()); 2808 RETVAL = f->type;
2885 OUTPUT: 2809 OUTPUT: RETVAL
2886 RETVAL 2810
2811SV *get_name (faceidx idx)
2812 CODE:
2813 faceinfo *f = face_info (idx);
2814 if (!f) XSRETURN_UNDEF;
2815 RETVAL = to_sv (f->name);
2816 OUTPUT: RETVAL
2887 2817
2888void invalidate (faceidx idx) 2818void invalidate (faceidx idx)
2889 CODE: 2819 CODE:
2890 for_all_clients (ns) 2820 for_all_clients (ns)
2891 { 2821 ns->invalidate_face (idx);
2892 ns->faces_sent [idx] = false;
2893 ns->force_newmap = true;
2894 }
2895 2822
2896void invalidate_all () 2823void invalidate_all ()
2897 CODE: 2824 CODE:
2898 for_all_clients (ns) 2825 for_all_clients (ns)
2899 { 2826 ns->invalidate_all_faces ();
2900 ns->faces_sent.reset ();
2901 ns->force_newmap = true;
2902 }
2903 2827
2904MODULE = cf PACKAGE = cf::anim PREFIX = anim_ 2828MODULE = cf PACKAGE = cf::anim PREFIX = anim_
2905 2829
2906#INCLUDE: $PERL $srcdir/genacc faceset $srcdir/../include/anim.h | 2830#INCLUDE: $PERL $srcdir/genacc faceset $srcdir/../include/anim.h |
2907 2831
2911 OUTPUT: RETVAL 2835 OUTPUT: RETVAL
2912 2836
2913animidx set (utf8_string name, SV *frames, int facings = 1) 2837animidx set (utf8_string name, SV *frames, int facings = 1)
2914 CODE: 2838 CODE:
2915{ 2839{
2916 if (!SvROK (frames) && SvTYPE (SvRV (frames)) != SVt_PVAV) 2840 if (!SvROK (frames) && SvTYPE (SvRV (frames)) != SVt_PVAV)
2917 croak ("frames must be an arrayref"); 2841 croak ("frames must be an arrayref");
2918 2842
2919 AV *av = (AV *)SvRV (frames); 2843 AV *av = (AV *)SvRV (frames);
2920 2844
2921 animation *anim = &animation::find (name); 2845 animation *anim = &animation::find (name);
2922 if (anim->number) 2846 if (anim->number)
2923 { 2847 {
2924 anim->resize (av_len (av) + 1); 2848 anim->resize (av_len (av) + 1);
2925 anim->facings = facings; 2849 anim->facings = facings;
2926 } 2850 }
2954 sv_to (sv, self); 2878 sv_to (sv, self);
2955 delete self; 2879 delete self;
2956 2880
2957MODULE = cf PACKAGE = cf::object::thawer 2881MODULE = cf PACKAGE = cf::object::thawer
2958 2882
2959INCLUDE: $PERL $srcdir/genacc object_thawer $srcdir/../include/cfperl.h | 2883INCLUDE: $PERL $srcdir/genacc object_thawer $srcdir/../include/freezethaw.h |
2884
2885bool
2886errors_are_fatal (bool fatal)
2887 CODE:
2888 RETVAL = object_thawer::errors_are_fatal;
2889 object_thawer::errors_are_fatal = fatal;
2890 OUTPUT: RETVAL
2960 2891
2961SV * 2892SV *
2962new_from_file (char *klass, octet_string path) 2893new_from_file (char *klass, octet_string path)
2963 CODE: 2894 CODE:
2964 object_thawer *f = new object_thawer (path); 2895 object_thawer *f = new object_thawer (path);
2990 XPUSHs (sv_2mortal (newSVpv_utf8 (self->get_str ()))); 2921 XPUSHs (sv_2mortal (newSVpv_utf8 (self->get_str ())));
2991 2922
2992 self->skip (); 2923 self->skip ();
2993 } 2924 }
2994 2925
2926MODULE = cf PACKAGE = cf::treasurelist
2927
2928# quick hack, because I didn't want to implement accessors for treasurelist.
2929# this asks for even more autogen, actually.
2930
2931void
2932expand (treasurelist *list)
2933 PPCODE:
2934 EXTEND (SP, 3);
2935 PUSHs (sv_2mortal (to_sv (list->name)));
2936 PUSHs (sv_2mortal (to_sv (list->total_chance)));
2937 AV *av = newAV ();
2938 PUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
2939 for (treasure *item = list->items; item; item = item->next)
2940 {
2941 AV *iav = newAV ();
2942 av_push (av, newRV_noinc ((SV *)iav));
2943
2944 av_extend (iav, 7);
2945 av_push (iav, to_sv (item->item));
2946 av_push (iav, to_sv (item->name));
2947 av_push (iav, to_sv (item->change_arch.name));
2948 av_push (iav, to_sv (item->change_arch.title));
2949 av_push (iav, to_sv (item->change_arch.slaying));
2950 av_push (iav, to_sv (item->chance));
2951 av_push (iav, to_sv (item->nrof));
2952 av_push (iav, to_sv (item->magic));
2953 }
2954
2955MODULE = cf PACKAGE = cf::layout
2956
2957INCLUDE: $PERL $srcdir/genacc layout $srcdir/../include/rmg.h |
2958

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines