mod-sneeker/spawn.lua

74 lines
2.2 KiB
Lua
Raw Normal View History

2017-05-28 02:36:45 +02:00
-- Original code by Rui: WTFPL
2017-05-13 12:45:04 +02:00
2017-05-28 04:07:41 +02:00
local time_min = 60
2017-05-13 12:45:04 +02:00
local time_hr = time_min * 60
local time_day = time_hr * 24
2017-06-02 00:26:45 +02:00
local spawn_cap = tonumber(minetest.settings:get("sneeker.spawn_cap")) or 10 -- Maximum number of spawns active at one time
2017-06-01 20:58:41 +02:00
local spawn_chance = tonumber(minetest.settings:get("sneeker.spawn_chance")) or 1000 -- 1/1000 chance of spawn
local spawn_interval = tonumber(minetest.settings:get("sneeker.spawn_interval")) or time_min * 4 -- Default interval is 4 minutes
local spawn_maxlight = tonumber(minetest.settings:get("sneeker.spawn_maxlight")) or 5 -- Maximum light of node for spawn
2017-05-29 11:55:13 +02:00
local spawn_chance_percent = tostring(math.floor(1 / spawn_chance * 100)) .. "%"
2017-05-31 21:01:44 +02:00
sneeker.log("Spawn cap: " .. tostring(sneeker.spawn_cap))
2017-05-29 11:55:13 +02:00
sneeker.log("Spawn chance: " .. spawn_chance_percent)
2017-05-29 10:25:51 +02:00
sneeker.log("Spawn interval: " .. tostring(spawn_interval) .. " (" .. tostring(spawn_interval/60) .. " minute(s))")
sneeker.log("Maximum light value for spawn: " .. tostring(spawn_maxlight))
2017-05-28 04:15:23 +02:00
minetest.register_abm({
nodenames = {"default:dirt_with_grass", "default:stone"},
neighbors = {"air"},
interval = spawn_interval,
chance = spawn_chance,
action = function(pos, node, _, active_object_count_wider)
if active_object_count_wider > 5 then
2017-05-29 11:53:20 +02:00
return
end
2017-05-29 11:53:20 +02:00
-- Check light value of node
pos.y = pos.y+1
local node_light = minetest.get_node_light(pos)
2017-05-29 11:53:20 +02:00
-- Debugging spawning
sneeker.log_debug("Node light level at " .. sneeker.get_pos_string(pos) .. ": " .. tostring(node_light))
2017-05-31 21:01:44 +02:00
if not node_light or node_light > spawn_maxlight or node_light < -1 then
2017-05-29 11:55:13 +02:00
sneeker.log_debug("Node not dark enough for spawn")
2017-05-29 11:53:20 +02:00
return
end
2017-05-29 11:53:20 +02:00
-- Spawn range
if pos.y > 31000 then
return
end
2017-05-29 11:53:20 +02:00
-- Node must be touching air
if minetest.get_node(pos).name ~= "air" then
return
end
pos.y = pos.y+1
if minetest.get_node(pos).name ~= "air" then
return
end
2017-05-29 11:53:20 +02:00
-- Get total count of sneekers in world
local count = 0
for I in pairs(minetest.luaentities) do
if minetest.luaentities[I].name == sneeker.mob_name then
2017-05-29 11:53:20 +02:00
count = count + 1
end
2017-05-29 09:14:26 +02:00
end
2017-05-31 21:01:44 +02:00
sneeker.log_debug("Current active spawns: " .. tostring(count) .. "/" .. tostring(spawn_cap))
2017-05-29 11:55:13 +02:00
2017-05-31 21:01:44 +02:00
if count >= spawn_cap then
2017-05-29 11:53:20 +02:00
sneeker.log_debug("Max spawns reached")
return
end
2017-05-29 11:53:20 +02:00
sneeker.spawn(pos)
end
})