1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
#ifndef MAP_H
#define MAP_H
class Map;
#include <string>
#include <exception>
#include <utility>
#include <list>
#include "object.h"
#include <memory>
#include "world.h"
#include <wx/treectrl.h>
class MapeditFrame;
const int TILE_WIDTH = 8;
const int TILE_HEIGHT = 8;
const int GAME_WIDTH = 320;
const int GAME_HEIGHT = 200;
const int MAP_WIDTH = GAME_WIDTH/TILE_WIDTH;
const int MAP_HEIGHT = GAME_HEIGHT/TILE_HEIGHT - 1;
class MapLoadException: public std::exception
{
public:
MapLoadException(std::string mapname) : mapname(mapname) {}
virtual const char* what() const throw()
{
return ("An error occured loading map " + mapname).c_str();
}
private:
std::string mapname;
};
class MapWriteException: public std::exception
{
public:
MapWriteException(std::string mapname) : mapname(mapname) {}
virtual const char* what() const throw()
{
return ("An error occured writing map " + mapname).c_str();
}
private:
std::string mapname;
};
struct MapObjectEntry {
MapObject* object;
std::pair<double, double> position;
bool operator==(MapObjectEntry& other) const
{
return (object == other.object) && (position == other.position);
}
};
class Map {
public:
Map(int id, World* world);
Map(const Map& map);
Map(Map&& map);
~Map();
Map& operator= (Map other);
friend void swap(Map& first, Map& second);
int getID() const;
std::string getTitle() const;
int getTileAt(int x, int y) const;
const std::list<std::shared_ptr<MapObjectEntry>>& getObjects() const;
std::shared_ptr<Map> getLeftmap() const;
std::shared_ptr<Map> getRightmap() const;
wxTreeItemId getTreeItemId() const;
std::list<std::shared_ptr<Map>> getChildren() const;
bool getExpanded() const;
void setTitle(std::string title, bool dirty = true);
void setTileAt(int x, int y, int tile, bool dirty = true);
void setMapdata(int* mapdata, bool dirty = true);
void addObject(std::shared_ptr<MapObjectEntry>& obj, bool dirty = true);
void removeObject(std::shared_ptr<MapObjectEntry>& obj, bool dirty = true);
void setLeftmap(int id, bool dirty = true);
void setRightmap(int id, bool dirty = true);
void setTreeItemId(wxTreeItemId id);
void addChild(int id);
void setExpanded(bool exp);
private:
int id;
World* world;
std::list<std::shared_ptr<MapObjectEntry>> objects;
int* mapdata;
std::string title {"Untitled Map"};
std::list<int> children;
int leftmap = -1;
int rightmap = -1;
wxTreeItemId treeItemId;
bool expanded = false;
};
#endif
|