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.98 by root, Thu Dec 21 23:37:06 2006 UTC vs.
Revision 1.106 by root, Sat Dec 23 15:49:40 2006 UTC

19 * GNU General Public License for more details. 19 * GNU General Public License for more details.
20 * 20 *
21 * You should have received a copy of the GNU General Public License 21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software 22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 23 * Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24*/ 24 */
25 25
26#define PLUGIN_NAME "perl" 26#define PLUGIN_NAME "perl"
27#define PLUGIN_VERSION "cfperl 0.5" 27#define PLUGIN_VERSION "cfperl 0.5"
28 28
29#include <plugin_common.h> 29#include <plugin_common.h>
192inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; } 192inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; }
193 193
194template<int N> 194template<int N>
195inline void sv_to (SV *sv, char (&v)[N]) { assign (v, SvPV_nolen (sv)); } 195inline void sv_to (SV *sv, char (&v)[N]) { assign (v, SvPV_nolen (sv)); }
196 196
197inline void sv_to (SV *sv, rangetype &v) { v = (rangetype) SvIV (sv); }
198inline void sv_to (SV *sv, bowtype_t &v) { v = (bowtype_t) SvIV (sv); }
199inline void sv_to (SV *sv, petmode_t &v) { v = (petmode_t) SvIV (sv); }
200inline void sv_to (SV *sv, usekeytype &v) { v = (usekeytype) SvIV (sv); }
201inline void sv_to (SV *sv, unapplymode &v) { v = (unapplymode) SvIV (sv); }
202
197inline void sv_to (SV *sv, UUID &v) 203inline void sv_to (SV *sv, UUID &v)
198{ 204{
199 unsigned int version; 205 unsigned int version;
200 206
201 if (2 != sscanf (SvPV_nolen (sv), "<%d.%" SCNx64 ">", &version, &v.seq) || 1 != version) 207 if (2 != sscanf (SvPV_nolen (sv), "<%d.%" SCNx64 ">", &version, &v.seq) || 1 != version)
202 croak ("unparsable uuid: %s", SvPV_nolen (sv)); 208 croak ("unparsable uuid: %s", SvPV_nolen (sv));
203} 209}
210
211inline void sv_to (SV *sv, object::flags_t::reference v) { v = boolSV (sv); }
204 212
205static SV * 213static SV *
206newSVdt_va (va_list &ap, data_type type) 214newSVdt_va (va_list &ap, data_type type)
207{ 215{
208 SV *sv; 216 SV *sv;
361 369
362 HV *hv = (HV *)SvRV ((SV *)self); 370 HV *hv = (HV *)SvRV ((SV *)self);
363 371
364 if (SvREFCNT ((SV *)self) == 1 372 if (SvREFCNT ((SV *)self) == 1
365 && SvREFCNT ((SV *)hv) == 1 373 && SvREFCNT ((SV *)hv) == 1
366 && !HvKEYS (hv)) 374 && !HvTOTALKEYS (hv))
367 { 375 {
368 SvREFCNT_dec ((SV *)self); 376 SvREFCNT_dec ((SV *)self);
369 self = 0; 377 self = 0;
370 } 378 }
371} 379}
1008 1016
1009 switch (KLASS_OF (event)) 1017 switch (KLASS_OF (event))
1010 { 1018 {
1011 case KLASS_OBJECT: PUSHs (sv_2mortal (newSVdt (DT_OBJECT, op))); break; 1019 case KLASS_OBJECT: PUSHs (sv_2mortal (newSVdt (DT_OBJECT, op))); break;
1012 case KLASS_PLAYER: PUSHs (sv_2mortal (newSVdt (DT_PLAYER, pl))); break; 1020 case KLASS_PLAYER: PUSHs (sv_2mortal (newSVdt (DT_PLAYER, pl))); break;
1013 case KLASS_CLIENT: PUSHs (sv_2mortal (newSVdt (DT_CLIENT, pl))); break; 1021 case KLASS_CLIENT: PUSHs (sv_2mortal (newSVdt (DT_CLIENT, ns))); break;
1014 case KLASS_MAP: PUSHs (sv_2mortal (newSVdt (DT_MAP, map))); break; 1022 case KLASS_MAP: PUSHs (sv_2mortal (newSVdt (DT_MAP, map))); break;
1015 } 1023 }
1016 1024
1017 for (;;) 1025 for (;;)
1018 { 1026 {
1410 const_iv (FLAG_ACTIVATE_ON_RELEASE) 1418 const_iv (FLAG_ACTIVATE_ON_RELEASE)
1411 const_iv (FLAG_IS_WATER) 1419 const_iv (FLAG_IS_WATER)
1412 const_iv (FLAG_CONTENT_ON_GEN) 1420 const_iv (FLAG_CONTENT_ON_GEN)
1413 const_iv (FLAG_IS_A_TEMPLATE) 1421 const_iv (FLAG_IS_A_TEMPLATE)
1414 const_iv (FLAG_IS_BUILDABLE) 1422 const_iv (FLAG_IS_BUILDABLE)
1415 const_iv (FLAG_AFK)
1416 1423
1417 const_iv (NDI_BLACK) 1424 const_iv (NDI_BLACK)
1418 const_iv (NDI_WHITE) 1425 const_iv (NDI_WHITE)
1419 const_iv (NDI_NAVY) 1426 const_iv (NDI_NAVY)
1420 const_iv (NDI_RED) 1427 const_iv (NDI_RED)
1621 const_iv (KLASS_GLOBAL) 1628 const_iv (KLASS_GLOBAL)
1622 const_iv (KLASS_OBJECT) 1629 const_iv (KLASS_OBJECT)
1623 const_iv (KLASS_CLIENT) 1630 const_iv (KLASS_CLIENT)
1624 const_iv (KLASS_PLAYER) 1631 const_iv (KLASS_PLAYER)
1625 const_iv (KLASS_MAP) 1632 const_iv (KLASS_MAP)
1633
1634 const_iv (CS_QUERY_YESNO)
1635 const_iv (CS_QUERY_SINGLECHAR)
1636 const_iv (CS_QUERY_HIDEINPUT)
1637
1638 const_iv (ST_DEAD)
1639 const_iv (ST_SETUP)
1640 const_iv (ST_PLAYING)
1641 const_iv (ST_CUSTOM)
1642
1643 const_iv (ST_CHANGE_CLASS)
1644 const_iv (ST_CONFIRM_QUIT)
1645 const_iv (ST_GET_PARTY_PASSWORD)
1626 }; 1646 };
1627 1647
1628 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1648 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1629 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1649 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1630 1650
1738 1758
1739int random_roll (int min, int max, object *op, int goodbad); 1759int random_roll (int min, int max, object *op, int goodbad);
1740 1760
1741const char *cost_string_from_value(uint64 cost, int approx = 0) 1761const char *cost_string_from_value(uint64 cost, int approx = 0)
1742 1762
1743int invoke (int event, ...)
1744 CODE:
1745 if (KLASS_OF (event) != KLASS_GLOBAL) croak ("event class must be GLOBAL");
1746 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
1747 for (int i = 1; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
1748 RETVAL = INVOKE_((event_type)event, ARG_AV (av));
1749 OUTPUT: RETVAL
1750
1751int 1763int
1752exp_to_level (val64 exp) 1764exp_to_level (val64 exp)
1753 CODE: 1765 CODE:
1754{ 1766{
1755 int i = 0; 1767 int i = 0;
1794 CODE: 1806 CODE:
1795 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext); 1807 RETVAL = SvROK (obj) && mg_find (SvRV (obj), PERL_MAGIC_ext);
1796 OUTPUT: 1808 OUTPUT:
1797 RETVAL 1809 RETVAL
1798 1810
1811MODULE = cf PACKAGE = cf::global
1812
1813int invoke (SV *klass, int event, ...)
1814 CODE:
1815 if (KLASS_OF (event) != KLASS_GLOBAL) croak ("event class must be GLOBAL");
1816 AV *av = (AV *)sv_2mortal ((SV *)newAV ());
1817 for (int i = 1; i < items; i++) av_push (av, SvREFCNT_inc (ST (i)));
1818 RETVAL = INVOKE_((event_type)event, ARG_AV (av));
1819 OUTPUT: RETVAL
1820
1799MODULE = cf PACKAGE = cf::object PREFIX = cf_object_ 1821MODULE = cf PACKAGE = cf::object PREFIX = cf_object_
1800 1822
1801INCLUDE: $PERL genacc object ../include/object.h | 1823INCLUDE: $PERL genacc object ../include/object.h |
1802 1824
1803int invoke (object *op, int event, ...) 1825int invoke (object *op, int event, ...)
1821 RETVAL = object::first; 1843 RETVAL = object::first;
1822 OUTPUT: RETVAL 1844 OUTPUT: RETVAL
1823 1845
1824# missing properties 1846# missing properties
1825 1847
1826int flag (object *op, int flag, int value = 1)
1827 PROTOTYPE: $$;$
1828 CODE:
1829 RETVAL = QUERY_FLAG (op, flag);
1830 if (items >= 3)
1831 if (value)
1832 SET_FLAG (op, flag);
1833 else
1834 CLEAR_FLAG (op, flag);
1835 OUTPUT: RETVAL
1836
1837object *head (object *op) 1848object *head (object *op)
1838 PROTOTYPE: $ 1849 PROTOTYPE: $
1839 CODE: 1850 CODE:
1840 RETVAL = op->head ? op->head : op; 1851 RETVAL = op->head ? op->head : op;
1841 OUTPUT: RETVAL 1852 OUTPUT: RETVAL
1851 PROTOTYPE: $ 1862 PROTOTYPE: $
1852 PPCODE: 1863 PPCODE:
1853{ 1864{
1854 object *o; 1865 object *o;
1855 for (o = obj->inv; o; o = o->below) 1866 for (o = obj->inv; o; o = o->below)
1856 XPUSHs (sv_2mortal (newSVcfapi (CFAPI_POBJECT, o))); 1867 XPUSHs (sv_2mortal (to_sv (o)));
1857} 1868}
1869
1870void
1871set_animation (object *op, int idx)
1872 CODE:
1873 SET_ANIMATION (op, idx);
1874
1875void
1876object::drain_stat ()
1877
1878void
1879object::drain_specific_stat (int stat)
1880
1881void
1882object::change_luck (int change)
1883
1884void
1885object::add_statbonus ()
1886
1887void
1888object::remove_statbonus ()
1858 1889
1859object *find_best_object_match (object *op, const char *match) 1890object *find_best_object_match (object *op, const char *match)
1860 1891
1861object *find_marked_object (object *op) 1892object *find_marked_object (object *op)
1862
1863int resistance (object *op, int rtype, int newval = 0)
1864 CODE:
1865 if (rtype < 0 || rtype >= NROFATTACKS)
1866 croak ("resistance out of bounds");
1867 RETVAL = op->resist [rtype];
1868 if (items >= 3)
1869 op->resist [rtype] = newval;
1870 OUTPUT: RETVAL
1871
1872void set_resistance (object *op, int rtype, int val)
1873 CODE:
1874 if (rtype < 0 || rtype >= NROFATTACKS)
1875 op->resist[rtype] = val;
1876 1893
1877int need_identify (const object *obj); 1894int need_identify (const object *obj);
1878 1895
1879int apply_shop_mat (object *shop_mat, object *op); 1896int apply_shop_mat (object *shop_mat, object *op);
1880 1897
1963 1980
1964object *cf_object_insert_in_ob (object *ob, object *where) 1981object *cf_object_insert_in_ob (object *ob, object *where)
1965 1982
1966int cf_object_teleport (object *op, maptile *map, int x, int y) 1983int cf_object_teleport (object *op, maptile *map, int x, int y)
1967 1984
1968void update (object *op, int action) 1985void update_object (object *op, int action)
1969 CODE:
1970 update_object (op, action);
1971 1986
1972object *cf_create_object_by_name (const char *name) 1987object *cf_create_object_by_name (const char *name)
1973 1988
1974void change_exp (object *op, uint64 exp, const char *skill_name = 0, int flag = 0) 1989void change_exp (object *op, uint64 exp, const char *skill_name = 0, int flag = 0)
1975 1990
1987 2002
1988void remove_button_link (object *op); 2003void remove_button_link (object *op);
1989 2004
1990 2005
1991MODULE = cf PACKAGE = cf::object PREFIX = cf_ 2006MODULE = cf PACKAGE = cf::object PREFIX = cf_
1992
1993void cf_fix_object (object *pl)
1994 ALIAS: fix = 0
1995 2007
1996object *cf_insert_ob_in_ob (object *ob, object *where) 2008object *cf_insert_ob_in_ob (object *ob, object *where)
1997 2009
1998# no clean way to get an object from an archetype - stupid idiotic 2010# no clean way to get an object from an archetype - stupid idiotic
1999# dumb kludgy misdesigned plug-in api slowly gets on my nerves. 2011# dumb kludgy misdesigned plug-in api slowly gets on my nerves.
2022 2034
2023player *contr (object *op) 2035player *contr (object *op)
2024 CODE: 2036 CODE:
2025 RETVAL = op->contr; 2037 RETVAL = op->contr;
2026 OUTPUT: RETVAL 2038 OUTPUT: RETVAL
2039
2040void
2041object::roll_stats ()
2042
2043void
2044object::update_stats ()
2045
2046void
2047object::swap_stats (int a, int b)
2027 2048
2028const char *get_ob_key_value (object *op, const char *key) 2049const char *get_ob_key_value (object *op, const char *key)
2029 2050
2030bool set_ob_key_value (object *op, const char *key, const char *value = 0, int add_key = 1) 2051bool set_ob_key_value (object *op, const char *key, const char *value = 0, int add_key = 1)
2031 2052
2066player *player (object *op) 2087player *player (object *op)
2067 CODE: 2088 CODE:
2068 RETVAL = op->contr; 2089 RETVAL = op->contr;
2069 OUTPUT: RETVAL 2090 OUTPUT: RETVAL
2070 2091
2092void check_score (object *op)
2093
2071void cf_player_message (object *obj, char *txt, int flags = NDI_ORANGE | NDI_UNIQUE) 2094void cf_player_message (object *obj, char *txt, int flags = NDI_ORANGE | NDI_UNIQUE)
2072 2095
2073object *cf_player_send_inventory (object *op) 2096object *cf_player_send_inventory (object *op)
2074 2097
2075char *cf_player_get_ip (object *op) 2098char *cf_player_get_ip (object *op)
2117 RETVAL = INVOKE_((event_type)event, ARG_PLAYER (pl), ARG_AV (av)); 2140 RETVAL = INVOKE_((event_type)event, ARG_PLAYER (pl), ARG_AV (av));
2118 OUTPUT: RETVAL 2141 OUTPUT: RETVAL
2119 2142
2120SV *registry (player *pl) 2143SV *registry (player *pl)
2121 2144
2145player *
2146create ()
2147 CODE:
2148 RETVAL = player::create ();
2149 OUTPUT:
2150 RETVAL
2151
2152player *
2153load (const char *path)
2154 CODE:
2155 RETVAL = player::load (path);
2156 OUTPUT:
2157 RETVAL
2158
2159void
2160player::save (bool final = false)
2161
2162void
2163player::connect (client *ns)
2164
2165void
2166save_stats (player *pl)
2167 CODE:
2168 pl->ob->stats.hp = pl->ob->stats.maxhp;
2169 pl->ob->stats.sp = pl->ob->stats.maxsp;
2170 pl->ob->stats.grace = pl->ob->stats.maxgrace;
2171 pl->orig_stats = pl->ob->stats;
2172
2122player *cf_player_find (char *name) 2173player *cf_player_find (char *name)
2123 PROTOTYPE: $ 2174 PROTOTYPE: $
2124 2175
2125void cf_player_move (player *pl, int dir) 2176void cf_player_move (player *pl, int dir)
2126 2177
2127void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0); 2178void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0);
2128 2179
2129player *first () 2180player *first ()
2130 CODE: 2181 CODE:
2131 RETVAL = first_player; 2182 RETVAL = first_player;
2132 OUTPUT: RETVAL
2133
2134player *next (player *pl)
2135 CODE:
2136 RETVAL = pl->next;
2137 OUTPUT: RETVAL 2183 OUTPUT: RETVAL
2138 2184
2139bool 2185bool
2140cell_visible (player *pl, int dx, int dy) 2186cell_visible (player *pl, int dx, int dy)
2141 CODE: 2187 CODE:
2149 CODE: 2195 CODE:
2150{ 2196{
2151 STRLEN len; 2197 STRLEN len;
2152 char *buf = SvPVbyte (packet, len); 2198 char *buf = SvPVbyte (packet, len);
2153 2199
2200 if (pl->ns)
2154 pl->ns->send_packet (buf, len); 2201 pl->ns->send_packet (buf, len);
2155} 2202}
2156 2203
2157int 2204int
2158listening (player *pl, int new_value = -1) 2205listening (player *pl, int new_value = -1)
2159 CODE: 2206 CODE:
2178 if (y) sv_to (y, pl->bed_y); 2225 if (y) sv_to (y, pl->bed_y);
2179 2226
2180void 2227void
2181list () 2228list ()
2182 PPCODE: 2229 PPCODE:
2183{
2184 player *pl;
2185 for (pl = first_player; pl; pl = pl->next) 2230 for (player *pl = first_player; pl; pl = pl->next)
2186 XPUSHs (newSVcfapi (CFAPI_PPLAYER, pl)); 2231 XPUSHs (sv_2mortal (to_sv (pl)));
2187}
2188 2232
2189bool 2233bool
2190peaceful (player *pl, bool new_setting = 0) 2234peaceful (player *pl, bool new_setting = 0)
2191 PROTOTYPE: $;$ 2235 PROTOTYPE: $;$
2192 CODE: 2236 CODE:
2454 RETVAL = INVOKE_((event_type)event, ARG_CLIENT (ns), ARG_AV (av)); 2498 RETVAL = INVOKE_((event_type)event, ARG_CLIENT (ns), ARG_AV (av));
2455 OUTPUT: RETVAL 2499 OUTPUT: RETVAL
2456 2500
2457SV *registry (client *ns) 2501SV *registry (client *ns)
2458 2502
2503void
2504list ()
2505 PPCODE:
2506 EXTEND (SP, clients.size ());
2507 for (sockvec::iterator i = clients.begin (); i != clients.end (); ++i)
2508 PUSHs (sv_2mortal (to_sv (*i)));
2509
2459client * 2510client *
2460create (int fd, const char *peername) 2511create (int fd, const char *peername)
2461 CODE: 2512 CODE:
2462 RETVAL = client::create (fd, peername); 2513 RETVAL = client::create (fd, peername);
2463 OUTPUT: 2514 OUTPUT:
2464 RETVAL 2515 RETVAL
2465 2516
2466void 2517void
2518client::send_packet (SV *packet)
2519 CODE:
2520{
2521 STRLEN len;
2522 char *buf = SvPVbyte (packet, len);
2523
2524 THIS->send_packet (buf, len);
2525}
2526
2527void
2467client::destroy () 2528client::destroy ()
2468 2529

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines