summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2015-02-23 23:32:04 +0100
committerWuzzy <almikes@aol.com>2015-02-23 23:32:04 +0100
commit00accc22ec5843b310e3c920e926fea79ac69d5b (patch)
tree411d3a6ffef3b43ac1a55d3887aac5af16d08327 /init.lua
parentee92b518ea2e9ca686815d1c9009435a55a75413 (diff)
Use HUD bars mod to show player's saturation level
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua28
1 files changed, 5 insertions, 23 deletions
diff --git a/init.lua b/init.lua
index 2926c36..4389411 100644
--- a/init.lua
+++ b/init.lua
@@ -27,35 +27,17 @@ if set then
end
local function custom_hud(player)
- local name = player:get_player_name()
-
if minetest.setting_getbool("enable_damage") then
--hunger
- player:hud_add({
- hud_elem_type = "statbar",
- position = HUD_HUNGER_POS,
- size = HUD_SIZE,
- text = "hud_hunger_bg.png",
- number = 20,
- alignment = {x=-1,y=-1},
- offset = HUD_HUNGER_OFFSET,
- })
- local h = hunger.hunger[name]
- if h == nil or h > 20 then h = 20 end
- hunger_hud[name] = player:hud_add({
- hud_elem_type = "statbar",
- position = HUD_HUNGER_POS,
- size = HUD_SIZE,
- text = "hud_hunger_fg.png",
- number = h,
- alignment = {x=-1,y=-1},
- offset = HUD_HUNGER_OFFSET,
- })
+ hb.init_hudbar(player, "saturation")
end
end
dofile(minetest.get_modpath("hunger").."/hunger.lua")
+-- register saturation hudbar
+hb.register_hudbar("saturation", 0xFFFFFF, "Saturation", { icon = "hunger_icon.png", bar = "hunger_bar.png" }, 20, 20, false)
+
-- update hud elemtens if value has changed
local function update_hud(player)
local name = player:get_player_name()
@@ -66,7 +48,7 @@ local function update_hud(player)
hunger.hunger_out[name] = h
-- bar should not have more than 10 icons
if h>20 then h=20 end
- player:hud_change(hunger_hud[name], "number", h)
+ hb.change_hudbar(player, "saturation", h)
end
end