2017-02-10 17:40:57 +00:00
|
|
|
-- cache setting
|
2014-12-12 14:49:19 -05:00
|
|
|
local enable_damage = core.settings:get_bool("enable_damage")
|
2020-08-06 19:26:15 +02:00
|
|
|
local disable_health = false
|
2014-04-28 23:41:27 +02:00
|
|
|
|
2019-08-06 19:30:18 +01:00
|
|
|
local health_bar_definition = {
|
2014-04-28 23:41:27 +02:00
|
|
|
hud_elem_type = "statbar",
|
2020-08-06 19:26:15 +02:00
|
|
|
position = {x = 0.5, y = 1},
|
|
|
|
alignment = {x = -1, y = -1},
|
|
|
|
offset = {x = -247, y = -94},
|
|
|
|
size = {x = 24, y = 24},
|
|
|
|
text = "heart.png",
|
|
|
|
background = "heart_gone.png",
|
|
|
|
number = 20
|
2014-04-28 23:41:27 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 19:30:18 +01:00
|
|
|
local breath_bar_definition = {
|
2014-04-28 23:41:27 +02:00
|
|
|
hud_elem_type = "statbar",
|
2020-08-06 19:26:15 +02:00
|
|
|
position = {x = 0.5, y = 1},
|
|
|
|
alignment = {x = -1, y = -1},
|
|
|
|
offset = {x = 8, y = -120},
|
|
|
|
size = {x = 24, y = 24},
|
|
|
|
text = "bubble.png",
|
|
|
|
number = 20
|
2014-04-28 23:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local hud_ids = {}
|
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
local function update_builtin_statbars(player)
|
2014-04-28 23:41:27 +02:00
|
|
|
local name = player:get_player_name()
|
|
|
|
|
|
|
|
if name == "" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
local flags = player:hud_get_flags()
|
2017-08-23 22:32:10 +02:00
|
|
|
if not hud_ids[name] then
|
2014-04-28 23:41:27 +02:00
|
|
|
hud_ids[name] = {}
|
2014-05-11 00:35:31 +02:00
|
|
|
-- flags are not transmitted to client on connect, we need to make sure
|
|
|
|
-- our current flags are transmitted by sending them actively
|
2018-05-20 17:58:41 +02:00
|
|
|
player:hud_set_flags(flags)
|
2014-04-28 23:41:27 +02:00
|
|
|
end
|
2020-08-06 19:26:15 +02:00
|
|
|
local hud_id = hud_ids[name]
|
2014-04-28 23:41:27 +02:00
|
|
|
|
2020-08-06 19:26:15 +02:00
|
|
|
if flags.healthbar and not disable_health then
|
|
|
|
hud.change_item(player, "health", {number = player:get_hp()})
|
2014-04-28 23:41:27 +02:00
|
|
|
end
|
|
|
|
|
2020-08-06 19:26:15 +02:00
|
|
|
if flags.breathbar and player:get_breath() < 10 then
|
|
|
|
local number = player:get_breath() * 2
|
|
|
|
if hud_id.id_breathbar == nil then
|
2019-08-06 19:30:18 +01:00
|
|
|
local hud_def = table.copy(breath_bar_definition)
|
2018-05-20 17:58:41 +02:00
|
|
|
hud_def.number = number
|
2020-08-06 19:26:15 +02:00
|
|
|
hud_id.id_breathbar = player:hud_add(hud_def)
|
|
|
|
else
|
|
|
|
player:hud_change(hud_id.id_breathbar, "number", number)
|
2020-04-28 23:00:57 +05:30
|
|
|
end
|
2020-08-06 19:26:15 +02:00
|
|
|
elseif hud_id.id_breathbar then
|
|
|
|
player:hud_remove(hud_id.id_breathbar)
|
|
|
|
hud_id.id_breathbar = nil
|
2014-04-28 23:41:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function cleanup_builtin_statbars(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
|
|
|
|
if name == "" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
hud_ids[name] = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
local function player_event_handler(player,eventname)
|
|
|
|
assert(player:is_player())
|
|
|
|
|
|
|
|
local name = player:get_player_name()
|
|
|
|
|
2020-08-06 19:26:15 +02:00
|
|
|
if name == "" then
|
2014-04-28 23:41:27 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if eventname == "health_changed" then
|
2018-05-20 17:58:41 +02:00
|
|
|
update_builtin_statbars(player)
|
2014-04-28 23:41:27 +02:00
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
if hud_ids[name].id_healthbar then
|
2014-04-28 23:41:27 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if eventname == "breath_changed" then
|
2018-05-20 17:58:41 +02:00
|
|
|
update_builtin_statbars(player)
|
2014-04-28 23:41:27 +02:00
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
if hud_ids[name].id_breathbar then
|
2014-04-28 23:41:27 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-21 00:36:17 +01:00
|
|
|
if eventname == "hud_changed" or eventname == "properties_changed" then
|
2018-05-20 17:58:41 +02:00
|
|
|
update_builtin_statbars(player)
|
2014-04-28 23:41:27 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2019-08-06 19:30:18 +01:00
|
|
|
function core.hud_replace_builtin(hud_name, definition)
|
2020-08-06 19:26:15 +02:00
|
|
|
if hud_name == "health" then
|
|
|
|
disable_health = true
|
|
|
|
return true
|
|
|
|
end
|
2014-04-28 23:41:27 +02:00
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
if type(definition) ~= "table" or
|
|
|
|
definition.hud_elem_type ~= "statbar" then
|
2014-04-28 23:41:27 +02:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2019-08-06 19:30:18 +01:00
|
|
|
if hud_name == "breath" then
|
2014-04-28 23:41:27 +02:00
|
|
|
breath_bar_definition = definition
|
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
for name, ids in pairs(hud_ids) do
|
2014-04-27 21:02:48 -04:00
|
|
|
local player = core.get_player_by_name(name)
|
2018-05-20 17:58:41 +02:00
|
|
|
if player and ids.id_breathbar then
|
|
|
|
player:hud_remove(ids.id_breathbar)
|
|
|
|
ids.id_breathbar = nil
|
|
|
|
update_builtin_statbars(player)
|
2014-04-28 23:41:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2018-05-20 17:58:41 +02:00
|
|
|
-- Append "update_builtin_statbars" as late as possible
|
|
|
|
-- This ensures that the HUD is hidden when the flags are updated in this callback
|
2020-08-06 19:26:15 +02:00
|
|
|
if enable_damage then
|
|
|
|
core.register_on_mods_loaded(function()
|
|
|
|
if not disable_health then
|
|
|
|
hud.register("health", health_bar_definition)
|
|
|
|
core.register_on_joinplayer(update_builtin_statbars)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
core.register_on_leaveplayer(cleanup_builtin_statbars)
|
|
|
|
core.register_playerevent(player_event_handler)
|
|
|
|
end
|