spawners/spawners_ores/api.lua

250 lines
6.5 KiB
Lua

-- main tables
spawners_ores = {}
-- how often node timers for plants will tick, +/- some random value
function spawners_ores.tick(pos)
minetest.get_node_timer(pos):start(math.random(30, 60))
end
-- how often a growth failure tick is retried (e.g. not enough place to spawn minerals)
function spawners_ores.tick_short(pos)
minetest.get_node_timer(pos):start(math.random(15, 30))
end
-- adds smoke particles
function spawners_ores.add_effects(pos, radius)
minetest.add_particlespawner({
amount = 32,
time = 2,
minpos = vector.subtract({x=pos.x, y=pos.y+1, z=pos.z}, radius / 2),
maxpos = vector.add({x=pos.x, y=pos.y+1, z=pos.z}, radius / 2),
minvel = {x=-0.5, y=3, z=-0.5},
maxvel = {x=0.5, y=10, z=0.5},
minacc = vector.new(),
maxacc = vector.new(),
minexptime = 0.5,
maxexptime = 2,
minsize = 0.5,
maxsize = 8,
texture = "spawners_ores_smoke_particle.png^[transform"..math.random(0,3)
})
end
-- start spawning ores
function spawners_ores.start_spawning_ores(pos, ore_name, how_many)
if not pos or not ore_name then return end
local player_near = false
local how_many = how_many or 1
for i=1, how_many do
if i > 1 then
pos = spawners_ores.get_available_node(pos, "default:stone")
if not pos then return end
minetest.sound_play("spawners_ores_strike", {
pos = pos,
max_hear_distance = 16,
gain = 10,
})
minetest.set_node(pos, {name=ore_name})
spawners_ores.add_effects(pos, 1)
else
minetest.sound_play("spawners_ores_strike", {
pos = pos,
max_hear_distance = 16,
gain = 10,
})
minetest.set_node(pos, {name=ore_name})
spawners_ores.add_effects(pos, 1)
end
end
end
function spawners_ores.get_available_node(pos, check_node, radius)
if not pos then return end
local check_node = check_node or "default:stone"
local radius = radius or 2
local node_ore_pos = minetest.find_node_near(pos, radius, {check_node})
if node_ore_pos and node_ore_pos ~= nil then
return node_ore_pos
else
return false
end
end
-- build form for spawners
function spawners_ores.get_formspec(pos, table)
-- Inizialize metadata and variables
local meta = minetest.get_meta(pos)
local mineral = table.ore or meta:get_string("mineral")
local stack_per_obj = table.stack_per_obj or {}
local stack_per = stack_per_obj.stack_per or 0
local extra_per = stack_per_obj.extra_per or 0
-- dynamic form
return "size[8,8.5]"..
default.gui_bg..
default.gui_bg_img..
default.gui_slots..
"label[1.8,0.3;Input "..mineral.." Ingot]"..
"list[current_name;fuel;1.8,1;1,1;]"..
"image[1.8,1;1,1;spawners_ores_ingot_slot.png]"..
"list[current_player;main;0,4.25;8,1;]"..
"list[current_player;main;0,5.5;8,3;8]"..
"image[2.8,1;1,1;gui_furnace_arrow_bg.png^[transformR270]"..
"label[1.8,2;"..stack_per.." minerals ("..extra_per.." extra)]"..
"image[4,1;1,1;spawners_ores_stone_with_"..mineral..".png]"..
"listring[current_name;fuel]"..
"listring[current_player;main]"..
default.get_hotbar_bg(0, 4.25)
end
-- check if is fuel empty in the node
function spawners_ores.can_dig(pos, player)
local meta = minetest.get_meta(pos);
local inv = meta:get_inventory()
return inv:is_empty("fuel")
end
-- add extra percentage on top of the stack
function spawners_ores.stack_per(table)
local table = table or {}
local stack_count = table.stack_count or nil
local percent = table.percent or 10
local extra_per = (stack_count / 100) * percent
extra_per = math.floor(extra_per)
local stack_per = extra_per + stack_count
-- print(percent.."% from stack("..stack_count..") = "..stack_per.." ("..extra_per.." extra ore(s))")
return {
stack_per = stack_per,
extra_per = extra_per
}
end
function spawners_ores.on_timer(pos, elapsed)
local available_node = spawners_ores.get_available_node(pos, "default:stone")
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local stack = inv:get_stack("fuel", 1)
local formspec = ""
local infotext = ""
local stack_per_obj = {}
local percent = 10
local how_many = 1
local ore_name = meta:get_string("ore_name")
local mineral = meta:get_string("mineral")
local status = meta:get_string("status")
--
-- active
--
if available_node and inv:is_empty("fuel") ~= true then
-- make sure the right node status is shown
if status ~= "active" then
meta:set_string("status", "active")
minetest.swap_node(pos, {name="spawners_ores:"..ore_name.."_spawner_active"})
end
-- take fuel
stack:take_item()
inv:set_stack("fuel", 1, stack)
-- update infotext
infotext = mineral.." fuel: "..stack:get_count()
-- add extra ores based on percentage
stack_per_obj = spawners_ores.stack_per({
stack_count = stack:get_count(),
percent = percent
})
if stack:get_count() % percent == 0 then
-- TODO: should get countent based on 'percent'
how_many = 2
end
-- enough place to spawn more ores
spawners_ores.start_spawning_ores(available_node, "default:"..ore_name, how_many)
-- update infotext and formspec
formspec = spawners_ores.get_formspec(pos, {
stack_per_obj = stack_per_obj,
ore = mineral
})
meta:set_string("formspec", formspec)
meta:set_string("infotext", mineral.." fuel: "..inv:get_stack("fuel", 1):get_count())
spawners_ores.tick(pos)
--
-- default
--
elseif inv:is_empty("fuel") then
-- empty / no fuel -- stop timer
-- make sure that default status/node is shown
meta:set_string("status", "")
minetest.swap_node(pos, {name="spawners_ores:"..ore_name.."_spawner"})
-- update infotext, formspec and stop the timer
stack_per_obj = spawners_ores.stack_per({
stack_count = stack:get_count()
})
formspec = spawners_ores.get_formspec(pos, {
stack_per_obj = stack_per_obj,
ore = mineral
})
meta:set_string("infotext", mineral.." ore spawner is empty.")
meta:set_string("formspec", formspec)
return
--
-- waiting
--
else
-- make sure that waiting status/node is shown
if status ~= "waiting" then
meta:set_string("status", "waiting")
minetest.swap_node(pos, {name="spawners_ores:"..ore_name.."_spawner_waiting"})
infotext = "Waiting - no default:stone was found near by, "..mineral.." fuel: "..inv:get_stack("fuel", 1):get_count()
end
-- update infotext and formspec
stack_per_obj = spawners_ores.stack_per({
stack_count = stack:get_count()
})
formspec = spawners_ores.get_formspec(pos, {
stack_per_obj = stack_per_obj,
ore = mineral
})
meta:set_string("formspec", formspec)
meta:set_string("infotext", mineral.." fuel: "..inv:get_stack("fuel", 1):get_count())
spawners_ores.tick_short(pos)
end
end