2013-08-11 04:09:45 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lua_api/l_mapgen.h"
|
|
|
|
#include "lua_api/l_internal.h"
|
|
|
|
#include "lua_api/l_vmanip.h"
|
|
|
|
#include "common/c_converter.h"
|
|
|
|
#include "common/c_content.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
#include "util/serialize.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "server.h"
|
|
|
|
#include "environment.h"
|
|
|
|
#include "emerge.h"
|
2014-11-01 18:16:23 +01:00
|
|
|
#include "mg_biome.h"
|
|
|
|
#include "mg_ore.h"
|
|
|
|
#include "mg_decoration.h"
|
|
|
|
#include "mg_schematic.h"
|
2014-11-30 05:42:02 +01:00
|
|
|
#include "mapgen_v5.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "mapgen_v7.h"
|
2014-11-13 05:01:13 +01:00
|
|
|
#include "settings.h"
|
2014-02-16 08:16:49 +01:00
|
|
|
#include "main.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
#include "log.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct EnumString ModApiMapgen::es_BiomeTerrainType[] =
|
|
|
|
{
|
2014-11-14 08:58:56 +01:00
|
|
|
{BIOME_TYPE_NORMAL, "normal"},
|
|
|
|
{BIOME_TYPE_LIQUID, "liquid"},
|
|
|
|
{BIOME_TYPE_NETHER, "nether"},
|
|
|
|
{BIOME_TYPE_AETHER, "aether"},
|
|
|
|
{BIOME_TYPE_FLAT, "flat"},
|
2013-08-11 04:09:45 +02:00
|
|
|
{0, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EnumString ModApiMapgen::es_DecorationType[] =
|
|
|
|
{
|
|
|
|
{DECO_SIMPLE, "simple"},
|
|
|
|
{DECO_SCHEMATIC, "schematic"},
|
|
|
|
{DECO_LSYSTEM, "lsystem"},
|
|
|
|
{0, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EnumString ModApiMapgen::es_MapgenObject[] =
|
|
|
|
{
|
|
|
|
{MGOBJ_VMANIP, "voxelmanip"},
|
|
|
|
{MGOBJ_HEIGHTMAP, "heightmap"},
|
|
|
|
{MGOBJ_BIOMEMAP, "biomemap"},
|
|
|
|
{MGOBJ_HEATMAP, "heatmap"},
|
|
|
|
{MGOBJ_HUMIDMAP, "humiditymap"},
|
2013-12-14 07:52:06 +01:00
|
|
|
{MGOBJ_GENNOTIFY, "gennotify"},
|
2013-08-11 04:09:45 +02:00
|
|
|
{0, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EnumString ModApiMapgen::es_OreType[] =
|
|
|
|
{
|
2014-12-29 03:17:12 +01:00
|
|
|
{ORE_TYPE_SCATTER, "scatter"},
|
|
|
|
{ORE_TYPE_SHEET, "sheet"},
|
|
|
|
{ORE_TYPE_BLOB, "blob"},
|
|
|
|
{ORE_TYPE_VEIN, "vein"},
|
2013-08-11 04:09:45 +02:00
|
|
|
{0, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EnumString ModApiMapgen::es_Rotation[] =
|
|
|
|
{
|
|
|
|
{ROTATE_0, "0"},
|
|
|
|
{ROTATE_90, "90"},
|
|
|
|
{ROTATE_180, "180"},
|
|
|
|
{ROTATE_270, "270"},
|
|
|
|
{ROTATE_RAND, "random"},
|
|
|
|
{0, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-12-10 07:49:57 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2015-03-24 03:10:59 +01:00
|
|
|
bool read_schematic_def(lua_State *L, int index, Schematic *schem,
|
2014-12-10 07:49:57 +01:00
|
|
|
INodeDefManager *ndef, std::map<std::string, std::string> &replace_names)
|
|
|
|
{
|
|
|
|
//// Get schematic size
|
|
|
|
lua_getfield(L, index, "size");
|
|
|
|
v3s16 size = read_v3s16(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
//// Get schematic data
|
|
|
|
lua_getfield(L, index, "data");
|
|
|
|
luaL_checktype(L, -1, LUA_TTABLE);
|
|
|
|
|
|
|
|
int numnodes = size.X * size.Y * size.Z;
|
|
|
|
MapNode *schemdata = new MapNode[numnodes];
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, -2)) {
|
|
|
|
if (i >= numnodes) {
|
|
|
|
i++;
|
|
|
|
lua_pop(L, 1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// same as readnode, except param1 default is MTSCHEM_PROB_CONST
|
|
|
|
lua_getfield(L, -1, "name");
|
|
|
|
std::string name = luaL_checkstring(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
u8 param1;
|
|
|
|
lua_getfield(L, -1, "param1");
|
|
|
|
param1 = !lua_isnil(L, -1) ? lua_tonumber(L, -1) : MTSCHEM_PROB_ALWAYS;
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
u8 param2;
|
|
|
|
lua_getfield(L, -1, "param2");
|
|
|
|
param2 = !lua_isnil(L, -1) ? lua_tonumber(L, -1) : 0;
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
std::map<std::string, std::string>::iterator it;
|
|
|
|
it = replace_names.find(name);
|
|
|
|
if (it != replace_names.end())
|
|
|
|
name = it->second;
|
|
|
|
|
|
|
|
schemdata[i] = MapNode(ndef, name, param1, param2);
|
|
|
|
|
|
|
|
i++;
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != numnodes) {
|
|
|
|
errorstream << "read_schematic: incorrect number of "
|
|
|
|
"nodes provided in raw schematic data (got " << i <<
|
|
|
|
", expected " << numnodes << ")." << std::endl;
|
|
|
|
delete schemdata;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//// Get Y-slice probability values (if present)
|
|
|
|
u8 *slice_probs = new u8[size.Y];
|
|
|
|
for (i = 0; i != size.Y; i++)
|
|
|
|
slice_probs[i] = MTSCHEM_PROB_ALWAYS;
|
|
|
|
|
|
|
|
lua_getfield(L, index, "yslice_prob");
|
|
|
|
if (lua_istable(L, -1)) {
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, -2)) {
|
|
|
|
if (getintfield(L, -1, "ypos", i) && i >= 0 && i < size.Y) {
|
|
|
|
slice_probs[i] = getintfield_default(L, -1,
|
|
|
|
"prob", MTSCHEM_PROB_ALWAYS);
|
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Here, we read the nodes directly from the INodeDefManager - there is no
|
|
|
|
// need for pending node resolutions so we'll mark this schematic as updated
|
|
|
|
schem->flags = SCHEM_CIDS_UPDATED;
|
|
|
|
|
|
|
|
schem->size = size;
|
|
|
|
schem->schemdata = schemdata;
|
|
|
|
schem->slice_probs = slice_probs;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-24 03:10:59 +01:00
|
|
|
Schematic *get_schematic(lua_State *L, int index, SchematicManager *schemmgr,
|
|
|
|
std::map<std::string, std::string> &replace_names)
|
2014-12-10 07:49:57 +01:00
|
|
|
{
|
|
|
|
if (index < 0)
|
|
|
|
index = lua_gettop(L) + 1 + index;
|
|
|
|
|
2015-03-24 03:10:59 +01:00
|
|
|
Schematic *schem;
|
|
|
|
|
|
|
|
if (lua_isnumber(L, index)) {
|
|
|
|
return (Schematic *)schemmgr->get(lua_tointeger(L, index));
|
|
|
|
} else if (lua_istable(L, index)) {
|
|
|
|
schem = new Schematic;
|
|
|
|
if (!read_schematic_def(L, index, schem,
|
|
|
|
schemmgr->getNodeDef(), replace_names)) {
|
|
|
|
delete schem;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else if (lua_isstring(L, index)) {
|
2014-12-10 07:49:57 +01:00
|
|
|
const char *filename = lua_tostring(L, index);
|
2015-03-24 03:10:59 +01:00
|
|
|
schem = (Schematic *)schemmgr->getByName(filename);
|
|
|
|
if (schem)
|
|
|
|
return schem;
|
|
|
|
|
|
|
|
schem = new Schematic;
|
|
|
|
if (!schem->loadSchematicFromFile(filename,
|
|
|
|
schemmgr->getNodeDef(), replace_names)) {
|
|
|
|
delete schem;
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-12-10 07:49:57 +01:00
|
|
|
} else {
|
2015-03-24 03:10:59 +01:00
|
|
|
return NULL;
|
2014-12-10 07:49:57 +01:00
|
|
|
}
|
2015-03-24 03:10:59 +01:00
|
|
|
|
|
|
|
if (schemmgr->add(schem) == (u32)-1) {
|
|
|
|
delete schem;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return schem;
|
2014-12-10 07:49:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void read_schematic_replacements(lua_State *L,
|
2014-11-13 05:01:13 +01:00
|
|
|
std::map<std::string, std::string> &replace_names, int index)
|
2014-09-12 04:25:06 +02:00
|
|
|
{
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, index)) {
|
|
|
|
std::string replace_from;
|
|
|
|
std::string replace_to;
|
2014-10-08 21:28:14 +02:00
|
|
|
|
|
|
|
if (lua_istable(L, -1)) { // Old {{"x", "y"}, ...} format
|
2014-09-12 04:25:06 +02:00
|
|
|
lua_rawgeti(L, -1, 1);
|
|
|
|
replace_from = lua_tostring(L, -1);
|
|
|
|
lua_pop(L, 1);
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-09-12 04:25:06 +02:00
|
|
|
lua_rawgeti(L, -1, 2);
|
|
|
|
replace_to = lua_tostring(L, -1);
|
|
|
|
lua_pop(L, 1);
|
2014-10-08 21:28:14 +02:00
|
|
|
} else { // New {x = "y", ...} format
|
2014-09-12 04:25:06 +02:00
|
|
|
replace_from = lua_tostring(L, -2);
|
|
|
|
replace_to = lua_tostring(L, -1);
|
|
|
|
}
|
2014-10-08 21:28:14 +02:00
|
|
|
|
|
|
|
replace_names[replace_from] = replace_to;
|
2014-09-12 04:25:06 +02:00
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// get_mapgen_object(objectname)
|
2013-08-11 04:09:45 +02:00
|
|
|
// returns the requested object used during map generation
|
|
|
|
int ModApiMapgen::l_get_mapgen_object(lua_State *L)
|
|
|
|
{
|
|
|
|
const char *mgobjstr = lua_tostring(L, 1);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
int mgobjint;
|
|
|
|
if (!string_to_enum(es_MapgenObject, mgobjint, mgobjstr ? mgobjstr : ""))
|
|
|
|
return 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
enum MapgenObject mgobj = (MapgenObject)mgobjint;
|
|
|
|
|
|
|
|
EmergeManager *emerge = getServer(L)->getEmergeManager();
|
|
|
|
Mapgen *mg = emerge->getCurrentMapgen();
|
|
|
|
if (!mg)
|
|
|
|
return 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
size_t maplen = mg->csize.X * mg->csize.Z;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
switch (mgobj) {
|
|
|
|
case MGOBJ_VMANIP: {
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = mg->vm;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// VoxelManip object
|
|
|
|
LuaVoxelManip *o = new LuaVoxelManip(vm, true);
|
|
|
|
*(void **)(lua_newuserdata(L, sizeof(void *))) = o;
|
|
|
|
luaL_getmetatable(L, "VoxelManip");
|
|
|
|
lua_setmetatable(L, -2);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// emerged min pos
|
|
|
|
push_v3s16(L, vm->m_area.MinEdge);
|
|
|
|
|
|
|
|
// emerged max pos
|
|
|
|
push_v3s16(L, vm->m_area.MaxEdge);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
return 3;
|
|
|
|
}
|
2013-08-11 04:09:45 +02:00
|
|
|
case MGOBJ_HEIGHTMAP: {
|
|
|
|
if (!mg->heightmap)
|
|
|
|
return 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_newtable(L);
|
|
|
|
for (size_t i = 0; i != maplen; i++) {
|
|
|
|
lua_pushinteger(L, mg->heightmap[i]);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2013-08-11 04:09:45 +02:00
|
|
|
case MGOBJ_BIOMEMAP: {
|
|
|
|
if (!mg->biomemap)
|
|
|
|
return 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_newtable(L);
|
|
|
|
for (size_t i = 0; i != maplen; i++) {
|
|
|
|
lua_pushinteger(L, mg->biomemap[i]);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2013-08-11 04:09:45 +02:00
|
|
|
case MGOBJ_HEATMAP: { // Mapgen V7 specific objects
|
|
|
|
case MGOBJ_HUMIDMAP:
|
2014-02-04 04:42:10 +01:00
|
|
|
if (strcmp(emerge->params.mg_name.c_str(), "v7"))
|
2013-08-11 04:09:45 +02:00
|
|
|
return 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
MapgenV7 *mgv7 = (MapgenV7 *)mg;
|
|
|
|
|
2013-12-08 07:37:41 +01:00
|
|
|
float *arr = (mgobj == MGOBJ_HEATMAP) ?
|
2013-08-11 04:09:45 +02:00
|
|
|
mgv7->noise_heat->result : mgv7->noise_humidity->result;
|
|
|
|
if (!arr)
|
|
|
|
return 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_newtable(L);
|
|
|
|
for (size_t i = 0; i != maplen; i++) {
|
|
|
|
lua_pushnumber(L, arr[i]);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2013-12-14 07:52:06 +01:00
|
|
|
case MGOBJ_GENNOTIFY: {
|
2014-12-06 10:18:04 +01:00
|
|
|
std::map<std::string, std::vector<v3s16> >event_map;
|
|
|
|
std::map<std::string, std::vector<v3s16> >::iterator it;
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
mg->gennotify.getEvents(event_map);
|
2013-12-14 07:52:06 +01:00
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
lua_newtable(L);
|
|
|
|
for (it = event_map.begin(); it != event_map.end(); ++it) {
|
2013-12-14 07:52:06 +01:00
|
|
|
lua_newtable(L);
|
2014-12-06 10:18:04 +01:00
|
|
|
|
|
|
|
for (size_t j = 0; j != it->second.size(); j++) {
|
|
|
|
push_v3s16(L, it->second[j]);
|
2013-12-14 07:52:06 +01:00
|
|
|
lua_rawseti(L, -2, j + 1);
|
|
|
|
}
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
lua_setfield(L, -2, it->first.c_str());
|
2013-12-14 07:52:06 +01:00
|
|
|
}
|
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-12-14 07:52:06 +01:00
|
|
|
return 0;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
2014-12-29 18:58:55 +01:00
|
|
|
int ModApiMapgen::l_get_mapgen_params(lua_State *L)
|
|
|
|
{
|
|
|
|
MapgenParams *params = &getServer(L)->getEmergeManager()->params;
|
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
|
|
|
|
lua_pushstring(L, params->mg_name.c_str());
|
|
|
|
lua_setfield(L, -2, "mgname");
|
|
|
|
|
|
|
|
lua_pushinteger(L, params->seed);
|
|
|
|
lua_setfield(L, -2, "seed");
|
|
|
|
|
|
|
|
lua_pushinteger(L, params->water_level);
|
|
|
|
lua_setfield(L, -2, "water_level");
|
|
|
|
|
|
|
|
lua_pushinteger(L, params->chunksize);
|
|
|
|
lua_setfield(L, -2, "chunksize");
|
|
|
|
|
|
|
|
std::string flagstr = writeFlagString(params->flags, flagdesc_mapgen, (u32)-1);
|
|
|
|
lua_pushstring(L, flagstr.c_str());
|
|
|
|
lua_setfield(L, -2, "flags");
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// set_mapgen_params(params)
|
2013-08-11 04:09:45 +02:00
|
|
|
// set mapgen parameters
|
|
|
|
int ModApiMapgen::l_set_mapgen_params(lua_State *L)
|
|
|
|
{
|
|
|
|
if (!lua_istable(L, 1))
|
|
|
|
return 0;
|
|
|
|
|
2014-12-29 18:58:55 +01:00
|
|
|
MapgenParams *params = &getServer(L)->getEmergeManager()->params;
|
2014-03-08 17:34:46 +01:00
|
|
|
u32 flags = 0, flagmask = 0;
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_getfield(L, 1, "mgname");
|
|
|
|
if (lua_isstring(L, -1)) {
|
2014-12-29 18:58:55 +01:00
|
|
|
params->mg_name = lua_tostring(L, -1);
|
|
|
|
delete params->sparams;
|
|
|
|
params->sparams = NULL;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_getfield(L, 1, "seed");
|
2014-02-04 04:42:10 +01:00
|
|
|
if (lua_isnumber(L, -1))
|
2014-12-29 18:58:55 +01:00
|
|
|
params->seed = lua_tointeger(L, -1);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_getfield(L, 1, "water_level");
|
2014-02-04 04:42:10 +01:00
|
|
|
if (lua_isnumber(L, -1))
|
2014-12-29 18:58:55 +01:00
|
|
|
params->water_level = lua_tointeger(L, -1);
|
2014-02-04 04:42:10 +01:00
|
|
|
|
2015-01-04 09:21:42 +01:00
|
|
|
warn_if_field_exists(L, 1, "flagmask",
|
|
|
|
"Deprecated: flags field now includes unset flags.");
|
2014-02-04 04:42:10 +01:00
|
|
|
lua_getfield(L, 1, "flagmask");
|
2015-01-04 09:21:42 +01:00
|
|
|
if (lua_isstring(L, -1))
|
2014-12-29 18:58:55 +01:00
|
|
|
params->flags &= ~readFlagString(lua_tostring(L, -1), flagdesc_mapgen, NULL);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-03-08 17:34:46 +01:00
|
|
|
if (getflagsfield(L, 1, "flags", flagdesc_mapgen, &flags, &flagmask)) {
|
2014-12-29 18:58:55 +01:00
|
|
|
params->flags &= ~flagmask;
|
|
|
|
params->flags |= flags;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-10 05:44:04 +01:00
|
|
|
// set_noiseparams(name, noiseparams, set_default)
|
|
|
|
// set global config values for noise parameters
|
|
|
|
int ModApiMapgen::l_set_noiseparams(lua_State *L)
|
2014-02-16 00:20:15 +01:00
|
|
|
{
|
2014-12-10 05:44:04 +01:00
|
|
|
const char *name = luaL_checkstring(L, 1);
|
2014-02-16 00:20:15 +01:00
|
|
|
|
2014-12-10 05:44:04 +01:00
|
|
|
NoiseParams np;
|
|
|
|
if (!read_noiseparams(L, 2, &np))
|
2014-02-16 00:20:15 +01:00
|
|
|
return 0;
|
|
|
|
|
2014-12-10 05:44:04 +01:00
|
|
|
bool set_default = lua_isboolean(L, 3) ? lua_toboolean(L, 3) : true;
|
|
|
|
|
|
|
|
g_settings->setNoiseParams(name, np, set_default);
|
2014-02-16 00:20:15 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-06 10:18:04 +01:00
|
|
|
// set_gen_notify(flags, {deco_id_table})
|
2013-12-14 07:52:06 +01:00
|
|
|
int ModApiMapgen::l_set_gen_notify(lua_State *L)
|
|
|
|
{
|
2014-03-08 17:34:46 +01:00
|
|
|
u32 flags = 0, flagmask = 0;
|
2014-12-06 10:18:04 +01:00
|
|
|
EmergeManager *emerge = getServer(L)->getEmergeManager();
|
2014-03-08 17:34:46 +01:00
|
|
|
|
|
|
|
if (read_flags(L, 1, flagdesc_gennotify, &flags, &flagmask)) {
|
2014-12-06 10:18:04 +01:00
|
|
|
emerge->gen_notify_on &= ~flagmask;
|
|
|
|
emerge->gen_notify_on |= flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lua_istable(L, 2)) {
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, 2)) {
|
|
|
|
if (lua_isnumber(L, -1))
|
|
|
|
emerge->gen_notify_on_deco_ids.insert(lua_tonumber(L, -1));
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
2013-12-14 07:52:06 +01:00
|
|
|
}
|
2014-03-08 17:34:46 +01:00
|
|
|
|
2013-12-14 07:52:06 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// register_biome({lots of stuff})
|
|
|
|
int ModApiMapgen::l_register_biome(lua_State *L)
|
|
|
|
{
|
|
|
|
int index = 1;
|
|
|
|
luaL_checktype(L, index, LUA_TTABLE);
|
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
INodeDefManager *ndef = getServer(L)->getNodeDefManager();
|
|
|
|
BiomeManager *bmgr = getServer(L)->getEmergeManager()->biomemgr;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-11-14 08:58:56 +01:00
|
|
|
enum BiomeType biometype = (BiomeType)getenumfield(L, index, "type",
|
|
|
|
es_BiomeTerrainType, BIOME_TYPE_NORMAL);
|
|
|
|
Biome *b = bmgr->create(biometype);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-12-28 06:20:42 +01:00
|
|
|
b->name = getstringfield_default(L, index, "name", "");
|
2014-12-29 04:37:27 +01:00
|
|
|
b->depth_top = getintfield_default(L, index, "depth_top", 1);
|
2015-02-24 05:06:05 +01:00
|
|
|
b->depth_filler = getintfield_default(L, index, "depth_filler", 2);
|
2014-12-29 04:37:27 +01:00
|
|
|
b->depth_water_top = getintfield_default(L, index, "depth_water_top", 0);
|
2014-12-30 07:48:20 +01:00
|
|
|
b->y_min = getintfield_default(L, index, "y_min", -31000);
|
|
|
|
b->y_max = getintfield_default(L, index, "y_max", 31000);
|
2014-12-29 04:37:27 +01:00
|
|
|
b->heat_point = getfloatfield_default(L, index, "heat_point", 0.f);
|
|
|
|
b->humidity_point = getfloatfield_default(L, index, "humidity_point", 0.f);
|
2014-12-28 06:20:42 +01:00
|
|
|
b->flags = 0; //reserved
|
2014-10-28 05:18:53 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
u32 id = bmgr->add(b);
|
|
|
|
if (id == (u32)-1) {
|
2014-10-28 05:18:53 +01:00
|
|
|
delete b;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
NodeResolveInfo *nri = new NodeResolveInfo(b);
|
2015-03-20 23:40:18 +01:00
|
|
|
std::list<std::string> &nnames = nri->nodenames;
|
2014-12-28 06:20:42 +01:00
|
|
|
nnames.push_back(getstringfield_default(L, index, "node_top", ""));
|
|
|
|
nnames.push_back(getstringfield_default(L, index, "node_filler", ""));
|
|
|
|
nnames.push_back(getstringfield_default(L, index, "node_stone", ""));
|
|
|
|
nnames.push_back(getstringfield_default(L, index, "node_water_top", ""));
|
|
|
|
nnames.push_back(getstringfield_default(L, index, "node_water", ""));
|
|
|
|
nnames.push_back(getstringfield_default(L, index, "node_dust", ""));
|
2014-12-17 09:20:17 +01:00
|
|
|
ndef->pendNodeResolve(nri);
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
verbosestream << "register_biome: " << b->name << std::endl;
|
2014-11-13 05:01:13 +01:00
|
|
|
lua_pushinteger(L, id);
|
|
|
|
return 1;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// register_decoration({lots of stuff})
|
|
|
|
int ModApiMapgen::l_register_decoration(lua_State *L)
|
|
|
|
{
|
|
|
|
int index = 1;
|
|
|
|
luaL_checktype(L, index, LUA_TTABLE);
|
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
INodeDefManager *ndef = getServer(L)->getNodeDefManager();
|
|
|
|
DecorationManager *decomgr = getServer(L)->getEmergeManager()->decomgr;
|
|
|
|
BiomeManager *biomemgr = getServer(L)->getEmergeManager()->biomemgr;
|
2015-03-24 03:10:59 +01:00
|
|
|
SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
enum DecorationType decotype = (DecorationType)getenumfield(L, index,
|
2014-10-29 06:54:11 +01:00
|
|
|
"deco_type", es_DecorationType, -1);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
Decoration *deco = decomgr->create(decotype);
|
2013-08-11 04:09:45 +02:00
|
|
|
if (!deco) {
|
|
|
|
errorstream << "register_decoration: decoration placement type "
|
|
|
|
<< decotype << " not implemented";
|
|
|
|
return 0;
|
|
|
|
}
|
2014-12-06 10:18:04 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
deco->name = getstringfield_default(L, index, "name", "");
|
2014-10-08 21:28:14 +02:00
|
|
|
deco->fill_ratio = getfloatfield_default(L, index, "fill_ratio", 0.02);
|
2014-12-30 07:48:20 +01:00
|
|
|
deco->y_min = getintfield_default(L, index, "y_min", -31000);
|
|
|
|
deco->y_max = getintfield_default(L, index, "y_max", 31000);
|
2014-10-08 21:28:14 +02:00
|
|
|
deco->sidelen = getintfield_default(L, index, "sidelen", 8);
|
2013-08-11 04:09:45 +02:00
|
|
|
if (deco->sidelen <= 0) {
|
|
|
|
errorstream << "register_decoration: sidelen must be "
|
|
|
|
"greater than 0" << std::endl;
|
|
|
|
delete deco;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
NodeResolveInfo *nri = new NodeResolveInfo(deco);
|
|
|
|
|
2014-10-08 21:28:14 +02:00
|
|
|
//// Get node name(s) to place decoration on
|
|
|
|
std::vector<const char *> place_on_names;
|
|
|
|
getstringlistfield(L, index, "place_on", place_on_names);
|
2014-12-28 04:20:04 +01:00
|
|
|
nri->nodelistinfo.push_back(NodeListInfo(place_on_names.size()));
|
2014-10-08 21:28:14 +02:00
|
|
|
for (size_t i = 0; i != place_on_names.size(); i++)
|
2014-12-17 09:20:17 +01:00
|
|
|
nri->nodenames.push_back(place_on_names[i]);
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-12-10 06:56:44 +01:00
|
|
|
getflagsfield(L, index, "flags", flagdesc_deco, &deco->flags, NULL);
|
|
|
|
|
2014-10-08 21:28:14 +02:00
|
|
|
//// Get NoiseParams to define how decoration is placed
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_getfield(L, index, "noise_params");
|
2014-12-10 06:56:44 +01:00
|
|
|
if (read_noiseparams(L, -1, &deco->np))
|
|
|
|
deco->flags |= DECO_USE_NOISE;
|
2013-08-11 04:09:45 +02:00
|
|
|
lua_pop(L, 1);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-10-08 21:28:14 +02:00
|
|
|
//// Get biomes associated with this decoration (if any)
|
|
|
|
std::vector<const char *> biome_list;
|
|
|
|
getstringlistfield(L, index, "biomes", biome_list);
|
|
|
|
for (size_t i = 0; i != biome_list.size(); i++) {
|
2014-11-13 05:01:13 +01:00
|
|
|
Biome *b = (Biome *)biomemgr->getByName(biome_list[i]);
|
|
|
|
if (!b)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
deco->biomes.insert(b->id);
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-10-08 21:28:14 +02:00
|
|
|
//// Handle decoration type-specific parameters
|
2014-10-29 06:54:11 +01:00
|
|
|
bool success = false;
|
2013-08-11 04:09:45 +02:00
|
|
|
switch (decotype) {
|
2014-10-29 06:54:11 +01:00
|
|
|
case DECO_SIMPLE:
|
2014-12-17 09:20:17 +01:00
|
|
|
success = regDecoSimple(L, nri, (DecoSimple *)deco);
|
2014-10-29 06:54:11 +01:00
|
|
|
break;
|
|
|
|
case DECO_SCHEMATIC:
|
2015-03-24 03:10:59 +01:00
|
|
|
success = regDecoSchematic(L, schemmgr, (DecoSchematic *)deco);
|
2014-10-29 06:54:11 +01:00
|
|
|
break;
|
|
|
|
case DECO_LSYSTEM:
|
|
|
|
break;
|
|
|
|
}
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
ndef->pendNodeResolve(nri);
|
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
if (!success) {
|
|
|
|
delete deco;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
u32 id = decomgr->add(deco);
|
|
|
|
if (id == (u32)-1) {
|
|
|
|
delete deco;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
verbosestream << "register_decoration: " << deco->name << std::endl;
|
2014-11-13 05:01:13 +01:00
|
|
|
lua_pushinteger(L, id);
|
|
|
|
return 1;
|
2014-10-29 06:54:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ModApiMapgen::regDecoSimple(lua_State *L,
|
2014-12-17 09:20:17 +01:00
|
|
|
NodeResolveInfo *nri, DecoSimple *deco)
|
2014-10-29 06:54:11 +01:00
|
|
|
{
|
|
|
|
int index = 1;
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
deco->deco_height = getintfield_default(L, index, "height", 1);
|
|
|
|
deco->deco_height_max = getintfield_default(L, index, "height_max", 0);
|
|
|
|
deco->nspawnby = getintfield_default(L, index, "num_spawn_by", -1);
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
if (deco->deco_height <= 0) {
|
|
|
|
errorstream << "register_decoration: simple decoration height"
|
|
|
|
" must be greater than 0" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-08 17:34:46 +01:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
std::vector<const char *> deco_names;
|
|
|
|
getstringlistfield(L, index, "decoration", deco_names);
|
|
|
|
if (deco_names.size() == 0) {
|
|
|
|
errorstream << "register_decoration: no decoration nodes "
|
|
|
|
"defined" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-28 04:20:04 +01:00
|
|
|
nri->nodelistinfo.push_back(NodeListInfo(deco_names.size()));
|
2014-12-17 09:20:17 +01:00
|
|
|
for (size_t i = 0; i != deco_names.size(); i++)
|
|
|
|
nri->nodenames.push_back(deco_names[i]);
|
2014-03-08 17:34:46 +01:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
std::vector<const char *> spawnby_names;
|
|
|
|
getstringlistfield(L, index, "spawn_by", spawnby_names);
|
|
|
|
if (deco->nspawnby != -1 && spawnby_names.size() == 0) {
|
|
|
|
errorstream << "register_decoration: no spawn_by nodes defined,"
|
|
|
|
" but num_spawn_by specified" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-28 04:20:04 +01:00
|
|
|
nri->nodelistinfo.push_back(NodeListInfo(spawnby_names.size()));
|
2014-10-29 06:54:11 +01:00
|
|
|
for (size_t i = 0; i != spawnby_names.size(); i++)
|
2014-12-17 09:20:17 +01:00
|
|
|
nri->nodenames.push_back(spawnby_names[i]);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2015-03-24 03:10:59 +01:00
|
|
|
bool ModApiMapgen::regDecoSchematic(lua_State *L,
|
|
|
|
SchematicManager *schemmgr, DecoSchematic *deco)
|
2014-10-29 06:54:11 +01:00
|
|
|
{
|
|
|
|
int index = 1;
|
2014-10-08 21:28:14 +02:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
deco->rotation = (Rotation)getenumfield(L, index, "rotation",
|
|
|
|
es_Rotation, ROTATE_0);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-10-29 06:54:11 +01:00
|
|
|
std::map<std::string, std::string> replace_names;
|
|
|
|
lua_getfield(L, index, "replacements");
|
|
|
|
if (lua_istable(L, -1))
|
|
|
|
read_schematic_replacements(L, replace_names, lua_gettop(L));
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
lua_getfield(L, index, "schematic");
|
2015-03-24 03:10:59 +01:00
|
|
|
Schematic *schem = get_schematic(L, -1, schemmgr, replace_names);
|
2014-10-30 21:23:48 +01:00
|
|
|
lua_pop(L, 1);
|
2014-10-29 06:54:11 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
deco->schematic = schem;
|
2015-03-24 03:10:59 +01:00
|
|
|
return schem != NULL;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// register_ore({lots of stuff})
|
|
|
|
int ModApiMapgen::l_register_ore(lua_State *L)
|
|
|
|
{
|
|
|
|
int index = 1;
|
|
|
|
luaL_checktype(L, index, LUA_TTABLE);
|
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
INodeDefManager *ndef = getServer(L)->getNodeDefManager();
|
|
|
|
OreManager *oremgr = getServer(L)->getEmergeManager()->oremgr;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
enum OreType oretype = (OreType)getenumfield(L, index,
|
2014-12-28 09:11:00 +01:00
|
|
|
"ore_type", es_OreType, ORE_TYPE_SCATTER);
|
2014-11-13 05:01:13 +01:00
|
|
|
Ore *ore = oremgr->create(oretype);
|
2013-08-11 04:09:45 +02:00
|
|
|
if (!ore) {
|
2014-11-13 05:01:13 +01:00
|
|
|
errorstream << "register_ore: ore_type " << oretype << " not implemented";
|
2013-08-11 04:09:45 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
ore->name = getstringfield_default(L, index, "name", "");
|
2013-08-11 04:09:45 +02:00
|
|
|
ore->ore_param2 = (u8)getintfield_default(L, index, "ore_param2", 0);
|
|
|
|
ore->clust_scarcity = getintfield_default(L, index, "clust_scarcity", 1);
|
|
|
|
ore->clust_num_ores = getintfield_default(L, index, "clust_num_ores", 1);
|
|
|
|
ore->clust_size = getintfield_default(L, index, "clust_size", 0);
|
2014-11-13 05:01:13 +01:00
|
|
|
ore->nthresh = getfloatfield_default(L, index, "noise_threshhold", 0);
|
2014-10-28 05:18:53 +01:00
|
|
|
ore->noise = NULL;
|
2014-03-08 17:34:46 +01:00
|
|
|
ore->flags = 0;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2015-01-04 09:21:42 +01:00
|
|
|
warn_if_field_exists(L, index, "height_min",
|
|
|
|
"Deprecated: new name is \"y_min\".");
|
|
|
|
warn_if_field_exists(L, index, "height_max",
|
|
|
|
"Deprecated: new name is \"y_max\".");
|
|
|
|
|
2014-12-30 07:48:20 +01:00
|
|
|
int ymin, ymax;
|
|
|
|
if (!getintfield(L, index, "y_min", ymin) &&
|
|
|
|
!getintfield(L, index, "height_min", ymin))
|
|
|
|
ymin = -31000;
|
|
|
|
if (!getintfield(L, index, "y_max", ymax) &&
|
|
|
|
!getintfield(L, index, "height_max", ymax))
|
|
|
|
ymax = 31000;
|
|
|
|
ore->y_min = ymin;
|
|
|
|
ore->y_max = ymax;
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
if (ore->clust_scarcity <= 0 || ore->clust_num_ores <= 0) {
|
|
|
|
errorstream << "register_ore: clust_scarcity and clust_num_ores"
|
|
|
|
"must be greater than 0" << std::endl;
|
|
|
|
delete ore;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
getflagsfield(L, index, "flags", flagdesc_ore, &ore->flags, NULL);
|
|
|
|
|
|
|
|
lua_getfield(L, index, "noise_params");
|
2014-12-10 06:37:09 +01:00
|
|
|
if (read_noiseparams(L, -1, &ore->np)) {
|
|
|
|
ore->flags |= OREFLAG_USE_NOISE;
|
|
|
|
} else if (ore->NEEDS_NOISE) {
|
|
|
|
errorstream << "register_ore: specified ore type requires valid "
|
|
|
|
"noise parameters" << std::endl;
|
|
|
|
delete ore;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-10-28 05:18:53 +01:00
|
|
|
lua_pop(L, 1);
|
|
|
|
|
2014-12-29 03:17:12 +01:00
|
|
|
if (oretype == ORE_TYPE_VEIN) {
|
|
|
|
OreVein *orevein = (OreVein *)ore;
|
|
|
|
orevein->random_factor = getfloatfield_default(L, index,
|
|
|
|
"random_factor", 1.f);
|
|
|
|
}
|
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
u32 id = oremgr->add(ore);
|
|
|
|
if (id == (u32)-1) {
|
|
|
|
delete ore;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
NodeResolveInfo *nri = new NodeResolveInfo(ore);
|
|
|
|
nri->nodenames.push_back(getstringfield_default(L, index, "ore", ""));
|
|
|
|
|
2014-10-28 05:18:53 +01:00
|
|
|
std::vector<const char *> wherein_names;
|
|
|
|
getstringlistfield(L, index, "wherein", wherein_names);
|
2014-12-28 04:20:04 +01:00
|
|
|
nri->nodelistinfo.push_back(NodeListInfo(wherein_names.size()));
|
2014-10-28 05:18:53 +01:00
|
|
|
for (size_t i = 0; i != wherein_names.size(); i++)
|
2014-12-17 09:20:17 +01:00
|
|
|
nri->nodenames.push_back(wherein_names[i]);
|
|
|
|
|
|
|
|
ndef->pendNodeResolve(nri);
|
2014-10-28 05:18:53 +01:00
|
|
|
|
2014-12-17 09:20:17 +01:00
|
|
|
verbosestream << "register_ore: " << ore->name << std::endl;
|
2014-11-13 05:01:13 +01:00
|
|
|
lua_pushinteger(L, id);
|
|
|
|
return 1;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
2015-03-24 03:10:59 +01:00
|
|
|
// register_schematic({schematic}, replacements={})
|
|
|
|
int ModApiMapgen::l_register_schematic(lua_State *L)
|
|
|
|
{
|
|
|
|
SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
|
|
|
|
|
|
|
|
std::map<std::string, std::string> replace_names;
|
|
|
|
if (lua_istable(L, 2))
|
|
|
|
read_schematic_replacements(L, replace_names, 2);
|
|
|
|
|
|
|
|
Schematic *schem = get_schematic(L, 1, schemmgr, replace_names);
|
|
|
|
if (!schem)
|
|
|
|
return 0;
|
|
|
|
printf("register_schematic!\n");
|
|
|
|
verbosestream << "register_schematic: " << schem->name << std::endl;
|
|
|
|
lua_pushinteger(L, schem->id);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear_registered_biomes()
|
|
|
|
int ModApiMapgen::l_clear_registered_biomes(lua_State *L)
|
|
|
|
{
|
|
|
|
BiomeManager *bmgr = getServer(L)->getEmergeManager()->biomemgr;
|
|
|
|
bmgr->clear();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear_registered_decorations()
|
|
|
|
int ModApiMapgen::l_clear_registered_decorations(lua_State *L)
|
|
|
|
{
|
|
|
|
DecorationManager *dmgr = getServer(L)->getEmergeManager()->decomgr;
|
|
|
|
dmgr->clear();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear_registered_ores()
|
|
|
|
int ModApiMapgen::l_clear_registered_ores(lua_State *L)
|
|
|
|
{
|
|
|
|
OreManager *omgr = getServer(L)->getEmergeManager()->oremgr;
|
|
|
|
omgr->clear();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear_registered_schematics()
|
|
|
|
int ModApiMapgen::l_clear_registered_schematics(lua_State *L)
|
|
|
|
{
|
|
|
|
SchematicManager *smgr = getServer(L)->getEmergeManager()->schemmgr;
|
|
|
|
smgr->clear();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate_ores(vm, p1, p2, [ore_id])
|
|
|
|
int ModApiMapgen::l_generate_ores(lua_State *L)
|
|
|
|
{
|
|
|
|
EmergeManager *emerge = getServer(L)->getEmergeManager();
|
|
|
|
|
|
|
|
Mapgen mg;
|
|
|
|
mg.seed = emerge->params.seed;
|
|
|
|
mg.vm = LuaVoxelManip::checkobject(L, 1)->vm;
|
|
|
|
mg.ndef = getServer(L)->getNodeDefManager();
|
|
|
|
|
|
|
|
u32 blockseed = Mapgen::getBlockSeed(mg.vm->m_area.MinEdge, mg.seed);
|
|
|
|
|
|
|
|
v3s16 pmin = read_v3s16(L, 2);
|
|
|
|
v3s16 pmax = read_v3s16(L, 3);
|
|
|
|
|
|
|
|
emerge->oremgr->placeAllOres(&mg, blockseed, pmin, pmax);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate_decorations(vm, p1, p2, [deco_id])
|
|
|
|
int ModApiMapgen::l_generate_decorations(lua_State *L)
|
|
|
|
{
|
|
|
|
EmergeManager *emerge = getServer(L)->getEmergeManager();
|
|
|
|
|
|
|
|
Mapgen mg;
|
|
|
|
mg.seed = emerge->params.seed;
|
|
|
|
mg.vm = LuaVoxelManip::checkobject(L, 1)->vm;
|
|
|
|
mg.ndef = getServer(L)->getNodeDefManager();
|
|
|
|
|
|
|
|
u32 blockseed = Mapgen::getBlockSeed(mg.vm->m_area.MinEdge, mg.seed);
|
|
|
|
|
|
|
|
v3s16 pmin = read_v3s16(L, 2);
|
|
|
|
v3s16 pmax = read_v3s16(L, 3);
|
|
|
|
|
|
|
|
emerge->decomgr->placeAllDecos(&mg, blockseed, pmin, pmax);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// create_schematic(p1, p2, probability_list, filename)
|
|
|
|
int ModApiMapgen::l_create_schematic(lua_State *L)
|
|
|
|
{
|
2014-11-13 05:01:13 +01:00
|
|
|
Schematic schem;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
Map *map = &(getEnv(L)->getMap());
|
|
|
|
INodeDefManager *ndef = getServer(L)->getNodeDefManager();
|
|
|
|
|
|
|
|
v3s16 p1 = read_v3s16(L, 1);
|
|
|
|
v3s16 p2 = read_v3s16(L, 2);
|
|
|
|
sortBoxVerticies(p1, p2);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-12-01 07:23:39 +01:00
|
|
|
std::vector<std::pair<v3s16, u8> > prob_list;
|
2013-08-11 04:09:45 +02:00
|
|
|
if (lua_istable(L, 3)) {
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, 3)) {
|
|
|
|
if (lua_istable(L, -1)) {
|
|
|
|
lua_getfield(L, -1, "pos");
|
|
|
|
v3s16 pos = read_v3s16(L, -1);
|
|
|
|
lua_pop(L, 1);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-09-17 05:52:42 +02:00
|
|
|
u8 prob = getintfield_default(L, -1, "prob", MTSCHEM_PROB_ALWAYS);
|
2013-12-01 07:23:39 +01:00
|
|
|
prob_list.push_back(std::make_pair(pos, prob));
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2013-12-01 07:23:39 +01:00
|
|
|
std::vector<std::pair<s16, u8> > slice_prob_list;
|
|
|
|
if (lua_istable(L, 5)) {
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, 5)) {
|
|
|
|
if (lua_istable(L, -1)) {
|
|
|
|
s16 ypos = getintfield_default(L, -1, "ypos", 0);
|
|
|
|
u8 prob = getintfield_default(L, -1, "prob", MTSCHEM_PROB_ALWAYS);
|
|
|
|
slice_prob_list.push_back(std::make_pair(ypos, prob));
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
const char *filename = luaL_checkstring(L, 4);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
if (!schem.getSchematicFromMap(map, p1, p2)) {
|
2013-08-11 04:09:45 +02:00
|
|
|
errorstream << "create_schematic: failed to get schematic "
|
|
|
|
"from map" << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-12-01 07:23:39 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
schem.applyProbabilities(p1, &prob_list, &slice_prob_list);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
schem.saveSchematicToFile(filename, ndef);
|
2013-08-11 04:09:45 +02:00
|
|
|
actionstream << "create_schematic: saved schematic file '"
|
2014-11-13 05:01:13 +01:00
|
|
|
<< filename << "'." << std::endl;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// place_schematic(p, schematic, rotation, replacement)
|
|
|
|
int ModApiMapgen::l_place_schematic(lua_State *L)
|
|
|
|
{
|
|
|
|
Map *map = &(getEnv(L)->getMap());
|
2015-03-24 03:10:59 +01:00
|
|
|
SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
//// Read position
|
2013-08-11 04:09:45 +02:00
|
|
|
v3s16 p = read_v3s16(L, 1);
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
//// Read rotation
|
2013-11-17 08:22:24 +01:00
|
|
|
int rot = ROTATE_0;
|
2013-08-11 04:09:45 +02:00
|
|
|
if (lua_isstring(L, 3))
|
2013-11-17 08:22:24 +01:00
|
|
|
string_to_enum(es_Rotation, rot, std::string(lua_tostring(L, 3)));
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
//// Read force placement
|
|
|
|
bool force_placement = true;
|
|
|
|
if (lua_isboolean(L, 5))
|
|
|
|
force_placement = lua_toboolean(L, 5);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
//// Read node replacements
|
2014-10-08 21:28:14 +02:00
|
|
|
std::map<std::string, std::string> replace_names;
|
|
|
|
if (lua_istable(L, 4))
|
|
|
|
read_schematic_replacements(L, replace_names, 4);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-11-13 05:01:13 +01:00
|
|
|
//// Read schematic
|
2015-03-24 03:10:59 +01:00
|
|
|
Schematic *schem = get_schematic(L, 2, schemmgr, replace_names);
|
|
|
|
if (!schem) {
|
2014-11-13 05:01:13 +01:00
|
|
|
errorstream << "place_schematic: failed to get schematic" << std::endl;
|
|
|
|
return 0;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2013-12-08 07:37:41 +01:00
|
|
|
|
2015-03-24 03:10:59 +01:00
|
|
|
schem->placeStructure(map, p, 0, (Rotation)rot, force_placement,
|
|
|
|
schemmgr->getNodeDef());
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModApiMapgen::Initialize(lua_State *L, int top)
|
|
|
|
{
|
|
|
|
API_FCT(get_mapgen_object);
|
|
|
|
|
2014-12-29 18:58:55 +01:00
|
|
|
API_FCT(get_mapgen_params);
|
2013-08-11 04:09:45 +02:00
|
|
|
API_FCT(set_mapgen_params);
|
2014-12-10 05:44:04 +01:00
|
|
|
API_FCT(set_noiseparams);
|
2013-12-14 07:52:06 +01:00
|
|
|
API_FCT(set_gen_notify);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
API_FCT(register_biome);
|
|
|
|
API_FCT(register_decoration);
|
|
|
|
API_FCT(register_ore);
|
2015-03-24 03:10:59 +01:00
|
|
|
API_FCT(register_schematic);
|
2014-12-12 20:07:49 +01:00
|
|
|
|
2014-12-07 00:08:08 +01:00
|
|
|
API_FCT(clear_registered_biomes);
|
2014-12-12 20:07:49 +01:00
|
|
|
API_FCT(clear_registered_decorations);
|
|
|
|
API_FCT(clear_registered_ores);
|
2015-03-24 03:10:59 +01:00
|
|
|
API_FCT(clear_registered_schematics);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2015-01-05 04:37:20 +01:00
|
|
|
API_FCT(generate_ores);
|
|
|
|
API_FCT(generate_decorations);
|
2013-08-11 04:09:45 +02:00
|
|
|
API_FCT(create_schematic);
|
|
|
|
API_FCT(place_schematic);
|
|
|
|
}
|