summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-02-06 16:51:22 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-02-06 16:51:22 +0000
commit49ea67bae1d2969c21005c06bb764f3c6b479e9c (patch)
tree3766a62d4ffff14926114bb083f2eb52aecf2a1e /src/map.h
parent53fb1cbd19ca1b71158922625e5b82ad88804626 (diff)
downloadmana-49ea67bae1d2969c21005c06bb764f3c6b479e9c.tar.gz
mana-49ea67bae1d2969c21005c06bb764f3c6b479e9c.tar.bz2
mana-49ea67bae1d2969c21005c06bb764f3c6b479e9c.tar.xz
mana-49ea67bae1d2969c21005c06bb764f3c6b479e9c.zip
Some preparational changes to the map format.
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h47
1 files changed, 16 insertions, 31 deletions
diff --git a/src/map.h b/src/map.h
index 64ac06fd..dc4ec5e2 100644
--- a/src/map.h
+++ b/src/map.h
@@ -24,38 +24,23 @@
#ifndef _TMW_MAP_H
#define _TMW_MAP_H
-#define TILESET_WIDTH 30
+// Tile flags
+#define TILE_WALKABLE 1
+#define TILE_ANIMATED 2
-/** Struct representing a tile. A tile is composed of 3 layers.
-1st: Ground layer (used for grass, water, ...) -> bit 0-9 of data
-2nd: Fringe layer (objects that are overlapped by the player) -> bit 10-19 of data
-3rd: Over layer (roofs, tree leaves, ...) -> bit 20-29
-Walk flag: tells if a tile is walkable or not -> bit 30
-Animation flag: tells if a tile is animated or not -> bit 31
-
-data field:
-1st byte: [1][1][1][1][1][1][1][1]
-2nd byte: [1][1][2][2][2][2][2][2]
-3rd byte: [2][2][2][2][3][3][3][3]
-4th byte: [3][3][3][3][3][3][W][A]
-
-Legend:
-1 - First layer
-2 - Second layer
-3 - Third layer
-W - Walkability flag
-A - Animated tile flag
+class Tile
+{
+ public:
+ Tile();
-flags field:
-[l][l][f][f][f][f][f][f][f]
+ // Tile data
+ int layers[3];
+ char flags;
-Legend:
-l - Animated layer
-f - future use
-*/
-struct TILE {
- char data[4];
- char flags;
+ // Pathfinding members
+ int Fcost, Gcost, Hcost;
+ int whichList;
+ int parentX, parentY;
};
class Map
@@ -69,7 +54,7 @@ class Map
/**
* Set tile ID.
*/
- void setTile(int x, int y, int layer, unsigned short id);
+ void setTile(int x, int y, int layer, int id);
/**
* Get tile ID.
@@ -99,7 +84,7 @@ class Map
private:
const static int width = 200;
const static int height = 200;
- TILE tiles[width][height];
+ Tile tiles[width][height];
char tileset[20];
char bg_music[20];
};