summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorStefan Dombrowski <stefan@uni-bonn.de>2011-05-25 19:33:31 +0200
committerStefan Dombrowski <stefan@uni-bonn.de>2011-05-25 19:33:31 +0200
commit6d9936d160b197fe68c5bb21972b197fb1b64ba4 (patch)
tree6d432d9a359b63c281fca4fad8d98014d378364e /src/map.h
parented330a647d303152256f12917f18ece19332f683 (diff)
downloadmana-client-6d9936d160b197fe68c5bb21972b197fb1b64ba4.tar.gz
mana-client-6d9936d160b197fe68c5bb21972b197fb1b64ba4.tar.bz2
mana-client-6d9936d160b197fe68c5bb21972b197fb1b64ba4.tar.xz
mana-client-6d9936d160b197fe68c5bb21972b197fb1b64ba4.zip
Refining switches in the debug view
Reviewed-by: Bjorn
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/map.h b/src/map.h
index 32644299..7dbc14af 100644
--- a/src/map.h
+++ b/src/map.h
@@ -156,13 +156,17 @@ class Map : public Properties
BLOCKMASK_MONSTER = 0x02 // = bin 0000 0010
};
- enum DebugType
+ enum DebugFlags
{
- MAP_NORMAL = 0,
- MAP_DEBUG = 1,
- MAP_SPECIAL = 2,
- MAP_SPECIAL2 = 3,
- MAP_SPECIAL3 = 4
+ MAP_GRID = 0x1,
+ MAP_COLLISION_TILES = 0x2,
+ MAP_BEING_COLLISION_RADIUS = 0x4,
+ MAP_BEING_POSITION = 0x8,
+ MAP_BEING_PATH = 0x10,
+ MAP_MOUSE_PATH = 0x20,
+ MAP_SPECIAL1 = 0x40,
+ MAP_SPECIAL2 = 0x80,
+ MAP_SPECIAL3 = 0x100
};
/**