autocrafter, init, keypad, light, machines_configuration: allow change autocrafter recipe / light param2 with keypad recycler: update no_recycle_list, variable fuel cost
219 lines
8.6 KiB
Lua
219 lines
8.6 KiB
Lua
-- BASIC_MACHINES: lightweight automation mod for minetest
|
|
-- minetest 5.4+
|
|
-- (c) 2015-2016 rnd
|
|
--[[
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
--]]
|
|
|
|
basic_machines = {
|
|
F = minetest.formspec_escape,
|
|
S = minetest.get_translator("basic_machines"),
|
|
version = "10/02/2021a custom",
|
|
properties = {
|
|
no_clock = false, -- if true all continuously running activities (clockgen/keypad) are disabled
|
|
machines_TTL = 16, -- time to live for signals, how many hops before signal dissipates
|
|
machines_minstep = 1, -- minimal allowed activation timestep, if faster machines overheat
|
|
machines_operations = 10, -- 1 coal will provide 10 mover basic operations (moving dirt 1 block distance)
|
|
machines_timer = 5, -- main timestep
|
|
max_range = 10, -- machines normal range of operation
|
|
mover_upgrade_max = 10 -- upgrade mover to increase range and to reduce fuel consumption
|
|
},
|
|
settings = { -- can be added to server configuration file, example: basic_machines_energy_multiplier = 1
|
|
-- ball spawner
|
|
max_balls = 2, -- balls count limit per player, minimum 0
|
|
-- crystals
|
|
energy_multiplier = 1, -- energy crystals multiplier
|
|
power_stackmax = 25, -- power crystals stack max
|
|
-- grinder
|
|
grinder_register_dusts = true, -- dusts/extractors for lumps/ingots, needed for the others grinder settings
|
|
grinder_dusts_quantity = 2, -- quantity of dusts produced by lump/ingot, minimum 0
|
|
grinder_dusts_legacy = false, -- legacy dust mode: dust_33 (smelt) -> dust_66 (smelt) -> ingot
|
|
grinder_extractors_type = 1, -- recipe priority if optional mod present, 1: farming_redo, 2: x_farming
|
|
-- mover
|
|
mover_max_temp = 176, -- overheat above this temperature, minimum 1
|
|
-- technic_power
|
|
generator_upgrade = 0, -- upgrade available in addition to the current limit (50)
|
|
-- space
|
|
space_start_eff = 1500, -- space efficiency height
|
|
space_start = 1100, -- space height
|
|
space_textures = "", -- skybox space textures replacement with up to 6 texture names separated by commas
|
|
exclusion_height = 6666, -- above, without "include" priv, player is teleported to a random location
|
|
space_effects = false, -- enable damage mechanism
|
|
--
|
|
register_crafts = false -- machines crafts recipes
|
|
},
|
|
-- form
|
|
get_form_player_inventory = function(x, y, w, h, s)
|
|
local player_inv = {
|
|
("list[current_player;main;%g,%g;%i,1]"):format(x, y, w),
|
|
("list[current_player;main;%g,%g;%i,%i;%i]"):format(x, y + 1.4, w, h - 1, w)
|
|
}
|
|
for i = 0 , w - 1 do
|
|
player_inv[i + 3] = ("image[%g,%g;1,1;[combine:1x1^[noalpha^[colorize:black^[opacity:43]"):format(x + (s + 1) * i, y)
|
|
end
|
|
return table.concat(player_inv)
|
|
end,
|
|
-- autocrafter
|
|
change_autocrafter_recipe = function() end,
|
|
-- distributor
|
|
get_distributor_form = function() end,
|
|
-- enviro
|
|
player_sneak = nil, -- table used by optional mod player_monoids
|
|
-- grinder
|
|
get_grinder_recipes = function() end,
|
|
set_grinder_recipes = function() end,
|
|
-- keypad
|
|
use_keypad = function() end,
|
|
-- mover
|
|
check_mover_filter = function() end,
|
|
check_target_chest = function() end,
|
|
find_and_connect_battery = function() end,
|
|
get_mover = function() end,
|
|
get_mover_form = function() end,
|
|
set_mover = function() end,
|
|
-- technic_power
|
|
check_power = function() end
|
|
}
|
|
|
|
-- read settings from configuration file
|
|
for k, v in pairs(basic_machines.settings) do
|
|
local setting = nil
|
|
if type(v) == "boolean" then
|
|
setting = minetest.settings:get_bool("basic_machines_" .. k)
|
|
elseif type(v) == "number" then
|
|
setting = tonumber(minetest.settings:get("basic_machines_" .. k))
|
|
elseif type(v) == "string" then
|
|
setting = minetest.settings:get("basic_machines_" .. k)
|
|
end
|
|
if setting ~= nil then
|
|
basic_machines.settings[k] = setting
|
|
end
|
|
end
|
|
|
|
-- creative check
|
|
local creative_cache = minetest.settings:get_bool("creative_mode")
|
|
basic_machines.creative = function(name)
|
|
return creative_cache or minetest.check_player_privs(name,
|
|
{creative = true})
|
|
end
|
|
|
|
-- result: float with precision of two digits or integer number
|
|
local modf = math.modf
|
|
basic_machines.twodigits_float = function(number)
|
|
local r
|
|
if number ~= 0 then
|
|
local i, f = modf(number)
|
|
if f ~= 0 then r = i + ("%.2f"):format(f) else r = number end
|
|
else
|
|
r = 0
|
|
end
|
|
return r
|
|
end
|
|
|
|
-- load files
|
|
local MP = minetest.get_modpath("basic_machines") .. "/"
|
|
|
|
dofile(MP .. "autocrafter.lua") -- borrowed and adapted from pipeworks mod
|
|
dofile(MP .. "ball.lua") -- interactive flying ball, can activate blocks or be used as a weapon
|
|
dofile(MP .. "clockgen.lua") -- periodically activates machine on top of it
|
|
dofile(MP .. "constructor.lua") -- enable machines constructor
|
|
dofile(MP .. "detector.lua") -- detect block/player/object and activate machine
|
|
dofile(MP .. "distributor.lua") -- forward signal to targets
|
|
dofile(MP .. "enviro.lua") -- enviro blocks that can change surrounding environment physics
|
|
dofile(MP .. "grinder.lua") -- grind materials into dusts
|
|
dofile(MP .. "keypad.lua") -- activate machine by sending signal
|
|
dofile(MP .. "light.lua") -- light on/off
|
|
dofile(MP .. "machines_configuration.lua") -- depends on mover, distributor, keypad and detector
|
|
dofile(MP .. "mark.lua") -- used for markings
|
|
dofile(MP .. "mover.lua") -- universal digging/harvesting/teleporting/transporting machine
|
|
dofile(MP .. "protect.lua") -- enable interaction with players, adds local on protect/chat event handling
|
|
dofile(MP .. "recycler.lua") -- recycle old used tools
|
|
dofile(MP .. "technic_power.lua") -- technic power: battery, generator
|
|
|
|
-- MESECON functionality
|
|
if minetest.global_exists("mesecon") then
|
|
dofile(MP .. "mesecon_adapter.lua")
|
|
end
|
|
|
|
-- OPTIONAL content
|
|
dofile(MP .. "crafts.lua") -- adds additional craft recipes
|
|
if minetest.global_exists("gravelsieve") then
|
|
dofile(MP .. "control_gravelsieve.lua") -- adds compatibility to gravelsieve mod
|
|
end
|
|
dofile(MP .. "control_doors.lua") -- if you want open/close doors/trapdoors with signal,
|
|
-- also walk through trapdoors, steel doors/trapdoors are made impervious to dig through,
|
|
-- removal by repeated punches
|
|
dofile(MP .. "control_lights.lua") -- adds ability to toggle light for other light blocks
|
|
dofile(MP .. "space.lua") -- change global physics
|
|
|
|
local S = basic_machines.S
|
|
|
|
-- test: toggle machine running with clockgen/keypad repeats, useful for debugging
|
|
-- i.e. seeing how machines running affect server performance
|
|
minetest.register_chatcommand("clockgen", {
|
|
description = S("Toggle clock generator/keypad repeats"),
|
|
privs = {privs = true},
|
|
func = function(name, _)
|
|
basic_machines.properties.no_clock = not basic_machines.properties.no_clock
|
|
minetest.chat_send_player(name, S("No clock set to @1", tostring(basic_machines.properties.no_clock)))
|
|
end
|
|
})
|
|
|
|
-- "machines" privilege
|
|
minetest.register_privilege("machines", {
|
|
description = S("Player is expert basic_machines user: his machines work while not present on server," ..
|
|
" can spawn more than @1 balls at once", basic_machines.settings.max_balls),
|
|
give_to_singleplayer = false,
|
|
give_to_admin = false
|
|
})
|
|
|
|
-- unified_inventory "machines" category
|
|
if (basic_machines.settings.register_crafts or creative_cache) and
|
|
minetest.global_exists("unified_inventory") and
|
|
unified_inventory.registered_categories and
|
|
not unified_inventory.registered_categories["machines"]
|
|
then
|
|
unified_inventory.register_category("machines", {
|
|
symbol = "basic_machines:mover",
|
|
label = S("Machines and Components"),
|
|
items = {
|
|
"basic_machines:autocrafter",
|
|
"basic_machines:ball_spawner",
|
|
"basic_machines:battery_0",
|
|
"basic_machines:clockgen",
|
|
"basic_machines:constructor",
|
|
"basic_machines:detector",
|
|
"basic_machines:distributor",
|
|
"basic_machines:enviro",
|
|
"basic_machines:generator",
|
|
"basic_machines:grinder",
|
|
"basic_machines:keypad",
|
|
"basic_machines:light_on",
|
|
"basic_machines:mesecon_adapter",
|
|
"basic_machines:mover",
|
|
"basic_machines:recycler"
|
|
}
|
|
})
|
|
end
|
|
|
|
-- for translations script (inventory list names)
|
|
--[[
|
|
S("dst"); S("fuel"); S("main"); S("output");
|
|
S("recipe"); S("src"); S("upgrade")
|
|
--]]
|
|
|
|
-- COMPATIBILITY
|
|
minetest.register_alias("basic_machines:battery", "basic_machines:battery_0")
|
|
|
|
print("[MOD] basic_machines " .. basic_machines.version .. " loaded.") |