1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Add mapgen descriptions

This commit is contained in:
Xeno333 2025-06-07 13:41:55 -05:00
parent aba2b6638e
commit 5e018c4f5f
5 changed files with 45 additions and 10 deletions

View file

@ -82,6 +82,7 @@ local function create_world_formspec(dialogdata)
local current_mg = dialogdata.mg local current_mg = dialogdata.mg
local mapgens = core.get_mapgen_names() local mapgens = core.get_mapgen_names()
local mapgens_descriptions = core.get_mapgen_descriptions()
local flags = dialogdata.flags local flags = dialogdata.flags
@ -109,6 +110,7 @@ local function create_world_formspec(dialogdata)
if #allowed_mapgens > 0 then if #allowed_mapgens > 0 then
for i = #mapgens, 1, -1 do for i = #mapgens, 1, -1 do
if table.indexof(allowed_mapgens, mapgens[i]) == -1 then if table.indexof(allowed_mapgens, mapgens[i]) == -1 then
table.remove(mapgens_descriptions, i)
table.remove(mapgens, i) table.remove(mapgens, i)
end end
end end
@ -117,6 +119,7 @@ local function create_world_formspec(dialogdata)
if #disallowed_mapgens > 0 then if #disallowed_mapgens > 0 then
for i = #mapgens, 1, -1 do for i = #mapgens, 1, -1 do
if table.indexof(disallowed_mapgens, mapgens[i]) > 0 then if table.indexof(disallowed_mapgens, mapgens[i]) > 0 then
table.remove(mapgens_descriptions, i)
table.remove(mapgens, i) table.remove(mapgens, i)
end end
end end
@ -129,6 +132,7 @@ local function create_world_formspec(dialogdata)
end end
local mglist = "" local mglist = ""
local mgdescription = ""
local selindex local selindex
do -- build the list of mapgens do -- build the list of mapgens
local i = 1 local i = 1
@ -138,6 +142,7 @@ local function create_world_formspec(dialogdata)
first_mg = v first_mg = v
end end
if current_mg == v then if current_mg == v then
mgdescription = mapgens_descriptions[k]
selindex = i selindex = i
end end
i = i + 1 i = i + 1
@ -287,12 +292,13 @@ local function create_world_formspec(dialogdata)
retval = retval .. retval = retval ..
"label[0,2;" .. fgettext("Mapgen") .. "]".. "label[0,2;" .. fgettext("Mapgen") .. "]"..
"dropdown[0,2.5;6.3;dd_mapgen;" .. mglist .. ";" .. selindex .. "]" "dropdown[0,2.5;6.3;dd_mapgen;" .. mglist .. ";" .. selindex .. "]"..
"textarea[0.5,3.2;6,2;;;" .. core.formspec_escape(fgettext(mgdescription)) .. "]"
-- Warning when making a devtest world -- Warning when making a devtest world
if game.id == "devtest" then if game.id == "devtest" then
retval = retval .. retval = retval ..
"container[0,3.5]" .. "container[0,4.7]" ..
"box[0,0;5.8,1.7;#ff8800]" .. "box[0,0;5.8,1.7;#ff8800]" ..
"textarea[0.4,0.1;6,1.8;;;".. "textarea[0.4,0.1;6,1.8;;;"..
fgettext("Development Test is meant for developers.") .. "]" .. fgettext("Development Test is meant for developers.") .. "]" ..

View file

