aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/CompoundTag.h
blob: 8f4d045df22fdade20f00ec77773ae396b6d9c2e (plain)
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#pragma once
#include "Tag.h"
#include "ListTag.h"
#include "ByteTag.h"
#include "DoubleTag.h"
#include "FloatTag.h"
#include "IntTag.h"
#include "LongTag.h"
#include "ShortTag.h"
#include "StringTag.h"
#include "ByteArrayTag.h"
#include "IntArrayTag.h"

class CompoundTag : public Tag
{
private:
	unordered_map<wstring, Tag *> tags;

public:
	CompoundTag() : Tag(L"") {}
	CompoundTag(const wstring &name) : Tag(name) {}

	void write(DataOutput *dos)
	{
		for( auto& tag : tags )
		{
			Tag::writeNamedTag(tag.second, dos);
		}
		dos->writeByte(Tag::TAG_End);
	}


	void load(DataInput *dis, int tagDepth)
	{
		if(tagDepth > MAX_DEPTH)
		{
#ifndef _CONTENT_PACKAGE
			printf("Tried to read NBT tag with too high complexity, depth > %d" , MAX_DEPTH);
			__debugbreak();
#endif
			return;
		}
		tags.clear();
		Tag *tag;
        int tagCount = 0;
        const int MAX_COMPOUND_TAGS = 10000;
        while ((tag = Tag::readNamedTag(dis))->getId() != Tag::TAG_End)
        {
            tags[tag->getName()] = tag;
            if (++tagCount >= MAX_COMPOUND_TAGS)
            {
                break;
            }
        }
		delete tag;
	}

	vector<Tag *> *getAllTags()		// 4J - was collection
	{
		// 4J - was return tags.values();
		vector<Tag *> *ret = new vector<Tag *>;

		for( auto& tag : tags )
		{
			ret->push_back(tag.second);
		}
		return ret;
	}

	byte getId()
	{
		return TAG_Compound;
	}

	void put(const wstring &name, Tag *tag)
	{
		tags[name] = tag->setName(name);
	}

	void putByte(const wstring &name, byte value)
	{
		tags[name] = (new ByteTag(name,value));
	}

	void putShort(const wstring &name, short value)
	{
		tags[name] = (new ShortTag(name,value));
	}

	void putInt(const wstring &name, int value)
	{
		tags[name] = (new IntTag(name,value));
	}

	void putLong(const wstring &name, int64_t value)
	{
		tags[name] = (new LongTag(name,value));
	}

	void putFloat(const wstring &name, float value)
	{
		tags[name] = (new FloatTag(name,value));
	}

	void putDouble(const wstring &name, double value)
	{
		tags[name] = (new DoubleTag(name,value));
	}

	void putString(const wstring &name, const wstring& value)
	{
		tags[name] = (new StringTag(name,value));
	}

	void putByteArray(const wstring &name, byteArray value)
	{
		tags[name] = (new ByteArrayTag(name,value));
	}

	void putIntArray(const wstring &name, intArray value)
	{
		tags[name] = (new IntArrayTag(name, value));
	}

	void putCompound(const wstring &name, CompoundTag *value)
	{
		tags[name] = value->setName( wstring( name ) );
	}

	void putBoolean(const wstring &name, bool val)
	{
		putByte(name, val?static_cast<byte>(1):0);
	}

	Tag *get(const wstring &name)
	{
		auto it = tags.find(name);
		if(it != tags.end()) return it->second;
		return nullptr;
	}

	bool contains(const wstring &name)
	{
		return tags.find(name) != tags.end();
	}

	byte getByte(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return (byte)0;
		return static_cast<ByteTag *>(tags[name])->data;
	}

	short getShort(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return (short)0;
		return static_cast<ShortTag *>(tags[name])->data;
	}

	int getInt(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return (int)0;
		return static_cast<IntTag *>(tags[name])->data;
	}

	int64_t getLong(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return (int64_t)0;
		return ((LongTag *) tags[name])->data;
	}

	float getFloat(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return static_cast<float>(0);
		return static_cast<FloatTag *>(tags[name])->data;
	}

	double getDouble(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return (double)0;
		return static_cast<DoubleTag *>(tags[name])->data;
	}

	wstring getString(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return wstring( L"" );
		return static_cast<StringTag *>(tags[name])->data;
	}

	byteArray getByteArray(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return byteArray();
		return static_cast<ByteArrayTag *>(tags[name])->data;
	}

	intArray getIntArray(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return intArray();
		return static_cast<IntArrayTag *>(tags[name])->data;
	}

	CompoundTag *getCompound(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return new CompoundTag(name);
		return static_cast<CompoundTag *>(tags[name]);
	}

	ListTag<Tag> *getList(const wstring &name)
	{
		if (tags.find(name) == tags.end()) return new ListTag<Tag>(name);
		return static_cast<ListTag<Tag> *>(tags[name]);
	}

	bool getBoolean(const wstring &string)
	{
		return getByte(string)!=0;
	}

	void remove(const wstring &name)
	{
		auto it = tags.find(name);
		if(it != tags.end()) tags.erase(it);
		//tags.remove(name);
	}

	wstring toString()
	{
		static const int bufSize = 32;
		static wchar_t buf[bufSize];
		swprintf(buf,bufSize,L"%zu entries",tags.size());
		return wstring( buf );
	}

	void print(char *prefix, ostream out)
	{
		/*
		Tag::print(prefix, out);
		out << prefix << "{" << endl;

		char *newPrefix = new char[ strlen(prefix) + 4 ];
		strcpy( newPrefix, prefix);
		strcat( newPrefix, "   ");

		for( auto& it : tags )
		{
			it.second->print(newPrefix, out);
		}
		delete[] newPrefix;
		out << prefix << "}" << endl;
		*/
	}

	bool isEmpty()
	{
		return tags.empty();
	}

	virtual ~CompoundTag()
	{
		for( auto& tag : tags )
		{
			delete tag.second;
		}
	}

	Tag *copy()
	{
		CompoundTag *tag = new CompoundTag(getName());

		for( auto& it : tags )
		{
			tag->put((wchar_t *)it.first.c_str(), it.second->copy());
		}
		return tag;
	}

	bool equals(Tag *obj)
	{
		if (Tag::equals(obj))
		{
			CompoundTag *o = static_cast<CompoundTag *>(obj);

			if(tags.size() == o->tags.size())
			{
				bool equal = true;
				for( auto& it : tags )
				{
					auto itFind = o->tags.find(it.first);
					if(itFind == o->tags.end() || !it.second->equals(itFind->second) )
					{
						equal = false;
						break;
					}
				}
				return equal;
				//return tags.entrySet().equals(o.tags.entrySet());
			}
		}
		return false;
	}
};