summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-03-30 04:39:13 +0300
committerAndrei Karas <akaras@inbox.ru>2011-03-30 04:39:13 +0300
commitd629f56517f55d1fd756c4774d9a368d66f615df (patch)
treea3675eb7af6b95bd33a8c9887bda5952a11fced5 /src/map.h
parenta08839164df3ae37d216d810123f17eb968da1d4 (diff)
downloadplus-d629f56517f55d1fd756c4774d9a368d66f615df.tar.gz
plus-d629f56517f55d1fd756c4774d9a368d66f615df.tar.bz2
plus-d629f56517f55d1fd756c4774d9a368d66f615df.tar.xz
plus-d629f56517f55d1fd756c4774d9a368d66f615df.zip
Add background music map ranges.
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h60
1 files changed, 44 insertions, 16 deletions
diff --git a/src/map.h b/src/map.h
index 7c606dfbd..8fd2c33c9 100644
--- a/src/map.h
+++ b/src/map.h
@@ -47,6 +47,7 @@ class SimpleAnimation;
class Tileset;
class SpecialLayer;
class MapItem;
+class ObjectsLayer;
typedef std::vector<Tileset*> Tilesets;
typedef std::vector<MapLayer*> Layers;
@@ -75,23 +76,24 @@ struct MetaTile
unsigned char blockmask; /**< Blocking properties of this tile */
};
-/*
-struct MapBox
+class MapObject
{
- MapBox() : name(""), x(0), y(0)
- {
- }
-
- MapBox(std::string name1, int x1, int y1):
- name(name1), x(x1), y(y1)
- {
- }
-
- std::string name;
- int x;
- int y;
+ public:
+ MapObject(int type, std::string data)
+ {
+ this->type = type;
+ this->data = data;
+ }
+
+ int type;
+ std::string data;
+};
+
+class MapObjectList
+{
+ public:
+ std::list<MapObject> objects;
};
-*/
/**
* Animation cycle of a tile image which changes the map accordingly.
@@ -401,6 +403,9 @@ class Map : public Properties, public ConfigListener
void addPortal(const std::string &name, int type,
int x, int y, int dx, int dy);
+ void addRange(const std::string &name, int type,
+ int x, int y, int dx, int dy);
+
void addPortalTile(const std::string &name, int type, int x, int y);
void updatePortalTile(const std::string &name, int type,
@@ -423,6 +428,11 @@ class Map : public Properties, public ConfigListener
void setPvpMode(int mode);
+ ObjectsLayer* getObjectsLayer()
+ { return mObjects; }
+
+ std::string getObjectData(unsigned x, unsigned y, int type);
+
protected:
friend class Actor;
@@ -509,6 +519,7 @@ class Map : public Properties, public ConfigListener
SpecialLayer *mSpecialLayer;
SpecialLayer *mTempLayer;
+ ObjectsLayer *mObjects;
};
@@ -560,7 +571,8 @@ class MapItem
ARROW_DOWN = 5,
ARROW_LEFT = 6,
ARROW_RIGHT = 7,
- PORTAL = 8
+ PORTAL = 8,
+ MUSIC = 9
};
MapItem();
@@ -609,4 +621,20 @@ class MapItem
int mY;
};
+class ObjectsLayer
+{
+ public:
+ ObjectsLayer(unsigned width, unsigned height);
+ ~ObjectsLayer();
+
+ void addObject(std::string name, int type, unsigned x, unsigned y,
+ unsigned dx, unsigned dy);
+
+ MapObjectList *getAt(unsigned x, unsigned y);
+ private:
+ MapObjectList **mTiles;
+ unsigned mWidth;
+ unsigned mHeight;
+};
+
#endif