2024-06-22 02:28:02 +02:00
|
|
|
local modname = "vl_tuning"
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
local S = minetest.get_translator(modname)
|
|
|
|
local F = function(f) return minetest.formspec_escape(S(f)) end
|
2024-06-28 14:09:04 +02:00
|
|
|
local FE = minetest.formspec_escape
|
|
|
|
local mod = vl_tuning
|
|
|
|
|
|
|
|
local function bool_to_string(value)
|
|
|
|
if value then return "true" end
|
|
|
|
return "false"
|
|
|
|
end
|
|
|
|
|
|
|
|
local function formspec_for_setting(y, name)
|
|
|
|
local setting = mod.registered_settings[name]
|
|
|
|
if not setting then return "" end
|
|
|
|
|
|
|
|
local setting_type = setting.setting_type
|
|
|
|
|
|
|
|
local fs = {}
|
|
|
|
table.insert(fs, "label[0,"..(y+0.15)..";"..FE(name).."]")
|
|
|
|
table.insert(fs, "hypertext[0.15,"..(y+0.25)..";14.85,0.65;;"..FE("<style color=black>"..(setting.description or "").."</style>").."]")
|
|
|
|
|
|
|
|
if setting_type == "bool" then
|
|
|
|
table.insert(fs, "checkbox[17,"..(y+0.15)..";"..FE(name)..";;"..bool_to_string(setting[1]).."]")
|
|
|
|
elseif setting_type == "number" then
|
|
|
|
table.insert(fs, "field[15,"..y..";2.5,0.75;"..FE(name)..";;"..string.format("%.4g", setting[1]).."]")
|
|
|
|
table.insert(fs, "field_close_on_enter["..FE(name)..";false]")
|
|
|
|
elseif setting_type == "string" then
|
|
|
|
end
|
|
|
|
|
|
|
|
return table.concat(fs)
|
|
|
|
end
|
2024-06-22 02:28:02 +02:00
|
|
|
|
|
|
|
function vl_tuning.show_formspec(player_name, tab)
|
2024-06-28 14:09:04 +02:00
|
|
|
if not tab then tab = "1" end
|
2024-06-22 02:28:02 +02:00
|
|
|
|
|
|
|
local settings = {}
|
2024-06-28 14:09:04 +02:00
|
|
|
local y = 0.5
|
2024-06-22 02:28:02 +02:00
|
|
|
for name,_ in pairs(vl_tuning.registered_settings) do
|
|
|
|
if name:sub(0,#"gamerule:") == "gamerule:" then
|
2024-06-28 14:09:04 +02:00
|
|
|
if tab == "1" then
|
|
|
|
table.insert(settings, formspec_for_setting(y,name))
|
|
|
|
y = y + 1
|
|
|
|
end
|
2024-06-22 02:28:02 +02:00
|
|
|
else
|
2024-06-28 14:09:04 +02:00
|
|
|
if tab == "2" then
|
|
|
|
table.insert(settings, formspec_for_setting(y,name))
|
|
|
|
y = y + 1
|
|
|
|
end
|
2024-06-22 02:28:02 +02:00
|
|
|
end
|
|
|
|
end
|
2024-06-28 14:09:04 +02:00
|
|
|
|
|
|
|
local formspec = table.concat({
|
|
|
|
"formspec_version[4]",
|
|
|
|
"size[20,10.5,true]",
|
2024-06-22 02:28:02 +02:00
|
|
|
"tabheader[0,0;tab;"..
|
|
|
|
F("Game Rules")..","..
|
|
|
|
F("Settings")..
|
2024-06-28 14:09:04 +02:00
|
|
|
";"..tab..";false;false]",
|
|
|
|
"field[0,0;0,0;old_tab;;"..tab.."]",
|
|
|
|
|
|
|
|
"scroll_container[1,0.5;18,9.25;settings;vertical;]",
|
|
|
|
table.concat(settings),
|
|
|
|
"scroll_container_end[]",
|
|
|
|
"scrollbaroptions[min=0;max="..tostring(10 * math.max(#settings - 9, 0))..";smallstep=1;largestep=1]",
|
|
|
|
"scrollbar[18.75,0.75;0.75,9.25;vertical;settings;0]",
|
|
|
|
})
|
2024-06-22 02:28:02 +02:00
|
|
|
|
|
|
|
minetest.show_formspec(player_name, "vl_tuning:settings", formspec)
|
|
|
|
end
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
if formname ~= "vl_tuning:settings" then return end
|
|
|
|
|
|
|
|
minetest.log("action",dump({
|
|
|
|
player = player,
|
|
|
|
fields = fields,
|
|
|
|
formname = formname,
|
|
|
|
}))
|
2024-06-28 14:09:04 +02:00
|
|
|
|
|
|
|
for k,value in pairs(fields) do
|
|
|
|
local setting = mod.registered_settings[k]
|
|
|
|
if setting then
|
|
|
|
setting:set(value)
|
|
|
|
end
|
2024-06-22 02:28:02 +02:00
|
|
|
end
|
2024-06-28 14:09:04 +02:00
|
|
|
|
|
|
|
if fields.quit or (not fields.tab or fields.old_tab == fields.tab) then return end
|
|
|
|
|
|
|
|
minetest.log("Seting settings formspec")
|
|
|
|
mod.show_formspec(player:get_player_name(), fields.tab)
|
2024-06-22 02:28:02 +02:00
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_chatcommand("settings",{
|
|
|
|
func = function(player_name, param)
|
|
|
|
dofile(modpath.."/gui.lua")
|
2024-06-28 14:09:04 +02:00
|
|
|
mod.show_formspec(player_name)
|
2024-06-22 02:28:02 +02:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|