2022-02-12 23:13:16 +01:00
|
|
|
--local usage
|
|
|
|
local futil = computers.formspec
|
|
|
|
|
|
|
|
computers.show_formspec = computers.formspec.show_formspec
|
|
|
|
|
2022-02-12 22:36:11 +01:00
|
|
|
function computers.load_gui(pos, node, clicker)
|
2022-02-12 23:13:16 +01:00
|
|
|
--minetest.chat_send_all("test")
|
2022-02-13 01:21:39 +01:00
|
|
|
local function select_btn(form, btn)
|
|
|
|
--to hardcoded
|
|
|
|
for _, obtn in pairs({"terminal", "browser"}) do
|
|
|
|
local cindex = futil.get_index_by_name(form, obtn .. "_btn")
|
|
|
|
form[cindex].props.bgimg = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff70"
|
|
|
|
form[cindex].props.bgimg_hovered = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff90"
|
|
|
|
|
|
|
|
cindex = futil.get_index_by_name(form, obtn .. "_ctn")
|
|
|
|
form[cindex].state = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
local cindex = futil.get_index_by_name(form, btn .. "_btn")
|
|
|
|
form[cindex].props.bgimg = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff20"
|
|
|
|
form[cindex].props.bgimg_hovered = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff40"
|
|
|
|
|
|
|
|
local aindex = futil.get_index_by_name(form, btn .. "_ctn")
|
|
|
|
form[aindex].state = 0
|
|
|
|
end
|
2022-02-12 23:13:16 +01:00
|
|
|
|
|
|
|
local formspec = {
|
|
|
|
formspec_version = 4,
|
|
|
|
{
|
|
|
|
type = "size",
|
|
|
|
w = 10,
|
2022-02-13 01:21:39 +01:00
|
|
|
h = 12,
|
2022-02-12 23:13:16 +01:00
|
|
|
},
|
|
|
|
{
|
2022-02-13 01:21:39 +01:00
|
|
|
type = "no_prepend"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "bgcolor",
|
|
|
|
bgcolor = "black",
|
|
|
|
fullscreen = "neither"
|
2022-02-12 23:13:16 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "button",
|
2022-02-13 01:21:39 +01:00
|
|
|
x = 0,
|
|
|
|
y = 0,
|
|
|
|
w = 2,
|
|
|
|
h = 1,
|
|
|
|
name = "terminal_btn",
|
|
|
|
label = "Terminal",
|
2022-02-12 23:13:16 +01:00
|
|
|
on_event = function(form, player, element)
|
2022-02-13 01:21:39 +01:00
|
|
|
select_btn(form, "terminal")
|
|
|
|
--[[ minetest.chat_send_all("delim")
|
|
|
|
minetest.chat_send_all("browser: " .. form[futil.get_index_by_name(form, "browser_ctn")].state)
|
|
|
|
minetest.chat_send_all("terminal: " .. form[futil.get_index_by_name(form, "terminal_ctn")].state) ]]
|
2022-02-12 23:13:16 +01:00
|
|
|
|
|
|
|
return form
|
|
|
|
end,
|
|
|
|
props = {
|
|
|
|
border = false,
|
|
|
|
bgimg = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff70",
|
|
|
|
bgimg_hovered = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff90",
|
|
|
|
bgimg_middle = "4,4",
|
|
|
|
}
|
2022-02-13 01:21:39 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "button",
|
|
|
|
x = 2,
|
|
|
|
y = 0,
|
|
|
|
w = 2,
|
|
|
|
h = 1,
|
|
|
|
name = "browser_btn",
|
|
|
|
label = "Browser",
|
|
|
|
on_event = function(form, player, element)
|
|
|
|
select_btn(form, "browser")
|
|
|
|
--[[ minetest.chat_send_all("delim")
|
|
|
|
minetest.chat_send_all("browser: " .. form[futil.get_index_by_name(form, "browser_ctn")].state)
|
|
|
|
minetest.chat_send_all("terminal: " .. form[futil.get_index_by_name(form, "terminal_ctn")].state) ]]
|
|
|
|
|
|
|
|
return form
|
|
|
|
end,
|
|
|
|
props = {
|
|
|
|
border = false,
|
|
|
|
bgimg = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff70",
|
|
|
|
bgimg_hovered = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff90",
|
|
|
|
bgimg_middle = "4,4",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "container",
|
|
|
|
name = "terminal_ctn",
|
|
|
|
state = 0,
|
|
|
|
x = 0,
|
|
|
|
y = 1,
|
|
|
|
{
|
|
|
|
type = "background",
|
|
|
|
x = 0,
|
|
|
|
y = 0,
|
|
|
|
w = 10,
|
|
|
|
h = 11,
|
|
|
|
texture_name = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff70"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "label",
|
|
|
|
x = 1,
|
|
|
|
y = 1.5,
|
|
|
|
label = "terminal pane",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "button",
|
|
|
|
x = 1,
|
|
|
|
y = 2,
|
|
|
|
w = 5,
|
|
|
|
h = 2,
|
|
|
|
name = "test_btn",
|
|
|
|
label = "test btn",
|
|
|
|
on_event = function(form, player, element)
|
|
|
|
local cindex = futil.get_index_by_name(form, "test_btn")
|
|
|
|
form[cindex] = {type = "label", x=1, y=3, label = "test button label"}
|
|
|
|
|
|
|
|
return form
|
|
|
|
end,
|
|
|
|
props = {
|
|
|
|
border = false,
|
|
|
|
bgimg = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff70",
|
|
|
|
bgimg_hovered = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff90",
|
|
|
|
bgimg_middle = "4,4",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "container",
|
|
|
|
name = "browser_ctn",
|
|
|
|
state = 1,
|
|
|
|
x = 0,
|
|
|
|
y = 1,
|
|
|
|
{
|
|
|
|
type = "background",
|
|
|
|
x = 0,
|
|
|
|
y = 0,
|
|
|
|
w = 10,
|
|
|
|
h = 11,
|
|
|
|
texture_name = "kuto_button.png^[combine:16x16^[noalpha^[colorize:#ffffff70"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type = "label",
|
|
|
|
x = 1,
|
|
|
|
y = 1.5,
|
|
|
|
label = "browser pane",
|
|
|
|
},
|
2022-02-12 23:13:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
computers.show_formspec(clicker, "computers:gui", formspec)
|
2022-02-12 22:36:11 +01:00
|
|
|
end
|