Skip to content

Commit b246812

Browse files
committedMay 7, 2015
Schematics: Add indent-with-space option for schematic Lua table serialization
1 parent 656575b commit b246812

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed
 

‎doc/lua_api.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -2178,8 +2178,10 @@ These functions return the leftover itemstack.
21782178
* "mts" - a string containing the binary MTS data used in the MTS file format
21792179
* "lua" - a string containing Lua code representing the schematic in table format
21802180
* `options` is a table containing the following optional parameters:
2181-
* If `use_comments` is true and `format` is "lua", the Lua code generated will have (X, Z)
2181+
* If `lua_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 `lua_num_indent_spaces` is a nonzero number and `format` is "lua", the Lua code generated
2184+
* will use that number of spaces as indentation instead of a tab character.
21832185

21842186
### Misc.
21852187
* `minetest.get_connected_players()`: returns list of `ObjectRefs`

‎src/mg_schematic.cpp

+14-9
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,18 @@ bool Schematic::serializeToMts(std::ostream *os,
309309

310310

311311
bool Schematic::serializeToLua(std::ostream *os,
312-
const std::vector<std::string> &names, bool use_comments)
312+
const std::vector<std::string> &names, bool use_comments, u32 indent_spaces)
313313
{
314314
std::ostream &ss = *os;
315315

316+
std::string indent("\t");
317+
if (indent_spaces > 0)
318+
indent.assign(indent_spaces, ' ');
319+
316320
//// Write header
317321
{
318322
ss << "schematic = {" << std::endl;
319-
ss << "\tsize = "
323+
ss << indent << "size = "
320324
<< "{x=" << size.X
321325
<< ", y=" << size.Y
322326
<< ", z=" << size.Z
@@ -325,41 +329,42 @@ bool Schematic::serializeToLua(std::ostream *os,
325329

326330
//// Write y-slice probabilities
327331
{
328-
ss << "\tyslice_prob = {" << std::endl;
332+
ss << indent << "yslice_prob = {" << std::endl;
329333

330334
for (u16 y = 0; y != size.Y; y++) {
331-
ss << "\t\t{"
335+
ss << indent << indent << "{"
332336
<< "ypos=" << y
333337
<< ", prob=" << (u16)slice_probs[y]
334338
<< "}," << std::endl;
335339
}
336340

337-
ss << "\t}," << std::endl;
341+
ss << indent << "}," << std::endl;
338342
}
339343

340344
//// Write node data
341345
{
342-
ss << "\tdata = {" << std::endl;
346+
ss << indent << "data = {" << std::endl;
343347

344348
u32 i = 0;
345349
for (u16 z = 0; z != size.Z; z++)
346350
for (u16 y = 0; y != size.Y; y++) {
347351
if (use_comments) {
348352
ss << std::endl
349-
<< "\t\t-- z=" << z
353+
<< indent << indent
354+
<< "-- z=" << z
350355
<< ", y=" << y << std::endl;
351356
}
352357

353358
for (u16 x = 0; x != size.X; x++, i++) {
354-
ss << "\t\t{"
359+
ss << indent << indent << "{"
355360
<< "name=\"" << names[schemdata[i].getContent()]
356361
<< "\", param1=" << (u16)schemdata[i].param1
357362
<< ", param2=" << (u16)schemdata[i].param2
358363
<< "}," << std::endl;
359364
}
360365
}
361366

362-
ss << "\t}," << std::endl;
367+
ss << indent << "}," << std::endl;
363368
}
364369

365370
ss << "}" << std::endl;

‎src/mg_schematic.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class Schematic : public ObjDef, public NodeResolver {
110110
bool deserializeFromMts(std::istream *is, std::vector<std::string> *names);
111111
bool serializeToMts(std::ostream *os, const std::vector<std::string> &names);
112112
bool serializeToLua(std::ostream *os, const std::vector<std::string> &names,
113-
bool use_comments);
113+
bool use_comments, u32 indent_spaces);
114114

115115
void placeStructure(Map *map, v3s16 p, u32 flags,
116116
Rotation rot, bool force_placement);

‎src/script/lua_api/l_mapgen.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,8 @@ int ModApiMapgen::l_serialize_schematic(lua_State *L)
11341134
SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
11351135

11361136
//// Read options
1137-
bool use_comments = getboolfield_default(L, 3, "use_lua_comments", false);
1137+
bool use_comments = getboolfield_default(L, 3, "lua_use_comments", false);
1138+
u32 indent_spaces = getintfield_default(L, 3, "lua_num_indent_spaces", 0);
11381139

11391140
//// Get schematic
11401141
bool was_loaded = false;
@@ -1161,7 +1162,8 @@ int ModApiMapgen::l_serialize_schematic(lua_State *L)
11611162
schem->serializeToMts(&os, schem->m_nodenames);
11621163
break;
11631164
case SCHEM_FMT_LUA:
1164-
schem->serializeToLua(&os, schem->m_nodenames, use_comments);
1165+
schem->serializeToLua(&os, schem->m_nodenames,
1166+
use_comments, indent_spaces);
11651167
break;
11661168
default:
11671169
return 0;

2 commit comments

Comments
 (2)

est31 commented on May 7, 2015

@est31
Contributor

Minetest very consistently uses tabs for identation. Why make an exception here?

est31 commented on May 7, 2015

@est31
Contributor

Ah I see, its only to replace default tab identation. Then its ok.

Please sign in to comment.