2018-05-20 10:52:16 +00:00
--- WorldEditAdditions-ChatCommands
-- @module worldeditadditions_commands
-- @release 0.1
-- @copyright 2018 Starbeamrainbowlabs
-- @license Mozilla Public License, 2.0
-- @author Starbeamrainbowlabs
2020-05-02 23:37:18 +00:00
worldeditadditions_commands = { }
local we_c = worldeditadditions_commands
2018-10-13 23:19:32 +00:00
2020-05-02 23:37:18 +00:00
we_c.modpath = minetest.get_modpath ( " worldeditadditions_commands " )
2018-05-20 13:46:54 +00:00
2020-06-26 20:15:13 +00:00
dofile ( we_c.modpath .. " /player_notify_suppress.lua " )
2018-06-09 12:05:09 +00:00
2020-05-11 01:02:02 +00:00
-- We no longer need our own implementation of safe_region thanks to @sfan5's
-- suggestion in issue #5 - yay!
-- we_c.safe_region, we_c.check_region, we_c.reset_pending
-- = dofile(we_c.modpath.."/safe.lua")
2018-06-09 12:05:09 +00:00
2021-03-16 03:51:23 +00:00
dofile ( we_c.modpath .. " /commands/convolve.lua " )
dofile ( we_c.modpath .. " /commands/ellipsoid.lua " )
2021-10-14 00:50:27 +00:00
dofile ( we_c.modpath .. " /commands/ellipsoid2.lua " )
2021-03-16 03:51:23 +00:00
dofile ( we_c.modpath .. " /commands/erode.lua " )
dofile ( we_c.modpath .. " /commands/fillcaves.lua " )
2020-05-02 23:37:18 +00:00
dofile ( we_c.modpath .. " /commands/floodfill.lua " )
2021-03-16 03:51:23 +00:00
dofile ( we_c.modpath .. " /commands/hollow.lua " )
2020-06-10 23:38:16 +00:00
dofile ( we_c.modpath .. " /commands/layers.lua " )
2021-01-16 18:36:17 +00:00
dofile ( we_c.modpath .. " /commands/line.lua " )
2020-05-02 23:37:18 +00:00
dofile ( we_c.modpath .. " /commands/maze.lua " )
2021-07-03 21:53:16 +00:00
dofile ( we_c.modpath .. " /commands/noise2d.lua " )
2021-03-16 03:51:23 +00:00
dofile ( we_c.modpath .. " /commands/overlay.lua " )
2020-05-14 20:37:27 +00:00
dofile ( we_c.modpath .. " /commands/replacemix.lua " )
2021-02-07 23:39:09 +00:00
dofile ( we_c.modpath .. " /commands/scale.lua " )
2021-03-16 03:51:23 +00:00
dofile ( we_c.modpath .. " /commands/torus.lua " )
dofile ( we_c.modpath .. " /commands/walls.lua " )
2021-10-31 15:11:01 +00:00
dofile ( we_c.modpath .. " /commands/spiral2.lua " )
2021-11-11 02:20:37 +00:00
dofile ( we_c.modpath .. " /commands/copy.lua " )
2021-11-13 12:36:10 +00:00
dofile ( we_c.modpath .. " /commands/move.lua " )
2020-05-11 01:02:02 +00:00
2020-05-11 23:38:42 +00:00
dofile ( we_c.modpath .. " /commands/count.lua " )
2021-12-28 15:22:51 +00:00
dofile ( we_c.modpath .. " /commands/sculpt.lua " )
2020-05-11 20:44:18 +00:00
2021-07-19 00:27:21 +00:00
-- Meta Commands
dofile ( we_c.modpath .. " /commands/meta/init.lua " )
2020-06-26 01:13:11 +00:00
2021-06-27 21:39:36 +00:00
-- Selection Tools
dofile ( we_c.modpath .. " /commands/selectors/init.lua " )
2021-02-24 16:40:53 +00:00
2021-06-29 04:15:47 +00:00
-- Measure Tools
dofile ( we_c.modpath .. " /commands/measure/init.lua " )
2021-07-18 20:12:19 +00:00
-- Wireframe
dofile ( we_c.modpath .. " /commands/wireframe/init.lua " )
2021-02-24 16:40:53 +00:00
dofile ( we_c.modpath .. " /commands/extra/saplingaliases.lua " )
dofile ( we_c.modpath .. " /commands/extra/basename.lua " )
2021-12-27 03:11:52 +00:00
dofile ( we_c.modpath .. " /commands/extra/sculptlist.lua " )
2021-02-24 16:40:53 +00:00
2021-12-27 03:11:52 +00:00
-- Don't register the //bonemeal command if the bonemeal mod isn't present
2021-10-25 14:18:03 +00:00
if minetest.global_exists ( " bonemeal " ) then
2020-05-11 01:02:02 +00:00
dofile ( we_c.modpath .. " /commands/bonemeal.lua " )
2020-09-14 01:12:05 +00:00
dofile ( we_c.modpath .. " /commands/forest.lua " )
2020-05-11 01:02:02 +00:00
else
2020-09-14 01:12:05 +00:00
minetest.log ( " action " , " [WorldEditAdditions] bonemeal mod not detected: //bonemeal and //forest commands not registered (if you see this message and you're using an alternative mod that provides bonemeal, please get in touch by opening an issue) " )
2020-05-11 01:02:02 +00:00
end
2020-06-11 00:00:19 +00:00
2021-05-30 15:18:08 +00:00
-- Minetest doesn't allow you to read from files outside the mod
-- directory - even if you're part of a modpack you can't read from the main
-- modpack directory. Furthermore, symlinks don't help.
-- If you have a solution to this issue, please comment on this GitHub issue:
-- https://github.com/sbrl/Minetest-WorldEditAdditions/issues/55
-- NOTE TO SELF: When uncommenting this, also add "doc?" to depends.txt
-- if minetest.get_modpath("doc") then
-- dofile(we_c.modpath.."/doc/init.lua")
-- else
-- minetest.log("action", "[WorldEditAdditions] doc mod not detected: not registering doc category with extended help")
-- end
2020-06-11 00:00:19 +00:00
worldedit.alias_command ( " smoothadv " , " convolve " )
worldedit.alias_command ( " conv " , " convolve " )
worldedit.alias_command ( " naturalise " , " layers " )
worldedit.alias_command ( " naturalize " , " layers " )
worldedit.alias_command ( " flora " , " bonemeal " )
2021-03-16 03:51:23 +00:00
2021-06-29 04:15:47 +00:00
-- Measure Tools
worldedit.alias_command ( " mcount " , " count " )
worldedit.alias_command ( " mfacing " , " mface " )
2021-11-11 02:54:44 +00:00
--- Overrides to core WorldEdit commands
-- These are commented out for now, as they could be potentially dangerous to stability
-- Thorough testing is required of our replacement commands before these are uncommented
-- TODO: Depend on worldeditadditions_core before uncommenting this
2021-12-27 03:11:52 +00:00
-- BUG: //move+ seems to be leaving stuff behind for some strange reason --@sbrl 2021-12-26
2021-11-11 02:54:44 +00:00
-- worldeditadditions_core.alias_override("copy", "copy+")
2021-11-13 12:49:21 +00:00
-- worldeditadditions_core.alias_override("move", "move+") -- MAY have issues where it doesn't overwrite the old region properly, but haven't been able to reliably reproduce this
2021-11-11 02:54:44 +00:00
-- worldeditadditions_core.alias_override("replace", "replacemix")