ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/cfperl.xs
Revision: 1.406
Committed: Thu May 5 18:59:43 2011 UTC (13 years, 1 month ago) by root
Branch: MAIN
Changes since 1.405: +4 -1 lines
Log Message:
*** empty log message ***

File Contents

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