@ -62,6 +62,7 @@ const FlagDesc flagdesc_gennotify[] = {
struct MapgenDesc { struct MapgenDesc {
const char *name; const char *name;
bool is_user_visible; bool is_user_visible;
const char *description;
}; };
//// ////
@ -75,14 +76,14 @@ struct MapgenDesc {
// Of the remaining, v5 last due to age, v7 first due to being the default. // Of the remaining, v5 last due to age, v7 first due to being the default.
// The order of 'enum MapgenType' in mapgen.h must match this order. // The order of 'enum MapgenType' in mapgen.h must match this order.
static MapgenDesc g_reg_mapgens[] = { static MapgenDesc g_reg_mapgens[] = {
{"v7", true}, {"v7", true, "Default mapgen with large complex mountins and plains."},
{"valleys", true}, {"valleys", true, "Large valleys with complex terrain and rivers."},
{"carpathian", true}, {"carpathian", true, "Realistic looking world with vast plains."},
{"v5", true}, {"v5", true, "Old mapgen."},
{"flat", true}, {"flat", true, "World Flat terrain."},
{"fractal", true}, {"fractal", true, "Wold with fractal structure."},
{"singlenode", true}, {"singlenode", true, "Empty world, use for lua defined mapgens."},
{"v6", true}, {"v6", true, "Simple mapgen with few features, not recommended."},
}; };
static_assert( static_assert(
@ -207,6 +208,14 @@ void Mapgen::getMapgenNames(std::vector<const char *> *mgnames, bool include_hid
} }
} }
void Mapgen::getMapgenDescriptions(std::vector<const char *> *mgdescriptions, bool include_hidden)
{
for (u32 i = 0; i != ARRLEN(g_reg_mapgens); i++) {
if (include_hidden || g_reg_mapgens[i].is_user_visible)
mgdescriptions->push_back(g_reg_mapgens[i].description);
}
}
void Mapgen::setDefaultSettings(Settings *settings) void Mapgen::setDefaultSettings(Settings *settings)
{ {
settings->setDefault("mg_flags", flagdesc_mapgen, settings->setDefault("mg_flags", flagdesc_mapgen,

View file

@ -243,6 +243,7 @@ public:
EmergeParams *emerge); EmergeParams *emerge);
static MapgenParams *createMapgenParams(MapgenType mgtype); static MapgenParams *createMapgenParams(MapgenType mgtype);
static void getMapgenNames(std::vector<const char *> *mgnames, bool include_hidden); static void getMapgenNames(std::vector<const char *> *mgnames, bool include_hidden);
static void getMapgenDescriptions(std::vector<const char *> *mgdescriptions, bool include_hidden);
static void setDefaultSettings(Settings *settings); static void setDefaultSettings(Settings *settings);
private: private:

View file

@ -660,6 +660,22 @@ int ModApiMainMenu::l_get_mapgen_names(lua_State *L)
return 1; return 1;
} }
/******************************************************************************/
int ModApiMainMenu::l_get_mapgen_descriptions(lua_State *L)
{
std::vector<const char *> descriptions;
bool include_hidden = lua_isboolean(L, 1) && readParam<bool>(L, 1);
Mapgen::getMapgenDescriptions(&descriptions, include_hidden);
lua_newtable(L);
for (size_t i = 0; i != descriptions.size(); i++) {
lua_pushstring(L, descriptions[i]);
lua_rawseti(L, -2, i + 1);
}
return 1;
}
/******************************************************************************/ /******************************************************************************/
int ModApiMainMenu::l_get_user_path(lua_State *L) int ModApiMainMenu::l_get_user_path(lua_State *L)
@ -1059,6 +1075,7 @@ void ModApiMainMenu::Initialize(lua_State *L, int top)
API_FCT(set_background); API_FCT(set_background);
API_FCT(set_topleft_text); API_FCT(set_topleft_text);
API_FCT(get_mapgen_names); API_FCT(get_mapgen_names);
API_FCT(get_mapgen_descriptions);
API_FCT(get_user_path); API_FCT(get_user_path);
API_FCT(get_modpath); API_FCT(get_modpath);
API_FCT(get_modpaths); API_FCT(get_modpaths);

View file

@ -51,6 +51,8 @@ private:
static int l_get_mapgen_names(lua_State *L); static int l_get_mapgen_names(lua_State *L);
static int l_get_mapgen_descriptions(lua_State *L);
static int l_get_language(lua_State *L); static int l_get_language(lua_State *L);
//packages //packages