2017-03-19 19:39:58 +01:00
|
|
|
if not minetest.global_exists("unified_inventory") then
|
|
|
|
minetest.log("warning", "3d_armor_ui: Mod loaded but unused.")
|
|
|
|
return
|
|
|
|
end
|
2017-03-31 20:54:12 +02:00
|
|
|
local S = function(s) return s end
|
|
|
|
if minetest.global_exists("intllib") then
|
|
|
|
S = intllib.Getter()
|
|
|
|
end
|
2017-03-19 19:39:58 +01:00
|
|
|
|
|
|
|
if unified_inventory.sfinv_compat_layer then
|
|
|
|
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",
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_page("armor", {
|
|
|
|
get_formspec = function(player, perplayer_formspec)
|
|
|
|
local fy = perplayer_formspec.formspec_y
|
|
|
|
local name = player:get_player_name()
|
|
|
|
local formspec = "background[0.06,"..fy..";7.92,7.52;3d_armor_ui_form.png]"..
|
2017-04-13 18:21:16 +02:00
|
|
|
"label[0,0;Armor]"
|
2017-04-11 21:42:58 +02:00
|
|
|
if armor.def[name] then
|
2017-04-11 21:54:26 +02:00
|
|
|
formspec = formspec..
|
2017-04-13 18:21:16 +02:00
|
|
|
"list[detached:"..name.."_armor;armor;0,"..fy..";2,3;]"..
|
2017-03-19 19:39:58 +01:00
|
|
|
"image[2.5,"..(fy - 0.25)..";2,4;"..armor.textures[name].preview.."]"..
|
2017-03-31 20:54:12 +02:00
|
|
|
"label[5.0,"..(fy + 0.0)..";"..S("Level")..": "..armor.def[name].level.."]"..
|
|
|
|
"label[5.0,"..(fy + 0.5)..";"..S("Heal")..": "..armor.def[name].heal.."]"..
|
2017-03-19 19:39:58 +01:00
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[detached:"..name.."_armor;armor]"
|
2017-04-11 21:42:58 +02:00
|
|
|
if armor.config.fire_protect then
|
|
|
|
formspec = formspec.."label[5.0,"..(fy + 1.0)..";"..
|
|
|
|
S("Fire")..": "..armor.def[name].fire.."]"
|
|
|
|
end
|
|
|
|
if minetest.global_exists("technic") then
|
|
|
|
formspec = formspec.."label[5.0,"..(fy + 1.5)..";"..
|
|
|
|
S("Radiation")..": "..armor.def[name].groups["radiation"].."]"
|
|
|
|
end
|
2017-03-19 19:39:58 +01:00
|
|
|
end
|
|
|
|
return {formspec=formspec}
|
|
|
|
end,
|
|
|
|
})
|