Skip to content

Commit 656575b

Browse files
committedMay 7, 2015
NodeResolver: Remove NodeResolveMethod
This simplifies NodeResolver logic and makes some interfaces cleaner.
1 parent d720fd5 commit 656575b

9 files changed

+103
-169
lines changed
 

‎doc/lua_api.txt

-9
Original file line numberDiff line numberDiff line change
@@ -2180,15 +2180,6 @@ These functions return the leftover itemstack.
21802180
* `options` is a table containing the following optional parameters:
21812181
* If `use_comments` is true and `format` is "lua", the Lua code generated will have (X, Z)
21822182
* position comments for every X row generated in the schematic data for easier reading.
2183-
* If `register_after_load` is true, then `schematic`, if not yet loaded, will be registered
2184-
* after loading and persist in memory.
2185-
* node_resolve_method can be one of either "none", "direct", or "deferred" (default: "none")
2186-
* This sets the way method by with node names are mapped to their content IDs, if loaded:
2187-
* "none" performs no node resolution and preserves all node names from the schematic definition
2188-
* "direct" performs an immediate lookup of content ID, given all the nodes that have been
2189-
* registered up to this point in script execution
2190-
* "deferred" pends node resolution until after the script registration phase has ended
2191-
* In practice, it is recommended to use "none" in nearly all use cases.
21922183

21932184
### Misc.
21942185
* `minetest.get_connected_players()`: returns list of `ObjectRefs`

‎src/mg_biome.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ BiomeManager::BiomeManager(IGameDef *gamedef) :
5757
b->m_nodenames.push_back("mapgen_water_source");
5858
b->m_nodenames.push_back("mapgen_river_water_source");
5959
b->m_nodenames.push_back("air");
60-
m_ndef->pendNodeResolve(b, NODE_RESOLVE_DEFERRED);
60+
m_ndef->pendNodeResolve(b);
6161

6262
add(b);
6363
}

‎src/mg_decoration.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ size_t DecoSchematic::generate(MMVManip *vm, PseudoRandom *pr, v3s16 p)
340340

341341
bool force_placement = (flags & DECO_FORCE_PLACEMENT);
342342

343-
schematic->blitToVManip(p, vm, rot, force_placement, m_ndef);
343+
schematic->blitToVManip(p, vm, rot, force_placement);
344344

345345
return 1;
346346
}

‎src/mg_schematic.cpp

+54-27
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,11 @@ void Schematic::resolveNodeNames()
9494
}
9595

9696

97-
void Schematic::blitToVManip(v3s16 p, MMVManip *vm, Rotation rot,
98-
bool force_placement, INodeDefManager *ndef)
97+
void Schematic::blitToVManip(v3s16 p, MMVManip *vm,
98+
Rotation rot, bool force_placement)
9999
{
100+
sanity_check(m_ndef != NULL);
101+
100102
int xstride = 1;
101103
int ystride = size.X;
102104
int zstride = size.X * size.Y;
@@ -163,18 +165,20 @@ void Schematic::blitToVManip(v3s16 p, MMVManip *vm, Rotation rot,
163165
vm->m_data[vi].param1 = 0;
164166

165167
if (rot)
166-
vm->m_data[vi].rotateAlongYAxis(ndef, rot);
168+
vm->m_data[vi].rotateAlongYAxis(m_ndef, rot);
167169
}
168170
}
169171
y_map++;
170172
}
171173
}
172174

173175

