2023-02-12 01:32:53 +01:00
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
mcl_campfires = {}
|
|
|
|
|
2023-05-30 23:06:57 +02:00
|
|
|
local function say(msg) minetest.chat_send_all(msg) end
|
2023-05-30 20:44:15 +02:00
|
|
|
|
|
|
|
-- on_rightclick function to take items that are cookable in a campfire, and put them in the campfire inventory
|
|
|
|
function mcl_campfires.take_item(pos, node, player, itemstack)
|
2023-05-30 23:06:57 +02:00
|
|
|
local campfire_spots = {
|
|
|
|
{x = -0.25, y = -0.04, z = -0.25},
|
|
|
|
{x = 0.25, y = -0.04, z = -0.25},
|
|
|
|
{x = 0.25, y = -0.04, z = 0.25},
|
|
|
|
{x = -0.25, y = -0.04, z = 0.25},
|
|
|
|
}
|
2023-05-30 20:44:15 +02:00
|
|
|
local is_creative = minetest.is_creative_enabled(player:get_player_name())
|
|
|
|
local inv = player:get_inventory()
|
|
|
|
local campfire_meta = minetest.get_meta(pos)
|
|
|
|
local campfire_inv = campfire_meta:get_inventory()
|
|
|
|
local timer = minetest.get_node_timer(pos)
|
|
|
|
local stack = itemstack:peek_item(1)
|
|
|
|
if minetest.get_item_group(itemstack:get_name(), "campfire_cookable") ~= 0 then
|
|
|
|
local cookable = minetest.get_craft_result({method = "cooking", width = 1, items = {itemstack}})
|
|
|
|
if cookable then
|
2023-05-30 23:06:57 +02:00
|
|
|
for space = 1, 4 do
|
2023-05-30 20:44:15 +02:00
|
|
|
local spot = campfire_inv:get_stack("main", space)
|
|
|
|
if not spot or spot == (ItemStack("") or ItemStack("nil")) then -- Check if the spot is empty or not
|
2023-05-30 23:06:57 +02:00
|
|
|
if not is_creative then itemstack:take_item(1) end
|
|
|
|
campfire_inv:set_stack("main", space, stack)
|
|
|
|
campfire_meta:set_int("cooktime_"..tostring(space), 30)
|
|
|
|
minetest.add_entity(pos + campfire_spots[space], player:get_wielded_item():get_name().."_entity")
|
2023-05-30 20:44:15 +02:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
timer:start(1) -- Start cook timer
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- on_timer function to run the cook timer and cook items.
|
|
|
|
function mcl_campfires.cook_item(pos, elapsed)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
local continue = 0
|
|
|
|
-- Cycle through slots to cook them.
|
|
|
|
for i = 1, 4 do
|
|
|
|
local time_r = meta:get_int("cooktime_"..tostring(i))
|
|
|
|
local item = inv:get_stack("main", i)
|
|
|
|
if item ~= (ItemStack("") or ItemStack("nil")) then
|
|
|
|
-- Item hasn't been cooked completely, continue cook timer countdown.
|
|
|
|
if time_r and time_r ~= 0 and time_r > 0 then
|
|
|
|
meta:set_int("cooktime_"..tostring(i), time_r - 1)
|
|
|
|
-- Item cook timer is up, finish cooking process and drop cooked item.
|
|
|
|
elseif time_r <= 0 then
|
|
|
|
local cooked = minetest.get_craft_result({method = "cooking", width = 1, items = {item}})
|
|
|
|
if cooked then
|
2023-05-30 23:06:57 +02:00
|
|
|
minetest.add_item(pos, cooked.item)
|
|
|
|
inv:set_stack("main", i, "")
|
|
|
|
continue = continue + 1
|
2023-05-30 20:44:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- Not all slots are empty, continue timer.
|
|
|
|
if continue ~= 4 then
|
|
|
|
return true
|
|
|
|
-- Slots are empty, stop node timer.
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-12 01:32:53 +01:00
|
|
|
function mcl_campfires.register_campfire(name, def)
|
|
|
|
-- Define Campfire
|
|
|
|
minetest.register_node(name, {
|
|
|
|
description = def.description,
|
|
|
|
_tt_help = S("Cooks food and keeps bees happy."),
|
|
|
|
_doc_items_longdesc = S("Campfires have multiple uses, including keeping bees happy, cooking raw meat and fish, and as a trap."),
|
|
|
|
inventory_image = def.inv_texture,
|
|
|
|
wield_image = def.inv_texture,
|
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "mcl_campfires_campfire.obj",
|
|
|
|
tiles = {{name="mcl_campfires_log.png"},},
|
|
|
|
use_texture_alpha = "clip",
|
|
|
|
groups = { handy=1, axey=1, material_wood=1, not_in_creative_inventory=1, campfire=1, },
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_rightclick = function (pos, node, player, itemstack, pointed_thing)
|
|
|
|
if player:get_wielded_item():get_name() == "mcl_fire:flint_and_steel" then
|
|
|
|
node.name = name.."_lit"
|
|
|
|
minetest.set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
drop = def.drops,
|
|
|
|
_mcl_silk_touch_drop = {name},
|
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = 'fixed',
|
|
|
|
fixed = {-.5, -.5, -.5, .5, -.05, .5}, --left, bottom, front, right, top
|
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = 'fixed',
|
|
|
|
fixed = {-.5, -.5, -.5, .5, -.05, .5},
|
|
|
|
},
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
--Define Lit Campfire
|
|
|
|
minetest.register_node(name.."_lit", {
|
|
|
|
description = def.description,
|
|
|
|
_tt_help = S("Cooks food and keeps bees happy."),
|
|
|
|
_doc_items_longdesc = S("Campfires have multiple uses, including keeping bees happy, cooking raw meat and fish, and as a trap."),
|
|
|
|
inventory_image = def.inv_texture,
|
|
|
|
wield_image = def.inv_texture,
|
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "mcl_campfires_campfire_lit.obj",
|
|
|
|
tiles = {{
|
|
|
|
name=def.fire_texture,
|
|
|
|
animation={
|
|
|
|
type="vertical_frames",
|
|
|
|
aspect_w=16,
|
|
|
|
aspect_h=16,
|
|
|
|
length=2.0
|
|
|
|
}},
|
|
|
|
{name=def.lit_logs_texture,
|
|
|
|
animation={
|
|
|
|
type="vertical_frames",
|
|
|
|
aspect_w=16,
|
|
|
|
aspect_h=16,
|
|
|
|
length=2.0
|
|
|
|
}}
|
|
|
|
},
|
|
|
|
use_texture_alpha = "clip",
|
|
|
|
groups = { handy=1, axey=1, material_wood=1, campfire=1, lit_campfire=1 },
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2023-05-30 20:44:15 +02:00
|
|
|
on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
inv:set_size("main", 4)
|
|
|
|
end,
|
2023-02-12 01:32:53 +01:00
|
|
|
on_rightclick = function (pos, node, player, itemstack, pointed_thing)
|
|
|
|
if player:get_wielded_item():get_name():find("shovel") then
|
|
|
|
node.name = name
|
|
|
|
minetest.set_node(pos, node)
|
|
|
|
minetest.sound_play("fire_extinguish_flame", {pos = pos, gain = 0.25, max_hear_distance = 16}, true)
|
|
|
|
end
|
2023-05-30 20:44:15 +02:00
|
|
|
mcl_campfires.take_item(pos, node, player, itemstack)
|
2023-02-12 01:32:53 +01:00
|
|
|
end,
|
2023-05-30 20:44:15 +02:00
|
|
|
on_timer = mcl_campfires.cook_item,
|
2023-02-12 01:32:53 +01:00
|
|
|
drop = def.drops,
|
|
|
|
_mcl_silk_touch_drop = {name.."_lit"},
|
|
|
|
light_source = def.lightlevel,
|
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-.5, -.5, -.5, .5, -.05, .5}, --left, bottom, front, right, top
|
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-.5, -.5, -.5, .5, -.05, .5},
|
|
|
|
},
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
damage_per_second = def.damage,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
local function burn_in_campfire(obj)
|
|
|
|
local p = obj:get_pos()
|
|
|
|
if p then
|
|
|
|
local n = minetest.find_node_near(p,0.4,{"group:lit_campfire"},true)
|
|
|
|
if n then
|
|
|
|
mcl_burning.set_on_fire(obj, 5)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local etime = 0
|
|
|
|
minetest.register_globalstep(function(dtime)
|
|
|
|
etime = dtime + etime
|
|
|
|
if etime < 0.5 then return end
|
|
|
|
etime = 0
|
|
|
|
for _,pl in pairs(minetest.get_connected_players()) do
|
|
|
|
burn_in_campfire(pl)
|
|
|
|
end
|
|
|
|
for _,ent in pairs(minetest.luaentities) do
|
|
|
|
if ent.is_mob then
|
|
|
|
burn_in_campfire(ent.object)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
2023-05-30 23:13:37 +02:00
|
|
|
|
|
|
|
function mcl_campfires.generate_smoke(pos, haybale)
|
|
|
|
local smoke_timer
|
|
|
|
|
|
|
|
if haybale then
|
|
|
|
smoke_timer = 8
|
|
|
|
else
|
|
|
|
smoke_timer = 4.75
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.add_particle({
|
|
|
|
pos = pos,
|
|
|
|
velocity = vector.new(0, 1, 0),
|
|
|
|
texture = "mcl_particles_smoke.png",
|
|
|
|
size = 10,
|
|
|
|
acceleration = vector.new(0, 0.5, 0),
|
|
|
|
collisiondetection = true,
|
|
|
|
expirationtime = smoke_timer,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
label = "Campfire Smoke",
|
|
|
|
nodenames = {"group:lit_campfire"},
|
|
|
|
interval = 2,
|
|
|
|
chance = 2,
|
|
|
|
action = function(pos, node)
|
|
|
|
local node_below = vector.offset(pos, 0, -1, 0)
|
|
|
|
local haybale = false
|
|
|
|
if minetest.get_node(node_below).name == "mcl_farming:hay_block" then
|
|
|
|
haybale = true
|
|
|
|
end
|
|
|
|
mcl_campfires.generate_smoke(pos, haybale)
|
|
|
|
end,
|
|
|
|
})
|