ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/cfperl.xs
(Generate patch)

Comparing deliantra/server/server/cfperl.xs (file contents):
Revision 1.153 by root, Fri Jan 26 20:59:57 2007 UTC vs.
Revision 1.164 by root, Sun Feb 11 01:38:49 2007 UTC

29#include <plugin_common.h> 29#include <plugin_common.h>
30#include <sounds.h> 30#include <sounds.h>
31#include <cstdarg> 31#include <cstdarg>
32#include <sproto.h> 32#include <sproto.h>
33 33
34#include "loader.h"
34#include "cfperl.h" 35#include "cfperl.h"
35#include "shstr.h" 36#include "shstr.h"
36 37
37#include <unistd.h> 38#include <unistd.h>
38#if _POSIX_MEMLOCK 39#if _POSIX_MEMLOCK
112{ 113{
113 return refcnt + (self ? SvREFCNT (self) - 1 : 0); 114 return refcnt + (self ? SvREFCNT (self) - 1 : 0);
114} 115}
115 116
116void 117void
118attachable::sever_self ()
119{
120 if (HV *self = this->self)
121 {
122 // keep a refcount because sv_unmagic might call attachable_free,
123 // which might clear self, causing sv_unmagic to crash on a now
124 // invalid object.
125 SvREFCNT_inc (self);
126 hv_clear (self);
127 sv_unmagic ((SV *)self, PERL_MAGIC_ext);
128 SvREFCNT_dec (self);
129
130 // self *must* be null now because thats sv_unmagic's job.
131 assert (!this->self);
132 flags |= 0x80; // severed //D
133 }
134}
135
136void
117attachable::optimise () 137attachable::optimise ()
118{ 138{
119 if (self 139 if (self
120 && SvREFCNT (self) == 1 140 && SvREFCNT (self) == 1
121 && !HvTOTALKEYS (self)) 141 && !HvTOTALKEYS (self))
122 { 142 flags |= 0x40,//D
123 sv_unmagic ((SV *)self, PERL_MAGIC_ext); 143 sever_self ();
124 assert (!self);
125 }
126} 144}
127 145
128// check wether the object really is dead 146// check wether the object really is dead
129void 147void
130attachable::do_check () 148attachable::do_check ()
145 SvREFCNT_dec (cb); 163 SvREFCNT_dec (cb);
146 cb = 0; 164 cb = 0;
147 } 165 }
148 166
149 if (self) 167 if (self)
150 { 168 sever_self ();
151 hv_clear (self);
152 sv_unmagic ((SV *)self, PERL_MAGIC_ext);
153 // self is now 0
154 assert (!self);//D//TODO remove soon
155 }
156 169
170 flags |= 0x20; //D
157 mortals.push_back (this); 171 mortals.push_back (this);
158} 172}
159 173
160void 174void
161attachable::destroy () 175attachable::destroy ()
256 270
257 if (!obj->self) 271 if (!obj->self)
258 { 272 {
259 obj->self = newHV (); 273 obj->self = newHV ();
260 sv_magicext ((SV *)obj->self, 0, PERL_MAGIC_ext, &attachable::vtbl, (char *)obj, 0); 274 sv_magicext ((SV *)obj->self, 0, PERL_MAGIC_ext, &attachable::vtbl, (char *)obj, 0);
275 obj->flags &= ~0xc0;//D
276 obj->flags |= 0x10;//D
261 277
262 // now bless the object _once_ 278 // now bless the object _once_
263 return sv_bless (newRV_inc ((SV *)obj->self), stash); 279 return sv_bless (newRV_inc ((SV *)obj->self), stash);
264 } 280 }
265 else 281 else
337inline SV *to_sv (treasurelist * v) { return to_sv (v->name); } 353inline SV *to_sv (treasurelist * v) { return to_sv (v->name); }
338 354
339inline SV *to_sv (UUID v) 355inline SV *to_sv (UUID v)
340{ 356{
341 char buf[128]; 357 char buf[128];
342 snprintf (buf, 128, "<1,%" PRIx64 ">", v.seq); 358 snprintf (buf, 128, "<1.%" PRIx64 ">", v.seq);
343 return newSVpv (buf, 0); 359 return newSVpv (buf, 0);
344} 360}
345 361
346inline void sv_to (SV *sv, shstr &v) { v = SvOK (sv) ? SvPV_nolen (sv) : 0; } 362inline void sv_to (SV *sv, shstr &v) { v = SvOK (sv) ? SvPV_nolen (sv) : 0; }
347inline void sv_to (SV *sv, char * &v) { free (v); v = SvOK (sv) ? strdup (SvPV_nolen (sv)) : 0; } 363inline void sv_to (SV *sv, char * &v) { free (v); v = SvOK (sv) ? strdup (SvPV_nolen (sv)) : 0; }
594 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) || perl_run (perl)) 610 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) || perl_run (perl))
595 { 611 {
596 printf ("unable to initialize perl-interpreter, aborting.\n"); 612 printf ("unable to initialize perl-interpreter, aborting.\n");
597 exit (EXIT_FAILURE); 613 exit (EXIT_FAILURE);
598 } 614 }
615
616 {
617 dSP;
618
619 PUSHMARK (SP);
620 PUTBACK;
621 call_pv ("cf::init", G_DISCARD | G_VOID);
622 }
599} 623}
600 624
601void cfperl_main () 625void cfperl_main ()
602{ 626{
603 dSP; 627 dSP;
1639 1663
1640void cleanup (const char *cause, bool make_core = false) 1664void cleanup (const char *cause, bool make_core = false)
1641 1665
1642void emergency_save () 1666void emergency_save ()
1643 1667
1668void _exit (int status = EXIT_SUCCESS)
1669
1644UV sv_2watcher (SV *w) 1670UV sv_2watcher (SV *w)
1645 CODE: 1671 CODE:
1646 RETVAL = (UV)GEventAPI->sv_2watcher (w); 1672 RETVAL = (UV)GEventAPI->sv_2watcher (w);
1647 OUTPUT: 1673 OUTPUT:
1648 RETVAL 1674 RETVAL
1649
1650void _exit (int status = 0)
1651 1675
1652#if _POSIX_MEMLOCK 1676#if _POSIX_MEMLOCK
1653 1677
1654int mlockall (int flags = MCL_CURRENT | MCL_FUTURE) 1678int mlockall (int flags = MCL_CURRENT | MCL_FUTURE)
1655 1679
1701 RETVAL = newSVpv (resist_plus[atnr], 0); 1725 RETVAL = newSVpv (resist_plus[atnr], 0);
1702 else 1726 else
1703 XSRETURN_UNDEF; 1727 XSRETURN_UNDEF;
1704 OUTPUT: RETVAL 1728 OUTPUT: RETVAL
1705 1729
1730bool
1731load_regions (const char *filename)
1732 CODE:
1733 RETVAL = loader_region ().load (filename);
1734 OUTPUT: RETVAL
1735
1706MODULE = cf PACKAGE = cf::attachable 1736MODULE = cf PACKAGE = cf::attachable
1707 1737
1708int 1738int
1709valid (SV *obj) 1739valid (SV *obj)
1710 CODE: 1740 CODE:
1711 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext); 1741 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext);
1712 OUTPUT: 1742 OUTPUT:
1713 RETVAL 1743 RETVAL
1744
1745void
1746debug_trace (attachable *obj, bool on = true)
1747 CODE:
1748 obj->flags &= ~attachable::F_DEBUG_TRACE;
1749 if (on)
1750 obj->flags |= attachable::F_DEBUG_TRACE;
1714 1751
1715int mortals_size () 1752int mortals_size ()
1716 CODE: 1753 CODE:
1717 RETVAL = attachable::mortals.size (); 1754 RETVAL = attachable::mortals.size ();
1718 OUTPUT: RETVAL 1755 OUTPUT: RETVAL
1794 1831
1795void 1832void
1796set_animation (object *op, int idx) 1833set_animation (object *op, int idx)
1797 CODE: 1834 CODE:
1798 SET_ANIMATION (op, idx); 1835 SET_ANIMATION (op, idx);
1836
1837int
1838num_animations (object *op)
1839 CODE:
1840 RETVAL = NUM_ANIMATIONS (op);
1841 OUTPUT: RETVAL
1799 1842
1800object *find_best_object_match (object *op, const char *match) 1843object *find_best_object_match (object *op, const char *match)
1801 1844
1802object *find_marked_object (object *op) 1845object *find_marked_object (object *op)
1803 1846
2040 pl->orig_stats = pl->ob->stats; 2083 pl->orig_stats = pl->ob->stats;
2041 2084
2042void cf_player_move (player *pl, int dir) 2085void cf_player_move (player *pl, int dir)
2043 2086
2044void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0); 2087void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0);
2045
2046player *first ()
2047 CODE:
2048 RETVAL = first_player;
2049 OUTPUT: RETVAL
2050 2088
2051bool 2089bool
2052cell_visible (player *pl, int dx, int dy) 2090cell_visible (player *pl, int dx, int dy)
2053 CODE: 2091 CODE:
2054 RETVAL = FABS (dx) <= pl->ns->mapx / 2 && FABS (dy) <= pl->ns->mapy / 2 2092 RETVAL = FABS (dx) <= pl->ns->mapx / 2 && FABS (dy) <= pl->ns->mapy / 2
2131 EXTEND (SP, THIS->players); 2169 EXTEND (SP, THIS->players);
2132 for_all_players (pl) 2170 for_all_players (pl)
2133 if (pl->ob && pl->ob->map == THIS) 2171 if (pl->ob && pl->ob->map == THIS)
2134 PUSHs (sv_2mortal (to_sv (pl->ob))); 2172 PUSHs (sv_2mortal (to_sv (pl->ob)));
2135 } 2173 }
2174
2175void
2176maptile::set_regiondata (SV *data, SV *plt)
2177 CODE:
2178{
2179 if (!SvROK (plt) || SvTYPE (SvRV (plt)) != SVt_PVAV)
2180 croak ("maptile::set_regiondata needs arrayref as plt arg");
2181
2182 AV *av = (AV *)SvRV (plt);
2183
2184 region **regionmap = (region **)malloc ((av_len (av) + 1) * sizeof (region *));
2185
2186 for (int i = av_len (av) + 1; i--; )
2187 regionmap [i] = region::find (SvPVutf8_nolen (*av_fetch (av, i, 1)));
2188
2189 THIS->regions = salloc<uint8_t> (THIS->size (), (uint8_t *)SvPVbyte_nolen (data));
2190 THIS->regionmap = regionmap;
2191}
2136 2192
2137void play_sound_map (maptile *map, int x, int y, int sound_num) 2193void play_sound_map (maptile *map, int x, int y, int sound_num)
2138 2194
2139int out_of_map (maptile *map, int x, int y) 2195int out_of_map (maptile *map, int x, int y)
2140 2196
2221 OUTPUT: RETVAL 2277 OUTPUT: RETVAL
2222 2278
2223void fix_walls (maptile *map, int x, int y) 2279void fix_walls (maptile *map, int x, int y)
2224 2280
2225void fix_walls_around (maptile *map, int x, int y) 2281void fix_walls_around (maptile *map, int x, int y)
2226
2227const char *
2228region_name (maptile *m)
2229 CODE:
2230 RETVAL = get_name_of_region_for_map (m);
2231 OUTPUT: RETVAL
2232 2282
2233# worst xs function of my life 2283# worst xs function of my life
2234bool 2284bool
2235_create_random_map (\ 2285_create_random_map (\
2236 maptile *self,\ 2286 maptile *self,\
2344 2394
2345INCLUDE: $PERL genacc partylist ../include/player.h | 2395INCLUDE: $PERL genacc partylist ../include/player.h |
2346 2396
2347MODULE = cf PACKAGE = cf::region 2397MODULE = cf PACKAGE = cf::region
2348 2398
2349region *first () 2399void
2350 PROTOTYPE: 2400list ()
2351 CODE: 2401 PPCODE:
2352 RETVAL = first_region; 2402 for_all_regions (rgn)
2353 OUTPUT: RETVAL 2403 XPUSHs (sv_2mortal (to_sv (rgn)));
2354 2404
2355region *find (char *name) 2405region *find (char *name)
2356 PROTOTYPE: $ 2406 PROTOTYPE: $
2357 CODE: 2407 CODE:
2358 RETVAL = get_region_by_name (name); 2408 RETVAL = region::find (name);
2409 OUTPUT: RETVAL
2410
2411region *find_fuzzy (char *name)
2412 PROTOTYPE: $
2413 CODE:
2414 RETVAL = region::find_fuzzy (name);
2359 OUTPUT: RETVAL 2415 OUTPUT: RETVAL
2360 2416
2361INCLUDE: $PERL genacc region ../include/map.h | 2417INCLUDE: $PERL genacc region ../include/map.h |
2362 2418
2363MODULE = cf PACKAGE = cf::living 2419MODULE = cf PACKAGE = cf::living

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines