2019-12-14 17:47:31 +01:00
|
|
|
-- support for i18n
|
2021-05-16 14:55:23 +02:00
|
|
|
local S = armor_i18n.gettext
|
2019-12-14 17:47:31 +01:00
|
|
|
local F = minetest.formspec_escape
|
|
|
|
local has_technic = minetest.get_modpath("technic") ~= nil
|
|
|
|
|
|
|
|
if not minetest.global_exists("unified_inventory") then
|
2021-05-16 14:55:23 +02:00
|
|
|
minetest.log("warning", S("3d_armor_ui: Mod loaded but unused."))
|
2019-12-14 17:47:31 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-05-16 14:55:23 +02:00
|
|
|
if unified_inventory.sfinv_compat_layer then
|
2019-12-14 17:47:31 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
armor:register_on_update(function(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
if unified_inventory.current_page[name] == "armor" then
|
|
|
|
unified_inventory.set_inventory_formspec(player, "armor")
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
unified_inventory.register_button("armor", {
|
|
|
|
type = "image",
|
|
|
|
image = "inventory_plus_armor.png",
|
|
|
|
tooltip = S("3d Armor")
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_page("armor", {
|
|
|
|
get_formspec = function(player, perplayer_formspec)
|
2021-05-16 14:55:23 +02:00
|
|
|
local fy = perplayer_formspec.formspec_y
|
2019-12-14 17:47:31 +01:00
|
|
|
local name = player:get_player_name()
|
|
|
|
if armor.def[name].init_time == 0 then
|
|
|
|
return {formspec="label[0,0;"..F(S("Armor not initialized!")).."]"}
|
|
|
|
end
|
2021-05-16 14:55:23 +02:00
|
|
|
local formspec = "background[0.06,"..fy..";7.92,7.52;3d_armor_ui_form.png]"..
|
|
|
|
"label[0,0;"..F(S("Armor")).."]"..
|
|
|
|
"list[detached:"..name.."_armor;armor;0,"..fy..";2,3;]"..
|
|
|
|
"image[2.5,"..(fy - 0.25)..";2,4;"..armor.textures[name].preview.."]"..
|
|
|
|
"label[5.0,"..(fy + 0.0)..";"..F(S("Level"))..": "..armor.def[name].level.."]"..
|
|
|
|
"label[5.0,"..(fy + 0.5)..";"..F(S("Heal"))..": "..armor.def[name].heal.."]"..
|
2019-12-14 17:47:31 +01:00
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[detached:"..name.."_armor;armor]"
|
|
|
|
if armor.config.fire_protect then
|
|
|
|
formspec = formspec.."label[5.0,"..(fy + 1.0)..";"..
|
|
|
|
F(S("Fire"))..": "..armor.def[name].fire.."]"
|
|
|
|
end
|
|
|
|
if has_technic then
|
2021-05-16 14:55:23 +02:00
|
|
|
formspec = formspec.."label[5.0,"..(fy + 1.5)..";"..
|
2019-12-14 17:47:31 +01:00
|
|
|
F(S("Radiation"))..": "..armor.def[name].groups["radiation"].."]"
|
|
|
|
end
|
|
|
|
return {formspec=formspec}
|
|
|
|
end,
|
|
|
|
})
|