2014-04-18 09:39:15 -04:00
|
|
|
--Minetest
|
|
|
|
--Copyright (C) 2013 sapier
|
|
|
|
--
|
|
|
|
--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.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
local function get_formspec(tabview, name, tabdata)
|
2016-04-25 05:18:17 -04:00
|
|
|
-- Update the cached supported proto info,
|
|
|
|
-- it may have changed after a change by the settings menu.
|
|
|
|
common_update_cached_supp_proto()
|
|
|
|
local fav_selected = menudata.favorites[tabdata.fav_selected]
|
|
|
|
|
|
|
|
local retval =
|
|
|
|
"label[9.5,0;".. fgettext("Name / Password") .. "]" ..
|
|
|
|
"field[0.25,3.35;5.5,0.5;te_address;;" ..
|
|
|
|
core.formspec_escape(core.setting_get("address")) .."]" ..
|
|
|
|
"field[5.75,3.35;2.25,0.5;te_port;;" ..
|
|
|
|
core.formspec_escape(core.setting_get("remote_port")) .."]" ..
|
|
|
|
"button[10,2.6;2,1.5;btn_mp_connect;".. fgettext("Connect") .. "]" ..
|
|
|
|
"field[9.8,1;2.6,0.5;te_name;;" ..
|
|
|
|
core.formspec_escape(core.setting_get("name")) .."]" ..
|
|
|
|
"pwdfield[9.8,2;2.6,0.5;te_pwd;]"
|
|
|
|
|
|
|
|
|
|
|
|
if tabdata.fav_selected and fav_selected then
|
|
|
|
if gamedata.fav then
|
|
|
|
retval = retval .. "button[7.7,2.6;2.3,1.5;btn_delete_favorite;" ..
|
|
|
|
fgettext("Del. Favorite") .. "]"
|
|
|
|
end
|
2015-01-04 11:37:45 -05:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
retval = retval .. "tablecolumns[" ..
|
|
|
|
image_column(fgettext("Favorite"), "favorite") .. ";" ..
|
|
|
|
"color,span=3;" ..
|
|
|
|
"text,align=right;" .. -- clients
|
|
|
|
"text,align=center,padding=0.25;" .. -- "/"
|
|
|
|
"text,align=right,padding=0.25;" .. -- clients_max
|
|
|
|
image_column(fgettext("Creative mode"), "creative") .. ",padding=1;" ..
|
|
|
|
image_column(fgettext("Damage enabled"), "damage") .. ",padding=0.25;" ..
|
|
|
|
image_column(fgettext("PvP enabled"), "pvp") .. ",padding=0.25;" ..
|
|
|
|
"color,span=1;" ..
|
|
|
|
"text,padding=1]" .. -- name
|
|
|
|
"table[-0.05,0;9.2,2.75;favourites;"
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if #menudata.favorites > 0 then
|
|
|
|
local favs = core.get_favorites("local")
|
|
|
|
if #favs > 0 then
|
|
|
|
for i = 1, #favs do
|
|
|
|
for j = 1, #menudata.favorites do
|
|
|
|
if menudata.favorites[j].address == favs[i].address and
|
|
|
|
menudata.favorites[j].port == favs[i].port then
|
|
|
|
table.insert(menudata.favorites, i,
|
|
|
|
table.remove(menudata.favorites, j))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if favs[i].address ~= menudata.favorites[i].address then
|
|
|
|
table.insert(menudata.favorites, i, favs[i])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-01-06 15:29:29 -05:00
|
|
|
retval = retval .. render_serverlist_row(menudata.favorites[1], (#favs > 0))
|
2016-04-25 05:18:17 -04:00
|
|
|
for i = 2, #menudata.favorites do
|
2017-01-06 15:29:29 -05:00
|
|
|
retval = retval .. "," .. render_serverlist_row(menudata.favorites[i], (i <= #favs))
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if tabdata.fav_selected then
|
2014-04-18 09:39:15 -04:00
|
|
|
retval = retval .. ";" .. tabdata.fav_selected .. "]"
|
|
|
|
else
|
|
|
|
retval = retval .. ";0]"
|
|
|
|
end
|
|
|
|
|
|
|
|
-- separator
|
2016-04-25 05:18:17 -04:00
|
|
|
retval = retval .. "box[-0.28,3.75;12.4,0.1;#FFFFFF]"
|
2014-04-18 09:39:15 -04:00
|
|
|
|
|
|
|
-- checkboxes
|
|
|
|
retval = retval ..
|
2015-04-24 23:11:12 -04:00
|
|
|
"checkbox[8.0,3.9;cb_creative;".. fgettext("Creative Mode") .. ";" ..
|
2016-04-25 05:18:17 -04:00
|
|
|
dump(core.setting_getbool("creative_mode")) .. "]"..
|
2015-04-24 23:11:12 -04:00
|
|
|
"checkbox[8.0,4.4;cb_damage;".. fgettext("Enable Damage") .. ";" ..
|
2016-04-25 05:18:17 -04:00
|
|
|
dump(core.setting_getbool("enable_damage")) .. "]"
|
2014-04-18 09:39:15 -04:00
|
|
|
-- buttons
|
|
|
|
retval = retval ..
|
2015-04-24 23:11:12 -04:00
|
|
|
"button[0,3.7;8,1.5;btn_start_singleplayer;" .. fgettext("Start Singleplayer") .. "]" ..
|
|
|
|
"button[0,4.5;8,1.5;btn_config_sp_world;" .. fgettext("Config mods") .. "]"
|
2014-04-18 09:39:15 -04:00
|
|
|
|
|
|
|
return retval
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
local function main_button_handler(tabview, fields, name, tabdata)
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.btn_start_singleplayer then
|
2014-04-18 09:39:15 -04:00
|
|
|
gamedata.selected_world = gamedata.worldindex
|
|
|
|
gamedata.singleplayer = true
|
|
|
|
core.start()
|
2014-04-21 08:10:59 -04:00
|
|
|
return true
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.favourites then
|
|
|
|
local event = core.explode_table_event(fields.favourites)
|
2014-04-18 09:39:15 -04:00
|
|
|
if event.type == "CHG" then
|
2015-03-16 12:32:30 -04:00
|
|
|
if event.row <= #menudata.favorites then
|
2016-04-25 05:18:17 -04:00
|
|
|
gamedata.fav = false
|
|
|
|
local favs = core.get_favorites("local")
|
|
|
|
local fav = menudata.favorites[event.row]
|
|
|
|
local address = fav.address
|
|
|
|
local port = fav.port
|
|
|
|
gamedata.serverdescription = fav.description
|
|
|
|
|
|
|
|
for i = 1, #favs do
|
|
|
|
if fav.address == favs[i].address and
|
|
|
|
fav.port == favs[i].port then
|
|
|
|
gamedata.fav = true
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if address and port then
|
|
|
|
core.setting_set("address", address)
|
|
|
|
core.setting_set("remote_port", port)
|
|
|
|
end
|
2015-03-16 12:32:30 -04:00
|
|
|
tabdata.fav_selected = event.row
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
2016-04-25 05:18:17 -04:00
|
|
|
return true
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.btn_delete_favorite then
|
|
|
|
local current_favourite = core.get_table_index("favourites")
|
|
|
|
if not current_favourite then return end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
core.delete_favorite(current_favourite)
|
|
|
|
asyncOnlineFavourites()
|
|
|
|
tabdata.fav_selected = nil
|
|
|
|
|
|
|
|
core.setting_set("address", "")
|
|
|
|
core.setting_set("remote_port", "30000")
|
2014-04-21 08:10:59 -04:00
|
|
|
return true
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.cb_creative then
|
|
|
|
core.setting_set("creative_mode", fields.cb_creative)
|
2014-04-21 08:10:59 -04:00
|
|
|
return true
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.cb_damage then
|
|
|
|
core.setting_set("enable_damage", fields.cb_damage)
|
2014-04-21 08:10:59 -04:00
|
|
|
return true
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.btn_mp_connect or fields.key_enter then
|
|
|
|
gamedata.playername = fields.te_name
|
|
|
|
gamedata.password = fields.te_pwd
|
|
|
|
gamedata.address = fields.te_address
|
|
|
|
gamedata.port = fields.te_port
|
2014-04-18 09:39:15 -04:00
|
|
|
local fav_idx = core.get_textlist_index("favourites")
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fav_idx and fav_idx <= #menudata.favorites and
|
|
|
|
menudata.favorites[fav_idx].address == fields.te_address and
|
|
|
|
menudata.favorites[fav_idx].port == fields.te_port then
|
2016-04-14 22:13:53 -04:00
|
|
|
local fav = menudata.favorites[fav_idx]
|
|
|
|
gamedata.servername = fav.name
|
|
|
|
gamedata.serverdescription = fav.description
|
2015-02-16 19:37:14 -05:00
|
|
|
|
2016-04-14 22:13:53 -04:00
|
|
|
if menudata.favorites_is_public and
|
2016-04-25 05:18:17 -04:00
|
|
|
not is_server_protocol_compat_or_error(
|
|
|
|
fav.proto_min, fav.proto_max) then
|
2015-02-16 19:37:14 -05:00
|
|
|
return true
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
else
|
2016-04-25 05:18:17 -04:00
|
|
|
gamedata.servername = ""
|
|
|
|
gamedata.serverdescription = ""
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
gamedata.selected_world = 0
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
core.setting_set("address", fields.te_address)
|
|
|
|
core.setting_set("remote_port", fields.te_port)
|
2014-04-18 09:39:15 -04:00
|
|
|
|
|
|
|
core.start()
|
2014-04-21 08:10:59 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2016-04-25 05:18:17 -04:00
|
|
|
if fields.btn_config_sp_world then
|
2014-04-21 08:10:59 -04:00
|
|
|
local configdialog = create_configure_world_dlg(1)
|
2016-04-25 05:18:17 -04:00
|
|
|
if configdialog then
|
2014-04-21 08:10:59 -04:00
|
|
|
configdialog:set_parent(tabview)
|
|
|
|
tabview:hide()
|
|
|
|
configdialog:show()
|
|
|
|
end
|
|
|
|
return true
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
local function on_activate(type,old_tab,new_tab)
|
2016-04-25 05:18:17 -04:00
|
|
|
if type == "LEAVE" then return end
|
|
|
|
asyncOnlineFavourites()
|
2014-04-18 09:39:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2016-03-31 04:26:39 -04:00
|
|
|
return {
|
2014-04-18 09:39:15 -04:00
|
|
|
name = "main",
|
|
|
|
caption = fgettext("Main"),
|
|
|
|
cbf_formspec = get_formspec,
|
|
|
|
cbf_button_handler = main_button_handler,
|
|
|
|
on_change = on_activate
|
2016-03-31 04:26:39 -04:00
|
|
|
}
|