2022-04-11 17:16:55 -06:00
|
|
|
-- Docs at https://docs.dfhack.org/en/stable/docs/Lua%20API.html#argparse
|
|
|
|
|
2021-07-03 00:11:17 -06:00
|
|
|
local _ENV = mkmodule('argparse')
|
|
|
|
|
|
|
|
local getopt = require('3rdparty.alt_getopt')
|
|
|
|
local guidm = require('gui.dwarfmode')
|
|
|
|
|
|
|
|
function processArgs(args, validArgs)
|
|
|
|
local result = {}
|
|
|
|
local argName
|
|
|
|
local bracketDepth = 0
|
|
|
|
for i,arg in ipairs(args) do
|
|
|
|
if argName then
|
|
|
|
if arg == '[' then
|
|
|
|
if bracketDepth > 0 then
|
|
|
|
table.insert(result[argName], arg)
|
|
|
|
end
|
|
|
|
bracketDepth = bracketDepth+1
|
|
|
|
elseif arg == ']' then
|
|
|
|
bracketDepth = bracketDepth-1
|
|
|
|
if bracketDepth > 0 then
|
|
|
|
table.insert(result[argName], arg)
|
|
|
|
else
|
|
|
|
argName = nil
|
|
|
|
end
|
2022-04-11 17:16:55 -06:00
|
|
|
elseif arg:startswith('\\') then
|
2021-07-03 00:11:17 -06:00
|
|
|
if bracketDepth == 0 then
|
|
|
|
result[argName] = string.sub(arg,2)
|
|
|
|
argName = nil
|
|
|
|
else
|
|
|
|
table.insert(result[argName], string.sub(arg,2))
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if bracketDepth == 0 then
|
|
|
|
result[argName] = arg
|
|
|
|
argName = nil
|
|
|
|
else
|
|
|
|
table.insert(result[argName], arg)
|
|
|
|
end
|
|
|
|
end
|
2022-04-11 17:16:55 -06:00
|
|
|
elseif arg:startswith('-') then
|
|
|
|
argName = string.sub(arg, arg:startswith('--') and 3 or 2)
|
2021-07-03 00:11:17 -06:00
|
|
|
if validArgs and not validArgs[argName] then
|
2022-04-11 17:16:55 -06:00
|
|
|
qerror('error: invalid arg: ' .. i .. ': ' .. argName)
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
|
|
|
if result[argName] then
|
2022-04-11 17:16:55 -06:00
|
|
|
qerror('duplicate arg: ' .. i .. ': ' .. argName)
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
2022-04-11 17:16:55 -06:00
|
|
|
if i+1 > #args or args[i+1]:startswith('-') then
|
2021-07-03 00:11:17 -06:00
|
|
|
result[argName] = ''
|
|
|
|
argName = nil
|
|
|
|
else
|
|
|
|
result[argName] = {}
|
|
|
|
end
|
|
|
|
else
|
2022-04-11 17:16:55 -06:00
|
|
|
qerror('error parsing arg ' .. i .. ': ' .. arg)
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
|
2022-04-11 17:16:55 -06:00
|
|
|
-- See online docs for full usage info.
|
2021-07-03 00:11:17 -06:00
|
|
|
--
|
2022-04-11 17:16:55 -06:00
|
|
|
-- Quick example:
|
2021-07-03 00:11:17 -06:00
|
|
|
--
|
2022-04-11 17:16:55 -06:00
|
|
|
-- local args = {...}
|
|
|
|
-- local open_readonly, filename = false, nil -- set defaults
|
2021-07-03 00:11:17 -06:00
|
|
|
--
|
2022-04-11 17:16:55 -06:00
|
|
|
-- local positionals = argparse.processArgsGetopt(args, {
|
2021-07-03 00:11:17 -06:00
|
|
|
-- {'r', handler=function() open_readonly = true end},
|
|
|
|
-- {'f', 'filename', hasArg=true,
|
|
|
|
-- handler=function(optarg) filename = optarg end}
|
2022-04-11 17:16:55 -06:00
|
|
|
-- })
|
2021-07-03 00:11:17 -06:00
|
|
|
--
|
2022-04-11 17:16:55 -06:00
|
|
|
-- In this example, if args is {'first', '-rf', 'fname', 'second'} or,
|
|
|
|
-- equivalently, {'first', '-r', '--filename', 'myfile.txt', 'second'} (note the
|
|
|
|
-- double dash in front of the long option alias), then:
|
|
|
|
-- open_readonly == true
|
|
|
|
-- filename == 'myfile.txt'
|
|
|
|
-- positionals == {'first', 'second'}.
|
2021-07-03 00:11:17 -06:00
|
|
|
function processArgsGetopt(args, optionActions)
|
|
|
|
local sh_opts, long_opts = '', {}
|
|
|
|
local handlers = {}
|
|
|
|
for _,optionAction in ipairs(optionActions) do
|
|
|
|
local sh_opt,long_opt = optionAction[1], optionAction[2]
|
2021-09-25 22:15:53 -06:00
|
|
|
if sh_opt and (type(sh_opt) ~= 'string' or #sh_opt > 1) then
|
2021-09-25 13:25:02 -06:00
|
|
|
error('option letter not found')
|
|
|
|
end
|
|
|
|
if long_opt and (type(long_opt) ~= 'string' or #long_opt == 0) then
|
|
|
|
error('long option name must be a string with length >0')
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
2021-09-25 22:15:53 -06:00
|
|
|
if not sh_opt then
|
|
|
|
sh_opt = ''
|
|
|
|
end
|
|
|
|
if not long_opt and #sh_opt == 0 then
|
|
|
|
error('at least one of sh_opt and long_opt must be specified')
|
|
|
|
end
|
2021-07-03 00:11:17 -06:00
|
|
|
if not optionAction.handler then
|
2021-09-25 22:15:53 -06:00
|
|
|
error(string.format('handler missing for option "%s"',
|
|
|
|
#sh_opt > 0 and sh_opt or long_opt))
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
2021-09-25 13:25:02 -06:00
|
|
|
if #sh_opt > 0 then
|
|
|
|
sh_opts = sh_opts .. sh_opt
|
|
|
|
if optionAction.hasArg then sh_opts = sh_opts .. ':' end
|
|
|
|
handlers[sh_opt] = optionAction.handler
|
|
|
|
end
|
2021-07-03 00:11:17 -06:00
|
|
|
if long_opt then
|
2021-09-25 13:25:02 -06:00
|
|
|
if #sh_opt > 0 then
|
|
|
|
long_opts[long_opt] = sh_opt
|
|
|
|
else
|
|
|
|
long_opts[long_opt] = optionAction.hasArg and 1 or 0
|
|
|
|
end
|
2021-07-03 00:11:17 -06:00
|
|
|
handlers[long_opt] = optionAction.handler
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local opts, optargs, nonoptions =
|
|
|
|
getopt.get_ordered_opts(args, sh_opts, long_opts)
|
|
|
|
for i,v in ipairs(opts) do
|
|
|
|
handlers[v](optargs[i])
|
|
|
|
end
|
|
|
|
return nonoptions
|
|
|
|
end
|
|
|
|
|
|
|
|
local function arg_error(arg_name, fmt, ...)
|
|
|
|
local prefix = ''
|
|
|
|
if arg_name and #arg_name > 0 then
|
|
|
|
prefix = arg_name .. ': '
|
|
|
|
end
|
|
|
|
qerror(('%s'..fmt):format(prefix, ...))
|
|
|
|
end
|
|
|
|
|
|
|
|
function stringList(arg, arg_name, list_length)
|
|
|
|
if not list_length then list_length = 0 end
|
|
|
|
local list = arg:split(',')
|
|
|
|
if list_length > 0 and #list ~= list_length then
|
|
|
|
arg_error(arg_name,
|
|
|
|
'expected %d elements; found %d', list_length, #list)
|
|
|
|
end
|
|
|
|
for i,element in ipairs(list) do
|
|
|
|
list[i] = element:trim()
|
|
|
|
end
|
|
|
|
return list
|
|
|
|
end
|
|
|
|
|
|
|
|
function numberList(arg, arg_name, list_length)
|
|
|
|
local strings = stringList(arg, arg_name, list_length)
|
|
|
|
for i,str in ipairs(strings) do
|
|
|
|
local num = tonumber(str)
|
|
|
|
if not num then
|
|
|
|
arg_error(arg_name, 'invalid number: "%s"', str)
|
|
|
|
end
|
|
|
|
strings[i] = num
|
|
|
|
end
|
|
|
|
return strings
|
|
|
|
end
|
|
|
|
|
2022-08-03 01:01:25 -06:00
|
|
|
function positiveInt(arg, arg_name)
|
|
|
|
local val = tonumber(arg)
|
|
|
|
if not val or val <= 0 or val ~= math.floor(val) then
|
|
|
|
arg_error(arg_name,
|
|
|
|
'expected positive integer; got "%s"', tostring(arg))
|
|
|
|
end
|
|
|
|
return val
|
|
|
|
end
|
|
|
|
|
|
|
|
function nonnegativeInt(arg, arg_name)
|
|
|
|
local val = tonumber(arg)
|
2021-07-03 17:26:39 -06:00
|
|
|
if not val or val < 0 or val ~= math.floor(val) then
|
2021-07-03 00:11:17 -06:00
|
|
|
arg_error(arg_name,
|
2022-08-03 01:01:25 -06:00
|
|
|
'expected non-negative integer; got "%s"', tostring(arg))
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
|
|
|
return val
|
|
|
|
end
|
|
|
|
|
2021-07-04 08:32:29 -06:00
|
|
|
function coords(arg, arg_name, skip_validation)
|
2021-07-03 00:11:17 -06:00
|
|
|
if arg == 'here' then
|
|
|
|
local cursor = guidm.getCursorPos()
|
|
|
|
if not cursor then
|
|
|
|
arg_error(arg_name,
|
|
|
|
'"here" was specified for coordinates, but the game' ..
|
|
|
|
' cursor is not active!')
|
|
|
|
end
|
2021-07-04 08:32:29 -06:00
|
|
|
if not skip_validation and not dfhack.maps.isValidTilePos(cursor) then
|
|
|
|
arg_error(arg_name, 'cursor coordinates not on current map!')
|
|
|
|
end
|
2021-07-03 00:11:17 -06:00
|
|
|
return cursor
|
|
|
|
end
|
|
|
|
local numbers = numberList(arg, arg_name, 3)
|
2022-08-03 01:30:46 -06:00
|
|
|
local pos = xyz2pos(nonnegativeInt(numbers[1]),
|
|
|
|
nonnegativeInt(numbers[2]),
|
|
|
|
nonnegativeInt(numbers[3]))
|
2021-07-04 08:32:29 -06:00
|
|
|
if not skip_validation and not dfhack.maps.isValidTilePos(pos) then
|
2021-07-05 17:01:07 -06:00
|
|
|
arg_error(arg_name,
|
|
|
|
'specified coordinates not on current map: "%s"', arg)
|
2021-07-04 08:32:29 -06:00
|
|
|
end
|
|
|
|
return pos
|
2021-07-03 00:11:17 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
return _ENV
|