2013-05-18 16:05:16 +02:00
|
|
|
-- minetest/fire/init.lua
|
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
-- Global namespace for functions
|
|
|
|
|
2014-12-03 16:59:36 +01:00
|
|
|
fire = {}
|
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
-- Register flame nodes
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
minetest.register_node("fire:basic_flame", {
|
2014-09-21 22:25:00 +02:00
|
|
|
drawtype = "firelike",
|
2015-09-22 22:37:05 +02:00
|
|
|
tiles = {
|
|
|
|
{
|
|
|
|
name = "fire_basic_flame_animated.png",
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 1
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2013-05-18 16:05:16 +02:00
|
|
|
inventory_image = "fire_basic_flame.png",
|
2015-08-26 03:31:56 +02:00
|
|
|
paramtype = "light",
|
2013-05-18 16:05:16 +02:00
|
|
|
light_source = 14,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
2015-08-26 03:31:56 +02:00
|
|
|
sunlight_propagates = true,
|
2013-05-18 16:05:16 +02:00
|
|
|
damage_per_second = 4,
|
2016-03-11 18:27:22 +01:00
|
|
|
groups = {igniter = 2, dig_immediate = 3, not_in_creative_inventory = 1},
|
2016-03-13 05:19:37 +01:00
|
|
|
on_timer = function(pos)
|
|
|
|
local f = minetest.find_node_near(pos, 1, {"group:flammable"})
|
|
|
|
if not f then
|
|
|
|
minetest.remove_node(pos)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
-- restart timer
|
|
|
|
return true
|
|
|
|
end,
|
2015-09-22 22:37:05 +02:00
|
|
|
drop = "",
|
2014-12-03 16:59:36 +01:00
|
|
|
|
|
|
|
on_construct = function(pos)
|
2016-03-13 05:19:37 +01:00
|
|
|
minetest.get_node_timer(pos):start(math.random(30, 60))
|
|
|
|
minetest.after(0, fire.update_sounds_around, pos)
|
2013-05-18 16:05:16 +02:00
|
|
|
end,
|
2014-12-03 16:59:36 +01:00
|
|
|
|
|
|
|
on_destruct = function(pos)
|
2016-03-13 05:19:37 +01:00
|
|
|
minetest.after(0, fire.update_sounds_around, pos)
|
2013-05-18 16:05:16 +02:00
|
|
|
end,
|
2015-03-07 08:32:00 +01:00
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
on_blast = function()
|
|
|
|
end, -- unaffected by explosions
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("fire:permanent_flame", {
|
|
|
|
description = "Permanent Flame",
|
|
|
|
drawtype = "firelike",
|
|
|
|
tiles = {
|
|
|
|
{
|
|
|
|
name = "fire_basic_flame_animated.png",
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 1
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
inventory_image = "fire_basic_flame.png",
|
|
|
|
paramtype = "light",
|
|
|
|
light_source = 14,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
damage_per_second = 4,
|
|
|
|
groups = {igniter = 2, dig_immediate = 3},
|
|
|
|
drop = "",
|
|
|
|
|
|
|
|
on_blast = function()
|
|
|
|
end,
|
2013-05-18 16:05:16 +02:00
|
|
|
})
|
|
|
|
|
2016-05-05 01:55:56 +02:00
|
|
|
|
|
|
|
-- Flint and steel
|
|
|
|
|
2016-03-11 18:27:22 +01:00
|
|
|
minetest.register_tool("fire:flint_and_steel", {
|
|
|
|
description = "Flint and Steel",
|
|
|
|
inventory_image = "fire_flint_steel.png",
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
2016-05-05 01:55:56 +02:00
|
|
|
itemstack:add_wear(1000)
|
2016-03-11 18:27:22 +01:00
|
|
|
local pt = pointed_thing
|
2016-05-05 01:55:56 +02:00
|
|
|
if pt.type == "node" then
|
2016-03-21 16:16:29 +01:00
|
|
|
local node_under = minetest.get_node(pt.under).name
|
2016-05-05 01:55:56 +02:00
|
|
|
local is_coalblock = node_under == "default:coalblock"
|
|
|
|
local is_tnt = node_under == "tnt:tnt"
|
|
|
|
local is_gunpowder = node_under == "tnt:gunpowder"
|
|
|
|
if minetest.get_item_group(node_under, "flammable") >= 1 or
|
|
|
|
is_coalblock or is_tnt or is_gunpowder then
|
|
|
|
local flame_pos = pt.above
|
|
|
|
if is_coalblock then
|
|
|
|
flame_pos = {x = pt.under.x, y = pt.under.y + 1, z = pt.under.z}
|
|
|
|
elseif is_tnt or is_gunpowder then
|
|
|
|
flame_pos = pt.under
|
|
|
|
end
|
|
|
|
if minetest.get_node(flame_pos).name == "air" or
|
|
|
|
is_tnt or is_gunpowder then
|
|
|
|
local player_name = user:get_player_name()
|
|
|
|
if not minetest.is_protected(flame_pos, player_name) then
|
|
|
|
if is_coalblock then
|
|
|
|
minetest.set_node(flame_pos,
|
|
|
|
{name = "fire:permanent_flame"})
|
|
|
|
elseif is_tnt then
|
|
|
|
minetest.set_node(flame_pos,
|
|
|
|
{name = "tnt:tnt_burning"})
|
|
|
|
elseif is_gunpowder then
|
|
|
|
minetest.set_node(flame_pos,
|
|
|
|
{name = "tnt:gunpowder_burning"})
|
|
|
|
else
|
|
|
|
minetest.set_node(flame_pos,
|
|
|
|
{name = "fire:basic_flame"})
|
|
|
|
end
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(player_name, "This area is protected")
|
|
|
|
end
|
2016-03-21 16:16:29 +01:00
|
|
|
end
|
2016-03-11 18:27:22 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "fire:flint_and_steel",
|
|
|
|
recipe = {
|
|
|
|
{"default:flint", "default:steel_ingot"}
|
|
|
|
}
|
|
|
|
})
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2016-05-05 01:55:56 +02:00
|
|
|
|
|
|
|
-- Override coalblock to enable permanent flame above
|
|
|
|
-- Coalblock is non-flammable to avoid unwanted basic_flame nodes
|
|
|
|
|
|
|
|
minetest.override_item("default:coalblock", {
|
|
|
|
after_destruct = function(pos, oldnode)
|
|
|
|
pos.y = pos.y + 1
|
|
|
|
if minetest.get_node(pos).name == "fire:permanent_flame" then
|
|
|
|
minetest.remove_node(pos)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
-- Get sound area of position
|
|
|
|
|
2015-08-26 03:31:56 +02:00
|
|
|
fire.D = 6 -- size of sound areas
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
function fire.get_area_p0p1(pos)
|
|
|
|
local p0 = {
|
2015-08-18 02:33:43 +02:00
|
|
|
x = math.floor(pos.x / fire.D) * fire.D,
|
|
|
|
y = math.floor(pos.y / fire.D) * fire.D,
|
|
|
|
z = math.floor(pos.z / fire.D) * fire.D,
|
2013-05-18 16:05:16 +02:00
|
|
|
}
|
|
|
|
local p1 = {
|
2015-08-18 02:33:43 +02:00
|
|
|
x = p0.x + fire.D - 1,
|
|
|
|
y = p0.y + fire.D - 1,
|
|
|
|
z = p0.z + fire.D - 1
|
2013-05-18 16:05:16 +02:00
|
|
|
}
|
|
|
|
return p0, p1
|
|
|
|
end
|
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2015-08-26 03:31:56 +02:00
|
|
|
-- Fire sounds table
|
|
|
|
-- key: position hash of low corner of area
|
|
|
|
-- value: {handle=sound handle, name=sound name}
|
|
|
|
fire.sounds = {}
|
|
|
|
|
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
-- Update fire sounds in sound area of position
|
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
function fire.update_sounds_around(pos)
|
|
|
|
local p0, p1 = fire.get_area_p0p1(pos)
|
2015-08-18 02:33:43 +02:00
|
|
|
local cp = {x = (p0.x + p1.x) / 2, y = (p0.y + p1.y) / 2, z = (p0.z + p1.z) / 2}
|
2013-05-25 00:40:03 +02:00
|
|
|
local flames_p = minetest.find_nodes_in_area(p0, p1, {"fire:basic_flame"})
|
2013-05-18 16:05:16 +02:00
|
|
|
--print("number of flames at "..minetest.pos_to_string(p0).."/"
|
|
|
|
-- ..minetest.pos_to_string(p1)..": "..#flames_p)
|
|
|
|
local should_have_sound = (#flames_p > 0)
|
|
|
|
local wanted_sound = nil
|
|
|
|
if #flames_p >= 9 then
|
2015-08-26 03:31:56 +02:00
|
|
|
wanted_sound = {name = "fire_large", gain = 0.7}
|
2013-05-18 16:05:16 +02:00
|
|
|
elseif #flames_p > 0 then
|
2015-08-26 03:31:56 +02:00
|
|
|
wanted_sound = {name = "fire_small", gain = 0.9}
|
2013-05-18 16:05:16 +02:00
|
|
|
end
|
|
|
|
local p0_hash = minetest.hash_node_position(p0)
|
|
|
|
local sound = fire.sounds[p0_hash]
|
|
|
|
if not sound then
|
|
|
|
if should_have_sound then
|
|
|
|
fire.sounds[p0_hash] = {
|
2015-08-18 02:33:43 +02:00
|
|
|
handle = minetest.sound_play(wanted_sound,
|
|
|
|
{pos = cp, max_hear_distance = 16, loop = true}),
|
2013-05-18 16:05:16 +02:00
|
|
|
name = wanted_sound.name,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if not wanted_sound then
|
|
|
|
minetest.sound_stop(sound.handle)
|
|
|
|
fire.sounds[p0_hash] = nil
|
|
|
|
elseif sound.name ~= wanted_sound.name then
|
|
|
|
minetest.sound_stop(sound.handle)
|
|
|
|
fire.sounds[p0_hash] = {
|
2015-08-18 02:33:43 +02:00
|
|
|
handle = minetest.sound_play(wanted_sound,
|
|
|
|
{pos = cp, max_hear_distance = 16, loop = true}),
|
2013-05-18 16:05:16 +02:00
|
|
|
name = wanted_sound.name,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
-- Extinguish all flames quickly with water, snow, ice
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
minetest.register_abm({
|
2016-08-08 11:56:13 +02:00
|
|
|
label = "Extinguish flame",
|
2015-09-22 22:37:05 +02:00
|
|
|
nodenames = {"fire:basic_flame", "fire:permanent_flame"},
|
|
|
|
neighbors = {"group:puts_out_fire"},
|
|
|
|
interval = 3,
|
2016-02-13 09:33:58 +01:00
|
|
|
chance = 1,
|
2015-11-05 02:17:13 +01:00
|
|
|
catch_up = false,
|
2016-07-11 15:11:57 +02:00
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
minetest.remove_node(pos)
|
2015-09-22 22:37:05 +02:00
|
|
|
minetest.sound_play("fire_extinguish_flame",
|
2016-07-11 15:11:57 +02:00
|
|
|
{pos = pos, max_hear_distance = 16, gain = 0.25})
|
2015-09-22 22:37:05 +02:00
|
|
|
end,
|
|
|
|
})
|
2015-08-26 03:31:56 +02:00
|
|
|
|
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
-- Enable the following ABMs according to 'disable fire' setting
|
2015-08-26 03:31:56 +02:00
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
if minetest.setting_getbool("disable_fire") then
|
2015-08-26 03:31:56 +02:00
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
-- Remove basic flames only
|
2015-08-26 03:31:56 +02:00
|
|
|
|
|
|
|
minetest.register_abm({
|
2016-08-08 11:56:13 +02:00
|
|
|
label = "Remove disabled fire",
|
2015-08-26 03:31:56 +02:00
|
|
|
nodenames = {"fire:basic_flame"},
|
2015-09-22 22:37:05 +02:00
|
|
|
interval = 7,
|
2016-02-13 09:33:58 +01:00
|
|
|
chance = 1,
|
2015-11-05 02:17:13 +01:00
|
|
|
catch_up = false,
|
2016-07-11 15:11:57 +02:00
|
|
|
action = minetest.remove_node,
|
2015-08-26 03:31:56 +02:00
|
|
|
})
|
|
|
|
|
2015-09-22 22:37:05 +02:00
|
|
|
else
|
|
|
|
|
|
|
|
-- Ignite neighboring nodes, add basic flames
|
2015-08-26 03:31:56 +02:00
|
|
|
|
|
|
|
minetest.register_abm({
|
2016-08-08 11:56:13 +02:00
|
|
|
label = "Ignite flame",
|
2015-08-26 03:31:56 +02:00
|
|
|
nodenames = {"group:flammable"},
|
|
|
|
neighbors = {"group:igniter"},
|
|
|
|
interval = 7,
|
2016-03-19 21:49:29 +01:00
|
|
|
chance = 12,
|
2015-11-05 02:17:13 +01:00
|
|
|
catch_up = false,
|
2016-07-11 15:11:57 +02:00
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
2015-08-26 03:31:56 +02:00
|
|
|
-- If there is water or stuff like that around node, don't ignite
|
2016-07-11 15:11:57 +02:00
|
|
|
if minetest.find_node_near(pos, 1, {"group:puts_out_fire"}) then
|
2015-08-26 03:31:56 +02:00
|
|
|
return
|
|
|
|
end
|
2016-07-11 15:11:57 +02:00
|
|
|
local p = minetest.find_node_near(pos, 1, {"air"})
|
2015-08-26 03:31:56 +02:00
|
|
|
if p then
|
|
|
|
minetest.set_node(p, {name = "fire:basic_flame"})
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2016-03-13 05:19:37 +01:00
|
|
|
-- Remove flammable nodes
|
2015-08-26 03:31:56 +02:00
|
|
|
|
|
|
|
minetest.register_abm({
|
2016-08-08 11:56:13 +02:00
|
|
|
label = "Remove flammable nodes",
|
2015-08-26 03:31:56 +02:00
|
|
|
nodenames = {"fire:basic_flame"},
|
2016-03-13 05:19:37 +01:00
|
|
|
neighbors = "group:flammable",
|
2015-08-26 03:31:56 +02:00
|
|
|
interval = 5,
|
2016-03-13 05:19:37 +01:00
|
|
|
chance = 18,
|
2015-11-05 02:17:13 +01:00
|
|
|
catch_up = false,
|
2016-07-11 15:11:57 +02:00
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
local p = minetest.find_node_near(pos, 1, {"group:flammable"})
|
2016-03-13 05:19:37 +01:00
|
|
|
if p then
|
2015-08-26 03:31:56 +02:00
|
|
|
-- remove flammable nodes around flame
|
2016-06-26 14:46:15 +02:00
|
|
|
local flammable_node = minetest.get_node(p)
|
|
|
|
local def = minetest.registered_nodes[flammable_node.name]
|
2016-03-13 02:50:09 +01:00
|
|
|
if def.on_burn then
|
|
|
|
def.on_burn(p)
|
|
|
|
else
|
|
|
|
minetest.remove_node(p)
|
|
|
|
nodeupdate(p)
|
2015-08-26 03:31:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
end
|
2013-05-18 16:05:16 +02:00
|
|
|
|
2015-08-18 02:33:43 +02:00
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
-- Rarely ignite things from far
|
2015-08-18 02:33:43 +02:00
|
|
|
|
|
|
|
--[[ Currently disabled to reduce the chance of uncontrollable spreading
|
|
|
|
fires that disrupt servers. Also for less lua processing load.
|
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"group:igniter"},
|
|
|
|
neighbors = {"air"},
|
2015-03-12 02:53:19 +01:00
|
|
|
interval = 5,
|
2013-05-18 16:05:16 +02:00
|
|
|
chance = 10,
|
2016-07-11 15:11:57 +02:00
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
2013-05-18 16:05:16 +02:00
|
|
|
local reg = minetest.registered_nodes[node.name]
|
|
|
|
if not reg or not reg.groups.igniter or reg.groups.igniter < 2 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local d = reg.groups.igniter
|
2016-07-11 15:11:57 +02:00
|
|
|
local p = minetest.find_node_near(pos, d, {"group:flammable"})
|
2013-05-18 16:05:16 +02:00
|
|
|
if p then
|
|
|
|
-- If there is water or stuff like that around flame, don't ignite
|
|
|
|
if fire.flame_should_extinguish(p) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local p2 = fire.find_pos_for_flame_around(p)
|
|
|
|
if p2 then
|
2015-08-18 02:33:43 +02:00
|
|
|
minetest.set_node(p2, {name = "fire:basic_flame"})
|
2013-05-18 16:05:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
2015-08-18 02:33:43 +02:00
|
|
|
--]]
|