-
Notifications
You must be signed in to change notification settings - Fork 224
/
iomap_otbm.h
146 lines (126 loc) · 3.46 KB
/
iomap_otbm.h
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
//////////////////////////////////////////////////////////////////////
// This file is part of Remere's Map Editor
//////////////////////////////////////////////////////////////////////
// Remere's Map Editor is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Remere's Map Editor is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//////////////////////////////////////////////////////////////////////
#ifndef RME_OTBM_MAP_IO_H_
#define RME_OTBM_MAP_IO_H_
#include "iomap.h"
// Pragma pack is VERY important since otherwise it won't be able to load the structs correctly
#pragma pack(1)
enum OTBM_ItemAttribute
{
OTBM_ATTR_DESCRIPTION = 1,
OTBM_ATTR_EXT_FILE = 2,
OTBM_ATTR_TILE_FLAGS = 3,
OTBM_ATTR_ACTION_ID = 4,
OTBM_ATTR_UNIQUE_ID = 5,
OTBM_ATTR_TEXT = 6,
OTBM_ATTR_DESC = 7,
OTBM_ATTR_TELE_DEST = 8,
OTBM_ATTR_ITEM = 9,
OTBM_ATTR_DEPOT_ID = 10,
OTBM_ATTR_EXT_SPAWN_FILE = 11,
OTBM_ATTR_RUNE_CHARGES = 12,
OTBM_ATTR_EXT_HOUSE_FILE = 13,
OTBM_ATTR_HOUSEDOORID = 14,
OTBM_ATTR_COUNT = 15,
OTBM_ATTR_DURATION = 16,
OTBM_ATTR_DECAYING_STATE = 17,
OTBM_ATTR_WRITTENDATE = 18,
OTBM_ATTR_WRITTENBY = 19,
OTBM_ATTR_SLEEPERGUID = 20,
OTBM_ATTR_SLEEPSTART = 21,
OTBM_ATTR_CHARGES = 22,
OTBM_ATTR_ATTRIBUTE_MAP = 128
};
enum OTBM_NodeTypes_t
{
OTBM_ROOTV1 = 1,
OTBM_MAP_DATA = 2,
OTBM_ITEM_DEF = 3,
OTBM_TILE_AREA = 4,
OTBM_TILE = 5,
OTBM_ITEM = 6,
OTBM_TILE_SQUARE = 7,
OTBM_TILE_REF = 8,
OTBM_SPAWNS = 9,
OTBM_SPAWN_AREA = 10,
OTBM_MONSTER = 11,
OTBM_TOWNS = 12,
OTBM_TOWN = 13,
OTBM_HOUSETILE = 14,
OTBM_WAYPOINTS = 15,
OTBM_WAYPOINT = 16,
};
struct OTBM_root_header
{
uint32_t version;
uint16_t width;
uint16_t height;
uint32_t majorVersionItems;
uint32_t minorVersionItems;
};
struct OTBM_TeleportDest
{
uint16_t x;
uint16_t y;
uint8_t z;
};
struct OTBM_Tile_area_coords
{
uint16_t x;
uint16_t y;
uint8_t z;
};
struct OTBM_Tile_coords
{
uint8_t x;
uint8_t y;
};
struct OTBM_TownTemple_coords
{
uint16_t x;
uint16_t y;
uint8_t z;
};
struct OTBM_HouseTile_coords
{
uint8_t x;
uint8_t y;
uint32_t houseid;
};
#pragma pack()
class IOMapOTBM : public IOMap
{
public:
IOMapOTBM(MapVersion ver) { version = ver; }
~IOMapOTBM() {}
static bool getVersionInfo(const FileName& identifier, MapVersion& out_ver);
virtual bool loadMap(Map& map, const FileName& identifier);
virtual bool saveMap(Map& map, const FileName& identifier);
protected:
static bool getVersionInfo(NodeFileReadHandle* f, MapVersion& out_ver);
virtual bool loadMap(Map& map, NodeFileReadHandle& handle);
bool loadSpawns(Map& map, const FileName& dir);
bool loadSpawns(Map& map, pugi::xml_document& doc);
bool loadHouses(Map& map, const FileName& dir);
bool loadHouses(Map& map, pugi::xml_document& doc);
virtual bool saveMap(Map& map, NodeFileWriteHandle& handle);
bool saveSpawns(Map& map, const FileName& dir);
bool saveSpawns(Map& map, pugi::xml_document& doc);
bool saveHouses(Map& map, const FileName& dir);
bool saveHouses(Map& map, pugi::xml_document& doc);
};
#endif