-
Notifications
You must be signed in to change notification settings - Fork 193
/
lua.lua
53 lines (47 loc) · 1.49 KB
/
lua.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
-- Execute lua commands interactively or from files.
local utils = require 'utils'
local args = {...}
local cmd = args[1]
env = env or utils.df_shortcut_env()
if cmd=="--file" or cmd=="-f" then --luacheck: skip
local f,err=loadfile (args[2])
if f==nil then
qerror(err)
end
dfhack.safecall(f,table.unpack(args,3))
elseif cmd=="--save" or cmd=="-s" then --luacheck: skip
if df.global.world.cur_savegame.save_dir=="" then
qerror("Savefile not loaded")
end
local fname=args[2] or "dfhack.lua"
fname=string.format("save/%s/%s",df.global.world.cur_savegame.save_dir,fname)
local f,err=loadfile (fname)
if f==nil then
qerror(err)
end
dfhack.safecall(f,table.unpack(args,3))
elseif cmd~=nil then --luacheck: skip
-- Support some of the prefixes allowed by dfhack.interpreter
local prefix
if string.match(cmd, "^[~@!^]") then
prefix = string.sub(cmd, 1, 1)
cmd = 'return '..string.sub(cmd, 2)
end
local f, err = load(cmd, '=(lua command)', 't', env)
if f == nil then
qerror(err)
end
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])
elseif prefix == '@' then
printall_ipairs(rv[2])
elseif prefix == '^' then
printall_recurse(rv[2])
end
end
else
dfhack.interpreter("lua","dfhack-config/lua.history",env)
end