22 #include <system_error>
23 #include "../Endianness.h"
135 public std::true_type
186 return m_Tags[
static_cast<size_t>(a_Tag)].m_DataLength;
195 return m_Data.data() +
m_Tags[
static_cast<size_t>(a_Tag)].m_DataStart;
205 int FindChildByName(
int a_Tag,
const char * a_Name,
size_t a_NameLength = 0)
const;
216 return (
m_Tags[
static_cast<size_t>(a_Tag)].m_FirstChild < 0) ?
TAG_End :
m_Tags[
static_cast<size_t>(
m_Tags[
static_cast<size_t>(a_Tag)].m_FirstChild)].m_Type;
223 return static_cast<unsigned char>(
m_Data[
static_cast<size_t>(
m_Tags[
static_cast<size_t>(a_Tag)].m_DataStart)]);
254 char Check1[5 -
sizeof(float)];
255 char Check2[
sizeof(float) - 3];
261 memcpy(&f, &i,
sizeof(f));
270 char Check1[9 -
sizeof(double)];
271 char Check2[
sizeof(double) - 7];
296 res.assign(
reinterpret_cast<const char *
>(
m_Data.data()) +
m_Tags[
static_cast<size_t>(a_Tag)].m_NameStart,
static_cast<size_t>(
m_Tags[
static_cast<size_t>(a_Tag)].m_NameLength));
385 m_Result.push_back(std::byte(a_Type));
Int64 NetworkToHostLong8(const void *a_Value)
double NetworkToHostDouble8(const void *a_Value)
std::basic_string_view< std::byte > ContiguousByteBufferView
std::basic_string< std::byte > ContiguousByteBuffer
short GetBEShort(const std::byte *const a_Mem)
Reads two bytes from the specified memory location and interprets them as BigEndian short.
int GetBEInt(const std::byte *const a_Mem)
Reads four bytes from the specified memory location and interprets them as BigEndian int.
std::error_code make_error_code(eNBTParseError a_Err) noexcept
@ npCompoundImbalancedTag
This structure is used for all NBT tags.
cFastNBTTag(eTagType a_Type, int a_Parent)
cFastNBTTag(eTagType a_Type, int a_Parent, int a_PrevSibling)
Parses and contains the parsed data Also implements data accessor functions for tree traversal and va...
std::string_view GetStringView(int a_Tag) const
Returns the value stored in a String tag.
int GetLastChild(int a_Tag) const
Returns the last child of the specified tag, or -1 if none / not applicable.
int GetNextSibling(int a_Tag) const
Returns the next sibling of the specified tag, or -1 if none.
size_t GetErrorPos() const
Returns the position where an error occurred while parsing.
eNBTParseError Parse(void)
std::error_code GetErrorCode() const
Returns the error code for the parsing of the NBT data.
Int16 GetShort(int a_Tag) const
Returns the value stored in a Short tag.
const std::byte * GetData(int a_Tag) const
Returns the data stored in this tag.
int GetFirstChild(int a_Tag) const
Returns the first child of the specified tag, or -1 if none / not applicable.
double GetDouble(int a_Tag) const
Returns the value stored in a Double tag.
std::vector< cFastNBTTag > m_Tags
eNBTParseError ReadList(eTagType a_ChildrenType)
eNBTParseError ReadString(size_t &a_StringStart, size_t &a_StringLen)
cParsedNBT(ContiguousByteBufferView a_Data)
int GetPrevSibling(int a_Tag) const
Returns the previous sibling of the specified tag, or -1 if none.
AString GetName(int a_Tag) const
Returns the tag's name.
eTagType GetType(int a_Tag) const
int FindChildByName(int a_Tag, const AString &a_Name) const
Returns the direct child tag of the specified name, or -1 if no such tag.
unsigned char GetByte(int a_Tag) const
Returns the value stored in a Byte tag.
int FindTagByPath(int a_Tag, const AString &a_Path) const
Returns the child tag of the specified path (Name1 / Name2 / Name3...), or -1 if no such tag.
eNBTParseError ReadTag(void)
size_t GetDataLength(int a_Tag) const
Returns the length of the tag's data, in bytes.
ContiguousByteBufferView m_Data
Int64 GetLong(int a_Tag) const
Returns the value stored in a Long tag.
float GetFloat(int a_Tag) const
Returns the value stored in a Float tag.
int GetRoot(void) const
Returns the root tag of the hierarchy.
static size_t GetMinTagSize(eTagType a_TagType)
Returns the minimum size, in bytes, of the specified tag type.
eNBTParseError ReadCompound(void)
Int32 GetInt(int a_Tag) const
Returns the value stored in an Int tag.
AString GetString(int a_Tag) const
Returns the value stored in a String tag.
eTagType GetChildrenType(int a_Tag) const
Returns the children type for a List tag; undefined on other tags.
void AddByteArray(const AString &a_Name, const char *a_Value, size_t a_NumElements)
void AddByte(const AString &a_Name, unsigned char a_Value)
void AddDouble(const AString &a_Name, double a_Value)
void AddShort(const AString &a_Name, Int16 a_Value)
void AddByteArray(const AString &a_Name, const AString &a_Value)
void AddInt(const AString &a_Name, Int32 a_Value)
void AddString(const AString &a_Name, std::string_view a_Value)
ContiguousByteBuffer m_Result
void BeginList(const AString &a_Name, eTagType a_ChildrenType)
void AddFloat(const AString &a_Name, float a_Value)
void AddIntArray(const AString &a_Name, const Int32 *a_Value, size_t a_NumElements)
cFastNBTWriter(const AString &a_RootTagName="")
bool IsStackTopCompound(void) const
void BeginCompound(const AString &a_Name)
static const int MAX_STACK
void WriteString(std::string_view a_Data)
ContiguousByteBufferView GetResult(void) const
void AddLong(const AString &a_Name, Int64 a_Value)
void TagCommon(const AString &a_Name, eTagType a_Type)
sParent m_Stack[MAX_STACK]