minetestmapper/include/BlockDecoder.h
sfan5 2979dc5b6b Fix compatibility of MapBlock decoding
also properly drop support for version < 22, which hasn't worked in years
2020-05-06 22:32:27 +02:00

28 lines
514 B
C++

#ifndef BLOCKDECODER_H
#define BLOCKDECODER_H
#include <unordered_map>
#include "types.h"
class BlockDecoder {
public:
BlockDecoder();
void reset();
void decode(const ustring &data);
bool isEmpty() const;
std::string getNode(u8 x, u8 y, u8 z) const; // returns "" for air, ignore and invalid nodes
private:
typedef std::unordered_map<int, std::string> NameMap;
NameMap m_nameMap;
int m_blockAirId;
int m_blockIgnoreId;
u8 m_version, m_contentWidth;
ustring m_mapData;
};
#endif // BLOCKDECODER_H