summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/luadgn.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-21 12:17:29 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-21 12:17:29 +0000
commit9843737e73a47ef6f1da0554b7ca73018d52d345 (patch)
tree9381ef8b914bc801386f62ce2713c59c17b6a9e8 /crawl-ref/source/luadgn.cc
parentb27a757b68bf8a1dcbcb9b3a5cfea5c1278c9bb4 (diff)
downloadcrawl-ref-9843737e73a47ef6f1da0554b7ca73018d52d345.tar.gz
crawl-ref-9843737e73a47ef6f1da0554b7ca73018d52d345.zip
Updated level-design.txt.
Moved map markers to mapmark.cc. Added support for timer markers that remove a feature after a certain timeout. Need to hook up messaging to Lua. Added bazaars (need more bazaar layouts). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1899 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/luadgn.cc')
-rw-r--r--crawl-ref/source/luadgn.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/crawl-ref/source/luadgn.cc b/crawl-ref/source/luadgn.cc
index 0b4682daa1..6f3d75a7a5 100644
--- a/crawl-ref/source/luadgn.cc
+++ b/crawl-ref/source/luadgn.cc
@@ -10,6 +10,7 @@
#include "files.h"
#include "luadgn.h"
#include "mapdef.h"
+#include "mapmark.h"
#include "maps.h"
#include "stuff.h"
#include "dungeon.h"
@@ -633,16 +634,7 @@ static int dgn_marker(lua_State *ls)
std::string err = map->map.add_feature_marker(luaL_checkstring(ls, 2));
if (!err.empty())
luaL_error(ls, err.c_str());
- return (0);
}
-
- const coord_def pos(luaL_checkint(ls, 2), luaL_checkint(ls, 3));
- dungeon_feature_type feat = DNGN_UNSEEN;
- if (lua_isnumber(ls, 4))
- feat = static_cast<dungeon_feature_type>( luaL_checkint(ls, 4) );
- else
- feat = dungeon_feature_by_name( luaL_checkstring(ls, 4) );
- map->map.add_marker( new map_feature_marker(pos, feat) );
return (0);
}