174-
void Schematic::placeStructure(Map *map, v3s16 p, u32 flags, Rotation rot,
175-
bool force_placement, INodeDefManager *ndef)
176+
void Schematic::placeStructure(Map *map, v3s16 p, u32 flags,
177+
Rotation rot, bool force_placement)
176178
{
177179
assert(schemdata != NULL); // Pre-condition
180+
sanity_check(m_ndef != NULL);
181+
178182
MMVManip *vm = new MMVManip(map);
179183

180184
if (rot == ROTATE_RAND)
@@ -194,7 +198,7 @@ void Schematic::placeStructure(Map *map, v3s16 p, u32 flags, Rotation rot,
194198
v3s16 bp2 = getNodeBlockPos(p + s - v3s16(1,1,1));
195199
vm->initialEmerge(bp1, bp2);
196200

197-
blitToVManip(p, vm, rot, force_placement, ndef);
201+
blitToVManip(p, vm, rot, force_placement);
198202

199203
std::map<v3s16, MapBlock *> lighting_modified_blocks;
200204
std::map<v3s16, MapBlock *> modified_blocks;
@@ -215,7 +219,8 @@ void Schematic::placeStructure(Map *map, v3s16 p, u32 flags, Rotation rot,
215219
}
216220

217221

218-
bool Schematic::deserializeFromMts(std::istream *is, std::vector<std::string> *names)
222+
bool Schematic::deserializeFromMts(std::istream *is,
223+
std::vector<std::string> *names)
219224
{
220225
std::istream &ss = *is;
221226
content_t cignore = CONTENT_IGNORE;
@@ -279,7 +284,8 @@ bool Schematic::deserializeFromMts(std::istream *is, std::vector<std::string> *n
279284
}
280285

281286

282-
bool Schematic::serializeToMts(std::ostream *os)
287+
bool Schematic::serializeToMts(std::ostream *os,
288+
const std::vector<std::string> &names)
283289
{
284290
std::ostream &ss = *os;
285291

@@ -290,24 +296,20 @@ bool Schematic::serializeToMts(std::ostream *os)
290296
for (int y = 0; y != size.Y; y++) // Y slice probabilities
291297
writeU8(ss, slice_probs[y]);
292298

293-
std::vector<content_t> usednodes;
294-
int nodecount = size.X * size.Y * size.Z;
295-
build_nnlist_and_update_ids(schemdata, nodecount, &usednodes);
296-
297-
u16 numids = usednodes.size();
298-
writeU16(ss, numids); // name count
299-
for (int i = 0; i != numids; i++)
300-
ss << serializeString(getNodeName(usednodes[i])); // node names
299+
writeU16(ss, names.size()); // name count
300+
for (size_t i = 0; i != names.size(); i++)
301+
ss << serializeString(names[i]); // node names
301302

302303
// compressed bulk node data
303304
MapNode::serializeBulk(ss, SER_FMT_VER_HIGHEST_WRITE,
304-
schemdata, nodecount, 2, 2, true);
305+
schemdata, size.X * size.Y * size.Z, 2, 2, true);
305306

306307
return true;
307308
}
308309

309310

310-
bool Schematic::serializeToLua(std::ostream *os, bool use_comments)
311+
bool Schematic::serializeToLua(std::ostream *os,
312+
const std::vector<std::string> &names, bool use_comments)
311313
{
312314
std::ostream &ss = *os;
313315

@@ -350,7 +352,7 @@ bool Schematic::serializeToLua(std::ostream *os, bool use_comments)
350352

351353
for (u16 x = 0; x != size.X; x++, i++) {
352354
ss << "\t\t{"
353-
<< "name=\"" << getNodeName(schemdata[i].getContent())
355+
<< "name=\"" << names[schemdata[i].getContent()]
354356
<< "\", param1=" << (u16)schemdata[i].param1
355357
<< ", param2=" << (u16)schemdata[i].param2
356358
<< "}," << std::endl;
@@ -367,8 +369,7 @@ bool Schematic::serializeToLua(std::ostream *os, bool use_comments)
367369

368370

369371
bool Schematic::loadSchematicFromFile(const std::string &filename,
370-
INodeDefManager *ndef, StringMap *replace_names,
371-
NodeResolveMethod resolve_method)
372+
INodeDefManager *ndef, StringMap *replace_names)
372373
{
373374
std::ifstream is(filename.c_str(), std::ios_base::binary);
374375
if (!is.good()) {
@@ -392,16 +393,42 @@ bool Schematic::loadSchematicFromFile(const std::string &filename,
392393

393394
m_nnlistsizes.push_back(m_nodenames.size() - origsize);
394395

395-
ndef->pendNodeResolve(this, resolve_method);
396+
if (ndef)
397+
ndef->pendNodeResolve(this);
396398

397399
return true;
398400
}
399401

400402

401403
bool Schematic::saveSchematicToFile(const std::string &filename)
402404
{
405+
MapNode *orig_schemdata = schemdata;
406+
std::vector<std::string> ndef_nodenames;
407+
std::vector<std::string> *names;
408+
409+
// Only carry out the modification if we know the nodes
410+
// were resolved at this point
411+
if (m_resolve_done) {
412+
names = &ndef_nodenames;
413+
414+
u32 volume = size.X * size.Y * size.Z;
415+
schemdata = new MapNode[volume];
416+
for (u32 i = 0; i != volume; i++)
417+
schemdata[i] = orig_schemdata[i];
418+
419+
generate_nodelist_and_update_ids(schemdata, volume, names, m_ndef);
420+
} else { // otherwise, use the names we have on hand in the list
421+
names = &m_nodenames;
422+
}
423+
403424
std::ostringstream os(std::ios_base::binary);
404-
serializeToMts(&os);
425+
serializeToMts(&os, *names);
426+
427+
if (m_resolve_done) {
428+
delete []schemdata;
429+
schemdata = orig_schemdata;
430+
}
431+
405432
return fs::safeWriteToFile(filename, os.str());
406433
}
407434

@@ -461,13 +488,13 @@ void Schematic::applyProbabilities(v3s16 p0,
461488
}
462489

463490

464-
void build_nnlist_and_update_ids(MapNode *nodes, u32 nodecount,
465-
std::vector<content_t> *usednodes)
491+
void generate_nodelist_and_update_ids(MapNode *nodes, size_t nodecount,
492+
std::vector<std::string> *usednodes, INodeDefManager *ndef)
466493
{
467494
std::map<content_t, content_t> nodeidmap;
468495
content_t numids = 0;
469496

470-
for (u32 i = 0; i != nodecount; i++) {
497+
for (size_t i = 0; i != nodecount; i++) {
471498
content_t id;
472499
content_t c = nodes[i].getContent();
473500

@@ -476,7 +503,7 @@ void build_nnlist_and_update_ids(MapNode *nodes, u32 nodecount,
476503
id = numids;
477504
numids++;
478505

479-
usednodes->push_back(c);
506+
usednodes->push_back(ndef->get(c).name);
480507
nodeidmap.insert(std::make_pair(c, id));
481508
} else {
482509
id = it->second;

‎src/mg_schematic.h

+9-10
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,20 @@ class Schematic : public ObjDef, public NodeResolver {
100100
void updateContentIds();
101101

102102
void blitToVManip(v3s16 p, MMVManip *vm,
103-
Rotation rot, bool force_placement, INodeDefManager *ndef);
103+
Rotation rot, bool force_placement);
104104

105105
bool loadSchematicFromFile(const std::string &filename, INodeDefManager *ndef,
106-
StringMap *replace_names, NodeResolveMethod resolve_method);
106+
StringMap *replace_names);
107107
bool saveSchematicToFile(const std::string &filename);
108108
bool getSchematicFromMap(Map *map, v3s16 p1, v3s16 p2);
109109

110-
bool deserializeFromMts(std::istream *is, std::vector<std::string> *names_out);
111-
bool serializeToMts(std::ostream *os);
112-
bool serializeToLua(std::ostream *os, bool use_comments);
113-
110+
bool deserializeFromMts(std::istream *is, std::vector<std::string> *names);
111+
bool serializeToMts(std::ostream *os, const std::vector<std::string> &names);
112+
bool serializeToLua(std::ostream *os, const std::vector<std::string> &names,
113+
bool use_comments);
114114

115115
void placeStructure(Map *map, v3s16 p, u32 flags,
116-
Rotation rot, bool force_placement, INodeDefManager *nef);
116+
Rotation rot, bool force_placement);
117117
void applyProbabilities(v3s16 p0,
118118
std::vector<std::pair<v3s16, u8> > *plist,
119119
std::vector<std::pair<s16, u8> > *splist);
@@ -140,8 +140,7 @@ class SchematicManager : public ObjDefManager {
140140
IGameDef *m_gamedef;
141141
};
142142

143-
void build_nnlist_and_update_ids(MapNode *nodes, u32 nodecount,
144-
std::vector<content_t> *usednodes);
145-
143+
void generate_nodelist_and_update_ids(MapNode *nodes, size_t nodecount,
144+
std::vector<std::string> *usednodes, INodeDefManager *ndef);
146145

147146
#endif

‎src/nodedef.cpp

+5-28
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ class CNodeDefManager: public IWritableNodeDefManager {
406406
inline virtual bool getNodeRegistrationStatus() const;
407407
inline virtual void setNodeRegistrationStatus(bool completed);
408408

409-
virtual void pendNodeResolve(NodeResolver *nr, NodeResolveMethod how);
409+
virtual void pendNodeResolve(NodeResolver *nr);
410410
virtual bool cancelNodeResolveCallback(NodeResolver *nr);
411411
virtual void runNodeResolveCallbacks();
412412
virtual void resetNodeResolveState();
@@ -1294,23 +1294,13 @@ inline void CNodeDefManager::setNodeRegistrationStatus(bool completed)
12941294
}
12951295

12961296

1297-
void CNodeDefManager::pendNodeResolve(NodeResolver *nr, NodeResolveMethod how)
1297+
void CNodeDefManager::pendNodeResolve(NodeResolver *nr)
12981298
{
12991299
nr->m_ndef = this;
1300-
1301-
switch (how) {
1302-
case NODE_RESOLVE_NONE:
1303-
break;
1304-
case NODE_RESOLVE_DIRECT:
1300+
if (m_node_registration_complete)
13051301
nr->nodeResolveInternal();
1306-
break;
1307-
case NODE_RESOLVE_DEFERRED:
1308-
if (m_node_registration_complete)
1309-
nr->nodeResolveInternal();
1310-
else
1311-
m_pending_resolve_callbacks.push_back(nr);
1312-
break;
1313-
}
1302+
else
1303+
m_pending_resolve_callbacks.push_back(nr);
13141304
}
13151305

13161306

@@ -1385,19 +1375,6 @@ void NodeResolver::nodeResolveInternal()
13851375
}
13861376

13871377

1388-
const std::string &NodeResolver::getNodeName(content_t c) const
1389-
{
1390-
if (c < m_nodenames.size())
1391-
return m_nodenames[c];
1392-
1393-
if (m_ndef)
1394-
return m_ndef->get(c).name;
1395-
1396-
static const std::string unknown_str("unknown");
1397-
return unknown_str;
1398-
}
1399-
1400-
14011378
bool NodeResolver::getIdFromNrBacklog(content_t *result_out,
14021379
const std::string &node_alt, content_t c_fallback)
14031380
{

‎src/nodedef.h

+2-9
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,6 @@ struct ContentFeatures
282282
}
283283
};
284284

285-
enum NodeResolveMethod {
286-
NODE_RESOLVE_NONE,
287-
NODE_RESOLVE_DIRECT,
288-
NODE_RESOLVE_DEFERRED,
289-
};
290-
291285
class INodeDefManager {
292286
public:
293287
INodeDefManager(){}
@@ -306,7 +300,7 @@ class INodeDefManager {
306300

307301
virtual bool getNodeRegistrationStatus() const=0;
308302

309-
virtual void pendNodeResolve(NodeResolver *nr, NodeResolveMethod how)=0;
303+
virtual void pendNodeResolve(NodeResolver *nr)=0;
310304
virtual bool cancelNodeResolveCallback(NodeResolver *nr)=0;
311305
};
312306

@@ -353,7 +347,7 @@ class IWritableNodeDefManager : public INodeDefManager {
353347
virtual bool getNodeRegistrationStatus() const=0;
354348
virtual void setNodeRegistrationStatus(bool completed)=0;
355349

356-
virtual void pendNodeResolve(NodeResolver *nr, NodeResolveMethod how)=0;
350+
virtual void pendNodeResolve(NodeResolver *nr)=0;
357351
virtual bool cancelNodeResolveCallback(NodeResolver *nr)=0;
358352
virtual void runNodeResolveCallbacks()=0;
359353
virtual void resetNodeResolveState()=0;
@@ -371,7 +365,6 @@ class NodeResolver {
371365
const std::string &node_alt, content_t c_fallback);
372366
bool getIdsFromNrBacklog(std::vector<content_t> *result_out,
373367
bool all_required=false, content_t c_fallback=CONTENT_IGNORE);
374-
const std::string &getNodeName(content_t c) const;
375368

376369
void nodeResolveInternal();
377370

‎src/script/lua_api/l_mapgen.cpp

+28-41
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,6 @@ struct EnumString ModApiMapgen::es_SchematicFormatType[] =
9292
{0, NULL},
9393
};
9494

95-
struct EnumString ModApiMapgen::es_NodeResolveMethod[] =
96-
{
97-
{NODE_RESOLVE_NONE, "none"},
98-
{NODE_RESOLVE_DIRECT, "direct"},
99-
{NODE_RESOLVE_DEFERRED, "deferred"},
100-
{0, NULL},
101-
};
102-
10395
ObjDef *get_objdef(lua_State *L, int index, ObjDefManager *objmgr);
10496

10597
Biome *get_or_load_biome(lua_State *L, int index,
@@ -109,14 +101,11 @@ size_t get_biome_list(lua_State *L, int index,
109101
BiomeManager *biomemgr, std::set<u8> *biome_id_list);
110102

111103
Schematic *get_or_load_schematic(lua_State *L, int index,
112-
SchematicManager *schemmgr, StringMap *replace_names,
113-
bool register_on_load=true,
114-
NodeResolveMethod resolve_method=NODE_RESOLVE_DEFERRED);
104+
SchematicManager *schemmgr, StringMap *replace_names);
115105
Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
116-
StringMap *replace_names, NodeResolveMethod resolve_method);
106+
StringMap *replace_names);
117107
Schematic *load_schematic_from_def(lua_State *L, int index,
118-
INodeDefManager *ndef, StringMap *replace_names,
119-
NodeResolveMethod resolve_method);
108+
INodeDefManager *ndef, StringMap *replace_names);
120109
bool read_schematic_def(lua_State *L, int index,
121110
Schematic *schem, std::vector<std::string> *names);
122111

@@ -145,9 +134,7 @@ ObjDef *get_objdef(lua_State *L, int index, ObjDefManager *objmgr)
145134
///////////////////////////////////////////////////////////////////////////////
146135

147136
Schematic *get_or_load_schematic(lua_State *L, int index,
148-
SchematicManager *schemmgr, StringMap *replace_names,
149-
bool register_on_load,
150-
NodeResolveMethod resolve_method)
137+
SchematicManager *schemmgr, StringMap *replace_names)
151138
{
152139
if (index < 0)
153140
index = lua_gettop(L) + 1 + index;
@@ -157,13 +144,10 @@ Schematic *get_or_load_schematic(lua_State *L, int index,
157144
return schem;
158145

159146
schem = load_schematic(L, index, schemmgr->getNodeDef(),
160-
replace_names, resolve_method);
147+
replace_names);
161148
if (!schem)
162149
return NULL;
163150

164-
if (!register_on_load)
165-
return schem;
166-
167151
if (schemmgr->add(schem) == OBJDEF_INVALID_HANDLE) {
168152
delete schem;
169153
return NULL;
@@ -174,7 +158,7 @@ Schematic *get_or_load_schematic(lua_State *L, int index,
174158

175159

176160
Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
177-
StringMap *replace_names, NodeResolveMethod resolve_method)
161+
StringMap *replace_names)
178162
{
179163
if (index < 0)
180164
index = lua_gettop(L) + 1 + index;
@@ -183,7 +167,7 @@ Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
183167

184168
if (lua_istable(L, index)) {
185169
schem = load_schematic_from_def(L, index, ndef,
186-
replace_names, resolve_method);
170+
replace_names);
187171
if (!schem) {
188172
delete schem;
189173
return NULL;
@@ -198,7 +182,7 @@ Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
198182
filepath = ModApiBase::getCurrentModPath(L) + DIR_DELIM + filepath;
199183

200184
if (!schem->loadSchematicFromFile(filepath, ndef,
201-
replace_names, resolve_method)) {
185+
replace_names)) {
202186
delete schem;
203187
return NULL;
204188
}
@@ -208,8 +192,8 @@ Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
208192
}
209193

210194

211-
Schematic *load_schematic_from_def(lua_State *L, int index, INodeDefManager *ndef,
212-
StringMap *replace_names, NodeResolveMethod resolve_method)
195+
Schematic *load_schematic_from_def(lua_State *L, int index,
196+
INodeDefManager *ndef, StringMap *replace_names)
213197
{
214198
Schematic *schem = SchematicManager::create(SCHEMATIC_NORMAL);
215199

@@ -230,7 +214,7 @@ Schematic *load_schematic_from_def(lua_State *L, int index, INodeDefManager *nde
230214
}
231215
}
232216

233-
ndef->pendNodeResolve(schem, resolve_method);
217+
ndef->pendNodeResolve(schem);
234218

235219
return schem;
236220
}
@@ -406,7 +390,7 @@ Biome *read_biome_def(lua_State *L, int index, INodeDefManager *ndef)
406390
nn.push_back(getstringfield_default(L, index, "node_water", ""));
407391
nn.push_back(getstringfield_default(L, index, "node_river_water", ""));
408392
nn.push_back(getstringfield_default(L, index, "node_dust", ""));
409-
ndef->pendNodeResolve(b, NODE_RESOLVE_DEFERRED);
393+
ndef->pendNodeResolve(b);
410394

411395
return b;
412396
}
@@ -770,7 +754,7 @@ int ModApiMapgen::l_register_decoration(lua_State *L)
770754
return 0;
771755
}
772756

