aboutsummaryrefslogtreecommitdiff
path: root/textures/base/pack/heart.png
diff options
context:
space:
mode:
authorAlex <24834740+GreenXenith@users.noreply.github.com>2022-01-15 08:45:33 -0800
committerGitHub <noreply@github.com>2022-01-15 17:45:33 +0100
commit7c93b2d7a3b681bcb10450229140858c4ba54c3c (patch)
tree47a9288018644303545e29fbbd8a233964afed0f /textures/base/pack/heart.png
parent9a12e4499ecf5c1a3467af9c831d0d350a21923d (diff)
downloadminetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.gz
minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.bz2
minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.zip
Give the ASCII console splash a facelift
Diffstat (limited to 'textures/base/pack/heart.png')
0 files changed, 0 insertions, 0 deletions
f='#n125'>125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
-- cache setting
local enable_damage = core.settings:get_bool("enable_damage")

local health_bar_definition =
{
	hud_elem_type = "statbar",
	position = { x=0.5, y=1 },
	text = "heart.png",
	number = core.PLAYER_MAX_HP_DEFAULT,
	direction = 0,
	size = { x=24, y=24 },
	offset = { x=(-10*24)-25, y=-(48+24+16)},
}

local breath_bar_definition =
{
	hud_elem_type = "statbar",
	position = { x=0.5, y=1 },
	text = "bubble.png",
	number = core.PLAYER_MAX_BREATH_DEFAULT,
	direction = 0,
	size = { x=24, y=24 },
	offset = {x=25,y=-(48+24+16)},
}

local hud_ids = {}

local function scaleToDefault(player, field)
	-- Scale "hp" or "breath" to the default dimensions
	local current = player["get_" .. field](player)
	local nominal = core["PLAYER_MAX_".. field:upper() .. "_DEFAULT"]
	local max_display = math.max(nominal,
 		math.max(player:get_properties()[field .. "_max"], current))
 	return current / max_display * nominal 
end

local function update_builtin_statbars(player)
	local name = player:get_player_name()

	if name == "" then
		return
	end

	local flags = player:hud_get_flags()
	if not hud_ids[name] then
		hud_ids[name] = {}
		-- flags are not transmitted to client on connect, we need to make sure
		-- our current flags are transmitted by sending them actively
		player:hud_set_flags(flags)
	end
	local hud = hud_ids[name]

	if flags.healthbar and enable_damage then
		local number = scaleToDefault(player, "hp")
 		if hud.id_healthbar == nil then
 			local hud_def = table.copy(health_bar_definition)
			hud_def.number = number
			hud.id_healthbar = player:hud_add(hud_def)
		else
			player:hud_change(hud.id_healthbar, "number", number)
		end