aboutsummaryrefslogtreecommitdiff
path: root/clientmods/mapbot
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-08-15 15:45:28 +0200
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-08-15 15:45:28 +0200
commit3bed0981d058b512bfb8aeeeeed235c9ee9385af (patch)
tree8f3b06e1ac849fecf684af1ba7bb2e72eaed4b5d /clientmods/mapbot
parent622d547262ee6800810b228d9641edff63848e0c (diff)
downloaddragonfireclient-3bed0981d058b512bfb8aeeeeed235c9ee9385af.tar.xz
UI Update; Added AutoTool
Diffstat (limited to 'clientmods/mapbot')
-rw-r--r--clientmods/mapbot/api.lua41
-rw-r--r--clientmods/mapbot/init.lua10
-rw-r--r--clientmods/mapbot/mod.conf3
-rw-r--r--clientmods/mapbot/simple_bots.lua30
4 files changed, 0 insertions, 84 deletions
diff --git a/clientmods/mapbot/api.lua b/clientmods/mapbot/api.lua
deleted file mode 100644
index 8d7398b56..000000000
--- a/clientmods/mapbot/api.lua
+++ /dev/null
@@ -1,41 +0,0 @@
-mapbot.bots = {}
-
-mapbot.paramtypes = {
- ["pos"] = {
- "<X>,<Y>,<Z>",
- function (param)
- local _, pos = minetest.parse_relative_pos(param)
- return pos
- end
- },
- ["nodes"] = {
- "<node1> [<node2>] ...",
- function (param)
- return param:split(" ")
- end
- },
-}
-
-function mapbot.register_bot(name, description, paramtype, func)
- local pt = mapbot.paramtypes[paramtype]
- if not pt then return end
- minetest.register_chatcommand(name, {
- param = pt[1],
- description = description .. " Empty parameter to stop.",
- func = function(param)
- mapbot.storage:set_string(name, param)
- return true, "Changed " .. name .. " config."
- end
- })
- table.insert(mapbot.bots, {name, pt, func})
-end
-
-function mapbot.loop()
- for _, bot in pairs(mapbot.bots) do
- local param = mapbot.storage:get_string(bot[1])
- param = (param == "") and nil or bot[2][2](param)
- if param and bot[3](param) end
- end
-end
-
-minetest.register_on_connect(mapbot.loop)
diff --git a/clientmods/mapbot/init.lua b/clientmods/mapbot/init.lua
deleted file mode 100644
index 4b2a73fe4..000000000
--- a/clientmods/mapbot/init.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-mapbot = {}
-
-local modname = minetest.get_modname()
-local modpath = minetest.get_modpath(modname)
-mapbot.storage = minetest.get_mod_storage()
-
-dofile(modpath .. "/api.lua")
-dofile(modpath .. "/simple_bots.lua")
-
-
diff --git a/clientmods/mapbot/mod.conf b/clientmods/mapbot/mod.conf
deleted file mode 100644
index 89eea839e..000000000
--- a/clientmods/mapbot/mod.conf
+++ /dev/null
@@ -1,3 +0,0 @@
-name = mapbot
-author = Fleckenstein
-description = An API to create simple bots, optimized for map interaction
diff --git a/clientmods/mapbot/simple_bots.lua b/clientmods/mapbot/simple_bots.lua
deleted file mode 100644
index 30b44f81b..000000000
--- a/clientmods/mapbot/simple_bots.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-mapbot.register_bot("place_into", "Automatically place wielditem into specified nodes.", "nodes", function(nodes)
- local pos = minetest.find_node_near(minetest.localplayer:get_pos(), 5, nodes, true)
- if pos then
- minetest.place_node(pos)
- end
-end)
-
-mapbot.register_bot("dig_nodes", "Automatically dig specified nodes.", "nodes", function(nodes)
- local pos = minetest.find_node_near(minetest.localplayer:get_pos(), 5, nodes, true)
- if pos then
- minetest.dig_node(pos)
- end
-end)
-
-mapbot.register_bot("place_into_pos", "Automatically place wielditem at specified pos.", "pos", minetest.place_node)
-
-mapbot.register_bot("dig_pos", "Automatically dig node at specified pos.", "pos", minetest.dig_node)
-
-mapbot.register_bot("dig_place_nodes", "Automatically dig specified nodes and immediately place wielditem there.", "nodes", function (nodes)
- local pos = minetest.find_node_near(minetest.localplayer:get_pos(), 5, nodes, true)
- if pos then
- minetest.dig_node(pos)
- minetest.place_node(pos)
- end
-end)
-
-mapbot.register_bot("dig_place_pos", "Automatically dig node at specified pos and immediately place wielditem there.", "pos", function (pos)
- minetest.dig_node(pos)
- minetest.place_node(pos)
-end)