Fire mod: Code cleanup, compress textures

This commit is contained in:
Maksim 2020-04-06 22:09:39 +02:00 committed by GitHub
parent 720b24ed2d
commit 03c9aed221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 111 deletions

View File

@ -1,15 +1,12 @@
-- fire/init.lua -- fire/init.lua
-- Global namespace for functions -- Global namespace for functions
fire = {} fire = {}
-- Load support for MT game translation. -- Load support for MT game translation.
local S = minetest.get_translator("fire") local S = minetest.get_translator("fire")
-- 'Enable fire' setting -- 'Enable fire' setting
local fire_enabled = minetest.settings:get_bool("enable_fire") local fire_enabled = minetest.settings:get_bool("enable_fire")
if fire_enabled == nil then if fire_enabled == nil then
-- enable_fire setting not specified, check for disable_fire -- enable_fire setting not specified, check for disable_fire
@ -27,12 +24,9 @@ end
-- --
-- Flood flame function -- Flood flame function
local function flood_flame(pos, _, newnode)
local function flood_flame(pos, oldnode, newnode)
-- Play flame extinguish sound if liquid is not an 'igniter' -- Play flame extinguish sound if liquid is not an 'igniter'
local nodedef = minetest.registered_items[newnode.name] if minetest.get_item_group(newnode.name, "igniter") == 0 then
if not (nodedef and nodedef.groups and
nodedef.groups.igniter and nodedef.groups.igniter > 0) then
minetest.sound_play("fire_extinguish_flame", minetest.sound_play("fire_extinguish_flame",
{pos = pos, max_hear_distance = 16, gain = 0.15}, true) {pos = pos, max_hear_distance = 16, gain = 0.15}, true)
end end
@ -41,19 +35,16 @@ local function flood_flame(pos, oldnode, newnode)
end end
-- Flame nodes -- Flame nodes
local fire_node = {
minetest.register_node("fire:basic_flame", {
drawtype = "firelike", drawtype = "firelike",
tiles = { tiles = {{
{ name = "fire_basic_flame_animated.png",
name = "fire_basic_flame_animated.png", animation = {
animation = { type = "vertical_frames",
type = "vertical_frames", aspect_w = 16,
aspect_w = 16, aspect_h = 16,
aspect_h = 16, length = 1
length = 1 }}
},
},
}, },
inventory_image = "fire_basic_flame.png", inventory_image = "fire_basic_flame.png",
paramtype = "light", paramtype = "light",
@ -63,61 +54,35 @@ minetest.register_node("fire:basic_flame", {
sunlight_propagates = true, sunlight_propagates = true,
floodable = true, floodable = true,
damage_per_second = 4, damage_per_second = 4,
groups = {igniter = 2, dig_immediate = 3, not_in_creative_inventory = 1}, groups = {igniter = 2, dig_immediate = 3, fire = 1},
drop = "", drop = "",
on_flood = flood_flame
}
on_timer = function(pos) -- Basic flame node
local f = minetest.find_node_near(pos, 1, {"group:flammable"}) local flame_fire_node = table.copy(fire_node)
if not fire_enabled or not f then flame_fire_node.groups.not_in_creative_inventory = 1
minetest.remove_node(pos) flame_fire_node.on_timer = function(pos)
return if not minetest.find_node_near(pos, 1, {"group:flammable"}) then
end minetest.remove_node(pos)
-- Restart timer return
return true end
end, -- Restart timer
return true
end
flame_fire_node.on_construct = function(pos)
minetest.get_node_timer(pos):start(math.random(30, 60))
end
on_construct = function(pos) minetest.register_node("fire:basic_flame", flame_fire_node)
if not fire_enabled then
minetest.remove_node(pos)
else
minetest.get_node_timer(pos):start(math.random(30, 60))
end
end,
on_flood = flood_flame, -- Permanent flame node
}) local permanent_fire_node = table.copy(fire_node)
permanent_fire_node.description = S("Permanent Flame")
minetest.register_node("fire:permanent_flame", { minetest.register_node("fire:permanent_flame", permanent_fire_node)
description = S("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 = 13,
walkable = false,
buildable_to = true,
sunlight_propagates = true,
floodable = true,
damage_per_second = 4,
groups = {igniter = 2, dig_immediate = 3},
drop = "",
on_flood = flood_flame,
})
-- Flint and steel
-- Flint and Steel
minetest.register_tool("fire:flint_and_steel", { minetest.register_tool("fire:flint_and_steel", {
description = S("Flint and Steel"), description = S("Flint and Steel"),
inventory_image = "fire_flint_steel.png", inventory_image = "fire_flint_steel.png",
@ -125,11 +90,8 @@ minetest.register_tool("fire:flint_and_steel", {
on_use = function(itemstack, user, pointed_thing) on_use = function(itemstack, user, pointed_thing)
local sound_pos = pointed_thing.above or user:get_pos() local sound_pos = pointed_thing.above or user:get_pos()
minetest.sound_play( minetest.sound_play("fire_flint_and_steel",
"fire_flint_and_steel", {pos = sound_pos, gain = 0.5, max_hear_distance = 8}, true)
{pos = sound_pos, gain = 0.5, max_hear_distance = 8},
true
)
local player_name = user:get_player_name() local player_name = user:get_player_name()
if pointed_thing.type == "node" then if pointed_thing.type == "node" then
local node_under = minetest.get_node(pointed_thing.under).name local node_under = minetest.get_node(pointed_thing.under).name
@ -153,10 +115,11 @@ minetest.register_tool("fire:flint_and_steel", {
-- Wear tool -- Wear tool
local wdef = itemstack:get_definition() local wdef = itemstack:get_definition()
itemstack:add_wear(1000) itemstack:add_wear(1000)
-- Tool break sound -- Tool break sound
if itemstack:get_count() == 0 and wdef.sound and wdef.sound.breaks then if itemstack:get_count() == 0 and wdef.sound and wdef.sound.breaks then
minetest.sound_play(wdef.sound.breaks, {pos = sound_pos, minetest.sound_play(wdef.sound.breaks,
gain = 0.5}, true) {pos = sound_pos, gain = 0.5}, true)
end end
return itemstack return itemstack
end end
@ -170,23 +133,21 @@ minetest.register_craft({
} }
}) })
-- Override coalblock to enable permanent flame above -- Override coalblock to enable permanent flame above
-- Coalblock is non-flammable to avoid unwanted basic_flame nodes -- Coalblock is non-flammable to avoid unwanted basic_flame nodes
minetest.override_item("default:coalblock", { minetest.override_item("default:coalblock", {
after_destruct = function(pos, oldnode) after_destruct = function(pos)
pos.y = pos.y + 1 pos.y = pos.y + 1
if minetest.get_node(pos).name == "fire:permanent_flame" then if minetest.get_node(pos).name == "fire:permanent_flame" then
minetest.remove_node(pos) minetest.remove_node(pos)
end end
end, end,
on_ignite = function(pos, igniter) on_ignite = function(pos)
local flame_pos = {x = pos.x, y = pos.y + 1, z = pos.z} local flame_pos = {x = pos.x, y = pos.y + 1, z = pos.z}
if minetest.get_node(flame_pos).name == "air" then if minetest.get_node(flame_pos).name == "air" then
minetest.set_node(flame_pos, {name = "fire:permanent_flame"}) minetest.set_node(flame_pos, {name = "fire:permanent_flame"})
end end
end, end
}) })
@ -194,24 +155,18 @@ minetest.override_item("default:coalblock", {
-- Sound -- Sound
-- --
local flame_sound = minetest.settings:get_bool("flame_sound") -- Enable if no setting present
if flame_sound == nil then local flame_sound = minetest.settings:get_bool("flame_sound", true)
-- Enable if no setting present
flame_sound = true
end
if flame_sound then if flame_sound then
local handles = {} local handles = {}
local timer = 0 local timer = 0
-- Parameters -- Parameters
local radius = 8 -- Flame node search radius around player local radius = 8 -- Flame node search radius around player
local cycle = 3 -- Cycle time for sound updates local cycle = 3 -- Cycle time for sound updates
-- Update sound for player -- Update sound for player
function fire.update_player_sound(player) function fire.update_player_sound(player)
local player_name = player:get_player_name() local player_name = player:get_player_name()
-- Search for flame nodes in radius around player -- Search for flame nodes in radius around player
@ -263,16 +218,13 @@ if flame_sound then
fposmid = vector.divide(vector.add(fposmin, fposmax), 2) fposmid = vector.divide(vector.add(fposmin, fposmax), 2)
end end
-- Play sound -- Play sound
local handle = minetest.sound_play( local handle = minetest.sound_play("fire_fire", {
"fire_fire", pos = fposmid,
{ to_player = player_name,
pos = fposmid, gain = math.min(0.06 * (1 + flames * 0.125), 0.18),
to_player = player_name, max_hear_distance = 32,
gain = math.min(0.06 * (1 + flames * 0.125), 0.18), loop = true -- In case of lag
max_hear_distance = 32, })
loop = true, -- In case of lag
}
)
-- Store sound handle for this player -- Store sound handle for this player
if handle then if handle then
handles[player_name] = handle handles[player_name] = handle
@ -281,7 +233,6 @@ if flame_sound then
end end
-- Cycle for updating players sounds -- Cycle for updating players sounds
minetest.register_globalstep(function(dtime) minetest.register_globalstep(function(dtime)
timer = timer + dtime timer = timer + dtime
if timer < cycle then if timer < cycle then
@ -296,7 +247,6 @@ if flame_sound then
end) end)
-- Stop sound and clear handle on player leave -- Stop sound and clear handle on player leave
minetest.register_on_leaveplayer(function(player) minetest.register_on_leaveplayer(function(player)
local player_name = player:get_player_name() local player_name = player:get_player_name()
if handles[player_name] then if handles[player_name] then
@ -308,19 +258,14 @@ end
-- Deprecated function kept temporarily to avoid crashes if mod fire nodes call it -- Deprecated function kept temporarily to avoid crashes if mod fire nodes call it
function fire.update_sounds_around() end
function fire.update_sounds_around(pos)
end
-- --
-- ABMs -- ABMs
-- --
if fire_enabled then if fire_enabled then
-- Ignite neighboring nodes, add basic flames -- Ignite neighboring nodes, add basic flames
minetest.register_abm({ minetest.register_abm({
label = "Ignite flame", label = "Ignite flame",
nodenames = {"group:flammable"}, nodenames = {"group:flammable"},
@ -333,11 +278,10 @@ if fire_enabled then
if p then if p then
minetest.set_node(p, {name = "fire:basic_flame"}) minetest.set_node(p, {name = "fire:basic_flame"})
end end
end, end
}) })
-- Remove flammable nodes around basic flame -- Remove flammable nodes around basic flame
minetest.register_abm({ minetest.register_abm({
label = "Remove flammable nodes", label = "Remove flammable nodes",
nodenames = {"fire:basic_flame"}, nodenames = {"fire:basic_flame"},
@ -358,7 +302,6 @@ if fire_enabled then
minetest.remove_node(p) minetest.remove_node(p)
minetest.check_for_falling(p) minetest.check_for_falling(p)
end end
end, end
}) })
end end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 646 B

After

Width:  |  Height:  |  Size: 594 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 459 B

After

Width:  |  Height:  |  Size: 205 B