aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/IntTag.h
blob: 1f55c5f2a547b6d8f43594927a5bf0f80fb6bd4a (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
#pragma once
#include "Tag.h"

class IntTag : public Tag
{
public:
	int data;
	IntTag(const wstring &name) : Tag(name) {}
	IntTag(const wstring &name, int data) : Tag(name) {this->data = data; }
	
	void write(DataOutput *dos) { dos->writeInt(data); }
	void load(DataInput *dis, int tagDepth) { data = dis->readInt(); }

	byte getId() { return TAG_Int; }
	wstring toString()
	{
		static wchar_t buf[32];
		swprintf(buf, 32, L"%d", data);
		return wstring( buf );
	}

	Tag *copy()
	{
		return new IntTag(getName(), data);
	}

	bool equals(Tag *obj)
	{
		if (Tag::equals(obj))
		{
			IntTag *o = static_cast<IntTag *>(obj);
			return data == o->data;
		}
		return false;
	}
};