mirror of
https://github.com/minetest/minetest.git
synced 2024-11-30 11:33:44 +01:00
Schematic: Properly deal with before/after node resolving and document (#11011)
This fixes an out-of-bounds index access when the node resolver was already applied to the schematic (i.e. biome decoration). Also improves the handling of the two cases: prior node resolving (m_nodenames), and after node resolving (manual lookup)
This commit is contained in:
parent
a8cc3bdb08
commit
05719913ac
@ -76,10 +76,6 @@ void SchematicManager::clear()
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
Schematic::Schematic()
|
|
||||||
= default;
|
|
||||||
|
|
||||||
|
|
||||||
Schematic::~Schematic()
|
Schematic::~Schematic()
|
||||||
{
|
{
|
||||||
delete []schemdata;
|
delete []schemdata;
|
||||||
@ -108,13 +104,19 @@ ObjDef *Schematic::clone() const
|
|||||||
|
|
||||||
void Schematic::resolveNodeNames()
|
void Schematic::resolveNodeNames()
|
||||||
{
|
{
|
||||||
|
c_nodes.clear();
|
||||||
getIdsFromNrBacklog(&c_nodes, true, CONTENT_AIR);
|
getIdsFromNrBacklog(&c_nodes, true, CONTENT_AIR);
|
||||||
|
|
||||||
size_t bufsize = size.X * size.Y * size.Z;
|
size_t bufsize = size.X * size.Y * size.Z;
|
||||||
for (size_t i = 0; i != bufsize; i++) {
|
for (size_t i = 0; i != bufsize; i++) {
|
||||||
content_t c_original = schemdata[i].getContent();
|
content_t c_original = schemdata[i].getContent();
|
||||||
content_t c_new = c_nodes[c_original];
|
if (c_original >= c_nodes.size()) {
|
||||||
schemdata[i].setContent(c_new);
|
errorstream << "Corrupt schematic. name=\"" << name
|
||||||
|
<< "\" at index " << i << std::endl;
|
||||||
|
c_original = 0;
|
||||||
|
}
|
||||||
|
// Unfold condensed ID layout to content_t
|
||||||
|
schemdata[i].setContent(c_nodes[c_original]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -279,8 +281,7 @@ void Schematic::placeOnMap(ServerMap *map, v3s16 p, u32 flags,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool Schematic::deserializeFromMts(std::istream *is,
|
bool Schematic::deserializeFromMts(std::istream *is)
|
||||||
std::vector<std::string> *names)
|
|
||||||
{
|
{
|
||||||
std::istream &ss = *is;
|
std::istream &ss = *is;
|
||||||
content_t cignore = CONTENT_IGNORE;
|
content_t cignore = CONTENT_IGNORE;
|
||||||
@ -312,6 +313,8 @@ bool Schematic::deserializeFromMts(std::istream *is,
|
|||||||
slice_probs[y] = (version >= 3) ? readU8(ss) : MTSCHEM_PROB_ALWAYS_OLD;
|
slice_probs[y] = (version >= 3) ? readU8(ss) : MTSCHEM_PROB_ALWAYS_OLD;
|
||||||
|
|
||||||
//// Read node names
|
//// Read node names
|
||||||
|
NodeResolver::reset();
|
||||||
|
|
||||||
u16 nidmapcount = readU16(ss);
|
u16 nidmapcount = readU16(ss);
|
||||||
for (int i = 0; i != nidmapcount; i++) {
|
for (int i = 0; i != nidmapcount; i++) {
|
||||||
std::string name = deSerializeString16(ss);
|
std::string name = deSerializeString16(ss);
|
||||||
@ -324,9 +327,12 @@ bool Schematic::deserializeFromMts(std::istream *is,
|
|||||||
have_cignore = true;
|
have_cignore = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
names->push_back(name);
|
m_nodenames.push_back(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prepare for node resolver
|
||||||
|
m_nnlistsizes.push_back(m_nodenames.size());
|
||||||
|
|
||||||
//// Read node data
|
//// Read node data
|
||||||
size_t nodecount = size.X * size.Y * size.Z;
|
size_t nodecount = size.X * size.Y * size.Z;
|
||||||
|
|
||||||
@ -358,9 +364,11 @@ bool Schematic::deserializeFromMts(std::istream *is,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool Schematic::serializeToMts(std::ostream *os,
|
bool Schematic::serializeToMts(std::ostream *os) const
|
||||||
const std::vector<std::string> &names) const
|
|
||||||
{
|
{
|
||||||
|
// Nodes must not be resolved (-> condensed)
|
||||||
|
// checking here is not possible because "schemdata" might be temporary.
|
||||||
|
|
||||||
std::ostream &ss = *os;
|
std::ostream &ss = *os;
|
||||||
|
|
||||||
writeU32(ss, MTSCHEM_FILE_SIGNATURE); // signature
|
writeU32(ss, MTSCHEM_FILE_SIGNATURE); // signature
|
||||||
@ -370,9 +378,10 @@ bool Schematic::serializeToMts(std::ostream *os,
|
|||||||
for (int y = 0; y != size.Y; y++) // Y slice probabilities
|
for (int y = 0; y != size.Y; y++) // Y slice probabilities
|
||||||
writeU8(ss, slice_probs[y]);
|
writeU8(ss, slice_probs[y]);
|
||||||
|
|
||||||
writeU16(ss, names.size()); // name count
|
writeU16(ss, m_nodenames.size()); // name count
|
||||||
for (size_t i = 0; i != names.size(); i++)
|
for (size_t i = 0; i != m_nodenames.size(); i++) {
|
||||||
ss << serializeString16(names[i]); // node names
|
ss << serializeString16(m_nodenames[i]); // node names
|
||||||
|
}
|
||||||
|
|
||||||
// compressed bulk node data
|
// compressed bulk node data
|
||||||
MapNode::serializeBulk(ss, SER_FMT_VER_HIGHEST_WRITE,
|
MapNode::serializeBulk(ss, SER_FMT_VER_HIGHEST_WRITE,
|
||||||
@ -382,8 +391,7 @@ bool Schematic::serializeToMts(std::ostream *os,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool Schematic::serializeToLua(std::ostream *os,
|
bool Schematic::serializeToLua(std::ostream *os, bool use_comments,
|
||||||
const std::vector<std::string> &names, bool use_comments,
|
|
||||||
u32 indent_spaces) const
|
u32 indent_spaces) const
|
||||||
{
|
{
|
||||||
std::ostream &ss = *os;
|
std::ostream &ss = *os;
|
||||||
@ -392,6 +400,9 @@ bool Schematic::serializeToLua(std::ostream *os,
|
|||||||
if (indent_spaces > 0)
|
if (indent_spaces > 0)
|
||||||
indent.assign(indent_spaces, ' ');
|
indent.assign(indent_spaces, ' ');
|
||||||
|
|
||||||
|
bool resolve_done = isResolveDone();
|
||||||
|
FATAL_ERROR_IF(resolve_done && !m_ndef, "serializeToLua: NodeDefManager is required");
|
||||||
|
|
||||||
//// Write header
|
//// Write header
|
||||||
{
|
{
|
||||||
ss << "schematic = {" << std::endl;
|
ss << "schematic = {" << std::endl;
|
||||||
@ -436,9 +447,22 @@ bool Schematic::serializeToLua(std::ostream *os,
|
|||||||
u8 probability = schemdata[i].param1 & MTSCHEM_PROB_MASK;
|
u8 probability = schemdata[i].param1 & MTSCHEM_PROB_MASK;
|
||||||
bool force_place = schemdata[i].param1 & MTSCHEM_FORCE_PLACE;
|
bool force_place = schemdata[i].param1 & MTSCHEM_FORCE_PLACE;
|
||||||
|
|
||||||
ss << indent << indent << "{"
|
// After node resolving: real content_t, lookup using NodeDefManager
|
||||||
<< "name=\"" << names[schemdata[i].getContent()]
|
// Prior node resolving: condensed ID, lookup using m_nodenames
|
||||||
<< "\", prob=" << (u16)probability * 2
|
content_t c = schemdata[i].getContent();
|
||||||
|
|
||||||
|
ss << indent << indent << "{" << "name=\"";
|
||||||
|
|
||||||
|
if (!resolve_done) {
|
||||||
|
// Prior node resolving (eg. direct schematic load)
|
||||||
|
FATAL_ERROR_IF(c >= m_nodenames.size(), "Invalid node list");
|
||||||
|
ss << m_nodenames[c];
|
||||||
|
} else {
|
||||||
|
// After node resolving (eg. biome decoration)
|
||||||
|
ss << m_ndef->get(c).name;
|
||||||
|
}
|
||||||
|
|
||||||
|
ss << "\", prob=" << (u16)probability * 2
|
||||||
<< ", param2=" << (u16)schemdata[i].param2;
|
<< ", param2=" << (u16)schemdata[i].param2;
|
||||||
|
|
||||||
if (force_place)
|
if (force_place)
|
||||||
@ -467,25 +491,24 @@ bool Schematic::loadSchematicFromFile(const std::string &filename,
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t origsize = m_nodenames.size();
|
if (!m_ndef)
|
||||||
if (!deserializeFromMts(&is, &m_nodenames))
|
m_ndef = ndef;
|
||||||
return false;
|
|
||||||
|
|
||||||
m_nnlistsizes.push_back(m_nodenames.size() - origsize);
|
if (!deserializeFromMts(&is))
|
||||||
|
return false;
|
||||||
|
|
||||||
name = filename;
|
name = filename;
|
||||||
|
|
||||||
if (replace_names) {
|
if (replace_names) {
|
||||||
for (size_t i = origsize; i < m_nodenames.size(); i++) {
|
for (std::string &node_name : m_nodenames) {
|
||||||
std::string &node_name = m_nodenames[i];
|
|
||||||
StringMap::iterator it = replace_names->find(node_name);
|
StringMap::iterator it = replace_names->find(node_name);
|
||||||
if (it != replace_names->end())
|
if (it != replace_names->end())
|
||||||
node_name = it->second;
|
node_name = it->second;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ndef)
|
if (m_ndef)
|
||||||
ndef->pendNodeResolve(this);
|
m_ndef->pendNodeResolve(this);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -494,33 +517,26 @@ bool Schematic::loadSchematicFromFile(const std::string &filename,
|
|||||||
bool Schematic::saveSchematicToFile(const std::string &filename,
|
bool Schematic::saveSchematicToFile(const std::string &filename,
|
||||||
const NodeDefManager *ndef)
|
const NodeDefManager *ndef)
|
||||||
{
|
{
|
||||||
MapNode *orig_schemdata = schemdata;
|
Schematic *schem = this;
|
||||||
std::vector<std::string> ndef_nodenames;
|
|
||||||
std::vector<std::string> *names;
|
|
||||||
|
|
||||||
if (m_resolve_done && ndef == NULL)
|
bool needs_condense = isResolveDone();
|
||||||
ndef = m_ndef;
|
|
||||||
|
|
||||||
if (ndef) {
|
if (!m_ndef)
|
||||||
names = &ndef_nodenames;
|
m_ndef = ndef;
|
||||||
|
|
||||||
u32 volume = size.X * size.Y * size.Z;
|
if (needs_condense) {
|
||||||
schemdata = new MapNode[volume];
|
if (!m_ndef)
|
||||||
for (u32 i = 0; i != volume; i++)
|
return false;
|
||||||
schemdata[i] = orig_schemdata[i];
|
|
||||||
|
|
||||||
generate_nodelist_and_update_ids(schemdata, volume, names, ndef);
|
schem = (Schematic *)this->clone();
|
||||||
} else { // otherwise, use the names we have on hand in the list
|
schem->condenseContentIds();
|
||||||
names = &m_nodenames;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ostringstream os(std::ios_base::binary);
|
std::ostringstream os(std::ios_base::binary);
|
||||||
bool status = serializeToMts(&os, *names);
|
bool status = schem->serializeToMts(&os);
|
||||||
|
|
||||||
if (ndef) {
|
if (needs_condense)
|
||||||
delete []schemdata;
|
delete schem;
|
||||||
schemdata = orig_schemdata;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!status)
|
if (!status)
|
||||||
return false;
|
return false;
|
||||||
@ -556,6 +572,10 @@ bool Schematic::getSchematicFromMap(Map *map, v3s16 p1, v3s16 p2)
|
|||||||
}
|
}
|
||||||
|
|
||||||
delete vm;
|
delete vm;
|
||||||
|
|
||||||
|
// Reset and mark as complete
|
||||||
|
NodeResolver::reset(true);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -584,26 +604,29 @@ void Schematic::applyProbabilities(v3s16 p0,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void generate_nodelist_and_update_ids(MapNode *nodes, size_t nodecount,
|
void Schematic::condenseContentIds()
|
||||||
std::vector<std::string> *usednodes, const NodeDefManager *ndef)
|
|
||||||
{
|
{
|
||||||
std::unordered_map<content_t, content_t> nodeidmap;
|
std::unordered_map<content_t, content_t> nodeidmap;
|
||||||
content_t numids = 0;
|
content_t numids = 0;
|
||||||
|
|
||||||
|
// Reset node resolve fields
|
||||||
|
NodeResolver::reset();
|
||||||
|
|
||||||
|
size_t nodecount = size.X * size.Y * size.Z;
|
||||||
for (size_t i = 0; i != nodecount; i++) {
|
for (size_t i = 0; i != nodecount; i++) {
|
||||||
content_t id;
|
content_t id;
|
||||||
content_t c = nodes[i].getContent();
|
content_t c = schemdata[i].getContent();
|
||||||
|
|
||||||
std::unordered_map<content_t, content_t>::const_iterator it = nodeidmap.find(c);
|
auto it = nodeidmap.find(c);
|
||||||
if (it == nodeidmap.end()) {
|
if (it == nodeidmap.end()) {
|
||||||
id = numids;
|
id = numids;
|
||||||
numids++;
|
numids++;
|
||||||
|
|
||||||
usednodes->push_back(ndef->get(c).name);
|
m_nodenames.push_back(m_ndef->get(c).name);
|
||||||
nodeidmap.insert(std::make_pair(c, id));
|
nodeidmap.emplace(std::make_pair(c, id));
|
||||||
} else {
|
} else {
|
||||||
id = it->second;
|
id = it->second;
|
||||||
}
|
}
|
||||||
nodes[i].setContent(id);
|
schemdata[i].setContent(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -92,7 +92,7 @@ enum SchematicFormatType {
|
|||||||
|
|
||||||
class Schematic : public ObjDef, public NodeResolver {
|
class Schematic : public ObjDef, public NodeResolver {
|
||||||
public:
|
public:
|
||||||
Schematic();
|
Schematic() = default;
|
||||||
virtual ~Schematic();
|
virtual ~Schematic();
|
||||||
|
|
||||||
ObjDef *clone() const;
|
ObjDef *clone() const;
|
||||||
@ -105,11 +105,9 @@ public:
|
|||||||
const NodeDefManager *ndef);
|
const NodeDefManager *ndef);
|
||||||
bool getSchematicFromMap(Map *map, v3s16 p1, v3s16 p2);
|
bool getSchematicFromMap(Map *map, v3s16 p1, v3s16 p2);
|
||||||
|
|
||||||
bool deserializeFromMts(std::istream *is, std::vector<std::string> *names);
|
bool deserializeFromMts(std::istream *is);
|
||||||
bool serializeToMts(std::ostream *os,
|
bool serializeToMts(std::ostream *os) const;
|
||||||
const std::vector<std::string> &names) const;
|
bool serializeToLua(std::ostream *os, bool use_comments, u32 indent_spaces) const;
|
||||||
bool serializeToLua(std::ostream *os, const std::vector<std::string> &names,
|
|
||||||
bool use_comments, u32 indent_spaces) const;
|
|
||||||
|
|
||||||
void blitToVManip(MMVManip *vm, v3s16 p, Rotation rot, bool force_place);
|
void blitToVManip(MMVManip *vm, v3s16 p, Rotation rot, bool force_place);
|
||||||
bool placeOnVManip(MMVManip *vm, v3s16 p, u32 flags, Rotation rot, bool force_place);
|
bool placeOnVManip(MMVManip *vm, v3s16 p, u32 flags, Rotation rot, bool force_place);
|
||||||
@ -124,6 +122,10 @@ public:
|
|||||||
v3s16 size;
|
v3s16 size;
|
||||||
MapNode *schemdata = nullptr;
|
MapNode *schemdata = nullptr;
|
||||||
u8 *slice_probs = nullptr;
|
u8 *slice_probs = nullptr;
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Counterpart to the node resolver: Condense content_t to a sequential "m_nodenames" list
|
||||||
|
void condenseContentIds();
|
||||||
};
|
};
|
||||||
|
|
||||||
class SchematicManager : public ObjDefManager {
|
class SchematicManager : public ObjDefManager {
|
||||||
@ -151,5 +153,3 @@ private:
|
|||||||
Server *m_server;
|
Server *m_server;
|
||||||
};
|
};
|
||||||
|
|
||||||
void generate_nodelist_and_update_ids(MapNode *nodes, size_t nodecount,
|
|
||||||
std::vector<std::string> *usednodes, const NodeDefManager *ndef);
|
|
||||||
|
@ -1675,8 +1675,7 @@ bool NodeDefManager::nodeboxConnects(MapNode from, MapNode to,
|
|||||||
|
|
||||||
NodeResolver::NodeResolver()
|
NodeResolver::NodeResolver()
|
||||||
{
|
{
|
||||||
m_nodenames.reserve(16);
|
reset();
|
||||||
m_nnlistsizes.reserve(4);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1779,3 +1778,16 @@ bool NodeResolver::getIdsFromNrBacklog(std::vector<content_t> *result_out,
|
|||||||
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NodeResolver::reset(bool resolve_done)
|
||||||
|
{
|
||||||
|
m_nodenames.clear();
|
||||||
|
m_nodenames_idx = 0;
|
||||||
|
m_nnlistsizes.clear();
|
||||||
|
m_nnlistsizes_idx = 0;
|
||||||
|
|
||||||
|
m_resolve_done = resolve_done;
|
||||||
|
|
||||||
|
m_nodenames.reserve(16);
|
||||||
|
m_nnlistsizes.reserve(4);
|
||||||
|
}
|
||||||
|
@ -44,6 +44,9 @@ class ITextureSource;
|
|||||||
class IShaderSource;
|
class IShaderSource;
|
||||||
class IGameDef;
|
class IGameDef;
|
||||||
class NodeResolver;
|
class NodeResolver;
|
||||||
|
#if BUILD_UNITTESTS
|
||||||
|
class TestSchematic;
|
||||||
|
#endif
|
||||||
|
|
||||||
enum ContentParamType
|
enum ContentParamType
|
||||||
{
|
{
|
||||||
@ -789,10 +792,13 @@ private:
|
|||||||
|
|
||||||
NodeDefManager *createNodeDefManager();
|
NodeDefManager *createNodeDefManager();
|
||||||
|
|
||||||
|
// NodeResolver: Queue for node names which are then translated
|
||||||
|
// to content_t after the NodeDefManager was initialized
|
||||||
class NodeResolver {
|
class NodeResolver {
|
||||||
public:
|
public:
|
||||||
NodeResolver();
|
NodeResolver();
|
||||||
virtual ~NodeResolver();
|
virtual ~NodeResolver();
|
||||||
|
// Callback which is run as soon NodeDefManager is ready
|
||||||
virtual void resolveNodeNames() = 0;
|
virtual void resolveNodeNames() = 0;
|
||||||
|
|
||||||
// required because this class is used as mixin for ObjDef
|
// required because this class is used as mixin for ObjDef
|
||||||
@ -804,12 +810,31 @@ public:
|
|||||||
bool getIdsFromNrBacklog(std::vector<content_t> *result_out,
|
bool getIdsFromNrBacklog(std::vector<content_t> *result_out,
|
||||||
bool all_required = false, content_t c_fallback = CONTENT_IGNORE);
|
bool all_required = false, content_t c_fallback = CONTENT_IGNORE);
|
||||||
|
|
||||||
|
inline bool isResolveDone() const { return m_resolve_done; }
|
||||||
|
void reset(bool resolve_done = false);
|
||||||
|
|
||||||
|
// Vector containing all node names in the resolve "queue"
|
||||||
|
std::vector<std::string> m_nodenames;
|
||||||
|
// Specifies the "set size" of node names which are to be processed
|
||||||
|
// this is used for getIdsFromNrBacklog
|
||||||
|
// TODO: replace or remove
|
||||||
|
std::vector<size_t> m_nnlistsizes;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
friend class NodeDefManager; // m_ndef
|
||||||
|
|
||||||
|
const NodeDefManager *m_ndef = nullptr;
|
||||||
|
// Index of the next "m_nodenames" entry to resolve
|
||||||
|
u32 m_nodenames_idx = 0;
|
||||||
|
|
||||||
|
private:
|
||||||
|
#if BUILD_UNITTESTS
|
||||||
|
// Unittest requires access to m_resolve_done
|
||||||
|
friend class TestSchematic;
|
||||||
|
#endif
|
||||||
void nodeResolveInternal();
|
void nodeResolveInternal();
|
||||||
|
|
||||||
u32 m_nodenames_idx = 0;
|
// Index of the next "m_nnlistsizes" entry to process
|
||||||
u32 m_nnlistsizes_idx = 0;
|
u32 m_nnlistsizes_idx = 0;
|
||||||
std::vector<std::string> m_nodenames;
|
|
||||||
std::vector<size_t> m_nnlistsizes;
|
|
||||||
const NodeDefManager *m_ndef = nullptr;
|
|
||||||
bool m_resolve_done = false;
|
bool m_resolve_done = false;
|
||||||
};
|
};
|
||||||
|
@ -1734,11 +1734,10 @@ int ModApiMapgen::l_serialize_schematic(lua_State *L)
|
|||||||
std::ostringstream os(std::ios_base::binary);
|
std::ostringstream os(std::ios_base::binary);
|
||||||
switch (schem_format) {
|
switch (schem_format) {
|
||||||
case SCHEM_FMT_MTS:
|
case SCHEM_FMT_MTS:
|
||||||
schem->serializeToMts(&os, schem->m_nodenames);
|
schem->serializeToMts(&os);
|
||||||
break;
|
break;
|
||||||
case SCHEM_FMT_LUA:
|
case SCHEM_FMT_LUA:
|
||||||
schem->serializeToLua(&os, schem->m_nodenames,
|
schem->serializeToLua(&os, use_comments, indent_spaces);
|
||||||
use_comments, indent_spaces);
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -56,6 +56,8 @@ void TestNodeResolver::runTests(IGameDef *gamedef)
|
|||||||
|
|
||||||
class Foobar : public NodeResolver {
|
class Foobar : public NodeResolver {
|
||||||
public:
|
public:
|
||||||
|
friend class TestNodeResolver; // m_ndef
|
||||||
|
|
||||||
void resolveNodeNames();
|
void resolveNodeNames();
|
||||||
|
|
||||||
content_t test_nr_node1;
|
content_t test_nr_node1;
|
||||||
|
@ -66,13 +66,14 @@ void TestSchematic::testMtsSerializeDeserialize(const NodeDefManager *ndef)
|
|||||||
std::stringstream ss(std::ios_base::binary |
|
std::stringstream ss(std::ios_base::binary |
|
||||||
std::ios_base::in | std::ios_base::out);
|
std::ios_base::in | std::ios_base::out);
|
||||||
|
|
||||||
std::vector<std::string> names;
|
Schematic schem;
|
||||||
|
{
|
||||||
|
std::vector<std::string> &names = schem.m_nodenames;
|
||||||
names.emplace_back("foo");
|
names.emplace_back("foo");
|
||||||
names.emplace_back("bar");
|
names.emplace_back("bar");
|
||||||
names.emplace_back("baz");
|
names.emplace_back("baz");
|
||||||
names.emplace_back("qux");
|
names.emplace_back("qux");
|
||||||
|
}
|
||||||
Schematic schem, schem2;
|
|
||||||
|
|
||||||
schem.flags = 0;
|
schem.flags = 0;
|
||||||
schem.size = size;
|
schem.size = size;
|
||||||
@ -83,18 +84,21 @@ void TestSchematic::testMtsSerializeDeserialize(const NodeDefManager *ndef)
|
|||||||
for (s16 y = 0; y != size.Y; y++)
|
for (s16 y = 0; y != size.Y; y++)
|
||||||
schem.slice_probs[y] = MTSCHEM_PROB_ALWAYS;
|
schem.slice_probs[y] = MTSCHEM_PROB_ALWAYS;
|
||||||
|
|
||||||
UASSERT(schem.serializeToMts(&ss, names));
|
UASSERT(schem.serializeToMts(&ss));
|
||||||
|
|
||||||
ss.seekg(0);
|
ss.seekg(0);
|
||||||
names.clear();
|
|
||||||
|
|
||||||
UASSERT(schem2.deserializeFromMts(&ss, &names));
|
Schematic schem2;
|
||||||
|
UASSERT(schem2.deserializeFromMts(&ss));
|
||||||
|
|
||||||
|
{
|
||||||
|
std::vector<std::string> &names = schem2.m_nodenames;
|
||||||
UASSERTEQ(size_t, names.size(), 4);
|
UASSERTEQ(size_t, names.size(), 4);
|
||||||
UASSERTEQ(std::string, names[0], "foo");
|
UASSERTEQ(std::string, names[0], "foo");
|
||||||
UASSERTEQ(std::string, names[1], "bar");
|
UASSERTEQ(std::string, names[1], "bar");
|
||||||
UASSERTEQ(std::string, names[2], "baz");
|
UASSERTEQ(std::string, names[2], "baz");
|
||||||
UASSERTEQ(std::string, names[3], "qux");
|
UASSERTEQ(std::string, names[3], "qux");
|
||||||
|
}
|
||||||
|
|
||||||
UASSERT(schem2.size == size);
|
UASSERT(schem2.size == size);
|
||||||
for (size_t i = 0; i != volume; i++)
|
for (size_t i = 0; i != volume; i++)
|
||||||
@ -120,14 +124,14 @@ void TestSchematic::testLuaTableSerialize(const NodeDefManager *ndef)
|
|||||||
for (s16 y = 0; y != size.Y; y++)
|
for (s16 y = 0; y != size.Y; y++)
|
||||||
schem.slice_probs[y] = MTSCHEM_PROB_ALWAYS;
|
schem.slice_probs[y] = MTSCHEM_PROB_ALWAYS;
|
||||||
|
|
||||||
std::vector<std::string> names;
|
std::vector<std::string> &names = schem.m_nodenames;
|
||||||
names.emplace_back("air");
|
names.emplace_back("air");
|
||||||
names.emplace_back("default:lava_source");
|
names.emplace_back("default:lava_source");
|
||||||
names.emplace_back("default:glass");
|
names.emplace_back("default:glass");
|
||||||
|
|
||||||
std::ostringstream ss(std::ios_base::binary);
|
std::ostringstream ss(std::ios_base::binary);
|
||||||
|
|
||||||
UASSERT(schem.serializeToLua(&ss, names, false, 0));
|
UASSERT(schem.serializeToLua(&ss, false, 0));
|
||||||
UASSERTEQ(std::string, ss.str(), expected_lua_output);
|
UASSERTEQ(std::string, ss.str(), expected_lua_output);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -159,6 +163,8 @@ void TestSchematic::testFileSerializeDeserialize(const NodeDefManager *ndef)
|
|||||||
schem1.slice_probs[0] = 80;
|
schem1.slice_probs[0] = 80;
|
||||||
schem1.slice_probs[1] = 160;
|
schem1.slice_probs[1] = 160;
|
||||||
schem1.slice_probs[2] = 240;
|
schem1.slice_probs[2] = 240;
|
||||||
|
// Node resolving happened manually.
|
||||||
|
schem1.m_resolve_done = true;
|
||||||
|
|
||||||
for (size_t i = 0; i != volume; i++) {
|
for (size_t i = 0; i != volume; i++) {
|
||||||
content_t c = content_map[test_schem2_data[i]];
|
content_t c = content_map[test_schem2_data[i]];
|
||||||
|
Loading…
Reference in New Issue
Block a user