Initial commit
This commit is contained in:
292
Minecraft.World/CompoundTag.h
Normal file
292
Minecraft.World/CompoundTag.h
Normal file
@@ -0,0 +1,292 @@
|
||||
#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)
|
||||
{
|
||||
AUTO_VAR(itEnd, tags.end());
|
||||
for( unordered_map<wstring, Tag *>::iterator it = tags.begin(); it != itEnd; it++ )
|
||||
{
|
||||
Tag::writeNamedTag(it->second, dos);
|
||||
}
|
||||
dos->writeByte(Tag::TAG_End);
|
||||
}
|
||||
|
||||
|
||||
void load(DataInput *dis)
|
||||
{
|
||||
tags.clear();
|
||||
Tag *tag;
|
||||
while ((tag = Tag::readNamedTag(dis))->getId() != Tag::TAG_End)
|
||||
{
|
||||
tags[tag->getName()] = tag;
|
||||
}
|
||||
delete tag;
|
||||
}
|
||||
|
||||
vector<Tag *> *getAllTags() // 4J - was collection
|
||||
{
|
||||
// 4J - was return tags.values();
|
||||
vector<Tag *> *ret = new vector<Tag *>;
|
||||
|
||||
AUTO_VAR(itEnd, tags.end());
|
||||
for( unordered_map<wstring, Tag *>::iterator it = tags.begin(); it != itEnd; it++ )
|
||||
{
|
||||
ret->push_back(it->second);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
byte getId()
|
||||
{
|
||||
return TAG_Compound;
|
||||
}
|
||||
|
||||
void put(wchar_t *name, Tag *tag)
|
||||
{
|
||||
tags[name] = tag->setName(wstring( name ));
|
||||
}
|
||||
|
||||
void putByte(wchar_t * name, byte value)
|
||||
{
|
||||
tags[name] = (new ByteTag(name,value));
|
||||
}
|
||||
|
||||
void putShort(wchar_t * name, short value)
|
||||
{
|
||||
tags[name] = (new ShortTag(name,value));
|
||||
}
|
||||
|
||||
void putInt(wchar_t * name, int value)
|
||||
{
|
||||
tags[name] = (new IntTag(name,value));
|
||||
}
|
||||
|
||||
void putLong(wchar_t * name, __int64 value)
|
||||
{
|
||||
tags[name] = (new LongTag(name,value));
|
||||
}
|
||||
|
||||
void putFloat(wchar_t * name, float value)
|
||||
{
|
||||
tags[name] = (new FloatTag(name,value));
|
||||
}
|
||||
|
||||
void putDouble(wchar_t * name, double value)
|
||||
{
|
||||
tags[name] = (new DoubleTag(name,value));
|
||||
}
|
||||
|
||||
void putString(wchar_t *name, const wstring& value)
|
||||
{
|
||||
tags[name] = (new StringTag(name,value));
|
||||
}
|
||||
|
||||
void putByteArray(wchar_t * name, byteArray value)
|
||||
{
|
||||
tags[name] = (new ByteArrayTag(name,value));
|
||||
}
|
||||
|
||||
void putIntArray(wchar_t * name, intArray value)
|
||||
{
|
||||
tags[name] = (new IntArrayTag(name, value));
|
||||
}
|
||||
|
||||
void putCompound(wchar_t * name, CompoundTag *value)
|
||||
{
|
||||
tags[name] = value->setName( wstring( name ) );
|
||||
}
|
||||
|
||||
void putBoolean(wchar_t * string, bool val)
|
||||
{
|
||||
putByte(string, val?(byte)1:0);
|
||||
}
|
||||
|
||||
Tag *get(wchar_t *name)
|
||||
{
|
||||
AUTO_VAR(it, tags.find(name));
|
||||
if(it != tags.end()) return it->second;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bool contains(wchar_t * name)
|
||||
{
|
||||
return tags.find(name) != tags.end();
|
||||
}
|
||||
|
||||
byte getByte(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return (byte)0;
|
||||
return ((ByteTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
short getShort(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return (short)0;
|
||||
return ((ShortTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
int getInt(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return (int)0;
|
||||
return ((IntTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
__int64 getLong(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return (__int64)0;
|
||||
return ((LongTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
float getFloat(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return (float)0;
|
||||
return ((FloatTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
double getDouble(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return (double)0;
|
||||
return ((DoubleTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
wstring getString(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return wstring( L"" );
|
||||
return ((StringTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
byteArray getByteArray(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return byteArray();
|
||||
return ((ByteArrayTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
intArray getIntArray(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return intArray(0);
|
||||
return ((IntArrayTag *) tags[name])->data;
|
||||
}
|
||||
|
||||
CompoundTag *getCompound(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return new CompoundTag(name);
|
||||
return (CompoundTag *) tags[name];
|
||||
}
|
||||
|
||||
ListTag<Tag> *getList(wchar_t * name)
|
||||
{
|
||||
if (tags.find(name) == tags.end()) return new ListTag<Tag>(name);
|
||||
return (ListTag<Tag> *) tags[name];
|
||||
}
|
||||
|
||||
bool getBoolean(wchar_t *string)
|
||||
{
|
||||
return getByte(string)!=0;
|
||||
}
|
||||
|
||||
void remove(const wstring &name)
|
||||
{
|
||||
AUTO_VAR(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"%d 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, " ");
|
||||
|
||||
AUTO_VAR(itEnd, tags.end());
|
||||
for( unordered_map<string, Tag *>::iterator it = tags.begin(); it != itEnd; it++ )
|
||||
{
|
||||
it->second->print(newPrefix, out);
|
||||
}
|
||||
delete[] newPrefix;
|
||||
out << prefix << "}" << endl;
|
||||
*/
|
||||
}
|
||||
|
||||
bool isEmpty()
|
||||
{
|
||||
return tags.empty();
|
||||
}
|
||||
|
||||
virtual ~CompoundTag()
|
||||
{
|
||||
AUTO_VAR(itEnd, tags.end());
|
||||
for( AUTO_VAR(it, tags.begin()); it != itEnd; it++ )
|
||||
{
|
||||
delete it->second;
|
||||
}
|
||||
}
|
||||
|
||||
Tag *copy()
|
||||
{
|
||||
CompoundTag *tag = new CompoundTag(getName());
|
||||
|
||||
AUTO_VAR(itEnd, tags.end());
|
||||
for( AUTO_VAR(it, tags.begin()); it != itEnd; it++ )
|
||||
{
|
||||
tag->put((wchar_t *)it->first.c_str(), it->second->copy());
|
||||
}
|
||||
return tag;
|
||||
}
|
||||
|
||||
bool equals(Tag *obj)
|
||||
{
|
||||
if (Tag::equals(obj))
|
||||
{
|
||||
CompoundTag *o = (CompoundTag *) obj;
|
||||
|
||||
if(tags.size() == o->tags.size())
|
||||
{
|
||||
bool equal = true;
|
||||
AUTO_VAR(itEnd, tags.end());
|
||||
for( AUTO_VAR(it, tags.begin()); it != itEnd; it++ )
|
||||
{
|
||||
AUTO_VAR(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;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user