2023-01-27 10:45:18 -05:00
|
|
|
/*
|
|
|
|
* Created by Brett on 27/01/23.
|
|
|
|
* Licensed under GNU General Public License V3.0
|
|
|
|
* See LICENSE file for license detail
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLT_TESTS_NBT_H
|
|
|
|
#define BLT_TESTS_NBT_H
|
|
|
|
|
2023-07-24 03:40:09 -04:00
|
|
|
#include <utility>
|
|
|
|
|
2023-01-29 15:24:33 -05:00
|
|
|
#include "blt/std/format.h"
|
2023-01-29 22:27:48 -05:00
|
|
|
#include "blt/std/filesystem.h"
|
2023-01-29 15:24:33 -05:00
|
|
|
|
|
|
|
namespace blt::nbt {
|
|
|
|
void writeUTF8String(std::fstream& stream, const std::string& str);
|
|
|
|
|
|
|
|
std::string readUTF8String(std::fstream& stream);
|
|
|
|
|
2023-07-24 03:30:23 -04:00
|
|
|
enum class nbt_tag : char {
|
|
|
|
END = 0,
|
|
|
|
BYTE = 1,
|
|
|
|
SHORT = 2,
|
|
|
|
INT = 3,
|
|
|
|
LONG = 4,
|
|
|
|
FLOAT = 5,
|
|
|
|
DOUBLE = 6,
|
|
|
|
BYTE_ARRAY = 7,
|
|
|
|
STRING = 8,
|
|
|
|
LIST = 9,
|
|
|
|
COMPOUND = 10,
|
|
|
|
INT_ARRAY = 11,
|
|
|
|
LONG_ARRAY = 12
|
2023-01-29 23:36:42 -05:00
|
|
|
};
|
|
|
|
|
2023-07-24 13:00:35 -04:00
|
|
|
void writeName(std::fstream& out, const std::string& name);
|
|
|
|
std::string readName(std::fstream& in);
|
2023-07-24 03:40:09 -04:00
|
|
|
|
2023-01-29 15:24:33 -05:00
|
|
|
class NBTDecoder {
|
|
|
|
private:
|
2023-01-29 22:27:48 -05:00
|
|
|
blt::fs::block_reader* m_reader;
|
2023-01-29 15:24:33 -05:00
|
|
|
public:
|
2023-01-29 22:27:48 -05:00
|
|
|
explicit NBTDecoder(blt::fs::block_reader* reader): m_reader(reader) {}
|
2023-01-29 15:24:33 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the entire NBT file when the read() function is called.
|
|
|
|
*/
|
|
|
|
class NBTReader {
|
|
|
|
private:
|
|
|
|
std::string m_file;
|
|
|
|
public:
|
|
|
|
explicit NBTReader(std::string file): m_file(std::move(file)) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2023-01-27 10:45:18 -05:00
|
|
|
|
|
|
|
#endif //BLT_TESTS_NBT_H
|