773-
ndef->pendNodeResolve(deco, NODE_RESOLVE_DEFERRED);
757+
ndef->pendNodeResolve(deco);
774758

775759
ObjDefHandle handle = decomgr->add(deco);
776760
if (handle == OBJDEF_INVALID_HANDLE) {
@@ -928,7 +912,7 @@ int ModApiMapgen::l_register_ore(lua_State *L)
928912
size_t nnames = getstringlistfield(L, index, "wherein", &ore->m_nodenames);
929913
ore->m_nnlistsizes.push_back(nnames);
930914

931-
ndef->pendNodeResolve(ore, NODE_RESOLVE_DEFERRED);
915+
ndef->pendNodeResolve(ore);
932916

933917
lua_pushinteger(L, handle);
934918
return 1;
@@ -945,7 +929,7 @@ int ModApiMapgen::l_register_schematic(lua_State *L)
945929
read_schematic_replacements(L, 2, &replace_names);
946930

947931
Schematic *schem = load_schematic(L, 1, schemmgr->getNodeDef(),
948-
&replace_names, NODE_RESOLVE_DEFERRED);
932+
&replace_names);
949933
if (!schem)
950934
return 0;
951935

@@ -1138,8 +1122,7 @@ int ModApiMapgen::l_place_schematic(lua_State *L)
11381122
return 0;
11391123
}
11401124

