aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/DoubleTag.h
blob: 60e5808a4d9daae2b8b4175ff3beb637aaa91f13 (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
#pragma once
#include "InputOutputStream.h"
#include "Tag.h"

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

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

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

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