aboutsummaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorfluxionary <25628292+fluxionary@users.noreply.github.com>2022-02-13 06:54:41 -0800
committerGitHub <noreply@github.com>2022-02-13 15:54:41 +0100
commit2651262fa3134415f349f63840c89486fabd9063 (patch)
tree3fa7f2ac228e662b4e9bc8071acc2f0650c44e65 /compat
parent1a41379e1d7ae69347f0e6ee6a997234f7590793 (diff)
downloadmesecons_debug-2651262fa3134415f349f63840c89486fabd9063.tar.gz
mesecons_debug-2651262fa3134415f349f63840c89486fabd9063.zip
rework mesecons debug to be more flexible (#7)
* add proper settings (untested) * more constants -> settings * normalize whitespace between code files * refactor globalsteps in order to simplify logic * minor refactoring * rename file * use mod_storage for persistent data; optimize context initialization * refactoring (moving files around) * rewrite penalty * add settings; document; allow changing while game is running * add command to update settings * update init after splitting commands into files * fix bugs; add debugging tools; too much for one commit... * fix whitelist conversion * add adjustable blinky plant to timer overrides * add some more mesecons nodes with repeating timers * resolve luacheck warnings * tweak hud * Update documentation; parameterize more things; refactor some logic for readability
Diffstat (limited to 'compat')
-rw-r--r--compat/convert_old_whitelist.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/compat/convert_old_whitelist.lua b/compat/convert_old_whitelist.lua
new file mode 100644
index 0000000..c51b667
--- /dev/null
+++ b/compat/convert_old_whitelist.lua
@@ -0,0 +1,12 @@
+local filename = minetest.get_worldpath() .. "/mesecons_debug_whiltelist"
+local file = io.open(filename, "r")
+
+if file then
+ local data = file:read("*a")
+ local whitelist = minetest.deserialize(data) or {}
+ for hash, _ in pairs(whitelist) do
+ mesecons_debug.storage:set_string(hash, "1")
+ end
+ file:close()
+ os.remove(filename)
+end