ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/cfperl.xs
Revision: 1.418
Committed: Sun Nov 11 01:27:44 2012 UTC (11 years, 7 months ago) by root
Branch: MAIN
Changes since 1.417: +1 -5 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2006,2007,2008,2009,2010,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 *
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
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
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
18 * <http://www.gnu.org/licenses/>.
19 *
20 * The authors can be reached via e-mail to <support@deliantra.net>
21 */
22
23 #include "autoconf.h"
24
25 #if HAVE_EXECINFO_H
26 # include <execinfo.h>
27 #endif
28
29 #include <cstdarg>
30 #include <typeinfo>
31
32 #include "global.h"
33 #include "rmg.h"
34 #include "noise.h"
35 #include "evthread.h"
36 #include "sproto.h"
37
38 #include <unistd.h>
39 #if _POSIX_MEMLOCK
40 # include <sys/mman.h>
41 #endif
42
43 #if HAVE_MALLOC_H
44 # include <malloc.h>
45 #endif
46
47 #if !__GLIBC__
48 # define malloc_trim(pad) -1
49 #endif
50
51 #include <EXTERN.h>
52 #include <perl.h>
53 #include <XSUB.h>
54
55 #include "CoroAPI.h"
56 #include "perlxsi.c"
57
58 typedef object_thawer &object_thawer_ref;
59 typedef object_freezer &object_freezer_ref;
60
61 typedef std::string std__string;
62
63 static PerlInterpreter *perl;
64
65 tstamp NOW, runtime;
66
67 static int tick_inhibit;
68 static int tick_pending;
69
70 global gbl_ev;
71 static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map;
72 static SV *sv_runtime, *sv_tick_start, *sv_next_tick, *sv_now, *sv_server_tick;
73 static AV *av_reflect;
74
75 bitset<NUM_EVENT_TYPES> ev_want_event;
76 bitset<NUM_TYPES> ev_want_type;
77
78 static HV
79 *stash_cf,
80 *stash_cf_object_wrap,
81 *stash_cf_object_player_wrap,
82 *stash_cf_player_wrap,
83 *stash_cf_map_wrap,
84 *stash_cf_mapspace_wrap,
85 *stash_cf_client_wrap,
86 *stash_cf_arch_wrap,
87 *stash_cf_party_wrap,
88 *stash_cf_region_wrap,
89 *stash_cf_living_wrap,
90 *stash_cf_layout_wrap,
91 *stash_ext_map_world;
92
93 static SV
94 *cv_cf_do_invoke,
95 *cv_cf__can_merge,
96 *cv_cf_client_send_msg,
97 *cv_cf_tick,
98 *cv_cf_match_match;
99
100 #ifndef newSVpv_utf8
101 static SV *
102 newSVpv_utf8 (const char *s)
103 {
104 if (!s)
105 return newSV (0);
106
107 SV *sv = newSVpv (s, 0);
108 SvUTF8_on (sv);
109 return sv;
110 }
111 #endif
112
113 #ifndef newSVpvn_utf8
114 static SV *
115 newSVpvn_utf8 (const char *s, STRLEN l, int utf8)
116 {
117 if (!s)
118 return newSV (0);
119
120 SV *sv = newSVpvn (s, l);
121
122 if (utf8)
123 SvUTF8_on (sv);
124
125 return sv;
126 }
127 #endif
128
129 noinline utf8_string
130 cfSvPVutf8_nolen (SV *sv)
131 {
132 SvGETMAGIC (sv);
133
134 if (SvPOK (sv))
135 {
136 if (!SvUTF8 (sv))
137 sv_utf8_upgrade_nomg (sv);
138
139 return SvPVX (sv);
140 }
141
142 return SvPV_nolen (sv);
143 }
144
145 // helper cast function, returns super class * or 0
146 template<class super>
147 static super *
148 is_a (attachable *at)
149 {
150 //return dynamic_cast<super *>(at); // slower, safer
151 if (typeid (*at) == typeid (super))
152 return static_cast<super *>(at);
153 else
154 return 0;
155 }
156
157 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
158
159 unordered_vector<attachable *> attachable::mortals;
160
161 attachable::~attachable ()
162 {
163 assert (!self);
164 assert (!cb);
165 }
166
167 int
168 attachable::refcnt_cnt () const
169 {
170 return refcnt + (self ? SvREFCNT (self) - 1 : 0);
171 }
172
173 void
174 attachable::sever_self ()
175 {
176 if (HV *self = this->self)
177 {
178 // keep a refcount because sv_unmagic might call attachable_free,
179 // which might clear self, causing sv_unmagic to crash on a now
180 // invalid object.
181 SvREFCNT_inc (self);
182 hv_clear (self);
183 sv_unmagic ((SV *)self, PERL_MAGIC_ext);
184 SvREFCNT_dec (self);
185
186 // self *must* be null now because that's sv_unmagic's job.
187 assert (!this->self);
188 }
189 }
190
191 void
192 attachable::optimise ()
193 {
194 if (self
195 && SvREFCNT (self) == 1
196 && !HvTOTALKEYS (self))
197 sever_self ();
198 }
199
200 // check wether the object really is dead
201 void
202 attachable::do_check ()
203 {
204 if (refcnt_cnt () > 0)
205 return;
206
207 destroy ();
208 }
209
210 void
211 attachable::do_destroy ()
212 {
213 INVOKE_ATTACHABLE (DESTROY, this);
214
215 if (cb)
216 {
217 SvREFCNT_dec (cb);
218 cb = 0;
219 }
220
221 mortals.push_back (this);
222 }
223
224 void
225 attachable::destroy ()
226 {
227 if (destroyed ())
228 return;
229
230 attachable_flags |= F_DESTROYED;
231 do_destroy ();
232 sever_self ();
233 }
234
235 void
236 attachable::do_delete ()
237 {
238 delete this;
239 }
240
241 void
242 attachable::check_mortals ()
243 {
244 static int i = 0;
245
246 for (;;)
247 {
248 if (i >= mortals.size ())
249 {
250 i = 0;
251
252 if (mortals.size () >= 512)
253 {
254 static int last_mortalcount;
255 if (mortals.size () != last_mortalcount)
256 {
257 last_mortalcount = mortals.size ();
258 object *specimen = is_a<object> (mortals [rndm (mortals.size ())]);
259
260 LOG (llevInfo, "%d mortals (random specimen: %s).\n",
261 (int)mortals.size (), specimen ? specimen->debug_desc () : "(not an object)");
262
263 if (0)
264 {
265 for (int j = 0; j < mortals.size (); ++j)//D
266 fprintf (stderr, "%d:%s %p ", j, &((object *)mortals[j])->name, mortals[j]);//D
267
268 fprintf (stderr, "\n");//D
269 }
270 }
271 }
272
273 break;
274 }
275
276 attachable *obj = mortals [i];
277
278 #if 0
279 if (obj->self)//D make this an assert later
280 {
281 LOG (llevError, "check_mortals: object '%s' still has self\n", typeid (obj).name ());
282 obj->sever_self ();
283 }
284 #endif
285
286 if (obj->refcnt)
287 {
288 ++i; // further delay freeing
289
290 if (!(i & 0x3ff))
291 break;
292 }
293 else
294 {
295 mortals.erase (i);
296 obj->sever_self ();
297 obj->do_delete ();
298 }
299 }
300 }
301
302 void
303 attachable::set_key (const char *key, const char *value, bool is_utf8)
304 {
305 if (!self)
306 self = newHV ();
307
308 if (value)
309 hv_store (self, key, strlen (key), is_utf8 ? newSVpv_utf8 (value) : newSVpv (value, 0), 0);
310 else
311 hv_delete (self, key, strlen (key), G_DISCARD);
312 }
313
314 attachable &
315 attachable::operator =(const attachable &src)
316 {
317 //if (self || cb)
318 //INVOKE_OBJECT (CLONE, this, ARG_OBJECT (dst));
319
320 attach = src.attach;
321 return *this;
322 }
323
324 #if 0
325 template<typename T>
326 static bool
327 find_backref (void *ptr, T *obj)
328 {
329 char *s = (char *)obj;
330 while (s < (char *)obj + sizeof (T))
331 {
332 if (ptr == *(void **)s)
333 return true;
334
335 s += sizeof (void *); // assume natural alignment
336 }
337
338 return false;
339 }
340
341 // for debugging, find "live" objects containing this ptr
342 static void
343 find_backref (void *ptr)
344 {
345 for_all_objects (op)
346 if (find_backref (ptr, op))
347 fprintf (stderr, "O %p %d:'%s'\n", op, op->count, &op->name);
348
349 for_all_players (pl)
350 if (find_backref (ptr, pl))
351 fprintf (stderr, "P %p\n", pl);
352
353 for_all_clients (ns)
354 if (find_backref (ptr, ns))
355 fprintf (stderr, "C %p\n", ns);
356 }
357 #endif
358
359 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
360
361 static SV *
362 newSVptr (void *ptr, HV *stash, HV *hv)
363 {
364 if (!ptr)
365 return newSV (0);
366
367 sv_magicext ((SV *)hv, 0, PERL_MAGIC_ext, 0, (char *)ptr, 0);
368 return sv_bless (newRV_noinc ((SV *)hv), stash);
369 }
370
371 static SV * noinline
372 newSVptr (void *ptr, HV *stash)
373 {
374 return newSVptr (ptr, stash, newHV ());
375 }
376
377 static int
378 attachable_free (pTHX_ SV *sv, MAGIC *mg)
379 {
380 attachable *at = (attachable *)mg->mg_ptr;
381
382 //TODO: check if transaction behaviour is really required here
383 if (SV *self = (SV *)at->self)
384 {
385 at->self = 0;
386 SvREFCNT_dec (self);
387 }
388
389 // next line makes sense, but most objects still have refcnt 0 by default
390 //at->refcnt_chk ();
391 return 0;
392 }
393
394 MGVTBL attachable::vtbl = {0, 0, 0, 0, attachable_free};
395
396 static SV * noinline
397 newSVattachable (attachable *obj, HV *stash)
398 {
399 if (!obj)
400 return newSV (0);
401
402 if (!obj->self)
403 obj->self = newHV ();
404
405 if (!SvOBJECT (obj->self))
406 {
407 sv_magicext ((SV *)obj->self, 0, PERL_MAGIC_ext, &attachable::vtbl, (char *)obj, 0);
408
409 // now bless the object _once_
410 //TODO: create a class registry with c++ type<=>perl name<=>stash and use it here and elsewhere
411 return sv_bless (newRV_inc ((SV *)obj->self), stash);
412 }
413 else
414 {
415 SV *sv = newRV_inc ((SV *)obj->self);
416
417 if (Gv_AMG (stash)) // handle overload correctly, as the perl core does not
418 SvAMAGIC_on (sv);
419
420 return sv;
421 }
422 }
423
424 #if 0 // unused
425 static void
426 clearSVptr (SV *sv)
427 {
428 if (SvROK (sv))
429 sv = SvRV (sv);
430
431 hv_clear ((HV *)sv);
432 sv_unmagic (sv, PERL_MAGIC_ext);
433 }
434 #endif
435
436 static long
437 SvPTR_nc (SV *sv)
438 {
439 sv = SvRV (sv);
440
441 // very important shortcut
442 if (expect_true (SvMAGIC (sv) && SvMAGIC (sv)->mg_type == PERL_MAGIC_ext))
443 return (long)SvMAGIC (sv)->mg_ptr;
444
445 if (MAGIC *mg = mg_find (sv, PERL_MAGIC_ext))
446 return (long)mg->mg_ptr;
447
448 croak ("perl code used object, but C object is already destroyed, caught");
449 }
450
451 static long
452 SvPTR (SV *sv, const char *klass)
453 {
454 if (!sv_derived_from (sv, klass))
455 croak ("object of type %s expected", klass);
456
457 return SvPTR_nc (sv);
458 }
459
460 static long noinline
461 SvPTR_ornull (SV *sv, const char *klass)
462 {
463 if (expect_false (!SvOK (sv))) return 0;
464
465 return SvPTR (sv, klass);
466 }
467
468 static long noinline
469 SvPTR_ornull_client (SV *sv)
470 {
471 if (expect_false (!SvOK (sv))) return 0;
472
473 if (!SvROK (sv)
474 || (SvSTASH (SvRV (sv)) != stash_cf_client_wrap
475 && !sv_derived_from (sv, "cf::client")))
476 croak ("object of type cf::client expected");
477
478 return SvPTR_nc (sv);
479 }
480
481 static long noinline
482 SvPTR_ornull_object (SV *sv)
483 {
484 if (expect_false (!SvOK (sv))) return 0;
485
486 if (!SvROK (sv)
487 || (SvSTASH (SvRV (sv)) != stash_cf_object_wrap
488 && SvSTASH (SvRV (sv)) != stash_cf_object_player_wrap
489 && SvSTASH (SvRV (sv)) != stash_cf_arch_wrap
490 && !sv_derived_from (sv, "cf::object")))
491 croak ("object of type cf::object expected");
492
493 return SvPTR_nc (sv);
494 }
495
496 static long noinline
497 SvPTR_ornull_maptile (SV *sv)
498 {
499 if (expect_false (!SvOK (sv))) return 0;
500
501 if (!SvROK (sv)
502 || (SvSTASH (SvRV (sv)) != stash_cf_map_wrap
503 && SvSTASH (SvRV (sv)) != stash_ext_map_world
504 && !sv_derived_from (sv, "cf::map")))
505 croak ("object of type cf::map expected");
506
507 return SvPTR_nc (sv);
508 }
509
510 static long noinline
511 SvPTR_ornull_player (SV *sv)
512 {
513 if (expect_false (!SvOK (sv))) return 0;
514
515 if (!SvROK (sv)
516 || (SvSTASH (SvRV (sv)) != stash_cf_player_wrap
517 && !sv_derived_from (sv, "cf::player")))
518 croak ("object of type cf::player expected");
519
520 return SvPTR_nc (sv);
521 }
522
523 static inline SV *to_sv (const shstr & v) { return newSVpvn_utf8 ((const char *)v, v.length (), 1); }
524 static inline SV *to_sv (const char * v) { return v ? newSVpv (v, 0) : newSV (0); }
525 static inline SV *to_sv (bool v) { return newSViv (v); }
526 static inline SV *to_sv ( signed char v) { return newSViv (v); }
527 static inline SV *to_sv (unsigned char v) { return newSViv (v); }
528 static inline SV *to_sv ( signed short v) { return newSViv (v); }
529 static inline SV *to_sv (unsigned short v) { return newSVuv (v); }
530 static inline SV *to_sv ( signed int v) { return newSViv (v); }
531 static inline SV *to_sv (unsigned int v) { return newSVuv (v); }
532 static inline SV *to_sv ( signed long v) { return newSViv (v); }
533 static inline SV *to_sv (unsigned long v) { return newSVuv (v); }
534 static inline SV *to_sv ( signed long long v) { return newSVval64 (v); }
535 static inline SV *to_sv (unsigned long long v) { return newSVval64 (v); }
536 static inline SV *to_sv (float v) { return newSVnv (v); }
537 static inline SV *to_sv (double v) { return newSVnv (v); }
538 static inline SV *to_sv (client * v) { return newSVattachable (v, stash_cf_client_wrap); }
539 static inline SV *to_sv (player * v) { return newSVattachable (v, stash_cf_player_wrap); }
540 // gcc dislikes noilnine on to_sv
541 static noinline SV *to_sv_ni (object * v) { return newSVattachable (v, v && v->type == PLAYER ? stash_cf_object_player_wrap : stash_cf_object_wrap); }
542 static inline SV *to_sv (object * v) { return to_sv_ni (v); }
543 static inline SV *to_sv (maptile * v) { return newSVattachable (v, stash_cf_map_wrap); }
544 static inline SV *to_sv (archetype * v) { return newSVattachable (v, stash_cf_arch_wrap); }
545 static inline SV *to_sv (region * v) { return newSVattachable (v, stash_cf_region_wrap); }
546 static inline SV *to_sv (partylist * v) { return newSVptr (v, stash_cf_party_wrap); }
547 static inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); }
548 static inline SV *to_sv (mapspace * v) { return newSVptr (v, stash_cf_mapspace_wrap); }
549 static inline SV *to_sv (layout * v) { return newSVptr (v, stash_cf_layout_wrap); }
550
551 static inline SV *to_sv (object & v) { return to_sv (&v); }
552 static inline SV *to_sv (living & v) { return to_sv (&v); }
553
554 static inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); }
555 static inline SV *to_sv (const treasurelist *v) { return to_sv (v->name); }
556
557 static inline SV *to_sv (UUID v) { return newSVpv (v.c_str (), 0); }
558
559 static inline SV *to_sv (dynbuf * v)
560 {
561 SV *sv = newSV (0);
562
563 sv_upgrade (sv, SVt_PV);
564 SvGROW (sv, v->size () + 1);
565 SvPOK_only (sv);
566 v->linearise (SvPVX (sv));
567 SvCUR_set (sv, v->size ());
568 *SvEND (sv) = 0;
569
570 return sv;
571 }
572
573 static inline SV *to_sv (dynbuf_text * v)
574 {
575 SV *sv = to_sv (static_cast<dynbuf *> (v));
576 SvUTF8_on (sv);
577 return sv;
578 }
579
580 static inline void sv_to (SV *sv, shstr &v) { v = SvOK (sv) ? cfSvPVutf8_nolen (sv) : 0; }
581 static inline void sv_to (SV *sv, char * &v) { free (v); v = SvOK (sv) ? strdup (SvPV_nolen (sv)) : 0; }
582 static inline void sv_to (SV *sv, bool &v) { v = SvIV (sv); }
583 static inline void sv_to (SV *sv, signed char &v) { v = SvIV (sv); }
584 static inline void sv_to (SV *sv, unsigned char &v) { v = SvIV (sv); }
585 static inline void sv_to (SV *sv, signed short &v) { v = SvIV (sv); }
586 static inline void sv_to (SV *sv, unsigned short &v) { v = SvIV (sv); }
587 static inline void sv_to (SV *sv, signed int &v) { v = SvIV (sv); }
588 static inline void sv_to (SV *sv, unsigned int &v) { v = SvUV (sv); }
589 static inline void sv_to (SV *sv, signed long &v) { v = SvIV (sv); }
590 static inline void sv_to (SV *sv, unsigned long &v) { v = SvUV (sv); }
591 static inline void sv_to (SV *sv, signed long long &v) { v = ( signed long long)SvVAL64 (sv); }
592 static inline void sv_to (SV *sv, unsigned long long &v) { v = (unsigned long long)SvVAL64 (sv); }
593 static inline void sv_to (SV *sv, float &v) { v = SvNV (sv); }
594 static inline void sv_to (SV *sv, double &v) { v = SvNV (sv); }
595 static inline void sv_to (SV *sv, client * &v) { v = (client *) (attachable *)SvPTR_ornull_client (sv); }
596 static inline void sv_to (SV *sv, player * &v) { v = (player *) (attachable *)SvPTR_ornull_player (sv); }
597 static inline void sv_to (SV *sv, object * &v) { v = (object *) (attachable *)SvPTR_ornull_object (sv); }
598 static inline void sv_to (SV *sv, maptile * &v) { v = (maptile *) (attachable *)SvPTR_ornull_maptile (sv); }
599 static inline void sv_to (SV *sv, archetype * &v) { v = (archetype *)(attachable *)SvPTR_ornull (sv, "cf::arch"); }
600 static inline void sv_to (SV *sv, region * &v) { v = (region *) (attachable *)SvPTR_ornull (sv, "cf::region"); }
601 static inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); }
602 static inline void sv_to (SV *sv, partylist * &v) { v = (partylist *) SvPTR_ornull (sv, "cf::party"); }
603 static inline void sv_to (SV *sv, living * &v) { v = (living *) SvPTR_ornull (sv, "cf::living"); }
604 static inline void sv_to (SV *sv, mapspace * &v) { v = (mapspace *) SvPTR_ornull (sv, "cf::mapspace"); }
605 static inline void sv_to (SV *sv, layout * &v) { v = (layout *) SvPTR_ornull (sv, "cf::layout"); }
606 static inline void sv_to (SV *sv, object_freezer * &v) { v = (object_freezer *) SvPTR_ornull (sv, "cf::object::freezer"); }
607 static inline void sv_to (SV *sv, object_thawer * &v) { v = (object_thawer *) SvPTR_ornull (sv, "cf::object::thawer" ); }
608
609 //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, treasurelist * &v) { v = treasurelist::find (SvPV_nolen (sv)); }
611
612 template<class T>
613 static inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; }
614
615 template<int N>
616 static inline void sv_to (SV *sv, char (&v)[N]) { assign (v, SvPV_nolen (sv)); }
617
618 static inline void sv_to (SV *sv, bowtype_t &v) { v = (bowtype_t) SvIV (sv); }
619 static inline void sv_to (SV *sv, petmode_t &v) { v = (petmode_t) SvIV (sv); }
620 static inline void sv_to (SV *sv, usekeytype &v) { v = (usekeytype) SvIV (sv); }
621 static inline void sv_to (SV *sv, unapplymode &v) { v = (unapplymode) SvIV (sv); }
622
623 static inline void sv_to (SV *sv, std::string &v)
624 {
625 STRLEN len;
626 char *data = SvPVbyte (sv, len);
627 v.assign (data, len);
628 }
629
630 static inline void sv_to (SV *sv, refcnt_buf &v)
631 {
632 STRLEN len;
633 char *data = SvPVbyte (sv, len);
634 refcnt_buf buf (data, len);
635 v = buf;
636 }
637
638 static inline void sv_to (SV *sv, UUID &v)
639 {
640 if (!v.parse (SvPV_nolen (sv)))
641 croak ("unparsable uuid: %s", SvPV_nolen (sv));
642 }
643
644 static inline void sv_to (SV *sv, object::flags_t::reference v) { v = SvTRUE (sv); }
645
646 static SV *
647 newSVdt_va (va_list &ap, data_type type)
648 {
649 SV *sv;
650
651 switch (type)
652 {
653 case DT_INT:
654 sv = newSViv (va_arg (ap, int));
655 break;
656
657 case DT_INT64:
658 sv = newSVval64 ((val64)va_arg (ap, sint64));
659 break;
660
661 case DT_DOUBLE:
662 sv = newSVnv (va_arg (ap, double));
663 break;
664
665 case DT_STRING:
666 {
667 char *str = (char *)va_arg (ap, const char *);
668 sv = str ? newSVpv (str, 0) : newSV (0);
669 }
670 break;
671
672 case DT_DATA:
673 {
674 char *str = (char *)va_arg (ap, const void *);
675 int len = va_arg (ap, int);
676 sv = str ? newSVpv (str, len) : newSV (0);
677 }
678 break;
679
680 case DT_OBJECT:
681 sv = to_sv (va_arg (ap, object *));
682 break;
683
684 case DT_MAP:
685 // va_arg (object *) when void * is passed is an XSI extension
686 sv = to_sv (va_arg (ap, maptile *));
687 break;
688
689 case DT_CLIENT:
690 sv = to_sv (va_arg (ap, client *));
691 break;
692
693 case DT_PLAYER:
694 sv = to_sv (va_arg (ap, player *));
695 break;
696
697 case DT_ARCH:
698 sv = to_sv (va_arg (ap, archetype *));
699 break;
700
701 case DT_PARTY:
702 sv = to_sv (va_arg (ap, partylist *));
703 break;
704
705 case DT_REGION:
706 sv = to_sv (va_arg (ap, region *));
707 break;
708
709 default:
710 assert (("unhandled type in newSVdt_va", 0));
711 }
712
713 return sv;
714 }
715
716 static SV *
717 newSVdt (data_type type, ...)
718 {
719 va_list ap;
720
721 va_start (ap, type);
722 SV *sv = newSVdt_va (ap, type);
723 va_end (ap);
724
725 return sv;
726 }
727
728 // typemap support, mostly to avoid excessive inlining
729 template<class type>
730 static void noinline
731 cf_obj_to (SV *arg, type &var)
732 {
733 sv_to (arg, var);
734 if (expect_false (!var))
735 croak ("must not pass invalid/null cf_obj here");
736 }
737
738 template<class object>
739 static void noinline
740 cf_obj_ornull_to (SV *arg, object *&var)
741 {
742 if (SvOK (arg))
743 {
744 sv_to (arg, var);
745 if (expect_false (!var))
746 croak ("unable to convert perl object to C++ object");
747 }
748 else
749 var = 0;
750 }
751
752 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
753
754 static SV *
755 registry (attachable *ext)
756 {
757 if (!ext->cb)
758 ext->cb = newAV ();
759
760 return newRV_inc ((SV *)ext->cb);
761 }
762
763 /////////////////////////////////////////////////////////////////////////////
764
765 void
766 cfperl_init ()
767 {
768 extern char **environ;
769
770 PERL_SYS_INIT3 (&settings.argc, &settings.argv, &environ);
771 perl = perl_alloc ();
772 perl_construct (perl);
773
774 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
775
776 const char *argv[] = {
777 settings.argv [0],
778 "-e0"
779 };
780
781 if (perl_parse (perl, xs_init, 2, (char **)argv, environ)
782 || perl_run (perl))
783 {
784 printf ("unable to initialize perl-interpreter, aborting.\n");
785 exit (EXIT_FAILURE);
786 }
787
788 eval_pv (
789 "#line 1 'cfperl init'\n"
790 "use EV ();\n" // required by bootstrap
791 "use Coro ();\n" // required by bootstrap
792 "cf->bootstrap;\n" // required for cf::datadir
793 "unshift @INC, cf::datadir ();\n" // required for 'require' :)
794 "require cf;\n",
795 0
796 );
797
798 if (SvTRUE (ERRSV))
799 {
800 printf ("unable to bootstrap perl, aborting:\n%s", SvPV_nolen (ERRSV));
801 exit (EXIT_FAILURE);
802 }
803 }
804
805 void
806 cfperl_main ()
807 {
808 dSP;
809
810 PUSHMARK (SP);
811 PUTBACK;
812 call_pv ("cf::main", G_DISCARD | G_VOID);
813 }
814
815 void
816 attachable::instantiate ()
817 {
818 if (attach)
819 {
820 INVOKE_ATTACHABLE (INSTANTIATE, this, ARG_STRING (attach));
821 attach = 0;
822 }
823 }
824
825 void
826 attachable::reattach ()
827 {
828 optimise ();
829 //TODO: check for _attachment's, very important for restarts
830 INVOKE_ATTACHABLE (REATTACH, this);
831 }
832
833 static event_klass klass_of[NUM_EVENT_TYPES] = {
834 # define def(type,name) KLASS_ ## type,
835 # include "eventinc.h"
836 # undef def
837 };
838
839 #define KLASS_OF(event) (((unsigned int)event) < NUM_EVENT_TYPES ? klass_of [event] : KLASS_NONE)
840
841 static void noinline
842 gather_callbacks (AV *&callbacks, AV *registry, event_type event)
843 {
844 // event must be in array
845 if (event >= 0 && event <= AvFILLp (registry))
846 {
847 SV *cbs_ = AvARRAY (registry)[event];
848
849 // element must be list of callback entries
850 if (cbs_ && SvROK (cbs_) && SvTYPE (SvRV (cbs_)) == SVt_PVAV)
851 {
852 AV *cbs = (AV *)SvRV (cbs_);
853
854 // no callback entries, no callbacks to call
855 if (AvFILLp (cbs) >= 0)
856 {
857 if (!callbacks)
858 {
859 callbacks = newAV ();
860 av_extend (callbacks, 16);
861 }
862
863 // never use SvREFCNT_inc to copy values, but its ok here :)
864 for (int i = 0; i <= AvFILLp (cbs); ++i)
865 av_push (callbacks, SvREFCNT_inc (AvARRAY (cbs)[i]));
866 }
867 }
868 }
869 }
870
871 void
872 attachable::gather_callbacks (AV *&callbacks, event_type event) const
873 {
874 ::gather_callbacks (callbacks, cb_attachable, event);
875
876 if (cb)
877 ::gather_callbacks (callbacks, cb, event);
878 }
879
880 void
881 global::gather_callbacks (AV *&callbacks, event_type event) const
882 {
883 ::gather_callbacks (callbacks, cb_global, event);
884 }
885
886 void
887 object::gather_callbacks (AV *&callbacks, event_type event) const
888 {
889 if (subtype && type + subtype * NUM_TYPES <= AvFILLp (cb_type))
890 {
891 SV *registry = AvARRAY (cb_type)[type + subtype * NUM_TYPES];
892
893 if (registry && SvROK (registry) && SvTYPE (SvRV (registry)) == SVt_PVAV)
894 ::gather_callbacks (callbacks, (AV *)SvRV (registry), event);
895 }
896
897 if (type <= AvFILLp (cb_type))
898 {
899 SV *registry = AvARRAY (cb_type)[type];
900
901 if (registry && SvROK (registry) && SvTYPE (SvRV (registry)) == SVt_PVAV)
902 ::gather_callbacks (callbacks, (AV *)SvRV (registry), event);
903 }
904
905 attachable::gather_callbacks (callbacks, event);
906 ::gather_callbacks (callbacks, cb_object, event);
907 }
908
909 void
910 archetype::gather_callbacks (AV *&callbacks, event_type event) const
911 {
912 attachable::gather_callbacks (callbacks, event);
913 //TODO//::gather_callbacks (callbacks, cb_archetype, event);
914 }
915
916 void
917 client::gather_callbacks (AV *&callbacks, event_type event) const
918 {
919 attachable::gather_callbacks (callbacks, event);
920 ::gather_callbacks (callbacks, cb_client, event);
921 }
922
923 void
924 player::gather_callbacks (AV *&callbacks, event_type event) const
925 {
926 attachable::gather_callbacks (callbacks, event);
927 ::gather_callbacks (callbacks, cb_player, event);
928 }
929
930 void
931 maptile::gather_callbacks (AV *&callbacks, event_type event) const
932 {
933 attachable::gather_callbacks (callbacks, event);
934 ::gather_callbacks (callbacks, cb_map, event);
935 }
936
937 static void noinline
938 _recalc_want (bitset<NUM_EVENT_TYPES> &set, AV *registry)
939 {
940 for (int event = 0; event <= AvFILLp (registry); ++event)
941 {
942 SV *cbs_ = AvARRAY (registry)[event];
943
944 // element must be list of callback entries
945 if (cbs_ && SvROK (cbs_) && SvTYPE (SvRV (cbs_)) == SVt_PVAV)
946 {
947 AV *cbs = (AV *)SvRV (cbs_);
948
949 // no callback entries, no callbacks to call
950 if (AvFILLp (cbs) >= 0)
951 set.set (event);
952 }
953 }
954 }
955
956 // very slow and inefficient way to recalculate the global want bitsets
957 static void
958 _recalc_want ()
959 {
960 ev_want_event.reset ();
961
962 _recalc_want (ev_want_event, cb_global);
963 _recalc_want (ev_want_event, cb_attachable);
964 _recalc_want (ev_want_event, cb_object);
965 _recalc_want (ev_want_event, cb_client);
966 _recalc_want (ev_want_event, cb_player);
967 _recalc_want (ev_want_event, cb_map);
968
969 ev_want_type.reset ();
970
971 for (int type = 0; type <= AvFILLp (cb_type); ++type)
972 {
973 SV *cbs_ = AvARRAY (cb_type)[type];
974
975 // element must be list of callback entries
976 if (cbs_ && SvROK (cbs_) && SvTYPE (SvRV (cbs_)) == SVt_PVAV)
977 {
978 AV *cbs = (AV *)SvRV (cbs_);
979
980 // no callback entries, no callbacks to call
981 if (AvFILLp (cbs) >= 0)
982 ev_want_type.set (type % NUM_TYPES);
983 }
984 }
985 }
986
987 bool
988 attachable::invoke (event_type event, ...)
989 {
990 data_type dt;
991
992 // callback call ordering should be:
993 // 1. per-object callback
994 // 2. per-class object
995 // 3. per-type callback
996 // 4. global callbacks
997
998 AV *callbacks = 0;
999 gather_callbacks (callbacks, event);
1000
1001 // short-circuit processing if no callbacks found/defined
1002 if (!callbacks)
1003 return 0;
1004
1005 va_list ap;
1006 va_start (ap, event);
1007
1008 CALL_BEGIN (3);
1009 CALL_ARG_SV (newSViv (event)); // only used for debugging nowadays
1010 CALL_ARG_SV (newRV_noinc ((SV *)callbacks));
1011
1012 //TODO: unhack
1013 if (object *op = is_a<object>(this)) CALL_ARG_SV (newSVdt (DT_OBJECT, op));
1014 else if (player *pl = is_a<player>(this)) CALL_ARG_SV (newSVdt (DT_PLAYER, pl));
1015 else if (client *ns = is_a<client>(this)) CALL_ARG_SV (newSVdt (DT_CLIENT, ns));
1016 else if (maptile *m = is_a<maptile>(this)) CALL_ARG_SV (newSVdt (DT_MAP, m));
1017 else if (global *gl = is_a<global>(this)) /*nop*/;
1018 else
1019 abort (); //TODO
1020
1021 for (;;)
1022 {
1023 dt = (data_type) va_arg (ap, int);
1024
1025 if (dt == DT_END)
1026 break;
1027 else if (dt == DT_AV)
1028 {
1029 AV *av = va_arg (ap, AV *);
1030
1031 for (int i = 0; i <= av_len (av); ++i)
1032 XPUSHs (*av_fetch (av, i, 1));
1033 }
1034 else
1035 XPUSHs (sv_2mortal (newSVdt_va (ap, dt)));
1036 }
1037
1038 va_end (ap);
1039
1040 CALL_CALL (cv_cf_do_invoke, G_SCALAR);
1041 count = count > 0 ? POPi : 0;
1042
1043 CALL_END;
1044
1045 return count;
1046 }
1047
1048 static SV *
1049 cfperl_result (int idx)
1050 {
1051 AV *av = get_av ("cf::INVOKE_RESULTS", 0);
1052 if (!av)
1053 return &PL_sv_undef;
1054
1055 SV **sv = av_fetch (av, idx, 0);
1056 if (!sv)
1057 return &PL_sv_undef;
1058
1059 return *sv;
1060 }
1061
1062 int
1063 cfperl_result_INT (int idx)
1064 {
1065 return SvIV (cfperl_result (idx));
1066 }
1067
1068 double
1069 cfperl_result_DOUBLE (int idx)
1070 {
1071 return SvNV (cfperl_result (idx));
1072 }
1073
1074 /////////////////////////////////////////////////////////////////////////////
1075 // various c++ => perl glue functions
1076
1077 void
1078 cfperl_tick ()
1079 {
1080 tick_pending = 1;
1081
1082 if (tick_inhibit)
1083 return;
1084
1085 tick_pending = 0;
1086
1087 dSP;
1088
1089 PUSHMARK (SP);
1090 PUTBACK;
1091 call_pvsv (cv_cf_tick, G_DISCARD | G_VOID);
1092
1093 SvNV_set (sv_next_tick, get_next_tick ()); SvNOK_only (sv_next_tick);
1094 }
1095
1096 void
1097 cfperl_emergency_save ()
1098 {
1099 CALL_BEGIN (0);
1100 CALL_CALL ("cf::emergency_save", G_VOID);
1101 CALL_END;
1102 }
1103
1104 void
1105 cfperl_cleanup (int make_core)
1106 {
1107 CALL_BEGIN (1);
1108 CALL_ARG (make_core);
1109 CALL_CALL ("cf::post_cleanup", G_VOID);
1110 CALL_END;
1111 }
1112
1113 void
1114 cfperl_make_book (object *book, int level)
1115 {
1116 CALL_BEGIN (2);
1117 CALL_ARG (book);
1118 CALL_ARG (level);
1119 CALL_CALL ("ext::books::make_book", G_VOID);
1120 CALL_END;
1121 }
1122
1123 void
1124 cfperl_send_msg (client *ns, int color, const_utf8_string type, const_utf8_string msg)
1125 {
1126 CALL_BEGIN (4);
1127 CALL_ARG (ns);
1128 CALL_ARG (type);
1129 CALL_ARG_SV (newSVpv_utf8 (msg));
1130 CALL_ARG (color);
1131 CALL_CALL (cv_cf_client_send_msg, G_VOID);
1132 CALL_END;
1133 }
1134
1135 int
1136 cfperl_can_merge (object *ob1, object *ob2)
1137 {
1138 int can;
1139
1140 CALL_BEGIN (2);
1141 CALL_ARG (ob1);
1142 CALL_ARG (ob2);
1143 CALL_CALL (cv_cf__can_merge, G_SCALAR);
1144 can = count && SvTRUE (TOPs);
1145 CALL_END;
1146
1147 return can;
1148 }
1149
1150 void
1151 cfperl_mapscript_activate (object *ob, int state, object *activator, object *originator)
1152 {
1153 CALL_BEGIN (4);
1154 CALL_ARG (ob);
1155 CALL_ARG (state);
1156 CALL_ARG (activator);
1157 CALL_ARG (originator);
1158 CALL_CALL ("cf::mapscript::activate", G_VOID);
1159 CALL_END;
1160 }
1161
1162 player *
1163 player::find (const_utf8_string name)
1164 {
1165 CALL_BEGIN (1);
1166 CALL_ARG (name);
1167 CALL_CALL ("cf::player::find", G_SCALAR);
1168
1169 player *retval = 0;
1170 if (count) sv_to (POPs, retval);
1171
1172 CALL_END;
1173
1174 return retval;
1175 }
1176
1177 maptile *
1178 find_style (const_utf8_string dirname, const_utf8_string stylename, int difficulty, bool recurse)
1179 {
1180 CALL_BEGIN (4);
1181 CALL_ARG (dirname);
1182 CALL_ARG (stylename);
1183 CALL_ARG (difficulty);
1184 CALL_ARG (recurse);
1185 CALL_CALL ("ext::map_random::find_style", G_SCALAR);
1186
1187 maptile *retval = 0;
1188 if (count) sv_to (POPs, retval);
1189
1190 CALL_END;
1191
1192 return retval;
1193 }
1194
1195 maptile *
1196 maptile::find_sync (const_utf8_string path, maptile *origin)
1197 {
1198 CALL_BEGIN (2);
1199 CALL_ARG (path);
1200 CALL_ARG (origin);
1201 CALL_CALL ("cf::map::find_sync", G_SCALAR);
1202
1203 maptile *retval = 0;
1204 if (count) sv_to (POPs, retval);
1205
1206 CALL_END;
1207
1208 return retval;
1209 }
1210
1211 maptile *
1212 maptile::find_async (const_utf8_string path, maptile *origin, bool load)
1213 {
1214 CALL_BEGIN (3);
1215 CALL_ARG (path);
1216 CALL_ARG (origin);
1217 CALL_ARG (load);
1218 CALL_CALL ("cf::map::find_async", G_SCALAR);
1219
1220 maptile *retval = 0;
1221 if (count) sv_to (POPs, retval);
1222
1223 CALL_END;
1224
1225 return retval;
1226 }
1227
1228 void
1229 maptile::do_load_sync ()
1230 {
1231 CALL_BEGIN (1);
1232 CALL_ARG (this);
1233 CALL_CALL ("cf::map::do_load_sync", G_SCALAR);
1234 CALL_END;
1235 }
1236
1237 void
1238 object::enter_exit (object *exit)
1239 {
1240 if (type != PLAYER)
1241 return;
1242
1243 CALL_BEGIN (2);
1244 CALL_ARG (this);
1245 CALL_ARG (exit);
1246 CALL_CALL ("cf::object::player::enter_exit", G_VOID);
1247 CALL_END;
1248 }
1249
1250 void
1251 object::player_goto (const_utf8_string path, int x, int y)
1252 {
1253 if (type != PLAYER)
1254 return;
1255
1256 CALL_BEGIN (4);
1257 CALL_ARG (this);
1258 CALL_ARG (path);
1259 CALL_ARG (x);
1260 CALL_ARG (y);
1261 CALL_CALL ("cf::object::player::goto", G_VOID);
1262 CALL_END;
1263 }
1264
1265 const_utf8_string
1266 object::ref () const
1267 {
1268 if (type == PLAYER)
1269 return format ("player/<1.%llx>/%s", (unsigned long long)uuid.seq, &name);
1270 else
1271 // TODO: should be able to save references within the same map, at least
1272 return 0;
1273 }
1274
1275 object *
1276 object::deref (const_utf8_string ref)
1277 {
1278 object *retval = 0;
1279
1280 if (ref)
1281 {
1282 CALL_BEGIN (1);
1283 CALL_ARG (ref);
1284 CALL_CALL ("cf::object::deref", G_SCALAR);
1285
1286 if (count)
1287 sv_to (POPs, retval);
1288
1289 CALL_END;
1290 }
1291
1292 return retval;
1293 }
1294
1295 void
1296 log_backtrace (const_utf8_string msg)
1297 {
1298 #if HAVE_BACKTRACE
1299 void *addr [20];
1300 int size = backtrace (addr, 20);
1301
1302 CALL_BEGIN (size);
1303 CALL_ARG (msg);
1304 for (int i = 0; i < size; ++i)
1305 CALL_ARG ((IV)addr [i]);
1306 CALL_CALL ("cf::_log_backtrace", G_VOID);
1307 CALL_END;
1308 #endif
1309 }
1310
1311 bool
1312 is_match_expr (const_utf8_string expr)
1313 {
1314 return !strncmp (expr, "match ", sizeof ("match ") - 1);
1315 }
1316
1317 bool
1318 match (const_utf8_string expr, object *ob, object *self, object *source, object *originator)
1319 {
1320 if (!strncmp (expr, "match ", sizeof ("match ") - 1))
1321 expr += sizeof ("match ") - 1;
1322
1323 CALL_BEGIN (5);
1324 CALL_ARG (expr);
1325 CALL_ARG (ob);
1326 CALL_ARG (self);
1327 CALL_ARG (source);
1328 CALL_ARG (originator);
1329 CALL_CALL (cv_cf_match_match, G_SCALAR);
1330
1331 bool matched = count && SvTRUE (TOPs);
1332
1333 CALL_END;
1334
1335 return matched;
1336 }
1337
1338 object *
1339 match_one (const_utf8_string expr, object *ob, object *self, object *source, object *originator)
1340 {
1341 if (!strncmp (expr, "match ", sizeof ("match ") - 1))
1342 expr += sizeof ("match ") - 1;
1343
1344 CALL_BEGIN (5);
1345 CALL_ARG (expr);
1346 CALL_ARG (ob);
1347 CALL_ARG (self);
1348 CALL_ARG (source);
1349 CALL_ARG (originator);
1350 CALL_CALL (cv_cf_match_match, G_ARRAY);
1351
1352 object *one = 0;
1353
1354 if (count)
1355 sv_to (TOPs, one);
1356
1357 CALL_END;
1358
1359 return one;
1360 }
1361
1362 /////////////////////////////////////////////////////////////////////////////
1363
1364 struct EVAPI *evapi::GEVAPI;
1365 struct CoroAPI *coroapi::GCoroAPI;
1366
1367 void
1368 coroapi::do_cede_to_tick ()
1369 {
1370 cede_pending = 0;
1371 cede ();
1372 }
1373
1374 void
1375 coroapi::wait_for_tick ()
1376 {
1377 CALL_BEGIN (0);
1378 CALL_CALL ("cf::wait_for_tick", G_DISCARD);
1379 CALL_END;
1380 }
1381
1382 void
1383 coroapi::wait_for_tick_begin ()
1384 {
1385 CALL_BEGIN (0);
1386 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD);
1387 CALL_END;
1388 }
1389
1390 void
1391 iow::poll (int events)
1392 {
1393 if (events != this->events)
1394 {
1395 int active = ev_is_active ((ev_io *)this);
1396 if (active) stop ();
1397 ev_io_set ((ev_io *)this, fd, events);
1398 if (active) start ();
1399 }
1400 }
1401
1402 static void
1403 _connect_to_perl_1 ()
1404 {
1405 stash_cf = gv_stashpv ("cf", 1);
1406
1407 stash_cf_object_wrap = gv_stashpv ("cf::object::wrap", 1);
1408 stash_cf_object_player_wrap = gv_stashpv ("cf::object::player::wrap", 1);
1409 stash_cf_player_wrap = gv_stashpv ("cf::player::wrap", 1);
1410 stash_cf_map_wrap = gv_stashpv ("cf::map::wrap" , 1);
1411 stash_cf_mapspace_wrap = gv_stashpv ("cf::mapspace::wrap" , 1);
1412 stash_cf_client_wrap = gv_stashpv ("cf::client::wrap", 1);
1413 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1);
1414 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1);
1415 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1);
1416 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1);
1417 stash_cf_layout_wrap = gv_stashpv ("cf::layout::wrap", 1);
1418 stash_ext_map_world = gv_stashpv ("ext::map_world" , 1);
1419
1420 sv_now = get_sv ("cf::NOW" , 1); SvUPGRADE (sv_now , SVt_NV);
1421 sv_runtime = get_sv ("cf::RUNTIME" , 1); SvUPGRADE (sv_runtime , SVt_NV);
1422 sv_server_tick = get_sv ("cf::SERVER_TICK", 1); SvUPGRADE (sv_server_tick, SVt_IV);
1423 sv_tick_start = get_sv ("cf::TICK_START" , 1); SvUPGRADE (sv_tick_start , SVt_NV);
1424 sv_next_tick = get_sv ("cf::NEXT_TICK" , 1); SvUPGRADE (sv_next_tick , SVt_NV);
1425
1426 cb_global = get_av ("cf::CB_GLOBAL", 1);
1427 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1);
1428 cb_object = get_av ("cf::CB_OBJECT", 1);
1429 cb_player = get_av ("cf::CB_PLAYER", 1);
1430 cb_client = get_av ("cf::CB_CLIENT", 1);
1431 cb_type = get_av ("cf::CB_TYPE" , 1);
1432 cb_map = get_av ("cf::CB_MAP" , 1);
1433 }
1434
1435 static void
1436 _connect_to_perl_2 ()
1437 {
1438 cv_cf_do_invoke = (SV *)get_cv ("cf::do_invoke" , 0); assert (cv_cf_do_invoke);
1439 cv_cf__can_merge = (SV *)get_cv ("cf::_can_merge" , 0); assert (cv_cf__can_merge);
1440 cv_cf_client_send_msg = (SV *)get_cv ("cf::client::send_msg", 0); assert (cv_cf_client_send_msg);
1441 cv_cf_tick = (SV *)get_cv ("cf::tick" , 0); assert (cv_cf_tick);
1442 cv_cf_match_match = (SV *)get_cv ("cf::match::match" , 0); assert (cv_cf_match_match);
1443 }
1444
1445 MODULE = cf PACKAGE = cf PREFIX = cf_
1446
1447 BOOT:
1448 {
1449 I_EV_API (PACKAGE); evapi::GEVAPI = GEVAPI;
1450 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI;
1451
1452 _connect_to_perl_1 ();
1453
1454 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1));
1455
1456 //{
1457 // require_pv ("Time::HiRes");
1458 //
1459 // SV **svp = hv_fetch (PL_modglobal, "Time::NVtime", 12, 0);
1460 // if (!svp) croak ("Time::HiRes is required");
1461 // if (!SvIOK(*svp)) croak ("Time::NVtime isn’t a function pointer");
1462 // coroapi::time = INT2PTR (double(*)(), SvIV(*svp));
1463 //}
1464
1465 static const struct {
1466 const char *name;
1467 IV iv;
1468 } *civ, const_iv[] = {
1469 # define const_iv(name) { # name, (IV)name },
1470 # include "const_iv.h"
1471 # define def(uc, lc, name, plus, change) const_iv (AT_ ## uc) const_iv (ATNR_ ## uc)
1472 # include "attackinc.h"
1473 # undef def
1474 # define def(uc, flags) const_iv (SK_ ## uc)
1475 # include "skillinc.h"
1476 # undef def
1477 # define def(name, use, nonuse) const_iv (body_ ## name)
1478 # include "slotinc.h"
1479 # undef def
1480
1481 const_iv (MAP_CLIENT_X) const_iv (MAP_CLIENT_Y)
1482
1483 const_iv (MAX_TIME)
1484 const_iv (MAXSOCKBUF)
1485
1486 const_iv (UPD_LOCATION) const_iv (UPD_FLAGS) const_iv (UPD_WEIGHT) const_iv (UPD_FACE)
1487 const_iv (UPD_NAME) const_iv (UPD_ANIM) const_iv (UPD_ANIMSPEED) const_iv (UPD_NROF)
1488
1489 const_iv (UPD_SP_MANA) const_iv (UPD_SP_GRACE) const_iv (UPD_SP_LEVEL)
1490
1491 const_iv (F_APPLIED) const_iv (F_LOCATION) const_iv (F_UNPAID) const_iv (F_MAGIC)
1492 const_iv (F_CURSED) const_iv (F_DAMNED) const_iv (F_OPEN) const_iv (F_NOPICK)
1493 const_iv (F_LOCKED)
1494
1495 const_iv (P_BLOCKSVIEW) const_iv (P_NO_MAGIC) const_iv (P_IS_ALIVE)
1496 const_iv (P_NO_CLERIC) const_iv (P_OUT_OF_MAP) const_iv (P_NEW_MAP) const_iv (P_UPTODATE)
1497
1498 const_iv (SAVE_MODE) const_iv (SAVE_DIR_MODE)
1499
1500 const_iv (SK_EXP_ADD_SKILL) const_iv (SK_EXP_TOTAL) const_iv (SK_EXP_NONE)
1501 const_iv (SK_SUBTRACT_SKILL_EXP) const_iv (SK_EXP_SKILL_ONLY)
1502
1503 const_iv (KLASS_ATTACHABLE) const_iv (KLASS_GLOBAL) const_iv (KLASS_OBJECT)
1504 const_iv (KLASS_CLIENT) const_iv (KLASS_PLAYER) const_iv (KLASS_MAP)
1505
1506 const_iv (CS_QUERY_YESNO) const_iv (CS_QUERY_SINGLECHAR) const_iv (CS_QUERY_HIDEINPUT)
1507
1508 const_iv (IO_HEADER) const_iv (IO_OBJECTS) const_iv (IO_UNIQUES)
1509 };
1510
1511 for (civ = const_iv + array_length (const_iv); civ-- > const_iv; )
1512 newCONSTSUB (stash_cf, (char *)civ->name, newSViv (civ->iv));
1513
1514 static const struct {
1515 const char *name;
1516 int skip;
1517 IV klass;
1518 IV iv;
1519 } *eiv, event_iv[] = {
1520 # define def(klass,name) { "EVENT_" # klass "_" # name, sizeof ("EVENT_" # klass), (IV)KLASS_ ## klass, (IV)EVENT_ ## klass ## _ ## name },
1521 # include "eventinc.h"
1522 # undef def
1523 };
1524
1525 AV *av = get_av ("cf::EVENT", 1);
1526
1527 for (eiv = event_iv + array_length (event_iv); eiv-- > event_iv; )
1528 {
1529 AV *event = newAV ();
1530 av_push (event, newSVpv ((char *)eiv->name + eiv->skip, 0));
1531 av_push (event, newSViv (eiv->klass));
1532 av_store (av, eiv->iv, newRV_noinc ((SV *)event));
1533 newCONSTSUB (stash_cf, (char *)eiv->name, newSViv (eiv->iv));
1534 }
1535
1536 // used by autogenerated BOOT sections from genacc
1537 av_reflect = get_av ("cf::REFLECT", 1);
1538 }
1539
1540 void _gv_clear (SV *gv)
1541 CODE:
1542 assert (SvTYPE (gv) == SVt_PVGV);
1543 # define f(sv) { SV *sv_ = (SV *)(sv); sv = 0; SvREFCNT_dec (sv_); }
1544 SvREFCNT_inc (gv);
1545 f (GvGP (gv)->gp_form);
1546 f (GvGP (gv)->gp_io);
1547 f (GvGP (gv)->gp_sv);
1548 f (GvGP (gv)->gp_av);
1549 f (GvGP (gv)->gp_hv);
1550 f (GvGP (gv)->gp_cv);
1551 GvCVGEN (gv) = 0;
1552 GvMULTI_off (gv);
1553 SvREFCNT_dec (gv);
1554 # undef f
1555
1556 void _connect_to_perl_1 ()
1557
1558 void _connect_to_perl_2 ()
1559
1560 void _recalc_want ()
1561
1562 # not used by default anymore
1563 void _global_reattach ()
1564 CODE:
1565 {
1566 // reattach to all attachable objects in the game.
1567 for_all_clients (ns)
1568 ns->reattach ();
1569
1570 for_all_objects (op)
1571 op->reattach ();
1572 }
1573
1574 void init_anim ()
1575
1576 void init_globals ()
1577
1578 void init_attackmess ()
1579
1580 void init_dynamic ()
1581
1582 void load_settings ()
1583
1584 void _reload_exp_table ()
1585
1586 void _reload_materials ()
1587
1588 void init_uuid ()
1589 CODE:
1590 UUID::init ();
1591
1592 void init_signals ()
1593
1594 void init_skills ()
1595
1596 void init_beforeplay ()
1597
1598 void evthread_start (int aiofd)
1599
1600 void cede_to_tick ()
1601 CODE:
1602 coroapi::cede_to_tick ();
1603
1604 NV till_tick ()
1605 CODE:
1606 RETVAL = SvNVX (sv_next_tick) - now ();
1607 OUTPUT:
1608 RETVAL
1609
1610 int tick_inhibit ()
1611 CODE:
1612 RETVAL = tick_inhibit;
1613 OUTPUT:
1614 RETVAL
1615
1616 void tick_inhibit_inc ()
1617 CODE:
1618 ++tick_inhibit;
1619
1620 void tick_inhibit_dec ()
1621 CODE:
1622 if (!--tick_inhibit)
1623 if (tick_pending)
1624 {
1625 ev_async_send (EV_DEFAULT, &tick_watcher);
1626 coroapi::cede ();
1627 }
1628
1629 void one_tick ()
1630 CODE:
1631 {
1632 ev_now_update (EV_DEFAULT);
1633 NOW = ev_now (EV_DEFAULT);
1634 SvNV_set (sv_now, NOW); SvNOK_only (sv_now);
1635 SvNV_set (sv_tick_start, NOW); SvNOK_only (sv_tick_start);
1636 runtime = SvNVX (sv_runtime);
1637
1638 one_tick ();
1639
1640 ++server_tick;
1641 SvUV_set (sv_server_tick, server_tick); SvIOK_only_UV (sv_server_tick);
1642
1643 ev_now_update (EV_DEFAULT);
1644 NOW = ev_now (EV_DEFAULT);
1645 SvNV_set (sv_now, NOW); SvNOK_only (sv_now);
1646
1647 runtime += TICK;
1648 SvNV_set (sv_runtime, runtime); SvNOK_only (sv_runtime);
1649 }
1650
1651 NV floor (NV x)
1652
1653 NV ceil (NV x)
1654
1655 NV rndm (...)
1656 ALIAS:
1657 rmg_rndm = 1
1658 CODE:
1659 {
1660 rand_gen &gen = ix ? rmg_rndm : rndm;
1661 switch (items)
1662 {
1663 case 0: RETVAL = gen (); break;
1664 case 1: RETVAL = gen (SvUV (ST (0))); break;
1665 case 2: RETVAL = gen (SvIV (ST (0)), SvIV (ST (1))); break;
1666 default: croak ("cf::rndm requires zero, one or two parameters."); break;
1667 }
1668 }
1669 OUTPUT:
1670 RETVAL
1671
1672 NV clamp (NV value, NV min_value, NV max_value)
1673 CODE:
1674 RETVAL = clamp (value, min_value, max_value);
1675 OUTPUT:
1676 RETVAL
1677
1678 NV lerp (NV value, NV min_in, NV max_in, NV min_out, NV max_out)
1679 CODE:
1680 RETVAL = lerp (value, min_in, max_in, min_out, max_out);
1681 OUTPUT:
1682 RETVAL
1683
1684 const char *ordinal (int i)
1685
1686 void weaken (...)
1687 PROTOTYPE: @
1688 CODE:
1689 while (items > 0)
1690 sv_rvweaken (ST (--items));
1691
1692 void log_suspend ()
1693
1694 void log_resume ()
1695
1696 void log_backtrace (utf8_string msg)
1697
1698 void LOG (int flags, utf8_string msg)
1699 PROTOTYPE: $$
1700 C_ARGS: flags, "%s", msg
1701
1702 octet_string path_combine (octet_string base, octet_string path)
1703 PROTOTYPE: $$
1704
1705 octet_string path_combine_and_normalize (octet_string base, octet_string path)
1706 PROTOTYPE: $$
1707
1708 void
1709 sub_generation_inc ()
1710 CODE:
1711 PL_sub_generation++;
1712
1713 const_octet_string
1714 mapdir ()
1715 PROTOTYPE:
1716 ALIAS:
1717 mapdir = 0
1718 uniquedir = 1
1719 tmpdir = 2
1720 confdir = 3
1721 localdir = 4
1722 playerdir = 5
1723 datadir = 6
1724 CODE:
1725 switch (ix)
1726 {
1727 case 0: RETVAL = settings.mapdir ; break;
1728 case 1: RETVAL = settings.uniquedir; break;
1729 case 2: RETVAL = settings.tmpdir ; break;
1730 case 3: RETVAL = settings.confdir ; break;
1731 case 4: RETVAL = settings.localdir ; break;
1732 case 5: RETVAL = settings.playerdir; break;
1733 case 6: RETVAL = settings.datadir ; break;
1734 }
1735 OUTPUT: RETVAL
1736
1737 void abort ()
1738
1739 void reset_signals ()
1740
1741 void fork_abort (const_octet_string cause = "cf::fork_abort")
1742
1743 void cleanup (const_octet_string cause, bool make_core = false)
1744
1745 void emergency_save ()
1746
1747 void _exit (int status = EXIT_SUCCESS)
1748
1749 #if _POSIX_MEMLOCK
1750
1751 int mlockall (int flags = MCL_CURRENT | MCL_FUTURE)
1752 INIT:
1753 #if __GLIBC__
1754 mallopt (M_TOP_PAD, 1024 * 1024);
1755 mallopt (M_MMAP_THRESHOLD, 1024 * 1024);
1756 mallopt (M_MMAP_MAX, 0); // likely bug-workaround, also frees memory
1757 if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 10))
1758 mallopt (M_PERTURB, 0xee); // bug-workaround for linux glibc+mlockall+calloc
1759 #endif
1760
1761 int munlockall ()
1762
1763 #endif
1764
1765 int
1766 malloc_trim (IV pad = 0)
1767
1768 void
1769 mallinfo ()
1770 PPCODE:
1771 {
1772 #if __GLIBC__
1773 struct mallinfo mai = mallinfo ();
1774 EXTEND (SP, 10*2);
1775 PUSHs (sv_2mortal (newSVpv ("arena" , 0))); PUSHs (sv_2mortal (newSViv (mai.arena)));
1776 PUSHs (sv_2mortal (newSVpv ("ordblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.ordblks)));
1777 PUSHs (sv_2mortal (newSVpv ("smblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.smblks)));
1778 PUSHs (sv_2mortal (newSVpv ("hblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.hblks)));
1779 PUSHs (sv_2mortal (newSVpv ("hblkhd" , 0))); PUSHs (sv_2mortal (newSViv (mai.hblkhd)));
1780 PUSHs (sv_2mortal (newSVpv ("usmblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.usmblks)));
1781 PUSHs (sv_2mortal (newSVpv ("fsmblks" , 0))); PUSHs (sv_2mortal (newSViv (mai.fsmblks)));
1782 PUSHs (sv_2mortal (newSVpv ("uordblks", 0))); PUSHs (sv_2mortal (newSViv (mai.uordblks)));
1783 PUSHs (sv_2mortal (newSVpv ("fordblks", 0))); PUSHs (sv_2mortal (newSViv (mai.fordblks)));
1784 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost)));
1785 #endif
1786 EXTEND (SP, 5*2);
1787 PUSHs (sv_2mortal (newSVpv ("slice_alloc", 0))); PUSHs (sv_2mortal (newSVuv (slice_alloc)));
1788 PUSHs (sv_2mortal (newSVpv ("shstr_alloc", 0))); PUSHs (sv_2mortal (newSVuv (shstr_alloc)));
1789 PUSHs (sv_2mortal (newSVpv ("objects" , 0))); PUSHs (sv_2mortal (newSVuv (objects.size () * sizeof (object))));
1790 PUSHs (sv_2mortal (newSVpv ("sv_count" , 0))); PUSHs (sv_2mortal (newSVuv (PL_sv_count)));
1791 PUSHs (sv_2mortal (newSVpv ("sv_objcount", 0))); PUSHs (sv_2mortal (newSVuv (PL_sv_objcount)));
1792 }
1793
1794 int find_animation (utf8_string text)
1795 PROTOTYPE: $
1796
1797 int random_roll (int min, int max, object *op, int goodbad);
1798
1799 const_utf8_string cost_string_from_value(uint64 cost, int approx = 0)
1800
1801 int exp_to_level (val64 exp)
1802
1803 val64 level_to_min_exp (int level)
1804
1805 const_utf8_string
1806 spellpathnames (int idx)
1807 CODE:
1808 RETVAL = spellpathnames [idx];
1809 OUTPUT: RETVAL
1810
1811 SV *
1812 attacktype_name (int atnr)
1813 CODE:
1814 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1815 ? newSVpv (attacktype_name [atnr], 0)
1816 : &PL_sv_undef;
1817 OUTPUT: RETVAL
1818
1819 SV *
1820 attacktype_desc (int atnr)
1821 CODE:
1822 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1823 ? newSVpv (attacktype_desc [atnr], 0)
1824 : &PL_sv_undef;
1825 OUTPUT: RETVAL
1826
1827 SV *
1828 resist_plus (int atnr)
1829 CODE:
1830 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1831 ? newSVpv (resist_plus [atnr], 0)
1832 : &PL_sv_undef;
1833 OUTPUT: RETVAL
1834
1835 SV *
1836 change_resist_msg (int atnr)
1837 CODE:
1838 RETVAL = IN_RANGE_EXC (atnr, 0, NROFATTACKS)
1839 ? newSVpv (change_resist_msg [atnr], 0)
1840 : &PL_sv_undef;
1841 OUTPUT: RETVAL
1842
1843 UUID
1844 uuid_cur ()
1845 CODE:
1846 RETVAL = UUID::cur;
1847 OUTPUT:
1848 RETVAL
1849
1850 UUID
1851 uuid_gen ()
1852 CODE:
1853 RETVAL = UUID::gen ();
1854 OUTPUT:
1855 RETVAL
1856
1857 val64
1858 uuid_seq (UUID uuid)
1859 CODE:
1860 RETVAL = uuid.seq;
1861 OUTPUT:
1862 RETVAL
1863
1864 UUID
1865 uuid_str (val64 seq)
1866 CODE:
1867 RETVAL.seq = seq;
1868 OUTPUT:
1869 RETVAL
1870
1871 void
1872 coin_names ()
1873 PPCODE:
1874 EXTEND (SP, NUM_COINS);
1875 for (int i = 0; i < NUM_COINS; ++i)
1876 PUSHs (sv_2mortal (newSVpv (coins [i], 0)));
1877
1878 void
1879 coin_archetypes ()
1880 PPCODE:
1881 EXTEND (SP, NUM_COINS);
1882 for (int i = 0; i < NUM_COINS; ++i)
1883 PUSHs (sv_2mortal (to_sv (archetype::find (coins [i]))));
1884
1885 bool
1886 load_resource_file_ (octet_string filename)
1887
1888 void
1889 fix_weight ()
1890
1891 MODULE = cf PACKAGE = cf::attachable
1892
1893 int
1894 valid (SV *obj)
1895 CODE:
1896 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext);
1897 OUTPUT:
1898 RETVAL
1899
1900 bool should_invoke (attachable *obj, int event)
1901 CODE:
1902 RETVAL = obj->should_invoke ((event_type)event);
1903 OUTPUT: RETVAL
1904
1905 void
1906 debug_trace (attachable *obj, bool on = true)
1907 CODE:
1908 obj->attachable_flags &= ~attachable::F_DEBUG_TRACE;
1909 if (on)
1910 obj->attachable_flags |= attachable::F_DEBUG_TRACE;
1911
1912 int mortals_size ()
1913 CODE:
1914 RETVAL = attachable::mortals.size ();
1915 OUTPUT: RETVAL
1916
1917 #object *mortals (U32 index)
1918 # CODE:
1919 # RETVAL = index < attachable::mortals.size () ? attachable::mortals [index] : 0;
1920 # OUTPUT: RETVAL
1921
1922 INCLUDE: $PERL $srcdir/genacc attachable $srcdir/../include/util.h $srcdir/../include/cfperl.h |
1923
1924 MODULE = cf PACKAGE = cf::global
1925
1926 int invoke (SV *klass, int event, ...)
1927 CODE:
1928 if (KLASS_OF (event) != KLASS_GLOBAL) croak ("event class must be GLOBAL");
1929 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
1930 for (int i = 1; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
1931 RETVAL = gbl_ev.invoke ((event_type)event, ARG_AV (av), DT_END);
1932 OUTPUT: RETVAL
1933
1934 MODULE = cf PACKAGE = cf::object PREFIX = cf_object_
1935
1936 INCLUDE: $PERL $srcdir/genacc object $srcdir/../include/object.h |
1937
1938 int invoke (object *op, int event, ...)
1939 CODE:
1940 if (KLASS_OF (event) != KLASS_OBJECT) croak ("event class must be OBJECT");
1941 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
1942 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
1943 RETVAL = op->invoke ((event_type)event, ARG_AV (av), DT_END);
1944 OUTPUT: RETVAL
1945
1946 SV *registry (object *op)
1947
1948 int objects_size ()
1949 CODE:
1950 RETVAL = objects.size ();
1951 OUTPUT: RETVAL
1952
1953 object *objects (U32 index)
1954 CODE:
1955 RETVAL = index < objects.size () ? objects [index] : 0;
1956 OUTPUT: RETVAL
1957
1958 int actives_size ()
1959 CODE:
1960 RETVAL = actives.size ();
1961 OUTPUT: RETVAL
1962
1963 object *actives (U32 index)
1964 CODE:
1965 RETVAL = index < actives.size () ? actives [index] : 0;
1966 OUTPUT: RETVAL
1967
1968 int mortals_size ()
1969 CODE:
1970 RETVAL = attachable::mortals.size ();
1971 OUTPUT: RETVAL
1972
1973 const_utf8_string slot_name (U32 slot)
1974 ALIAS:
1975 slot_name = 0
1976 slot_use_name = 1
1977 slot_nonuse_name = 2
1978 CODE:
1979 {
1980 if (slot >= NUM_BODY_LOCATIONS)
1981 croak ("body slot index out of range");
1982
1983 switch (ix)
1984 {
1985 case 0: RETVAL = body_locations[slot].name ; break;
1986 case 1: RETVAL = body_locations[slot].use_name ; break;
1987 case 2: RETVAL = body_locations[slot].nonuse_name; break;
1988 }
1989 }
1990 OUTPUT:
1991 RETVAL
1992
1993 # missing properties
1994
1995 object *head (object *op)
1996 PROTOTYPE: $
1997 CODE:
1998 RETVAL = op->head_ ();
1999 OUTPUT: RETVAL
2000
2001 void
2002 inv (object *obj)
2003 PROTOTYPE: $
2004 PPCODE:
2005 {
2006 for (object *o = obj->inv; o; o = o->below)
2007 XPUSHs (sv_2mortal (to_sv (o)));
2008 }
2009
2010 void
2011 set_animation (object *op, int idx)
2012 CODE:
2013 SET_ANIMATION (op, idx);
2014
2015 int
2016 num_animations (object *op)
2017 CODE:
2018 RETVAL = NUM_ANIMATIONS (op);
2019 OUTPUT: RETVAL
2020
2021 int slot_info (object *op, UV slot, int value = 0)
2022 ALIAS:
2023 slot_used = 1
2024 CODE:
2025 {
2026 if (slot >= NUM_BODY_LOCATIONS)
2027 croak ("body slot index out of range");
2028
2029 RETVAL = ix ? op->slot[slot].used : op->slot[slot].info;
2030
2031 if (items > 2)
2032 if (ix)
2033 op->slot[slot].used = value;
2034 else
2035 op->slot[slot].info = value;
2036 }
2037 OUTPUT:
2038 RETVAL
2039
2040 object *find_best_object_match (object *op, utf8_string match)
2041
2042 int apply_shop_mat (object *shop_mat, object *op);
2043
2044 int move (object *op, int dir, object *originator = op)
2045 CODE:
2046 RETVAL = op->move (dir, originator);
2047 OUTPUT:
2048 RETVAL
2049
2050 void apply_below (object *op)
2051 CODE:
2052 player_apply_below (op);
2053
2054 int cast_heal (object *op, object *caster, object *spell, int dir = 0)
2055
2056 int casting_level (object *caster, object *spell)
2057
2058 int pay_item (object *op, object *buyer)
2059 CODE:
2060 RETVAL = pay_for_item (op, buyer);
2061 OUTPUT: RETVAL
2062
2063 int pay_amount (object *op, uint64 amount)
2064 CODE:
2065 RETVAL = pay_for_amount (amount, op);
2066 OUTPUT: RETVAL
2067
2068 void pay_player (object *op, uint64 amount)
2069
2070 val64 pay_player_arch (object *op, utf8_string arch, uint64 amount)
2071
2072 int cast_spell (object *op, object *caster, int dir, object *spell_ob, utf8_string stringarg = 0)
2073
2074 void learn_spell (object *op, object *sp, int special_prayer = 0)
2075 CODE:
2076 do_learn_spell (op, sp, special_prayer);
2077
2078 void forget_spell (object *op, object *sp)
2079 CODE:
2080 do_forget_spell (op, query_name (sp));
2081
2082 object *check_for_spell (object *op, utf8_string spellname)
2083 CODE:
2084 RETVAL = check_spell_known (op, spellname);
2085 OUTPUT: RETVAL
2086
2087 int query_money (object *op)
2088 ALIAS: money = 0
2089
2090 val64 query_cost (object *op, object *who, int flags)
2091 ALIAS: cost = 0
2092
2093 void spring_trap (object *op, object *victim)
2094
2095 int check_trigger (object *op, object *cause)
2096
2097 void drop (object *who, object *op)
2098
2099 void pick_up (object *who, object *op)
2100
2101 void update_object (object *op, int action)
2102
2103 void change_exp (object *op, uint64 exp, shstr_tmp skill_name = shstr_tmp (), int flag = 0)
2104
2105 void player_lvl_adj (object *who, object *skill = 0)
2106
2107 int kill_object (object *op, int dam = 0, object *hitter = 0, int type = AT_PHYSICAL)
2108
2109 int calc_skill_exp (object *who, object *op, object *skill)
2110
2111 void push_button (object *op, object *originator)
2112
2113 void use_trigger (object *op, object *originator)
2114
2115 void handle_apply_yield (object *op)
2116
2117 int convert_item (object *item, object *converter)
2118
2119 void fix_generated_item (object *op, object *creator, int difficulty, int max_magic, int flags);
2120
2121 MODULE = cf PACKAGE = cf::object PREFIX = cf_
2122
2123 # no clean way to get an object from an archetype - stupid idiotic
2124 # dumb kludgy misdesigned plug-in api slowly gets on my nerves.
2125
2126 object *new (utf8_string archetype = 0)
2127 PROTOTYPE: ;$
2128 CODE:
2129 RETVAL = archetype
2130 ? archetype::get (archetype)
2131 : object::create ();
2132 OUTPUT:
2133 RETVAL
2134
2135 object *generate (utf8_string arch, object *creator)
2136 CODE:
2137 object *obj = archetype::get (arch);
2138 fix_generated_item (obj, creator, 0, 0, GT_MINIMAL);
2139 RETVAL = obj;
2140 OUTPUT:
2141 RETVAL
2142
2143 object *find_object (U32 tag)
2144
2145 object *find_object_uuid (UUID i)
2146
2147 # TODO: nuke
2148 object *insert_ob_in_map_at (object *ob, maptile *where, object_ornull *orig, int flag, int x, int y)
2149 PROTOTYPE: $$$$$$
2150 CODE:
2151 {
2152 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y);
2153
2154 if (RETVAL->destroyed ())
2155 RETVAL = 0;
2156 }
2157 OUTPUT:
2158 RETVAL
2159
2160 shstr
2161 object::kv_get (shstr key)
2162 CODE:
2163 RETVAL = THIS->kv.get (key);
2164 OUTPUT:
2165 RETVAL
2166
2167 void
2168 object::kv_del (shstr key)
2169 CODE:
2170 THIS->kv.del (key);
2171
2172 void
2173 object::kv_set (shstr key, shstr value)
2174 CODE:
2175 THIS->kv.set (key, value);
2176
2177 object *get_nearest_player (object *ob)
2178 ALIAS: nearest_player = 0
2179 PREINIT:
2180 extern object *get_nearest_player (object *);
2181
2182 void rangevector (object *ob, object *other, int flags = 0)
2183 PROTOTYPE: $$;$
2184 PPCODE:
2185 {
2186 rv_vector rv;
2187
2188 get_rangevector (ob, other, &rv, flags);
2189
2190 EXTEND (SP, 5);
2191 PUSHs (sv_2mortal (newSVuv (rv.distance)));
2192 PUSHs (sv_2mortal (newSViv (rv.distance_x)));
2193 PUSHs (sv_2mortal (newSViv (rv.distance_y)));
2194 PUSHs (sv_2mortal (newSViv (rv.direction)));
2195 PUSHs (sv_2mortal (to_sv (rv.part)));
2196 }
2197
2198 bool on_same_map_as (object *ob, object *other)
2199 CODE:
2200 RETVAL = on_same_map (ob, other);
2201 OUTPUT: RETVAL
2202
2203 const_utf8_string
2204 base_name (object *op, int plural = op->nrof > 1)
2205 CODE:
2206 RETVAL = query_base_name (op, plural);
2207 OUTPUT: RETVAL
2208
2209 # return the tail of an object, excluding itself
2210 void
2211 tail (object *op)
2212 PPCODE:
2213 while ((op = op->more))
2214 XPUSHs (sv_2mortal (to_sv (op)));
2215
2216 MODULE = cf PACKAGE = cf::object::player PREFIX = cf_player_
2217
2218 player *player (object *op)
2219 CODE:
2220 RETVAL = op->contr;
2221 OUTPUT: RETVAL
2222
2223 bool move_player (object *op, int dir)
2224
2225 void message (object *op, utf8_string txt, int flags = NDI_ORANGE | NDI_UNIQUE)
2226 CODE:
2227 new_draw_info (flags, 0, op, txt);
2228
2229 void kill_player (object *op)
2230
2231 void esrv_send_item (object *pl, object *item)
2232
2233 void esrv_update_item (object *pl, int what, object *item)
2234 C_ARGS: what, pl, item
2235
2236 void esrv_del_item (object *pl, int tag)
2237 C_ARGS: pl->contr, tag
2238
2239 int command_summon (object *op, utf8_string params)
2240
2241 int command_arrest (object *op, utf8_string params)
2242
2243
2244 MODULE = cf PACKAGE = cf::player PREFIX = cf_player_
2245
2246 INCLUDE: $PERL $srcdir/genacc player $srcdir/../include/player.h |
2247
2248 int invoke (player *pl, int event, ...)
2249 CODE:
2250 if (KLASS_OF (event) != KLASS_PLAYER) croak ("event class must be PLAYER");
2251 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
2252 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
2253 RETVAL = pl->invoke ((event_type)event, ARG_AV (av), DT_END);
2254 OUTPUT: RETVAL
2255
2256 SV *registry (player *pl)
2257
2258 void
2259 save_stats (player *pl)
2260 CODE:
2261 pl->ob->stats.hp = pl->ob->stats.maxhp;
2262 pl->ob->stats.sp = pl->ob->stats.maxsp;
2263 pl->ob->stats.grace = pl->ob->stats.maxgrace;
2264 pl->orig_stats = pl->ob->stats;
2265
2266 # should only be temporary
2267 void esrv_new_player (player *pl)
2268
2269 #d# TODO: replace by blocked_los accessor, fix code using this
2270 bool
2271 cell_visible (player *pl, int dx, int dy)
2272 CODE:
2273 RETVAL = pl->blocked_los (dx, dy) != LOS_BLOCKED;
2274 OUTPUT:
2275 RETVAL
2276
2277 void
2278 send (player *pl, SV *packet)
2279 CODE:
2280 {
2281 STRLEN len;
2282 char *buf = SvPVbyte (packet, len);
2283
2284 if (len > MAXSOCKBUF)
2285 pl->failmsg ("[packet too long for client]");
2286 else if (pl->ns)
2287 pl->ns->send_packet (buf, len);
2288 }
2289
2290 void savebed (player *pl, SV *map_path = 0, SV *x = 0, SV *y = 0)
2291 PROTOTYPE: $;$$$
2292 PPCODE:
2293 if (GIMME_V != G_VOID)
2294 {
2295 EXTEND (SP, 3);
2296 PUSHs (sv_2mortal (newSVpv (pl->savebed_map, 0)));
2297 PUSHs (sv_2mortal (newSViv (pl->bed_x)));
2298 PUSHs (sv_2mortal (newSViv (pl->bed_y)));
2299 }
2300 if (map_path) sv_to (map_path, pl->savebed_map);
2301 if (x) sv_to (x, pl->bed_x);
2302 if (y) sv_to (y, pl->bed_y);
2303
2304 void
2305 list ()
2306 PPCODE:
2307 for_all_players (pl)
2308 XPUSHs (sv_2mortal (to_sv (pl)));
2309
2310
2311 MODULE = cf PACKAGE = cf::map PREFIX = cf_map_
2312
2313 int invoke (maptile *map, int event, ...)
2314 CODE:
2315 if (KLASS_OF (event) != KLASS_MAP) croak ("event class must be MAP");
2316 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
2317 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
2318 RETVAL = map->invoke ((event_type)event, ARG_AV (av), DT_END);
2319 OUTPUT: RETVAL
2320
2321 SV *registry (maptile *map)
2322
2323 void
2324 find_tagged_objects (maptile *map, utf8_string tag = 0)
2325 PPCODE:
2326 {
2327 if (!map->spaces)
2328 XSRETURN_EMPTY;
2329
2330 if (tag)
2331 {
2332 shstr_cmp tag_ (tag);
2333
2334 for (mapspace *ms = map->spaces + map->size (); ms-- > map->spaces; )
2335 for (object *op = ms->bot; op; op = op->above)
2336 if (op->tag == tag_)
2337 XPUSHs (sv_2mortal (to_sv (op)));
2338 }
2339 else
2340 {
2341 for (mapspace *ms = map->spaces + map->size (); ms-- > map->spaces; )
2342 for (object *op = ms->bot; op; op = op->above)
2343 if (op->tag)
2344 XPUSHs (sv_2mortal (to_sv (op)));
2345 }
2346 }
2347
2348 INCLUDE: $PERL $srcdir/genacc maptile $srcdir/../include/map.h |
2349
2350 void
2351 adjust_daylight ()
2352 CODE:
2353 maptile::adjust_daylight ();
2354
2355 int
2356 outdoor_darkness (int darkness = 0)
2357 CODE:
2358 RETVAL = maptile::outdoor_darkness;
2359 if (items)
2360 maptile::outdoor_darkness = darkness;
2361 OUTPUT:
2362 RETVAL
2363
2364 void
2365 maptile::instantiate ()
2366
2367 maptile *new ()
2368 PROTOTYPE:
2369 CODE:
2370 RETVAL = new maptile;
2371 OUTPUT:
2372 RETVAL
2373
2374 void
2375 maptile::players ()
2376 PPCODE:
2377 if (GIMME_V == G_SCALAR)
2378 XPUSHs (sv_2mortal (to_sv (THIS->players)));
2379 else if (GIMME_V == G_ARRAY)
2380 {
2381 EXTEND (SP, THIS->players);
2382 for_all_players (pl)
2383 if (pl->ob && pl->ob->map == THIS)
2384 PUSHs (sv_2mortal (to_sv (pl->ob)));
2385 }
2386
2387 void
2388 maptile::gen_quadmap (int x, int y, int z)
2389 CODE:
2390 gen_quadmap (THIS, x * 50, y * 50, z);
2391
2392 void
2393 maptile::add_underlay (SV *data, int offset, int stride, SV *palette)
2394 CODE:
2395 {
2396 if (!SvROK (palette) || SvTYPE (SvRV (palette)) != SVt_PVAV)
2397 croak ("maptile::add_underlay: palette must be arrayref");
2398
2399 palette = SvRV (palette);
2400
2401 STRLEN idxlen;
2402 const uint8_t *idx = (const uint8_t *)SvPVbyte (data, idxlen);
2403
2404 for (int x = 0; x < THIS->width; ++x)
2405 for (int y = 0; y < THIS->height; ++y)
2406 {
2407 for (object *op = THIS->at (x, y).bot; op; op = op->above)
2408 if (op->flag [FLAG_IS_FLOOR])
2409 goto skip;
2410
2411 {
2412 int offs = offset + y * stride + x;
2413
2414 if (IN_RANGE_EXC (offs, 0, idxlen))
2415 {
2416 if (SV **elem = av_fetch ((AV *)palette, idx [offs], 0))
2417 {
2418 object *ob = archetype::get (cfSvPVutf8_nolen (*elem));
2419 ob->flag [FLAG_NO_MAP_SAVE] = true;
2420 THIS->insert (ob, x, y, 0, INS_ABOVE_FLOOR_ONLY);
2421
2422 if (ob->randomitems && !ob->above)
2423 {
2424 ob->create_treasure (ob->randomitems);
2425
2426 for (object *op = ob->above; op; op = op->above)
2427 op->flag [FLAG_NO_MAP_SAVE] = true;
2428 // TODO: if this is a pickable object, then the item
2429 // will at a bit weird - saving inside the player
2430 // will clear the flag, but when the player drops
2431 // it without logging out, it keeps the flag.
2432 // nobody has reported this, but this can be rather
2433 // annoying on persistent maps.
2434 }
2435 }
2436 }
2437 }
2438 skip: ;
2439 }
2440 }
2441
2442 void
2443 maptile::set_regiondata (SV *data, int offset, int stride, SV *palette)
2444 CODE:
2445 {
2446 if (!SvROK (palette) || SvTYPE (SvRV (palette)) != SVt_PVAV)
2447 croak ("maptile::set_regiondata: palette must be arrayref");
2448
2449 palette = SvRV (palette);
2450
2451 STRLEN idxlen;
2452 const uint8_t *idx = (const uint8_t *)SvPVbyte (data, idxlen);
2453
2454 region_ptr *regionmap = new region_ptr [av_len ((AV *)palette) + 1];
2455 uint8_t *regions = salloc<uint8_t> (THIS->size ());
2456
2457 for (int i = av_len ((AV *)palette) + 1; i--; )
2458 regionmap [i] = region::find (cfSvPVutf8_nolen (*av_fetch ((AV *)palette, i, 1)));
2459
2460 for (int y = 0; y < THIS->height; ++y)
2461 memcpy (regions + y * THIS->width, idx + offset + y * stride, THIS->width);
2462
2463 sfree (THIS->regions, THIS->size ());
2464 delete [] THIS->regionmap;
2465
2466 THIS->regions = regions;
2467 THIS->regionmap = regionmap;
2468 }
2469
2470 void
2471 maptile::create_region_treasure ()
2472 CODE:
2473 for (int x = 0; x < THIS->width; ++x)
2474 for (int y = 0; y < THIS->height; ++y)
2475 {
2476 region *rgn = THIS->region (x, y);
2477
2478 if (object *op = THIS->at (x, y).top)
2479 if (rgn->treasure && rndm () < rgn->treasure_density)
2480 create_treasure (rgn->treasure, op, GT_ENVIRONMENT, THIS->difficulty);
2481 }
2482
2483 int out_of_map (maptile *map, int x, int y)
2484
2485 void
2486 find_link (maptile *map, shstr_tmp connection)
2487 PPCODE:
2488 if (oblinkpt *obp = map->find_link (connection))
2489 for (objectlink *ol = obp->link; ol; ol = ol->next)
2490 XPUSHs (sv_2mortal (to_sv ((object *)ol->ob)));
2491
2492 void
2493 xy_normalise (maptile *map, int x, int y, int dir = 0)
2494 PPCODE:
2495 {
2496 mapxy pos (map, x, y);
2497 if (!pos.move (dir).normalise ())
2498 XSRETURN_EMPTY;
2499
2500 EXTEND (SP, 3);
2501 PUSHs (sv_2mortal (to_sv (pos.m)));
2502 PUSHs (sv_2mortal (to_sv (pos.x)));
2503 PUSHs (sv_2mortal (to_sv (pos.y)));
2504 }
2505
2506 mapspace *
2507 ms (maptile *map, unsigned int x, unsigned int y, int dir = 0)
2508 PROTOTYPE: $$$;$
2509 CODE:
2510 {
2511 mapxy pos (map, x, y);
2512 if (!pos.move (dir).normalise ())
2513 XSRETURN_UNDEF;
2514
2515 RETVAL = &*pos;
2516 }
2517 OUTPUT:
2518 RETVAL
2519
2520 void
2521 at (maptile *map, unsigned int x, unsigned int y, int dir = 0)
2522 PROTOTYPE: $$$;$
2523 PPCODE:
2524 mapxy pos (map, x, y);
2525 if (pos.move (dir).normalise ())
2526 for (object *o = pos->bot; o; o = o->above)
2527 XPUSHs (sv_2mortal (to_sv (o)));
2528
2529 SV *
2530 bot_at (maptile *map, unsigned int x, unsigned int y, int dir = 0)
2531 PROTOTYPE: $$$;$
2532 ALIAS:
2533 top_at = 1
2534 flags_at = 2
2535 light_at = 3
2536 move_block_at = 4
2537 move_slow_at = 5
2538 move_on_at = 6
2539 move_off_at = 7
2540 CODE:
2541 {
2542 mapxy pos (map, x, y);
2543 if (!pos.move (dir).normalise ())
2544 XSRETURN_UNDEF;
2545
2546 mapspace &ms = *pos;
2547
2548 ms.update ();
2549
2550 switch (ix)
2551 {
2552 case 0: RETVAL = to_sv (ms.bot ); break;
2553 case 1: RETVAL = to_sv (ms.top ); break;
2554 case 2: RETVAL = newSVuv (ms.flags_ ); break;
2555 case 3: RETVAL = newSViv (ms.light ); break;
2556 case 4: RETVAL = newSVuv (ms.move_block); break;
2557 case 5: RETVAL = newSVuv (ms.move_slow ); break;
2558 case 6: RETVAL = newSVuv (ms.move_on ); break;
2559 case 7: RETVAL = newSVuv (ms.move_off ); break;
2560 }
2561 }
2562 OUTPUT: RETVAL
2563
2564 # worst xs function of my life
2565 bool
2566 _create_random_map (maptile *self, SV *options)
2567 CODE:
2568 {
2569 random_map_params rmp ((HV *)SvRV (options));
2570 RETVAL = self->generate_random_map (&rmp);
2571 }
2572 OUTPUT:
2573 RETVAL
2574
2575 MODULE = cf PACKAGE = cf::mapspace
2576
2577 INCLUDE: $PERL $srcdir/genacc mapspace $srcdir/../include/map.h |
2578
2579 MODULE = cf PACKAGE = cf::arch
2580
2581 int archetypes_size ()
2582 CODE:
2583 RETVAL = archetypes.size ();
2584 OUTPUT: RETVAL
2585
2586 archetype *archetypes (U32 index)
2587 CODE:
2588 RETVAL = index < archetypes.size () ? archetypes [index] : 0;
2589 OUTPUT: RETVAL
2590
2591 int skillvec_size ()
2592 CODE:
2593 RETVAL = skillvec.size ();
2594 OUTPUT: RETVAL
2595
2596 archetype *skillvec (U32 index)
2597 CODE:
2598 RETVAL = index < skillvec.size () ? (archetype *)(object *)skillvec [index] : 0;
2599 OUTPUT: RETVAL
2600
2601 INCLUDE: $PERL $srcdir/genacc archetype $srcdir/../include/object.h |
2602
2603 MODULE = cf PACKAGE = cf::party
2604
2605 partylist *first ()
2606 PROTOTYPE:
2607 CODE:
2608 RETVAL = get_firstparty ();
2609 OUTPUT: RETVAL
2610
2611 INCLUDE: $PERL $srcdir/genacc partylist $srcdir/../include/player.h |
2612
2613 MODULE = cf PACKAGE = cf::region
2614
2615 void
2616 list ()
2617 PPCODE:
2618 for_all_regions (rgn)
2619 XPUSHs (sv_2mortal (to_sv (rgn)));
2620
2621 int specificity (region *rgn)
2622 CODE:
2623 RETVAL = 0;
2624 while (rgn = rgn->parent)
2625 RETVAL++;
2626 OUTPUT: RETVAL
2627
2628 INCLUDE: $PERL $srcdir/genacc region $srcdir/../include/region.h |
2629
2630 MODULE = cf PACKAGE = cf::living
2631
2632 INCLUDE: $PERL $srcdir/genacc living $srcdir/../include/living.h |
2633
2634 MODULE = cf PACKAGE = cf::settings
2635
2636 INCLUDE: $PERL $srcdir/genacc Settings $srcdir/../include/global.h |
2637
2638 MODULE = cf PACKAGE = cf::client
2639
2640 INCLUDE: $PERL $srcdir/genacc client $srcdir/../include/client.h |
2641
2642 int invoke (client *ns, int event, ...)
2643 CODE:
2644 if (KLASS_OF (event) != KLASS_CLIENT) croak ("event class must be CLIENT");
2645 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
2646 for (int i = 2; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
2647 RETVAL = ns->invoke ((event_type)event, ARG_AV (av), DT_END);
2648 OUTPUT: RETVAL
2649
2650 SV *registry (client *ns)
2651
2652 void
2653 list ()
2654 PPCODE:
2655 EXTEND (SP, clients.size ());
2656 for (sockvec::iterator i = clients.begin (); i != clients.end (); ++i)
2657 PUSHs (sv_2mortal (to_sv (*i)));
2658
2659 STRLEN
2660 client::inbuf_append (SV *data)
2661 CODE:
2662 {
2663 STRLEN len;
2664 char *ptr = SvPVbyte (data, len);
2665
2666 min_it (len, sizeof (THIS->inbuf) - THIS->inbuf_len);
2667 memcpy (THIS->inbuf + THIS->inbuf_len, ptr, len);
2668 THIS->inbuf_len += len;
2669
2670 THIS->inbuf_handle ();
2671
2672 RETVAL = len;
2673 }
2674 OUTPUT: RETVAL
2675
2676 void
2677 client::send_packet (SV *packet)
2678 CODE:
2679 {
2680 STRLEN len;
2681 char *buf = SvPVbyte (packet, len);
2682
2683 if (len > MAXSOCKBUF)
2684 {
2685 // ugly
2686 if (THIS->pl)
2687 THIS->pl->failmsg ("[packet too long for client]");
2688 }
2689 else
2690 THIS->send_packet (buf, len);
2691 }
2692
2693 faceidx
2694 client::need_face (utf8_string name, int pri = 0)
2695 CODE:
2696 RETVAL = face_find (name, 0);
2697 if (RETVAL)
2698 {
2699 THIS->send_face (RETVAL, pri);
2700 THIS->flush_fx ();
2701 }
2702 OUTPUT:
2703 RETVAL
2704
2705 int
2706 client::fx_want (int idx, int value = -1)
2707 CODE:
2708 if (0 < idx && idx < FT_NUM)
2709 {
2710 RETVAL = THIS->fx_want [idx];
2711 if (items > 2)
2712 THIS->fx_want [idx] = value;
2713 }
2714 else
2715 RETVAL = 0;
2716 OUTPUT:
2717 RETVAL
2718
2719 MODULE = cf PACKAGE = cf::sound PREFIX = sound_
2720
2721 faceidx sound_find (utf8_string name)
2722
2723 void sound_set (utf8_string str, faceidx face)
2724
2725 # dire hack
2726 void old_sound_index (int idx, faceidx face)
2727 CODE:
2728 extern faceidx old_sound_index [SOUND_CAST_SPELL_0];
2729 old_sound_index [idx] = face;
2730
2731 MODULE = cf PACKAGE = cf::face PREFIX = face_
2732
2733 #INCLUDE: $PERL $srcdir/genacc faceset $srcdir/../include/face.h |
2734
2735 faceidx face_find (utf8_string name, faceidx defidx = 0)
2736
2737 faceidx alloc (utf8_string name)
2738 CODE:
2739 {
2740 RETVAL = face_alloc ();
2741
2742 faces [RETVAL].name = name;
2743 facehash.insert (std::make_pair (faces [RETVAL].name, RETVAL));
2744
2745 if (!strcmp (name, BLANK_FACE_NAME )) blank_face = RETVAL;
2746 if (!strcmp (name, EMPTY_FACE_NAME )) empty_face = RETVAL;
2747 if (!strcmp (name, MAGICMOUTH_FACE_NAME)) magicmouth_face = RETVAL;
2748 }
2749 OUTPUT: RETVAL
2750
2751 faceidx faces_size ()
2752 CODE:
2753 RETVAL = faces.size ();
2754 OUTPUT: RETVAL
2755
2756 void set_type (faceidx idx, int value)
2757 ALIAS:
2758 set_type = 0
2759 set_visibility = 1
2760 set_magicmap = 2
2761 set_smooth = 3
2762 set_smoothlevel = 4
2763 CODE:
2764 faceinfo *f = face_info (idx); assert (f);
2765 switch (ix)
2766 {
2767 case 0: f->type = value; break;
2768 case 1: f->visibility = value; break;
2769 case 2: f->magicmap = value; break;
2770 case 3: f->smooth = value; break;
2771 case 4: f->smoothlevel = value; break;
2772 }
2773
2774 void set_data (faceidx idx, int faceset, SV *data, SV *chksum)
2775 CODE:
2776 {
2777 faceinfo *f = face_info (idx); assert (f);
2778 facedata *d = f->face + faceset;
2779 sv_to (data, d->data);
2780 STRLEN clen;
2781 char *cdata = SvPVbyte (chksum, clen);
2782
2783 assert (("cf::face::set_data called with too long checksum", clen <= CHKSUM_MAXLEN));
2784 assert (("cf::face::set_data must be called with a non-empty checksum", clen));
2785
2786 if (clen != d->chksum_len || memcmp (d->chksum, cdata, clen))
2787 {
2788 d->chksum_len = clen;
2789 memcpy (d->chksum, cdata, clen);
2790
2791 // invalidate existing client face info
2792 for_all_clients (ns)
2793 ns->invalidate_face (idx);
2794 }
2795 }
2796
2797 int get_data_size (faceidx idx, int faceset = 0)
2798 CODE:
2799 facedata *d = face_data (idx, faceset);
2800 if (!d) XSRETURN_UNDEF;
2801 RETVAL = d->data.size ();
2802 OUTPUT:
2803 RETVAL
2804
2805 void set_meta (faceidx idx, SV *sv)
2806 CODE:
2807 {
2808 faceinfo *f = face_info (idx); assert (f);
2809 SvREFCNT_dec (f->meta_hv);
2810 f->meta_hv = SvOK (sv) ? (HV *)SvREFCNT_inc (SvRV (sv)) : 0;
2811 }
2812
2813 SV *mangle_chksum (SV *chksum)
2814 CODE:
2815 STRLEN len;
2816 char *data = SvPVbyte (chksum, len);
2817 RETVAL = newSVpvn (data, min (len, CHKSUM_MAXLEN));
2818 OUTPUT:
2819 RETVAL
2820
2821 SV *get_chksum (faceidx idx, int faceset = 0)
2822 CODE:
2823 facedata *d = face_data (idx, faceset);
2824 if (!d) XSRETURN_UNDEF;
2825 RETVAL = newSVpvn ((char *)d->chksum, d->chksum_len);
2826 OUTPUT:
2827 RETVAL
2828
2829 int get_type (faceidx idx)
2830 CODE:
2831 faceinfo *f = face_info (idx);
2832 if (!f) XSRETURN_UNDEF;
2833 RETVAL = f->type;
2834 OUTPUT:
2835 RETVAL
2836
2837 SV *get_name (faceidx idx)
2838 CODE:
2839 faceinfo *f = face_info (idx);
2840 if (!f) XSRETURN_UNDEF;
2841 RETVAL = to_sv (f->name);
2842 OUTPUT:
2843 RETVAL
2844
2845 SV *get_data (faceidx idx, int faceset = 0)
2846 CODE:
2847 facedata *d = face_data (idx, faceset);
2848 if (!d) XSRETURN_UNDEF;
2849 RETVAL = newSVpvn (d->data, d->data.size ());
2850 OUTPUT:
2851 RETVAL
2852
2853 SV *get_meta (faceidx idx)
2854 CODE:
2855 faceinfo *f = face_info (idx); assert (f);
2856 if (!f || !f->meta_hv) XSRETURN_UNDEF;
2857 RETVAL = newRV_inc ((SV *)f->meta_hv);
2858 OUTPUT:
2859 RETVAL
2860
2861 void invalidate (faceidx idx)
2862 CODE:
2863 for_all_clients (ns)
2864 ns->invalidate_face (idx);
2865
2866 void invalidate_all ()
2867 CODE:
2868 for_all_clients (ns)
2869 ns->invalidate_all_faces ();
2870
2871 MODULE = cf PACKAGE = cf::anim PREFIX = anim_
2872
2873 #INCLUDE: $PERL $srcdir/genacc faceset $srcdir/../include/anim.h |
2874
2875 animidx anim_find (utf8_string name)
2876 CODE:
2877 RETVAL = animation::find (name).number;
2878 OUTPUT: RETVAL
2879
2880 animidx set (utf8_string name, SV *frames, int facings = 1)
2881 CODE:
2882 {
2883 if (!SvROK (frames) && SvTYPE (SvRV (frames)) != SVt_PVAV)
2884 croak ("frames must be an arrayref");
2885
2886 AV *av = (AV *)SvRV (frames);
2887
2888 animation *anim = &animation::find (name);
2889 if (anim->number)
2890 {
2891 anim->resize (av_len (av) + 1);
2892 anim->facings = facings;
2893 }
2894 else
2895 anim = &animation::create (name, av_len (av) + 1, facings);
2896
2897 for (int i = 0; i < anim->num_animations; ++i)
2898 anim->faces [i] = face_find (cfSvPVutf8_nolen (*av_fetch (av, i, 1)));
2899 }
2900 OUTPUT: RETVAL
2901
2902 void invalidate_all ()
2903 CODE:
2904 for_all_clients (ns)
2905 ns->anims_sent.reset ();
2906
2907 MODULE = cf PACKAGE = cf::object::freezer
2908
2909 INCLUDE: $PERL $srcdir/genacc object_freezer $srcdir/../include/cfperl.h |
2910
2911 SV *
2912 new (char *klass)
2913 CODE:
2914 RETVAL = newSVptr (new object_freezer, gv_stashpv ("cf::object::freezer", 1));
2915 OUTPUT: RETVAL
2916
2917 void
2918 DESTROY (SV *sv)
2919 CODE:
2920 object_freezer *self;
2921 sv_to (sv, self);
2922 delete self;
2923
2924 MODULE = cf PACKAGE = cf::object::thawer
2925
2926 INCLUDE: $PERL $srcdir/genacc object_thawer $srcdir/../include/freezethaw.h |
2927
2928 bool
2929 errors_are_fatal (bool fatal)
2930 CODE:
2931 RETVAL = object_thawer::errors_are_fatal;
2932 object_thawer::errors_are_fatal = fatal;
2933 OUTPUT:
2934 RETVAL
2935
2936 SV *
2937 new_from_file (char *klass, octet_string path)
2938 CODE:
2939 object_thawer *f = new object_thawer (path);
2940 if (!*f)
2941 {
2942 delete f;
2943 XSRETURN_UNDEF;
2944 }
2945 RETVAL = newSVptr (f, gv_stashpv ("cf::object::thawer", 1));
2946 OUTPUT: RETVAL
2947
2948 void
2949 DESTROY (SV *sv)
2950 CODE:
2951 object_thawer *self;
2952 sv_to (sv, self);
2953 delete self;
2954
2955 void
2956 extract_tags (object_thawer *self)
2957 PPCODE:
2958 while (self->kw != KW_EOF)
2959 {
2960 PUTBACK;
2961 coroapi::cede_to_tick ();
2962 SPAGAIN;
2963
2964 if (self->kw == KW_tag)
2965 XPUSHs (sv_2mortal (newSVpv_utf8 (self->get_str ())));
2966
2967 self->skip ();
2968 }
2969
2970 MODULE = cf PACKAGE = cf::layout
2971
2972 INCLUDE: $PERL $srcdir/genacc layout $srcdir/../include/rmg.h |
2973