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.295 by root, Sat Aug 30 05:19:03 2008 UTC

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 25
26#define PLUGIN_NAME "perl"
27#define PLUGIN_VERSION "cfperl 0.5"
28
29#if HAVE_EXECINFO_H 26#if HAVE_EXECINFO_H
30# include <execinfo.h> 27# include <execinfo.h>
31#endif 28#endif
32 29
33#include <cstdarg> 30#include <cstdarg>
31#include <typeinfo>
34 32
35#include "global.h" 33#include "global.h"
36#include "loader.h" 34#include "loader.h"
37#include "../random_maps/random_map.h" 35#include "../random_maps/random_map.h"
38#include "evthread.h" 36#include "evthread.h"
83 *stash_cf, 81 *stash_cf,
84 *stash_cf_object_wrap, 82 *stash_cf_object_wrap,
85 *stash_cf_object_player_wrap, 83 *stash_cf_object_player_wrap,
86 *stash_cf_player_wrap, 84 *stash_cf_player_wrap,
87 *stash_cf_map_wrap, 85 *stash_cf_map_wrap,
86 *stash_cf_mapspace_wrap,
88 *stash_cf_client_wrap, 87 *stash_cf_client_wrap,
89 *stash_cf_arch_wrap, 88 *stash_cf_arch_wrap,
90 *stash_cf_party_wrap, 89 *stash_cf_party_wrap,
91 *stash_cf_region_wrap, 90 *stash_cf_region_wrap,
92 *stash_cf_living_wrap; 91 *stash_cf_living_wrap;
431inline SV *to_sv (maptile * v) { return newSVattachable (v, stash_cf_map_wrap); } 430inline SV *to_sv (maptile * v) { return newSVattachable (v, stash_cf_map_wrap); }
432inline SV *to_sv (archetype * v) { return newSVattachable (v, stash_cf_arch_wrap); } 431inline SV *to_sv (archetype * v) { return newSVattachable (v, stash_cf_arch_wrap); }
433inline SV *to_sv (region * v) { return newSVattachable (v, stash_cf_region_wrap); } 432inline SV *to_sv (region * v) { return newSVattachable (v, stash_cf_region_wrap); }
434inline SV *to_sv (partylist * v) { return newSVptr (v, stash_cf_party_wrap); } 433inline SV *to_sv (partylist * v) { return newSVptr (v, stash_cf_party_wrap); }
435inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); } 434inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); }
435inline SV *to_sv (mapspace * v) { return newSVptr (v, stash_cf_mapspace_wrap); }
436 436
437inline SV *to_sv (object & v) { return to_sv (&v); } 437inline SV *to_sv (object & v) { return to_sv (&v); }
438inline SV *to_sv (living & v) { return to_sv (&v); } 438inline SV *to_sv (living & v) { return to_sv (&v); }
439 439
440inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); } 440inline SV *to_sv (const std::string & v) { return newSVpvn (v.data (), v.size ()); }
464inline void sv_to (SV *sv, maptile * &v) { v = (maptile *)(attachable *)SvPTR_ornull (sv, "cf::map"); } 464inline void sv_to (SV *sv, maptile * &v) { v = (maptile *)(attachable *)SvPTR_ornull (sv, "cf::map"); }
465inline void sv_to (SV *sv, region * &v) { v = (region *)(attachable *)SvPTR_ornull (sv, "cf::region"); } 465inline void sv_to (SV *sv, region * &v) { v = (region *)(attachable *)SvPTR_ornull (sv, "cf::region"); }
466inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); } 466inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); }
467inline void sv_to (SV *sv, partylist * &v) { v = (partylist *)SvPTR_ornull (sv, "cf::party"); } 467inline void sv_to (SV *sv, partylist * &v) { v = (partylist *)SvPTR_ornull (sv, "cf::party"); }
468inline void sv_to (SV *sv, living * &v) { v = (living *)SvPTR_ornull (sv, "cf::living"); } 468inline void sv_to (SV *sv, living * &v) { v = (living *)SvPTR_ornull (sv, "cf::living"); }
469inline void sv_to (SV *sv, mapspace * &v) { v = (mapspace *)SvPTR_ornull (sv, "cf::mapspace"); }
469inline void sv_to (SV *sv, object_freezer * &v) { v = (object_freezer *)SvPTR_ornull (sv, "cf::object::freezer"); } 470inline void sv_to (SV *sv, object_freezer * &v) { v = (object_freezer *)SvPTR_ornull (sv, "cf::object::freezer"); }
470inline void sv_to (SV *sv, object_thawer * &v) { v = (object_thawer *)SvPTR_ornull (sv, "cf::object::thawer" ); } 471inline void sv_to (SV *sv, object_thawer * &v) { v = (object_thawer *)SvPTR_ornull (sv, "cf::object::thawer" ); }
471 472
472//inline void sv_to (SV *sv, faceinfo * &v) { v = &faces [face_find (SvPV_nolen (sv), 0)]; } 473//inline void sv_to (SV *sv, faceinfo * &v) { v = &faces [face_find (SvPV_nolen (sv), 0)]; }
473inline void sv_to (SV *sv, treasurelist * &v) { v = treasurelist::find (SvPV_nolen (sv)); } 474inline void sv_to (SV *sv, treasurelist * &v) { v = treasurelist::find (SvPV_nolen (sv)); }
944 CALL_CALL ("ext::books::make_book", G_VOID); 945 CALL_CALL ("ext::books::make_book", G_VOID);
945 CALL_END; 946 CALL_END;
946} 947}
947 948
948void 949void
950cfperl_expand_cfpod (player *pl, std::string &msg)
951{
952 CALL_BEGIN (2);
953 CALL_ARG (pl);
954 CALL_ARG_SV (newSVpvn_utf8 (msg.data (), msg.size ()));
955 CALL_CALL ("cf::player::expand_cfpod", G_SCALAR);
956
957 if (count)
958 {
959 STRLEN len;
960 char *data = SvPVutf8 (TOPs, len);
961 msg.assign (data, len);
962 }
963
964 CALL_END;
965}
966
967void
949cfperl_send_msg (client *ns, int color, const char *type, const char *msg) 968cfperl_send_msg (client *ns, int color, const char *type, const char *msg)
950{ 969{
951 CALL_BEGIN (4); 970 CALL_BEGIN (4);
952 CALL_ARG (ns); 971 CALL_ARG (ns);
953 CALL_ARG (type); 972 CALL_ARG (type);
977{ 996{
978 CALL_BEGIN (1); 997 CALL_BEGIN (1);
979 CALL_ARG (name); 998 CALL_ARG (name);
980 CALL_CALL ("cf::player::find", G_SCALAR); 999 CALL_CALL ("cf::player::find", G_SCALAR);
981 1000
982 player *retval; 1001 player *retval = 0;
983
984 if (count)
985 sv_to (POPs, retval); 1002 if (count) sv_to (POPs, retval);
986 else 1003
987 retval = 0; 1004 CALL_END;
1005
1006 return retval;
1007}
1008
1009maptile *
1010find_style (const char *dirname, const char *stylename, int difficulty)
1011{
1012 CALL_BEGIN (3);
1013 CALL_ARG (dirname);
1014 CALL_ARG (stylename);
1015 CALL_ARG (difficulty);
1016 CALL_CALL ("ext::map_random::find_style", G_SCALAR);
1017
1018 maptile *retval = 0;
1019 if (count) sv_to (POPs, retval);
988 1020
989 CALL_END; 1021 CALL_END;
990 1022
991 return retval; 1023 return retval;
992} 1024}
997 CALL_BEGIN (2); 1029 CALL_BEGIN (2);
998 CALL_ARG (path); 1030 CALL_ARG (path);
999 CALL_ARG (origin); 1031 CALL_ARG (origin);
1000 CALL_CALL ("cf::map::find_sync", G_SCALAR); 1032 CALL_CALL ("cf::map::find_sync", G_SCALAR);
1001 1033
1002 maptile *retval; 1034 maptile *retval = 0;
1003
1004 if (count)
1005 sv_to (POPs, retval); 1035 if (count) sv_to (POPs, retval);
1006 else
1007 retval = 0;
1008 1036
1009 CALL_END; 1037 CALL_END;
1010 1038
1011 return retval; 1039 return retval;
1012} 1040}
1018 CALL_ARG (path); 1046 CALL_ARG (path);
1019 CALL_ARG (origin); 1047 CALL_ARG (origin);
1020 CALL_ARG (load); 1048 CALL_ARG (load);
1021 CALL_CALL ("cf::map::find_async", G_SCALAR); 1049 CALL_CALL ("cf::map::find_async", G_SCALAR);
1022 1050
1023 maptile *retval; 1051 maptile *retval = 0;
1024
1025 if (count)
1026 sv_to (POPs, retval); 1052 if (count) sv_to (POPs, retval);
1027 else
1028 retval = 0;
1029 1053
1030 CALL_END; 1054 CALL_END;
1031 1055
1032 return retval; 1056 return retval;
1033} 1057}
1058 1082
1059 CALL_BEGIN (2); 1083 CALL_BEGIN (2);
1060 CALL_ARG (this); 1084 CALL_ARG (this);
1061 CALL_ARG (exit); 1085 CALL_ARG (exit);
1062 CALL_CALL ("cf::object::player::enter_exit", G_VOID); 1086 CALL_CALL ("cf::object::player::enter_exit", G_VOID);
1087 CALL_END;
1088}
1089
1090void
1091object::player_goto (const char *path, int x, int y)
1092{
1093 if (type != PLAYER)
1094 return;
1095
1096 CALL_BEGIN (4);
1097 CALL_ARG (this);
1098 CALL_ARG (path);
1099 CALL_ARG (x);
1100 CALL_ARG (y);
1101 CALL_CALL ("cf::object::player::goto", G_VOID);
1063 CALL_END; 1102 CALL_END;
1064} 1103}
1065 1104
1066const char * 1105const char *
1067object::ref () const 1106object::ref () const
1154 1193
1155 stash_cf_object_wrap = gv_stashpv ("cf::object::wrap", 1); 1194 stash_cf_object_wrap = gv_stashpv ("cf::object::wrap", 1);
1156 stash_cf_object_player_wrap = gv_stashpv ("cf::object::player::wrap", 1); 1195 stash_cf_object_player_wrap = gv_stashpv ("cf::object::player::wrap", 1);
1157 stash_cf_player_wrap = gv_stashpv ("cf::player::wrap", 1); 1196 stash_cf_player_wrap = gv_stashpv ("cf::player::wrap", 1);
1158 stash_cf_map_wrap = gv_stashpv ("cf::map::wrap" , 1); 1197 stash_cf_map_wrap = gv_stashpv ("cf::map::wrap" , 1);
1198 stash_cf_mapspace_wrap = gv_stashpv ("cf::mapspace::wrap" , 1);
1159 stash_cf_client_wrap = gv_stashpv ("cf::client::wrap", 1); 1199 stash_cf_client_wrap = gv_stashpv ("cf::client::wrap", 1);
1160 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1); 1200 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1);
1161 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1); 1201 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1);
1162 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1); 1202 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1);
1163 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1); 1203 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1);
1356 const_iv (F_CURSED) const_iv (F_DAMNED) const_iv (F_OPEN) const_iv (F_NOPICK) 1396 const_iv (F_CURSED) const_iv (F_DAMNED) const_iv (F_OPEN) const_iv (F_NOPICK)
1357 const_iv (F_LOCKED) 1397 const_iv (F_LOCKED)
1358 1398
1359 const_iv (F_BUY) const_iv (F_SHOP) const_iv (F_SELL) 1399 const_iv (F_BUY) const_iv (F_SHOP) const_iv (F_SELL)
1360 1400
1361 const_iv (P_BLOCKSVIEW) const_iv (P_PLAYER) const_iv (P_NO_MAGIC) const_iv (P_IS_ALIVE) 1401 const_iv (P_BLOCKSVIEW) const_iv (P_NO_MAGIC) const_iv (P_IS_ALIVE)
1362 const_iv (P_NO_CLERIC) const_iv (P_OUT_OF_MAP) const_iv (P_NEW_MAP) const_iv (P_UPTODATE) 1402 const_iv (P_NO_CLERIC) const_iv (P_OUT_OF_MAP) const_iv (P_NEW_MAP) const_iv (P_UPTODATE)
1363 1403
1364 const_iv (UP_OBJ_INSERT) const_iv (UP_OBJ_REMOVE) const_iv (UP_OBJ_CHANGE) const_iv (UP_OBJ_FACE) 1404 const_iv (UP_OBJ_INSERT) const_iv (UP_OBJ_REMOVE) const_iv (UP_OBJ_CHANGE) const_iv (UP_OBJ_FACE)
1365 1405
1366 const_iv (INS_NO_MERGE) const_iv (INS_ABOVE_FLOOR_ONLY) const_iv (INS_NO_WALK_ON) 1406 const_iv (INS_NO_MERGE) const_iv (INS_ABOVE_FLOOR_ONLY) const_iv (INS_NO_WALK_ON)
1432 1472
1433 const_iv (SYMMETRY_RANDOM) const_iv (SYMMETRY_NONE) const_iv (SYMMETRY_X) 1473 const_iv (SYMMETRY_RANDOM) const_iv (SYMMETRY_NONE) const_iv (SYMMETRY_X)
1434 const_iv (SYMMETRY_Y) const_iv (SYMMETRY_XY) 1474 const_iv (SYMMETRY_Y) const_iv (SYMMETRY_XY)
1435 1475
1436 const_iv (GT_ENVIRONMENT) const_iv (GT_INVISIBLE) const_iv (GT_STARTEQUIP) 1476 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) 1477 const_iv (GT_APPLY) const_iv (GT_ONLY_GOOD) const_iv (GT_MINIMAL)
1438 const_iv (GT_MINIMAL)
1439 1478
1440 const_iv (FT_FACE) const_iv (FT_MUSIC) const_iv (FT_SOUND) 1479 const_iv (FT_FACE) const_iv (FT_MUSIC) const_iv (FT_SOUND)
1441 const_iv (FT_RSRC) const_iv (FT_NUM) 1480 const_iv (FT_RSRC) const_iv (FT_NUM)
1442 }; 1481 };
1443 1482
1465 av_store (av, eiv->iv, newRV_noinc ((SV *)event)); 1504 av_store (av, eiv->iv, newRV_noinc ((SV *)event));
1466 newCONSTSUB (stash_cf, (char *)eiv->name, newSViv (eiv->iv)); 1505 newCONSTSUB (stash_cf, (char *)eiv->name, newSViv (eiv->iv));
1467 } 1506 }
1468} 1507}
1469 1508
1509void _gv_clear (SV *gv)
1510 CODE:
1511 assert (SvTYPE (gv) == SVt_PVGV);
1512# define f(sv) { SV *sv_ = (SV *)(sv); sv = 0; SvREFCNT_dec (sv_); }
1513 f (GvGP (gv)->gp_form);
1514 f (GvGP (gv)->gp_io);
1515 f (GvGP (gv)->gp_sv);
1516 f (GvGP (gv)->gp_av);
1517 f (GvGP (gv)->gp_hv);
1518 f (GvGP (gv)->gp_cv);
1519 GvCVGEN (gv) = 0;
1520 GvMULTI_off (gv);
1521# undef f
1522
1523
1470void _connect_to_perl () 1524void _connect_to_perl ()
1471 1525
1472void _recalc_want () 1526void _recalc_want ()
1473 1527
1474void _global_reattach () 1528void _global_reattach ()
1574NV floor (NV x) 1628NV floor (NV x)
1575 1629
1576NV ceil (NV x) 1630NV ceil (NV x)
1577 1631
1578NV rndm (...) 1632NV rndm (...)
1633 ALIAS:
1634 rmg_rndm = 1
1579 CODE: 1635 CODE:
1636{
1637 rand_gen &gen = ix ? rmg_rndm : rndm;
1580 switch (items) 1638 switch (items)
1581 { 1639 {
1582 case 0: RETVAL = rndm (); break; 1640 case 0: RETVAL = gen (); break;
1583 case 1: RETVAL = rndm (SvUV (ST (0))); break; 1641 case 1: RETVAL = gen (SvUV (ST (0))); break;
1584 case 2: RETVAL = rndm (SvIV (ST (0)), SvIV (ST (1))); break; 1642 case 2: RETVAL = gen (SvIV (ST (0)), SvIV (ST (1))); break;
1585 default: croak ("cf::rndm requires none, one or two parameters."); break; 1643 default: croak ("cf::rndm requires none, one or two parameters."); break;
1586 } 1644 }
1645}
1587 OUTPUT: 1646 OUTPUT:
1588 RETVAL 1647 RETVAL
1589 1648
1590NV clamp (NV value, NV min_value, NV max_value) 1649NV clamp (NV value, NV min_value, NV max_value)
1591 CODE: 1650 CODE:
1694 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost))); 1753 PUSHs (sv_2mortal (newSVpv ("keepcost", 0))); PUSHs (sv_2mortal (newSViv (mai.keepcost)));
1695#endif 1754#endif
1696 EXTEND (SP, 2*2); 1755 EXTEND (SP, 2*2);
1697 PUSHs (sv_2mortal (newSVpv ("slice_alloc", 0))); PUSHs (sv_2mortal (newSVuv (slice_alloc))); 1756 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))); 1757 PUSHs (sv_2mortal (newSVpv ("shstr_alloc", 0))); PUSHs (sv_2mortal (newSVuv (shstr_alloc)));
1758 PUSHs (sv_2mortal (newSVpv ("objects" , 0))); PUSHs (sv_2mortal (newSVuv (objects.size () * sizeof (object))));
1699} 1759}
1700 1760
1701int find_animation (utf8_string text) 1761int find_animation (utf8_string text)
1702 PROTOTYPE: $ 1762 PROTOTYPE: $
1703 1763
1787 PUSHs (sv_2mortal (to_sv (archetype::find (coins [i])))); 1847 PUSHs (sv_2mortal (to_sv (archetype::find (coins [i]))));
1788 1848
1789bool 1849bool
1790load_resource_file_ (octet_string filename) 1850load_resource_file_ (octet_string filename)
1791 1851
1852void
1853fix_weight ()
1854
1792MODULE = cf PACKAGE = cf::attachable 1855MODULE = cf PACKAGE = cf::attachable
1793 1856
1794int 1857int
1795valid (SV *obj) 1858valid (SV *obj)
1796 CODE: 1859 CODE:
1859object *actives (U32 index) 1922object *actives (U32 index)
1860 CODE: 1923 CODE:
1861 RETVAL = index < actives.size () ? actives [index] : 0; 1924 RETVAL = index < actives.size () ? actives [index] : 0;
1862 OUTPUT: RETVAL 1925 OUTPUT: RETVAL
1863 1926
1927int mortals_size ()
1928 CODE:
1929 RETVAL = attachable::mortals.size ();
1930 OUTPUT: RETVAL
1931
1864const char *slot_use_name (U32 slot) 1932const char *slot_use_name (U32 slot)
1865 ALIAS: 1933 ALIAS:
1866 slot_nonuse_name = 1 1934 slot_nonuse_name = 1
1867 CODE: 1935 CODE:
1868{ 1936{
1946void apply_below (object *op) 2014void apply_below (object *op)
1947 CODE: 2015 CODE:
1948 player_apply_below (op); 2016 player_apply_below (op);
1949 2017
1950int cast_heal (object *op, object *caster, object *spell, int dir = 0) 2018int 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 2019
1964int pay_item (object *op, object *buyer) 2020int pay_item (object *op, object *buyer)
1965 CODE: 2021 CODE:
1966 RETVAL = pay_for_item (op, buyer); 2022 RETVAL = pay_for_item (op, buyer);
1967 OUTPUT: RETVAL 2023 OUTPUT: RETVAL
2045 CODE: 2101 CODE:
2046{ 2102{
2047 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y); 2103 RETVAL = insert_ob_in_map_at (ob, where, orig, flag, x, y);
2048} 2104}
2049 2105
2050const_utf8_string get_ob_key_value (object *op, utf8_string key) 2106shstr
2107object::kv_get (shstr key)
2051 2108
2052bool set_ob_key_value (object *op, utf8_string key, utf8_string value = 0, int add_key = 1) 2109void
2110object::kv_del (shstr key)
2111
2112void
2113object::kv_set (shstr key, shstr value)
2053 2114
2054object *get_nearest_player (object *ob) 2115object *get_nearest_player (object *ob)
2055 ALIAS: nearest_player = 0 2116 ALIAS: nearest_player = 0
2056 PREINIT: 2117 PREINIT:
2057 extern object *get_nearest_player (object *); 2118 extern object *get_nearest_player (object *);
2059void rangevector (object *ob, object *other, int flags = 0) 2120void rangevector (object *ob, object *other, int flags = 0)
2060 PROTOTYPE: $$;$ 2121 PROTOTYPE: $$;$
2061 PPCODE: 2122 PPCODE:
2062{ 2123{
2063 rv_vector rv; 2124 rv_vector rv;
2125
2126 PUTBACK;
2064 get_rangevector (ob, other, &rv, flags); 2127 get_rangevector (ob, other, &rv, flags);
2128 SPAGAIN;
2129
2065 EXTEND (SP, 5); 2130 EXTEND (SP, 5);
2066 PUSHs (newSVuv (rv.distance)); 2131 PUSHs (newSVuv (rv.distance));
2067 PUSHs (newSViv (rv.distance_x)); 2132 PUSHs (newSViv (rv.distance_x));
2068 PUSHs (newSViv (rv.distance_y)); 2133 PUSHs (newSViv (rv.distance_y));
2069 PUSHs (newSViv (rv.direction)); 2134 PUSHs (newSViv (rv.direction));
2160 if (len > MAXSOCKBUF) 2225 if (len > MAXSOCKBUF)
2161 pl->failmsg ("[packet too long for client]"); 2226 pl->failmsg ("[packet too long for client]");
2162 else if (pl->ns) 2227 else if (pl->ns)
2163 pl->ns->send_packet (buf, len); 2228 pl->ns->send_packet (buf, len);
2164} 2229}
2165
2166int
2167listening (player *pl, int new_value = -1)
2168 CODE:
2169 RETVAL = pl->listening;
2170 if (new_value >= 0)
2171 pl->listening = new_value;
2172 OUTPUT:
2173 RETVAL
2174 2230
2175void savebed (player *pl, SV *map_path = 0, SV *x = 0, SV *y = 0) 2231void savebed (player *pl, SV *map_path = 0, SV *x = 0, SV *y = 0)
2176 PROTOTYPE: $;$$$ 2232 PROTOTYPE: $;$$$
2177 PPCODE: 2233 PPCODE:
2178 if (GIMME_V != G_VOID) 2234 if (GIMME_V != G_VOID)
2376get_map_flags (maptile *map, int x, int y) 2432get_map_flags (maptile *map, int x, int y)
2377 PPCODE: 2433 PPCODE:
2378{ 2434{
2379 maptile *nmap = 0; 2435 maptile *nmap = 0;
2380 I16 nx = 0, ny = 0; 2436 I16 nx = 0, ny = 0;
2437
2438 PUTBACK;
2381 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny); 2439 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny);
2440 SPAGAIN;
2382 2441
2383 EXTEND (SP, 4); 2442 EXTEND (SP, 4);
2384 PUSHs (sv_2mortal (newSViv (flags))); 2443 PUSHs (sv_2mortal (newSViv (flags)));
2385 2444
2386 if (GIMME_V == G_ARRAY) 2445 if (GIMME_V == G_ARRAY)
2389 PUSHs (sv_2mortal (newSViv (nx))); 2448 PUSHs (sv_2mortal (newSViv (nx)));
2390 PUSHs (sv_2mortal (newSViv (ny))); 2449 PUSHs (sv_2mortal (newSViv (ny)));
2391 } 2450 }
2392} 2451}
2393 2452
2453mapspace *
2454ms (maptile *map, unsigned int x, unsigned int y)
2455 PROTOTYPE: $$$
2456 CODE:
2457{
2458 maptile *nmap = 0;
2459 I16 nx, ny;
2460
2461 PUTBACK;
2462 get_map_flags (map, &nmap, x, y, &nx, &ny);
2463 SPAGAIN;
2464
2465 if (!nmap)
2466 XSRETURN_UNDEF;
2467
2468 RETVAL = &nmap->at (nx, ny);
2469}
2470 OUTPUT:
2471 RETVAL
2472
2394void 2473void
2395at (maptile *map, unsigned int x, unsigned int y) 2474at (maptile *map, unsigned int x, unsigned int y)
2396 PROTOTYPE: $$$ 2475 PROTOTYPE: $$$
2397 PPCODE: 2476 PPCODE:
2398{ 2477{
2399 object *o;
2400 maptile *nmap = 0; 2478 maptile *nmap = 0;
2401 I16 nx, ny; 2479 I16 nx, ny;
2402 2480
2481 PUTBACK;
2403 get_map_flags (map, &nmap, x, y, &nx, &ny); 2482 get_map_flags (map, &nmap, x, y, &nx, &ny);
2483 SPAGAIN;
2404 2484
2405 if (nmap) 2485 if (nmap)
2406 for (o = GET_MAP_OB (nmap, nx, ny); o; o = o->above) 2486 for (object *o = nmap->at (nx, ny).bot; o; o = o->above)
2407 XPUSHs (sv_2mortal (to_sv (o))); 2487 XPUSHs (sv_2mortal (to_sv (o)));
2408} 2488}
2409 2489
2410SV * 2490SV *
2411bot_at (maptile *obj, unsigned int x, unsigned int y) 2491bot_at (maptile *obj, unsigned int x, unsigned int y)
2524 RETVAL = self->generate_random_map (&rmp); 2604 RETVAL = self->generate_random_map (&rmp);
2525} 2605}
2526 OUTPUT: 2606 OUTPUT:
2527 RETVAL 2607 RETVAL
2528 2608
2609MODULE = cf PACKAGE = cf::mapspace
2610
2611INCLUDE: $PERL $srcdir/genacc mapspace ../include/map.h |
2612
2529MODULE = cf PACKAGE = cf::arch 2613MODULE = cf PACKAGE = cf::arch
2530 2614
2531int archetypes_size () 2615int archetypes_size ()
2532 CODE: 2616 CODE:
2533 RETVAL = archetypes.size (); 2617 RETVAL = archetypes.size ();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines