first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
#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) { 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;
}
};