1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/*
* File: l_dgntile.cc
* Summary: Tiles-specific dungeon builder functions.
*/
#include "AppHdr.h"
#include "cluautil.h"
#include "libutil.h"
#include "l_libs.h"
#include "branch.h"
#include "coord.h"
#include "mapdef.h"
#ifdef USE_TILE
#include "env.h"
#include "tiledef-dngn.h"
#include "tileview.h"
tileidx_t get_tile_idx(lua_State *ls, int arg)
{
if (!lua_isstring(ls, arg))
{
luaL_argerror(ls, arg, "Expected string for tile name");
return 0;
}
const char *tile_name = luaL_checkstring(ls, arg);
tileidx_t idx;
if (!tile_dngn_index(tile_name, &idx))
{
std::string error = "Couldn't find tile '";
error += tile_name;
error += "'";
luaL_argerror(ls, arg, error.c_str());
return 0;
}
return idx;
}
#endif
LUAFN(dgn_lev_floortile)
{
#ifdef USE_TILE
LEVEL(lev, br, 1);
tile_flavour flv;
tile_default_flv(lev, br, flv);
const char *tile_name = tile_dngn_name(flv.floor);
PLUARET(string, tile_name);
#else
PLUARET(string, "invalid");
#endif
}
LUAFN(dgn_lev_rocktile)
{
#ifdef USE_TILE
LEVEL(lev, br, 1);
tile_flavour flv;
tile_default_flv(lev, br, flv);
const char *tile_name = tile_dngn_name(flv.wall);
PLUARET(string, tile_name);
#else
PLUARET(string, "invalid");
#endif
}
LUAFN(dgn_lrocktile)
{
MAP(ls, 1, map);
#ifdef USE_TILE
tileidx_t tile = get_tile_idx(ls, 2);
map->rock_tile = tile;
const char *tile_name = tile_dngn_name(tile);
PLUARET(string, tile_name);
#else
UNUSED(map);
PLUARET(string, "invalid");
#endif
}
LUAFN(dgn_lfloortile)
{
MAP(ls, 1, map);
#ifdef USE_TILE
tileidx_t tile = get_tile_idx(ls, 2);
map->floor_tile = tile;
const char *tile_name = tile_dngn_name(tile);
PLUARET(string, tile_name);
#else
UNUSED(map);
PLUARET(string, "invalid");
#endif
}
LUAFN(dgn_change_rock_tile)
{
#ifdef USE_TILE
unsigned short tile = get_tile_idx(ls, 1);
if (tile)
env.tile_default.wall = tile;
const char *tile_name = tile_dngn_name(tile);
PLUARET(string, tile_name);
#else
PLUARET(string, "invalid");
#endif
}
LUAFN(dgn_change_floor_tile)
{
#ifdef USE_TILE
unsigned short tile = get_tile_idx(ls, 1);
if (tile)
env.tile_default.floor = tile;
const char *tile_name = tile_dngn_name(tile);
PLUARET(string, tile_name);
#else
PLUARET(string, "invalid");
#endif
}
LUAFN(dgn_ftile)
{
#ifdef USE_TILE
return dgn_map_add_transform(ls, &map_lines::add_floortile);
#else
return (0);
#endif
}
LUAFN(dgn_rtile)
{
#ifdef USE_TILE
return dgn_map_add_transform(ls, &map_lines::add_rocktile);
#else
return (0);
#endif
}
LUAFN(dgn_tile)
{
#ifdef USE_TILE
return dgn_map_add_transform(ls, &map_lines::add_spec_tile);
#else
return (0);
#endif
}
LUAFN(dgn_tile_feat_changed)
{
#ifdef USE_TILE
COORDS(c, 1, 2);
if (lua_isnil(ls, 3))
{
env.tile_flv(c).feat = 0;
return (0);
}
unsigned short tile = get_tile_idx(ls, 3);
if (tile)
env.tile_flv(c).feat = tile;
#endif
return (0);
}
const struct luaL_reg dgn_tile_dlib[] =
{
{ "lrocktile", dgn_lrocktile },
{ "lfloortile", dgn_lfloortile },
{ "rtile", dgn_rtile },
{ "ftile", dgn_ftile },
{ "tile", dgn_tile },
{ "change_rock_tile", dgn_change_rock_tile },
{ "change_floor_tile", dgn_change_floor_tile },
{ "lev_floortile", dgn_lev_floortile },
{ "lev_rocktile", dgn_lev_rocktile },
{ "tile_feat_changed", dgn_tile_feat_changed },
{ NULL, NULL }
};
|