From af3cd3ff34ef5da884b2c673afe1321f0cf372e7 Mon Sep 17 00:00:00 2001 From: ennewalker Date: Tue, 15 Jul 2008 04:07:07 +0000 Subject: Large tiles-related changes. Platform-specific rendering removed and replaced with SDL/OpenGL. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6550 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/enum.h | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/enum.h') diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h index eb850c9320..b445dda5e7 100644 --- a/crawl-ref/source/enum.h +++ b/crawl-ref/source/enum.h @@ -613,10 +613,7 @@ enum command_type #ifdef USE_TILE CMD_TARGET_MOUSE_MOVE, CMD_TARGET_MOUSE_SELECT, - CMD_EDIT_PREFS, CMD_EDIT_PLAYER_TILE, - CMD_USE_ITEM, - CMD_VIEW_ITEM, #endif // Disable/enable -more- prompts. @@ -1430,6 +1427,34 @@ enum map_marker_type MAT_ANY }; +enum map_feature +{ + MF_UNSEEN, + MF_FLOOR, + MF_WALL, + MF_MAP_FLOOR, + MF_MAP_WALL, + MF_DOOR, + MF_ITEM, + MF_MONS_HOSTILE, + MF_MONS_FRIENDLY, + MF_MONS_NEUTRAL, + MF_MONS_NO_EXP, + MF_STAIR_UP, + MF_STAIR_DOWN, + MF_STAIR_BRANCH, + MF_FEATURE, + MF_WATER, + MF_LAVA, + MF_TRAP, + MF_EXCL_ROOT, + MF_EXCL, + MF_PLAYER, + MF_MAX, + + MF_SKIP +}; + enum menu_type { MT_ANY = -1, -- cgit v1.2.3-54-g00ecf