1141-
schem->placeStructure(map, p, 0, (Rotation)rot, force_placement,
1142-
schemmgr->getNodeDef());
1125+
schem->placeStructure(map, p, 0, (Rotation)rot, force_placement);
11431126

11441127
lua_pushboolean(L, true);
11451128
return 1;
@@ -1151,14 +1134,15 @@ int ModApiMapgen::l_serialize_schematic(lua_State *L)
11511134
SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
11521135

11531136
//// Read options
1154-
NodeResolveMethod resolve_method = (NodeResolveMethod)getenumfield(L, 3,
1155-
"node_resolve_method", es_NodeResolveMethod, NODE_RESOLVE_NONE);
1156-
bool register_on_load = getboolfield_default(L, 3, "register_on_load", false);
11571137
bool use_comments = getboolfield_default(L, 3, "use_lua_comments", false);
11581138

1159-
//// Read schematic
1160-
Schematic *schem = get_or_load_schematic(L, 1, schemmgr, NULL,
1161-
register_on_load, resolve_method);
1139+
//// Get schematic
1140+
bool was_loaded = false;
1141+
Schematic *schem = (Schematic *)get_objdef(L, 1, schemmgr);
1142+
if (!schem) {
1143+
schem = load_schematic(L, 1, NULL, NULL);
1144+
was_loaded = true;
1145+
}
11621146
if (!schem) {
11631147
errorstream << "serialize_schematic: failed to get schematic" << std::endl;
11641148
return 0;
@@ -1174,15 +1158,18 @@ int ModApiMapgen::l_serialize_schematic(lua_State *L)
11741158
std::ostringstream os(std::ios_base::binary);
11751159
switch (schem_format) {
11761160
case SCHEM_FMT_MTS:
1177-
schem->serializeToMts(&os);
1161+
schem->serializeToMts(&os, schem->m_nodenames);
11781162
break;
11791163
case SCHEM_FMT_LUA:
1180-
schem->serializeToLua(&os, use_comments);
1164+
schem->serializeToLua(&os, schem->m_nodenames, use_comments);
11811165
break;
11821166
default:
11831167
return 0;
11841168
}
11851169

1170+
if (was_loaded)
1171+
delete schem;
1172+
11861173
std::string ser = os.str();
11871174
lua_pushlstring(L, ser.c_str(), ser.length());
11881175
return 1;

‎src/unittest/test_noderesolver.cpp

+3-43
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,6 @@ void TestNodeResolver::runTests(IGameDef *gamedef)
5050

5151
ndef->resetNodeResolveState();
5252
TEST(testPendingResolveCancellation, ndef);
53-
54-
ndef->resetNodeResolveState();
55-
TEST(testDirectResolveMethod, ndef);
56-
57-
ndef->resetNodeResolveState();
58-
TEST(testNoneResolveMethod, ndef);
5953
}
6054

