VoxeLibre/mods/ENTITIES/mcl_burning/init.lua

118 lines
3.1 KiB
Lua
Raw Normal View History

2020-12-29 22:08:38 +01:00
local S = minetest.get_translator("mcl_burning")
2021-01-01 19:25:47 +01:00
local modpath = minetest.get_modpath("mcl_burning")
mcl_burning = {
2021-04-25 13:09:20 +02:00
storage = {},
2021-01-01 19:25:47 +01:00
animation_frames = tonumber(minetest.settings:get("fire_animation_frames")) or 8
}
2021-02-22 10:55:14 +01:00
dofile(modpath .. "/api.lua")
2021-01-01 19:25:47 +01:00
2021-04-25 13:09:20 +02:00
minetest.register_globalstep(function(dtime)
for _, player in pairs(minetest.get_connected_players()) do
local storage = mcl_burning.storage[player]
if not mcl_burning.tick(player, dtime, storage) and not mcl_burning.is_affected_by_rain(player) then
local nodes = mcl_burning.get_touching_nodes(player, {"group:puts_out_fire", "group:set_on_fire"}, storage)
local burn_time = 0
for _, pos in pairs(nodes) do
local node = minetest.get_node(pos)
if minetest.get_item_group(node.name, "puts_out_fire") > 0 then
burn_time = 0
break
end
local value = minetest.get_item_group(node.name, "set_on_fire")
if value > burn_time then
burn_time = value
end
end
if burn_time > 0 then
mcl_burning.set_on_fire(player, burn_time)
end
end
end
end)
minetest.register_on_respawnplayer(function(player)
mcl_burning.extinguish(player)
end)
minetest.register_on_joinplayer(function(player)
local storage
local burn_data = player:get_meta():get_string("mcl_burning:data")
if burn_data == "" then
storage = {}
else
storage = minetest.deserialize(burn_data)
end
mcl_burning.storage[player] = storage
end)
minetest.register_on_leaveplayer(function(player)
local storage = mcl_burning.storage[player]
storage.fire_hud_id = nil
player:get_meta():set_string("mcl_burning:data", minetest.serialize(storage))
mcl_burning.storage[player] = nil
end)
2021-01-01 19:25:47 +01:00
minetest.register_entity("mcl_burning:fire", {
initial_properties = {
physical = false,
collisionbox = {0, 0, 0, 0, 0, 0},
visual = "cube",
pointable = false,
glow = -1,
backface_culling = false,
2021-01-01 19:25:47 +01:00
},
2021-04-16 19:50:56 +02:00
2021-01-01 19:25:47 +01:00
animation_frame = 0,
animation_timer = 0,
2020-12-24 17:48:40 +01:00
2021-04-25 13:09:20 +02:00
on_step = function(self, dtime)
local parent, storage = self:sanity_check()
2020-12-24 17:48:40 +01:00
2021-04-25 13:09:20 +02:00
if parent then
self.animation_timer = self.animation_timer + dtime
if self.animation_timer >= 0.1 then
self.animation_timer = 0
self.animation_frame = self.animation_frame + 1
if self.animation_frame > mcl_burning.animation_frames - 1 then
self.animation_frame = 0
end
self:update_frame(parent, storage)
end
else
self.object:remove()
end
end,
sanity_check = function(self)
local parent = self.object:get_attach()
2020-12-24 17:48:40 +01:00
2021-04-25 13:09:20 +02:00
if not parent then
return
end
local storage = mcl_burning.get_storage(parent)
if not storage or not storage.burn_time then
return
end
return parent, storage
end,
update_frame = function(self, parent, storage)
local frame_overlay = "^[opacity:180^[verticalframe:" .. mcl_burning.animation_frames .. ":" .. self.animation_frame
local fire_texture = "mcl_burning_entity_flame_animated.png" .. frame_overlay
self.object:set_properties({textures = {"blank.png", "blank.png", fire_texture, fire_texture, fire_texture, fire_texture}})
if parent:is_player() then
parent:hud_change(storage.fire_hud_id, "text", "mcl_burning_hud_flame_animated.png" .. frame_overlay)
end
end,
})