summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/test
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-27 14:52:31 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-27 14:58:10 +1000
commit5194ce66d60829d7658eaf7c4e570bb88077d326 (patch)
tree9b44313f7b0cbfaa0b4d9512189867ba1fb36a1f /crawl-ref/source/test
parent74685cd97420cc5c40d83cc1ea688863c4dd1751 (diff)
downloadcrawl-ref-5194ce66d60829d7658eaf7c4e570bb88077d326.tar.gz
crawl-ref-5194ce66d60829d7658eaf7c4e570bb88077d326.zip
New Lua library: feat.
Provides wrappers for all of the feat_is_XXX functions from terrain.cc, as well as a few other functions. Also provides a macro which can wrap a function to take: * a set of co-ordinates (parsed with grd(coord_def(x, y))) * a string (parsed with dungeon_feature_by_name) * an integer (cast into dungeon_feature_type, can be fetched from dgn.grid(x, y)) All of the feat library functions can be used in this manner. For example: * feat.is_wall(x, y) * feat.is_wall(dgn.grid(x, y)) * feat.is_wall(7) * feat.is_wall("rock_wall")
Diffstat (limited to 'crawl-ref/source/test')
-rw-r--r--crawl-ref/source/test/findray.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/test/findray.lua b/crawl-ref/source/test/findray.lua
index 9f66461d4e..648b1cb9a7 100644
--- a/crawl-ref/source/test/findray.lua
+++ b/crawl-ref/source/test/findray.lua
@@ -50,7 +50,7 @@ local function test_findray()
rx, ry = ray:pos()
ray_p = dgn.point(rx, ry)
while(ray_p ~= p) do
- if dgn.is_opaque(rx, ry) then
+ if feat.is_opaque(rx, ry) then
dgn.grid(x, y, "floor_special")
debug.dump_map(FAILMAP)
assert(false,