6155
class Foobar : public NodeResolver {
@@ -136,7 +130,7 @@ void TestNodeResolver::testNodeResolving(IWritableNodeDefManager *ndef)
136130
foobar.m_nodenames.push_back("default:desert_stone");
137131
foobar.m_nodenames.push_back("default:shnitzle");
138132

139-
ndef->pendNodeResolve(&foobar, NODE_RESOLVE_DEFERRED);
133+
ndef->pendNodeResolve(&foobar);
140134
UASSERT(foobar.m_ndef == ndef);
141135

142136
ndef->setNodeRegistrationStatus(true);
@@ -193,14 +187,14 @@ void TestNodeResolver::testPendingResolveCancellation(IWritableNodeDefManager *n
193187
foobaz1.test_content2 = 5678;
194188
foobaz1.m_nodenames.push_back("default:dirt_with_grass");
195189
foobaz1.m_nodenames.push_back("default:abloobloobloo");
196-
ndef->pendNodeResolve(&foobaz1, NODE_RESOLVE_DEFERRED);
190+
ndef->pendNodeResolve(&foobaz1);
197191

198192
Foobaz foobaz2;
199193
foobaz2.test_content1 = 1234;
200194
foobaz2.test_content2 = 5678;
201195
foobaz2.m_nodenames.push_back("default:dirt_with_grass");
202196
foobaz2.m_nodenames.push_back("default:abloobloobloo");
203-
ndef->pendNodeResolve(&foobaz2, NODE_RESOLVE_DEFERRED);
197+
ndef->pendNodeResolve(&foobaz2);
204198

205199
ndef->cancelNodeResolveCallback(&foobaz1);
206200

@@ -212,37 +206,3 @@ void TestNodeResolver::testPendingResolveCancellation(IWritableNodeDefManager *n
212206
UASSERT(foobaz2.test_content1 == t_CONTENT_GRASS);
213207
UASSERT(foobaz2.test_content2 == CONTENT_IGNORE);
214208
}
215-
216-
217-
void TestNodeResolver::testDirectResolveMethod(IWritableNodeDefManager *ndef)
218-
{
219-
Foobaz foobaz;
220-
221-
foobaz.m_nodenames.push_back("default:dirt_with_grass");
222-
foobaz.m_nodenames.push_back("default:abloobloobloo");
223-
224-
UASSERTEQ(std::string, foobaz.getNodeName(1), "default:abloobloobloo");
225-
226-
ndef->pendNodeResolve(&foobaz, NODE_RESOLVE_DIRECT);
227-
228-
UASSERTEQ(content_t, foobaz.test_content1, t_CONTENT_GRASS);
229-
UASSERTEQ(content_t, foobaz.test_content2, CONTENT_IGNORE);
230-
231-
// We expect this to be *different* because the resolution of this node had
232-
// failed. The internal nodename buffer is cleared and lookups should now
233-
// use the nodedef manager.
234-
UASSERT(foobaz.getNodeName(1) != "default:abloobloobloo");
235-
}
236-
237-
238-
void TestNodeResolver::testNoneResolveMethod(IWritableNodeDefManager *ndef)
239-
{
240-
Foobaz foobaz;
241-
242-
foobaz.m_nodenames.push_back("default:dirt_with_grass");
243-
foobaz.m_nodenames.push_back("default:abloobloobloo");
244-
245-
ndef->pendNodeResolve(&foobaz, NODE_RESOLVE_NONE);
246-
247-
UASSERTEQ(std::string, foobaz.getNodeName(1), "default:abloobloobloo");
248-
}

0 commit comments

Comments
 (0)
Please sign in to comment.