From aead2e43c2e631a0d872dcf1a708f40e3bcef0ea Mon Sep 17 00:00:00 2001 From: "admin@omencraft.com" Date: Sun, 30 Oct 2011 06:48:10 +0000 Subject: I think I got Tag 7 working, now I need to add tag 4 for the deNotch map converter. git-svn-id: http://mc-server.googlecode.com/svn/trunk@23 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- converter/cNBTData.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'converter/cNBTData.h') diff --git a/converter/cNBTData.h b/converter/cNBTData.h index 66ec31b03..77d0ff256 100644 --- a/converter/cNBTData.h +++ b/converter/cNBTData.h @@ -36,7 +36,7 @@ public: void PutShort( std::string Name, short Value ) { m_Shorts[Name] = Value; } void PutInteger( std::string Name, int Value ) { m_Integers[Name] = Value; } void PutString( std::string Name, std::string Value ) { m_Strings[Name] = Value; } - void PutByteArray( std::string Name, char Value ) { m_ByteArrays[Name] = Value; } + void PutByteArray( std::string Name, std::string Value ) { m_ByteArrays[Name] = Value; } void PutCompound( std::string Name ); void PutList( std::string Name, ENUM_TAG Type ); @@ -44,7 +44,7 @@ public: short GetShort( std::string Name ) { return m_Shorts[Name]; } int GetInteger( std::string Name ) { return m_Integers[Name]; } std::string GetString( std::string Name ) { return m_Strings[Name]; } - char GetByteArray( std::string Name ) { return m_ByteArrays[Name]; } + std::string GetByteArray( std::string Name ) { return m_ByteArrays[Name]; } cNBTCompound* GetCompound( std::string Name ); cNBTList* GetList( std::string Name ) { return m_Lists[Name]; } @@ -68,7 +68,7 @@ private: typedef std::map ShortMap; typedef std::map IntegerMap; typedef std::map StringMap; - typedef std::map ByteArrayMap; + typedef std::map ByteArrayMap; typedef std::map CompoundMap; typedef std::map ListMap; ByteMap m_Bytes; @@ -121,17 +121,17 @@ public: bool OpenList( std::string a_Name ); bool CloseList(); - void PutByte( std::string Name, char Value ) { m_CurrentCompound->PutByte( Name, Value ); } - void PutShort( std::string Name, short Value ) { m_CurrentCompound->PutShort( Name, Value ); } - void PutInteger( std::string Name, int Value ) { m_CurrentCompound->PutInteger( Name, Value ); } - void PutString( std::string Name, std::string Value ) { m_CurrentCompound->PutString(Name, Value); } - void PutByteArray( std::string Name, char Value ) { m_CurrentCompound->PutByteArray( Name, Value ); } - void PutCompound( std::string Name ) { m_CurrentCompound->PutCompound( Name ); } - void PutList( std::string Name, ENUM_TAG Type ) { m_CurrentCompound->PutList( Name, Type ); } + void PutByte( std::string Name, char Value ) { m_CurrentCompound->PutByte( Name, Value ); } + void PutShort( std::string Name, short Value ) { m_CurrentCompound->PutShort( Name, Value ); } + void PutInteger( std::string Name, int Value ) { m_CurrentCompound->PutInteger( Name, Value ); } + void PutString( std::string Name, std::string Value ) { m_CurrentCompound->PutString(Name, Value); } + void PutByteArray( std::string Name, std::string Value ) { m_CurrentCompound->PutByteArray( Name, Value ); } + void PutCompound( std::string Name ) { m_CurrentCompound->PutCompound( Name ); } + void PutList( std::string Name, ENUM_TAG Type ) { m_CurrentCompound->PutList( Name, Type ); } int GetInteger( std::string Name ) { return m_CurrentCompound->GetInteger(Name); } std::string GetString( std::string Name ) { return m_CurrentCompound->GetString(Name); } - char GetByteArray( std::string Name ) { return m_CurrentCompound->GetByteArray(Name); } + std::string GetByteArray( std::string Name ) { return m_CurrentCompound->GetByteArray(Name); } cNBTCompound* GetCompound( std::string Name ) { return m_CurrentCompound->GetCompound(Name); } cNBTList* GetList( std::string Name ) { return m_CurrentCompound->GetList(Name); } -- cgit v1.2.3