2021-04-06 14:50:34 +02:00
|
|
|
mcl_bossbars = {
|
|
|
|
bars = {},
|
|
|
|
huds = {},
|
2021-04-07 16:47:14 +02:00
|
|
|
static = {},
|
2021-04-06 14:50:34 +02:00
|
|
|
colors = {"light_purple", "blue", "red", "green", "yellow", "dark_purple", "white"},
|
2021-04-07 17:39:13 +02:00
|
|
|
max_bars = tonumber(minetest.settings:get("max_bossbars")) or 4
|
2021-04-06 14:50:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function mcl_bossbars.recalculate_colors()
|
|
|
|
local sorted = {}
|
|
|
|
local colors = mcl_bossbars.colors
|
|
|
|
local color_count = #colors
|
|
|
|
local frame_count = color_count * 2
|
|
|
|
for i, color in ipairs(colors) do
|
|
|
|
local idx = i * 2 - 1
|
|
|
|
local image = "mcl_bossbars.png"
|
|
|
|
.. "^[transformR270"
|
|
|
|
.. "^[verticalframe:" .. frame_count .. ":" .. (idx - 1)
|
|
|
|
.. "^(mcl_bossbars_empty.png"
|
|
|
|
.. "^[lowpart:%d:mcl_bossbars.png"
|
|
|
|
.. "^[transformR270"
|
|
|
|
.. "^[verticalframe:" .. frame_count .. ":" .. idx .. ")"
|
|
|
|
local _, hex = mcl_util.get_color(color)
|
|
|
|
sorted[color] = {
|
|
|
|
image = image,
|
|
|
|
hex = hex,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
mcl_bossbars.colors_sorted = sorted
|
|
|
|
end
|
|
|
|
|
2021-04-07 16:47:14 +02:00
|
|
|
local function get_color_info(color, percentage)
|
2021-04-06 14:50:34 +02:00
|
|
|
local cdef = mcl_bossbars.colors_sorted[color]
|
2021-04-07 16:47:14 +02:00
|
|
|
return cdef.hex, string.format(cdef.image, percentage)
|
|
|
|
end
|
|
|
|
|
|
|
|
local last_id = 0
|
|
|
|
|
2021-04-09 13:35:58 +02:00
|
|
|
function mcl_bossbars.add_bar(player, def, dynamic, priority)
|
2021-04-07 16:47:14 +02:00
|
|
|
local name = player:get_player_name()
|
2021-04-07 16:56:21 +02:00
|
|
|
local bars = mcl_bossbars.bars[name]
|
2021-04-09 13:35:58 +02:00
|
|
|
local bar = {text = def.text, priority = priority or 0}
|
2021-04-07 16:47:14 +02:00
|
|
|
bar.color, bar.image = get_color_info(def.color, def.percentage)
|
2021-04-09 13:35:58 +02:00
|
|
|
if dynamic then
|
2021-04-07 16:56:21 +02:00
|
|
|
for _, other in pairs(bars) do
|
|
|
|
if not other.id and other.color == bar.color and (other.original_text or other.text) == bar.text and other.image == bar.image then
|
|
|
|
if not other.count then
|
|
|
|
other.count = 1
|
|
|
|
other.original_text = other.text
|
|
|
|
end
|
|
|
|
other.count = other.count + 1
|
|
|
|
other.text = other.original_text .. " x" .. other.count
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
table.insert(bars, bar)
|
2021-04-09 13:35:58 +02:00
|
|
|
if not dynamic then
|
2021-04-07 16:47:14 +02:00
|
|
|
bar.raw_color = def.color
|
|
|
|
bar.id = last_id + 1
|
|
|
|
last_id = bar.id
|
|
|
|
mcl_bossbars.static[bar.id] = bar
|
2021-04-11 10:41:11 +02:00
|
|
|
return bar.id
|
2021-04-07 16:47:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_bossbars.remove_bar(id)
|
|
|
|
mcl_bossbars.static[id].bar.static = false
|
|
|
|
mcl_bossbars.static[id] = nil
|
|
|
|
end
|
|
|
|
|
2021-04-09 13:35:58 +02:00
|
|
|
function mcl_bossbars.update_bar(id, def, priority)
|
2021-04-07 16:47:14 +02:00
|
|
|
local old = mcl_bossbars.static[id]
|
|
|
|
old.color = get_color_info(def.color or old.raw_color, def.percentage or old.percentage)
|
|
|
|
old.text = def.text or old.text
|
2021-04-09 13:35:58 +02:00
|
|
|
old.priority = priority or old.priority
|
2021-04-06 14:50:34 +02:00
|
|
|
end
|
|
|
|
|
2021-04-11 11:15:09 +02:00
|
|
|
function mcl_bossbars.update_boss(object, name, color)
|
|
|
|
local props = object:get_luaentity()
|
|
|
|
if not props or not props._cmi_is_mob then
|
|
|
|
props = object:get_properties()
|
|
|
|
props.health = object:get_hp()
|
|
|
|
end
|
|
|
|
|
2021-04-07 16:47:14 +02:00
|
|
|
local bardef = {
|
|
|
|
color = color,
|
2021-04-11 11:15:09 +02:00
|
|
|
text = props.nametag,
|
|
|
|
percentage = math.floor(props.health / props.hp_max * 100),
|
2021-04-07 16:47:14 +02:00
|
|
|
}
|
2021-04-11 11:15:09 +02:00
|
|
|
|
2021-04-07 16:47:14 +02:00
|
|
|
if not bardef.text or bardef.text == "" then
|
|
|
|
bardef.text = name
|
2021-04-06 14:50:34 +02:00
|
|
|
end
|
2021-04-11 11:15:09 +02:00
|
|
|
|
2021-04-09 13:22:45 +02:00
|
|
|
local pos = object:get_pos()
|
|
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
2021-04-09 13:35:58 +02:00
|
|
|
local d = vector.distance(pos, player:get_pos())
|
|
|
|
if d <= 80 then
|
|
|
|
mcl_bossbars.add_bar(player, bardef, true, d)
|
2021-04-06 14:50:34 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
mcl_bossbars.huds[name] = {}
|
|
|
|
mcl_bossbars.bars[name] = {}
|
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
mcl_bossbars.huds[name] = nil
|
2021-04-07 16:47:14 +02:00
|
|
|
for _, bar in pairs(mcl_bossbars.bars[name]) do
|
|
|
|
if bar.id then
|
|
|
|
mcl_bossbars.static[bar.id] = nil
|
|
|
|
end
|
|
|
|
end
|
2021-04-06 14:50:34 +02:00
|
|
|
mcl_bossbars.bars[name] = nil
|
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_globalstep(function()
|
|
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
|
|
|
local name = player:get_player_name()
|
|
|
|
local bars = mcl_bossbars.bars[name]
|
|
|
|
local huds = mcl_bossbars.huds[name]
|
2021-04-09 13:35:58 +02:00
|
|
|
table.sort(bars, function(a, b) return a.priority < b.priority end)
|
2021-04-06 14:50:34 +02:00
|
|
|
local huds_new = {}
|
2021-04-07 16:47:14 +02:00
|
|
|
local bars_new = {}
|
2021-04-06 14:50:34 +02:00
|
|
|
local i = 0
|
|
|
|
|
|
|
|
while #huds > 0 or #bars > 0 do
|
|
|
|
local bar = table.remove(bars, 1)
|
|
|
|
local hud = table.remove(huds, 1)
|
|
|
|
|
2021-04-07 16:47:14 +02:00
|
|
|
if bar and bar.id then
|
|
|
|
table.insert(bars_new, bar)
|
|
|
|
end
|
|
|
|
|
2021-04-06 14:50:34 +02:00
|
|
|
if bar and not hud then
|
2021-04-07 17:02:03 +02:00
|
|
|
if i < mcl_bossbars.max_bars then
|
|
|
|
hud = {
|
|
|
|
color = bar.color,
|
|
|
|
image = bar.image,
|
2021-04-06 14:50:34 +02:00
|
|
|
text = bar.text,
|
2021-04-07 17:02:03 +02:00
|
|
|
text_id = player:hud_add({
|
|
|
|
hud_elem_type = "text",
|
|
|
|
text = bar.text,
|
|
|
|
number = bar.color,
|
|
|
|
position = {x = 0.5, y = 0},
|
|
|
|
alignment = {x = 0, y = 1},
|
|
|
|
offset = {x = 0, y = i * 40},
|
|
|
|
}),
|
|
|
|
image_id = player:hud_add({
|
|
|
|
hud_elem_type = "image",
|
|
|
|
text = bar.image,
|
|
|
|
position = {x = 0.5, y = 0},
|
|
|
|
alignment = {x = 0, y = 1},
|
|
|
|
offset = {x = 0, y = i * 40 + 25},
|
|
|
|
scale = {x = 3, y = 3},
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
end
|
2021-04-06 14:50:34 +02:00
|
|
|
elseif hud and not bar then
|
|
|
|
player:hud_remove(hud.text_id)
|
|
|
|
player:hud_remove(hud.image_id)
|
|
|
|
hud = nil
|
|
|
|
else
|
|
|
|
if bar.text ~= hud.text then
|
|
|
|
player:hud_change(hud.text_id, "text", bar.text)
|
|
|
|
hud.text = bar.text
|
|
|
|
end
|
|
|
|
|
|
|
|
if bar.color ~= hud.color then
|
|
|
|
player:hud_change(hud.text_id, "number", bar.color)
|
|
|
|
hud.color = bar.color
|
|
|
|
end
|
|
|
|
|
|
|
|
if bar.image ~= hud.image then
|
|
|
|
player:hud_change(hud.image_id, "text", bar.image)
|
|
|
|
hud.image = bar.image
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
table.insert(huds_new, hud)
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
mcl_bossbars.huds[name] = huds_new
|
2021-04-07 16:47:14 +02:00
|
|
|
mcl_bossbars.bars[name] = bars_new
|
2021-04-06 14:50:34 +02:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
mcl_bossbars.recalculate_colors()
|