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

Comparing deliantra/server/include/cfperl.h (file contents):
Revision 1.97 by root, Thu May 8 20:03:50 2008 UTC vs.
Revision 1.100 by root, Sun Nov 16 03:52:12 2008 UTC

50// optimisations/workaround for functions requiring my_perl in scope (anti-bloat) 50// optimisations/workaround for functions requiring my_perl in scope (anti-bloat)
51#undef localtime 51#undef localtime
52#undef srand48 52#undef srand48
53#undef drand48 53#undef drand48
54#undef srandom 54#undef srandom
55#undef opendir
55#undef readdir 56#undef readdir
57#undef closedir
56#undef getprotobyname 58#undef getprotobyname
57#undef gethostbyname 59#undef gethostbyname
58#undef ctime 60#undef ctime
59#undef strerror 61#undef strerror
60#undef _ 62#undef _
95void cfperl_main (); 97void cfperl_main ();
96void cfperl_tick (); 98void cfperl_tick ();
97void cfperl_emergency_save (); 99void cfperl_emergency_save ();
98void cfperl_cleanup (int make_core); 100void cfperl_cleanup (int make_core);
99void cfperl_make_book (object *book, int level); 101void cfperl_make_book (object *book, int level);
100void cfperl_expand_cfpod (player *pl, std::string &msg);
101void cfperl_send_msg (client *ns, int color, const char *type, const char *msg); 102void cfperl_send_msg (client *ns, int color, const char *type, const char *msg);
102int cfperl_can_merge (object *ob1, object *ob2); 103int cfperl_can_merge (object *ob1, object *ob2);
103 104
104////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 105//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
105 106
182INTERFACE_CLASS (attachable) 183INTERFACE_CLASS (attachable)
183struct attachable : refcnt_base 184struct attachable : refcnt_base
184{ 185{
185 static MGVTBL vtbl; 186 static MGVTBL vtbl;
186 187
187 static unordered_vector<attachable *> mortals;
188 MTH static void check_mortals ();
189
190 enum { 188 enum {
191 F_DESTROYED = 0x01, 189 F_DESTROYED = 0x01,
192 F_DEBUG_TRACE = 0x02, 190 F_DEBUG_TRACE = 0x02,
193 }; 191 };
194 int ACC (RW, flags); 192 uint8 ACC (RW, flags);
193
194 static unordered_vector<attachable *> mortals;
195 MTH static void check_mortals ();
195 196
196 // object is delete'd after the refcount reaches 0 197 // object is delete'd after the refcount reaches 0
197 MTH int refcnt_cnt () const; 198 MTH int refcnt_cnt () const;
198 // check wether the object has died and destroy 199 // check wether the object has died and destroy
199 MTH void refcnt_chk () { if (expect_false (refcnt <= 0)) do_check (); } 200 MTH void refcnt_chk () { if (expect_false (refcnt <= 0)) do_check (); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines