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.280 by root, Mon Apr 21 06:35:26 2008 UTC vs.
Revision 1.290 by root, Sat May 17 14:57:23 2008 UTC

20 * 20 *
21 * The authors can be reached via e-mail to <support@deliantra.net> 21 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 22 */
23 23
24#include "autoconf.h" 24#include "autoconf.h"
25
26#define PLUGIN_NAME "perl"
27#define PLUGIN_VERSION "cfperl 0.5"
28 25
29#if HAVE_EXECINFO_H 26#if HAVE_EXECINFO_H
30# include <execinfo.h> 27# include <execinfo.h>
31#endif 28#endif
32 29
944 CALL_CALL ("ext::books::make_book", G_VOID); 941 CALL_CALL ("ext::books::make_book", G_VOID);
945 CALL_END; 942 CALL_END;
946} 943}
947 944
948void 945void
946cfperl_expand_cfpod (player *pl, std::string &msg)
947{
948 CALL_BEGIN (2);
949 CALL_ARG (pl);
950 CALL_ARG_SV (newSVpvn_utf8 (msg.data (), msg.size ()));
951 CALL_CALL ("cf::player::expand_cfpod", G_SCALAR);
952
953 if (count)
954 {
955 STRLEN len;
956 char *data = SvPVutf8 (TOPs, len);
957 msg.assign (data, len);
958 }
959
960 CALL_END;
961}
962
963void
949cfperl_send_msg (client *ns, int color, const char *type, const char *msg) 964cfperl_send_msg (client *ns, int color, const char *type, const char *msg)
950{ 965{
951 CALL_BEGIN (4); 966 CALL_BEGIN (4);
952 CALL_ARG (ns); 967 CALL_ARG (ns);
953 CALL_ARG (type); 968 CALL_ARG (type);
977{ 992{
978 CALL_BEGIN (1); 993 CALL_BEGIN (1);
979 CALL_ARG (name); 994 CALL_ARG (name);
980 CALL_CALL ("cf::player::find", G_SCALAR); 995 CALL_CALL ("cf::player::find", G_SCALAR);
981 996
982 player *retval; 997 player *retval = 0;
983
984 if (count)
985 sv_to (POPs, retval); 998 if (count) sv_to (POPs, retval);
986 else 999
987 retval = 0; 1000 CALL_END;
1001
1002 return retval;
1003}
1004
1005maptile *
1006find_style (const char *dirname, const char *stylename, int difficulty)
1007{
1008 CALL_BEGIN (3);
1009 CALL_ARG (dirname);
1010 CALL_ARG (stylename);
1011 CALL_ARG (difficulty);
1012 CALL_CALL ("ext::map_random::find_style", G_SCALAR);
1013
1014 maptile *retval = 0;
1015 if (count) sv_to (POPs, retval);
988 1016
989 CALL_END; 1017 CALL_END;
990 1018
991 return retval; 1019 return retval;
992} 1020}
997 CALL_BEGIN (2); 1025 CALL_BEGIN (2);
998 CALL_ARG (path); 1026 CALL_ARG (path);
999 CALL_ARG (origin); 1027 CALL_ARG (origin);
1000 CALL_CALL ("cf::map::find_sync", G_SCALAR); 1028 CALL_CALL ("cf::map::find_sync", G_SCALAR);
1001 1029
1002 maptile *retval; 1030 maptile *retval = 0;
1003
1004 if (count)
1005 sv_to (POPs, retval); 1031 if (count) sv_to (POPs, retval);
1006 else
1007 retval = 0;
1008 1032
1009 CALL_END; 1033 CALL_END;
1010 1034
1011 return retval; 1035 return retval;
1012} 1036}
1018 CALL_ARG (path); 1042 CALL_ARG (path);
1019 CALL_ARG (origin); 1043 CALL_ARG (origin);
1020 CALL_ARG (load); 1044 CALL_ARG (load);
1021 CALL_CALL ("cf::map::find_async", G_SCALAR); 1045 CALL_CALL ("cf::map::find_async", G_SCALAR);
1022 1046
1023 maptile *retval; 1047 maptile *retval = 0;
1024
1025 if (count)
1026 sv_to (POPs, retval); 1048 if (count) sv_to (POPs, retval);
1027 else
1028 retval = 0;
1029 1049
1030 CALL_END; 1050 CALL_END;
1031 1051
1032 return retval; 1052 return retval;
1033} 1053}
1058 1078
1059 CALL_BEGIN (2); 1079 CALL_BEGIN (2);
1060 CALL_ARG (this); 1080 CALL_ARG (this);
1061 CALL_ARG (exit); 1081 CALL_ARG (exit);
1062 CALL_CALL ("cf::object::player::enter_exit", G_VOID); 1082 CALL_CALL ("cf::object::player::enter_exit", G_VOID);
1083 CALL_END;
1084}
1085
1086void
1087object::player_goto (const char *path, int x, int y)
1088{
1089 if (type != PLAYER)
1090 return;
1091
1092 CALL_BEGIN (4);
1093 CALL_ARG (this);
1094 CALL_ARG (path);
1095 CALL_ARG (x);
1096 CALL_ARG (y);
1097 CALL_CALL ("cf::object::player::goto", G_VOID);
1063 CALL_END; 1098 CALL_END;
1064} 1099}
1065 1100
1066const char * 1101const char *
1067object::ref () const 1102object::ref () const
1432 1467
1433 const_iv (SYMMETRY_RANDOM) const_iv (SYMMETRY_NONE) const_iv (SYMMETRY_X) 1468 const_iv (SYMMETRY_RANDOM) const_iv (SYMMETRY_NONE) const_iv (SYMMETRY_X)
1434 const_iv (SYMMETRY_Y) const_iv (SYMMETRY_XY) 1469 const_iv (SYMMETRY_Y) const_iv (SYMMETRY_XY)
1435 1470
1436 const_iv (GT_ENVIRONMENT) const_iv (GT_INVISIBLE) const_iv (GT_STARTEQUIP) 1471 const_iv (GT_ENVIRONMENT) const_iv (GT_INVISIBLE) const_iv (GT_STARTEQUIP)
1437 const_iv (GT_APPLY) const_iv (GT_ONLY_GOOD) const_iv (GT_UPDATE_INV) 1472 const_iv (GT_APPLY) const_iv (GT_ONLY_GOOD) const_iv (GT_MINIMAL)
1438 const_iv (GT_MINIMAL)
1439 1473
1440 const_iv (FT_FACE) const_iv (FT_MUSIC) const_iv (FT_SOUND) 1474 const_iv (FT_FACE) const_iv (FT_MUSIC) const_iv (FT_SOUND)
1441 const_iv (FT_RSRC) const_iv (FT_NUM) 1475 const_iv (FT_RSRC) const_iv (FT_NUM)
1442 }; 1476 };
1443 1477
1574NV floor (NV x) 1608NV floor (NV x)
1575 1609
1576NV ceil (NV x) 1610NV ceil (NV x)
1577 1611
1578NV rndm (...) 1612NV rndm (...)
1613 ALIAS:
1614 rmg_rndm = 1
1579 CODE: 1615 CODE:
1616{
1617 rand_gen &gen = ix ? rmg_rndm : rndm;
1580 switch (items) 1618 switch (items)
1581 { 1619 {
1582 case 0: RETVAL = rndm (); break; 1620 case 0: RETVAL = gen (); break;
1583 case 1: RETVAL = rndm (SvUV (ST (0))); break; 1621 case 1: RETVAL = gen (SvUV (ST (0))); break;
1584 case 2: RETVAL = rndm (SvIV (ST (0)), SvIV (ST (1))); break; 1622 case 2: RETVAL = gen (SvIV (ST (0)), SvIV (ST (1))); break;
1585 default: croak ("cf::rndm requires none, one or two parameters."); break; 1623 default: croak ("cf::rndm requires none, one or two parameters."); break;
1586 } 1624 }
1625}
1587 OUTPUT: 1626 OUTPUT:
1588 RETVAL 1627 RETVAL
1589 1628
1590NV clamp (NV value, NV min_value, NV max_value) 1629NV clamp (NV value, NV min_value, NV max_value)
1591 CODE: 1630 CODE:
1694 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost))); 1733 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost)));
1695#endif 1734#endif
1696 EXTEND (SP, 2*2); 1735 EXTEND (SP, 2*2);
1697 PUSHs (sv_2mortal (newSVpv ("slice_alloc", 0))); PUSHs (sv_2mortal (newSVuv (slice_alloc))); 1736 PUSHs (sv_2mortal (newSVpv ("slice_alloc", 0))); PUSHs (sv_2mortal (newSVuv (slice_alloc)));
1698 PUSHs (sv_2mortal (newSVpv ("shstr_alloc", 0))); PUSHs (sv_2mortal (newSVuv (shstr_alloc))); 1737 PUSHs (sv_2mortal (newSVpv ("shstr_alloc", 0))); PUSHs (sv_2mortal (newSVuv (shstr_alloc)));
1738 PUSHs (sv_2mortal (newSVpv ("objects" , 0))); PUSHs (sv_2mortal (newSVuv (objects.size () * sizeof (object))));
1699} 1739}
1700 1740
1701int find_animation (utf8_string text) 1741int find_animation (utf8_string text)
1702 PROTOTYPE: $ 1742 PROTOTYPE: $
1703 1743
1787 PUSHs (sv_2mortal (to_sv (archetype::find (coins [i])))); 1827 PUSHs (sv_2mortal (to_sv (archetype::find (coins [i]))));
1788 1828
1789bool 1829bool
1790load_resource_file_ (octet_string filename) 1830load_resource_file_ (octet_string filename)
1791 1831
1832void
1833fix_weight ()
1834
1792MODULE = cf PACKAGE = cf::attachable 1835MODULE = cf PACKAGE = cf::attachable
1793 1836
1794int 1837int
1795valid (SV *obj) 1838valid (SV *obj)
1796 CODE: 1839 CODE:
1859object *actives (U32 index) 1902object *actives (U32 index)
1860 CODE: 1903 CODE:
1861 RETVAL = index < actives.size () ? actives [index] : 0; 1904 RETVAL = index < actives.size () ? actives [index] : 0;
1862 OUTPUT: RETVAL 1905 OUTPUT: RETVAL
1863 1906
1907int mortals_size ()
1908 CODE:
1909 RETVAL = attachable::mortals.size ();
1910 OUTPUT: RETVAL
1911
1864const char *slot_use_name (U32 slot) 1912const char *slot_use_name (U32 slot)
1865 ALIAS: 1913 ALIAS:
1866 slot_nonuse_name = 1 1914 slot_nonuse_name = 1
1867 CODE: 1915 CODE:
1868{ 1916{
1946void apply_below (object *op) 1994void apply_below (object *op)
1947 CODE: 1995 CODE:
1948 player_apply_below (op); 1996 player_apply_below (op);
1949 1997
1950int cast_heal (object *op, object *caster, object *spell, int dir = 0) 1998int cast_heal (object *op, object *caster, object *spell, int dir = 0)
1951
1952#//TODO
1953object *clone_ (object *op, int recursive = 0)
1954 CODE:
1955 if (recursive)
1956 RETVAL = object_create_clone (op);
1957 else
1958 {
1959 RETVAL = object::create ();
1960 op->copy_to (RETVAL);
1961 }
1962 OUTPUT: RETVAL
1963 1999
1964int pay_item (object *op, object *buyer) 2000int pay_item (object *op, object *buyer)
1965 CODE: 2001 CODE:
1966 RETVAL = pay_for_item (op, buyer); 2002 RETVAL = pay_for_item (op, buyer);
1967 OUTPUT: RETVAL 2003 OUTPUT: RETVAL
2045 CODE: 2081 CODE:
2046{ 2082{
2047 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y); 2083 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y);
2048} 2084}
2049 2085
2050const_utf8_string get_ob_key_value (object *op, utf8_string key) 2086shstr
2087object::kv_get (shstr key)
2051 2088
2052bool set_ob_key_value (object *op, utf8_string key, utf8_string value = 0, int add_key = 1) 2089void
2090object::kv_del (shstr key)
2091
2092void
2093object::kv_set (shstr key, shstr value)
2053 2094
2054object *get_nearest_player (object *ob) 2095object *get_nearest_player (object *ob)
2055 ALIAS: nearest_player = 0 2096 ALIAS: nearest_player = 0
2056 PREINIT: 2097 PREINIT:
2057 extern object *get_nearest_player (object *); 2098 extern object *get_nearest_player (object *);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines