2012-11-12 01:48:17 -07:00
|
|
|
-- Execute lua commands interactively or from files.
|
|
|
|
|
2012-09-24 15:24:37 -06:00
|
|
|
local args={...}
|
2012-11-12 01:48:17 -07:00
|
|
|
local cmd = args[1]
|
|
|
|
|
|
|
|
if cmd=="--file" or cmd=="-f" then
|
2012-11-11 03:39:49 -07:00
|
|
|
local f,err=loadfile (args[2])
|
|
|
|
if f==nil then
|
|
|
|
qerror(err)
|
|
|
|
end
|
2013-10-01 08:58:56 -06:00
|
|
|
dfhack.safecall(f,table.unpack(args,3))
|
2012-11-12 01:48:17 -07:00
|
|
|
elseif cmd=="--save" or cmd=="-s" then
|
2012-11-11 03:39:49 -07:00
|
|
|
if df.global.world.cur_savegame.save_dir=="" then
|
|
|
|
qerror("Savefile not loaded")
|
|
|
|
end
|
|
|
|
local fname=args[2] or "dfhack.lua"
|
|
|
|
fname=string.format("data/save/%s/%s",df.global.world.cur_savegame.save_dir,fname)
|
|
|
|
local f,err=loadfile (fname)
|
|
|
|
if f==nil then
|
|
|
|
qerror(err)
|
|
|
|
end
|
2013-10-01 08:58:56 -06:00
|
|
|
dfhack.safecall(f,table.unpack(args,3))
|
2012-11-12 01:48:17 -07:00
|
|
|
elseif cmd~=nil then
|
|
|
|
-- Support some of the prefixes allowed by dfhack.interpreter
|
|
|
|
local prefix
|
2014-09-08 18:30:18 -06:00
|
|
|
if string.match(cmd, "^[~@!]") then
|
2012-11-12 01:48:17 -07:00
|
|
|
prefix = string.sub(cmd, 1, 1)
|
|
|
|
cmd = 'return '..string.sub(cmd, 2)
|
|
|
|
end
|
|
|
|
|
|
|
|
local f,err=load(cmd,'=(lua command)', 't')
|
2012-11-11 03:39:49 -07:00
|
|
|
if f==nil then
|
|
|
|
qerror(err)
|
|
|
|
end
|
2012-11-12 01:48:17 -07:00
|
|
|
|
|
|
|
local rv = table.pack(dfhack.safecall(f,table.unpack(args,2)))
|
|
|
|
|
|
|
|
if rv[1] and prefix then
|
|
|
|
print(table.unpack(rv,2,rv.n))
|
|
|
|
if prefix == '~' then
|
|
|
|
printall(rv[2])
|
2014-09-08 18:30:18 -06:00
|
|
|
elseif prefix == '@' then
|
|
|
|
printall_ipairs(rv[2])
|
2012-11-12 01:48:17 -07:00
|
|
|
end
|
|
|
|
end
|
2012-09-24 15:24:37 -06:00
|
|
|
else
|
|
|
|
dfhack.interpreter("lua","lua.history")
|
2012-11-12 01:48:17 -07:00
|
|
|
end
|