This code was not tested and breaks in Release builds, reverting to restore
functionality of the nightly. All in-game menus do not work and generating
a world crashes.
This reverts commit a9be52c41a.
37 lines
713 B
C++
37 lines
713 B
C++
#pragma once
|
|
#include "InputOutputStream.h"
|
|
#include "Tag.h"
|
|
|
|
class FloatTag : public Tag
|
|
{
|
|
public:
|
|
float data;
|
|
FloatTag(const wstring &name) : Tag(name) {}
|
|
FloatTag(const wstring &name, float data) : Tag(name) {this->data = data; }
|
|
|
|
void write(DataOutput *dos) { dos->writeFloat(data); }
|
|
void load(DataInput *dis, int tagDepth) { data = dis->readFloat(); }
|
|
|
|
byte getId() { return TAG_Float; }
|
|
wstring toString()
|
|
{
|
|
static wchar_t buf[32];
|
|
swprintf(buf, 32, L"%f",data);
|
|
return wstring( buf );
|
|
}
|
|
|
|
Tag *copy()
|
|
{
|
|
return new FloatTag(getName(), data);
|
|
}
|
|
|
|
bool equals(Tag *obj)
|
|
{
|
|
if (Tag::equals(obj))
|
|
{
|
|
FloatTag *o = (FloatTag *) obj;
|
|
return data == o->data;
|
|
}
|
|
return false;
|
|
}
|
|
}; |