diff --git a/mesecons_blinkyplant/init.lua b/mesecons_blinkyplant/init.lua index 14a274f..c99f347 100644 --- a/mesecons_blinkyplant/init.lua +++ b/mesecons_blinkyplant/init.lua @@ -1,11 +1,13 @@ -- The BLINKY_PLANT +local blinky_plant_interval = mesecon.setting("blinky_plant_interval", 3) + local toggle_timer = function (pos) local timer = minetest.get_node_timer(pos) if timer:is_started() then timer:stop() else - timer:start(mesecon.setting("blinky_plant_interval", 3)) + timer:start(blinky_plant_interval) end end diff --git a/mesecons_detector/init.lua b/mesecons_detector/init.lua index 08c2d04..f8ee25f 100644 --- a/mesecons_detector/init.lua +++ b/mesecons_detector/init.lua @@ -2,7 +2,10 @@ local GET_COMMAND = "GET" -- Object detector -- Detects players in a certain radius --- The radius can be specified in mesecons/settings.lua +-- The radius can be specified in settings + +local detector_radius = mesecon.setting("detector_radius", 6) +local node_detector_distance_max = mesecon.setting("node_detector_distance_max", 10) local function object_detector_make_formspec(pos) local meta = minetest.get_meta(pos) @@ -25,7 +28,7 @@ end -- returns true if player was found, false if not local function object_detector_scan(pos) - local objs = minetest.get_objects_inside_radius(pos, mesecon.setting("detector_radius", 6)) + local objs = minetest.get_objects_inside_radius(pos, detector_radius) -- abort if no scan results were found if next(objs) == nil then return false end @@ -142,7 +145,7 @@ local function node_detector_make_formspec(pos) if meta:get_string("distance") == "" then meta:set_string("distance", "0") end meta:set_string("formspec", "size[9,2.5]" .. "field[0.3, 0;9,2;scanname;Name of node to scan for (empty for any):;${scanname}]".. - "field[0.3,1.5;2.5,2;distance;Distance (0-"..mesecon.setting("node_detector_distance_max", 10).."):;${distance}]".. + "field[0.3,1.5;2.5,2;distance;Distance (0-"..node_detector_distance_max.."):;${distance}]".. "field[3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]".. "button_exit[7,0.75;2,3;;Save]") end @@ -167,9 +170,8 @@ local function node_detector_scan(pos) local meta = minetest.get_meta(pos) local distance = meta:get_int("distance") - local distance_max = mesecon.setting("node_detector_distance_max", 10) if distance < 0 then distance = 0 end - if distance > distance_max then distance = distance_max end + distance = math.min(distance, node_detector_distance_max) local frontname = minetest.get_node( vector.subtract(pos, vector.multiply(minetest.facedir_to_dir(node.param2), distance + 1)) @@ -187,9 +189,8 @@ local node_detector_digiline = { local meta = minetest.get_meta(pos) local distance = meta:get_int("distance") - local distance_max = mesecon.setting("node_detector_distance_max", 10) if distance < 0 then distance = 0 end - if distance > distance_max then distance = distance_max end + distance = math.min(distance, node_detector_distance_max) if channel ~= meta:get_string("digiline_channel") then return end diff --git a/mesecons_luacontroller/init.lua b/mesecons_luacontroller/init.lua index 85d16fa..99d4848 100644 --- a/mesecons_luacontroller/init.lua +++ b/mesecons_luacontroller/init.lua @@ -35,6 +35,13 @@ local rules = { d = {x = 0, y = 0, z = -1, name="D"}, } +-- Settings: +local luacontroller_string_rep_max = mesecon.setting("luacontroller_string_rep_max", 64000) +local luacontroller_digiline_maxlen = mesecon.setting("luacontroller_digiline_maxlen", 50000) +local overheat_max = mesecon.setting("overheat_max", 20) +local luacontroller_maxevents = mesecon.setting("luacontroller_maxevents", 10000) +local luacontroller_memsize = mesecon.setting("luacontroller_memsize", 100000) + ------------------ -- Action stuff -- @@ -206,7 +213,7 @@ end -- string.rep(str, n) with a high value for n can be used to DoS -- the server. Therefore, limit max. length of generated string. local function safe_string_rep(str, n) - if #str * n > mesecon.setting("luacontroller_string_rep_max", 64000) then + if #str * n > luacontroller_string_rep_max then debug.sethook() -- Clear hook error("string.rep: string length overflow", 2) end @@ -284,7 +291,7 @@ local function get_digiline_send(pos) -- Make sure serialized version of the data is not insanely long to -- prevent DoS-like attacks local msg_ser = minetest.serialize(msg) - if #msg_ser > mesecon.setting("luacontroller_digiline_maxlen", 50000) then + if #msg_ser > luacontroller_digiline_maxlen then return false end @@ -316,7 +323,7 @@ local function create_environment(pos, mem, event) event = event, mem = mem, heat = mesecon.get_heat(pos), - heat_max = mesecon.setting("overheat_max", 20), + heat_max = overheat_max, print = safe_print, interrupt = get_interrupt(pos), digiline_send = get_digiline_send(pos), @@ -410,8 +417,7 @@ local function create_sandbox(code, env) return function(...) -- Use instruction counter to stop execution -- after luacontroller_maxevents - local maxevents = mesecon.setting("luacontroller_maxevents", 10000) - debug.sethook(timeout, "", maxevents) + debug.sethook(timeout, "", luacontroller_maxevents) local ok, ret = pcall(f, ...) debug.sethook() -- Clear hook if not ok then error(ret, 0) end @@ -427,7 +433,7 @@ end local function save_memory(pos, meta, mem) local memstring = minetest.serialize(remove_functions(mem)) - local memsize_max = mesecon.setting("luacontroller_memsize", 100000) + local memsize_max = luacontroller_memsize if (#memstring <= memsize_max) then meta:set_string("lc_memory", memstring) diff --git a/mesecons_pressureplates/init.lua b/mesecons_pressureplates/init.lua index 6337941..d9f464f 100644 --- a/mesecons_pressureplates/init.lua +++ b/mesecons_pressureplates/init.lua @@ -1,3 +1,5 @@ +local pplate_interval = mesecon.setting("pplate_interval", 0.1) + local pp_box_off = { type = "fixed", fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, @@ -54,7 +56,7 @@ function mesecon.register_pressure_plate(basename, description, textures_off, te pressureplate_basename = basename, on_timer = pp_on_timer, on_construct = function(pos) - minetest.get_node_timer(pos):start(mesecon.setting("pplate_interval", 0.1)) + minetest.get_node_timer(pos):start(pplate_interval) end, },{ mesecons = {receptor = { state = mesecon.state.off, rules = mesecon.rules.pplate }}, diff --git a/settingtypes.txt b/settingtypes.txt index 5bb15b2..3c25d95 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -1,6 +1,6 @@ [mesecons] -mesecon.resumetime (Resume time) int 4 +mesecon.resumetime (Actionqueue resume time) int 4 mesecon.overheat_max (Overheat max) int 20 mesecon.cooldown_time (Cooldown time) float 2.0 mesecon.cooldown_granularity (Cooldown granularity) float 0.5 @@ -8,21 +8,21 @@ mesecon.cooldown_granularity (Cooldown granularity) float 0.5 [mesecons_blinkyplant] -mesecon.blinky_plant_interval (Plant interval) int 3 +mesecon.blinky_plant_interval (Blinky Plant interval) int 3 [mesecons_detector] -mesecon.detector_radius (Detector radius) int 6 -mesecon.node_detector_distance_max (Detector max distance) int 10 +mesecon.detector_radius (Object Detector radius) int 6 +mesecon.node_detector_distance_max (Node Detector max distance) int 10 [mesecons_luacontroller] -mesecon.luacontroller_string_rep_max (Max) int 64000 -mesecon.luacontroller_digiline_maxlen (Digiline max length) int 50000 -mesecon.luacontroller_maxevents (Max events) int 10000 -mesecon.luacontroller_memsize (Memory size) int 100000 +mesecon.luacontroller_string_rep_max (string.rep result length limit) int 64000 +mesecon.luacontroller_digiline_maxlen (Digiline message size limit) int 50000 +mesecon.luacontroller_maxevents (Max debug hook events per event) int 10000 +mesecon.luacontroller_memsize (Memory size in number of characters of serialized mem) int 100000 [mesecons_movestones] @@ -40,4 +40,4 @@ mesecon.piston_max_pull (Max pull) int 15 [mesecons_pressureplates] -mesecon.pplate_interval (Interval) float 0.1 +mesecon.pplate_interval (Check Interval) float 0.1