1
0
Fork 0
MineClone2/mods/CORE/mcl_commands/api.lua

116 lines
2.9 KiB
Lua
Raw Normal View History

2021-06-24 10:07:13 +00:00
local S = minetest.get_translator(minetest.get_current_modname())
2021-06-24 09:54:15 +00:00
--TODO: like mc error message
--TODO: complex command handling
--TODO: mc like help system
2021-06-24 09:54:15 +00:00
2021-06-24 12:04:15 +00:00
/setblock non 2 2 0 true {}
2021-06-24 09:40:35 +00:00
mcl_commands.types = {
2021-06-24 09:54:15 +00:00
bool = {
lengh = 1,
2021-06-24 10:07:13 +00:00
msg = S("Invalid boolean"),
2021-06-24 09:54:15 +00:00
func = function(word)
if word == "true" then
return true, true
elseif world == "false" then
return true, false
else
return false, nil
end
end,
},
int = {
lengh = 1,
2021-06-24 10:07:13 +00:00
msg = S("Invalid integer"),
2021-06-24 09:54:15 +00:00
func = function(int)
if tonumber(int) and tonumber(int) == math.round(int) then
return true, tonumber(int)
else
return false, nil
end
end,
},
2021-06-24 12:04:15 +00:00
float = {
lengh = 1,
msg = S("Invalid integer"),
func = function(float)
if tonumber(float) then
return true, tonumber(float)
else
return false, nil
end
end,
},
2021-06-24 09:40:35 +00:00
word = {},
text = {},
2021-06-24 09:54:15 +00:00
pos = {
lengh = 3,
2021-06-24 10:07:13 +00:00
msg = S("Invalid position"),
2021-06-24 09:54:15 +00:00
func = function(x, y, z)
2021-06-24 10:07:13 +00:00
--FIXME
2021-06-24 09:54:15 +00:00
if true then
return true, nil
else
return false, nil
end
end,
},
2021-06-24 09:40:35 +00:00
target = {},
2021-06-24 10:07:13 +00:00
playername = {
lengh = 1,
msg = S("Invalid player name"),
func = function(name)
if minetest.player_exists(name) then
return true, name
else
return false, nil
end
end,
},
2021-06-24 09:40:35 +00:00
}
function mcl_commands.register_complex_command()
end
2021-06-24 12:04:15 +00:00
--aims to avoid complexity for basic commands while keeping proper messages and privs management
2021-06-24 10:07:13 +00:00
function mcl_commands.register_basic_command(name, def)
2021-06-24 09:40:35 +00:00
end
function mcl_commands.alias_command(alias, original_name, bypass_setting)
if minetest.settings:get_bool("mcl_builtin_commands_overide", true) or bypass_setting then
local def = minetest.registered_chatcommands[cmd]
minetest.register_chatcommand(alias, def)
minetest.log("action", string.format("[mcl_commands] Aliasing [%s] command to [%s]", original_name, alias))
else
minetest.log("action", string.format("[mcl_commands] Aliasing [%s] command to [%s] skipped according to setting", original_name, alias))
end
end
function mcl_commands.rename_command(new_name, original_name, bypass_setting)
if minetest.settings:get_bool("mcl_builtin_commands_overide", true) or bypass_setting then
local def = minetest.registered_chatcommands[cmd]
minetest.register_chatcommand(newname, def)
minetest.unregister_chatcommand(cmd)
minetest.log("action", string.format("[mcl_commands] Renaming [%s] command to [%s]", original_name, new_name))
else
minetest.log("action", string.format("[mcl_commands] Renaming [%s] command to [%s] skipped according to setting", original_name, new_name))
end
end
2021-06-24 10:03:56 +00:00
--0: succesfull, table
--1: not connected player, nil
--2: invalid target selector, nil
2021-06-24 09:40:35 +00:00
function mcl_commands.get_target_selector(target_selector)
2021-06-24 10:03:56 +00:00
if minetest.player_exists(target_selector) then
local obj = minetest.get_player_by_name(target_selector)
if obj then
return 0, {obj}
else
return 1, nil
end
else
return 0, {}
end
2021-06-24 09:40:35 +00:00
end