-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
176 lines (155 loc) · 4.52 KB
/
Copy pathmain.lua
File metadata and controls
176 lines (155 loc) · 4.52 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
local runtime = require 'zilscript.runtime'
local test_format = require 'zilscript.test_format'
local terminal = require 'zilscript.terminal'
local choice_widget = require 'zilscript.choice_widget'
local options = {
interface = "companion",
story_module = nil,
}
local function usage()
io.write([[
Usage: lua5.4 main.lua [options] [story-module]
Interfaces:
--companion Show all state-aware choices (default)
--text Use the classic free-text parser interface
Other:
--help, -h Show this help
Examples:
lua5.4 main.lua
lua5.4 main.lua --companion
lua5.4 main.lua --text
lua5.4 main.lua --companion infocom.zork1.zork1
]])
end
local i = 1
while i <= #arg do
local value = arg[i]
if value == "--text" then
options.interface = "text"
elseif value == "--companion" then
options.interface = "companion"
elseif value == "--help" or value == "-h" then
usage()
os.exit(0)
elseif value:sub(1, 1) == "-" then
io.stderr:write("Unknown option: " .. value .. "\n")
usage()
os.exit(2)
elseif not options.story_module then
options.story_module = value
else
io.stderr:write("Unexpected argument: " .. value .. "\n")
usage()
os.exit(2)
end
i = i + 1
end
local story_module = options.story_module or "infocom.zork1.zork1"
-- Create game environment
local env = runtime.create_game_env()
-- Load bootstrap
if not runtime.init(env) then
os.exit(1)
end
-- Install ZIL support and load modules
env.require('zilscript')
if not runtime.load_modules(env, { story_module }, {save_lua = true}) then
os.exit(1)
end
local story_prefix = story_module:match("^(.*)%.")
local companion_module = (story_prefix or story_module) .. ".companion"
local companion_loaded = false
if options.interface == "companion" then
local ok, result = pcall(env.require, companion_module)
if ok then
companion_loaded = result ~= nil
elseif not tostring(result):match("not found in environment") then
io.stderr:write("Failed to load companion module " .. companion_module
.. ": " .. tostring(result) .. "\n")
os.exit(1)
end
-- load_modules captured restart state before the optional companion was
-- loaded. Capture it again so companion globals reset with the adventure.
if type(env.CAPTURE_RESTART_STATE) == "function" then
env.CAPTURE_RESTART_STATE()
end
end
local function highlight(text)
text = terminal.bold_words(text, env.DESCS)
text = terminal.bold_words(text, env.DIRS)
return text
end
-- Create env as a coroutine
local game = runtime.create_game(env)
-- Start the game and get initial output
local res = game:start()
if type(res) == "string" then io.write(highlight(res)) end
local function write_response(response)
if type(response) == "table" and response.status then
io.write(test_format.format_test_result(response) .. "\n")
elseif type(response) == "string" then
io.write(highlight(response))
end
end
local function companion_selector(query)
local result = choice_widget.run({
items = query.choices,
render_item = function(choice)
return choice.label .. " (" .. choice.command .. ")"
end,
item_value = function(choice)
return choice.command
end,
allow_text = true,
})
if result.kind == "item" then
return {
kind = "choice",
id = result.item.id,
command = result.item.command,
}
elseif result.kind == "text" then
return {kind = "typed", command = result.text}
elseif result.kind == "interrupt" then
os.exit(0)
end
end
while game:is_running() do
local command
if options.interface == "companion" then
local query = env.COMPANION_QUERY()
if query.ok and #query.choices > 0 then
local result = companion_selector(query)
if result.kind == "choice" then
local selected = env.COMPANION_SELECT(result.id)
if selected.ok then
command = selected.command
end
elseif result.kind == "typed" then
command = result.command
end
else
if query.error then
io.stderr:write("\nCompanion error: " .. tostring(query.error) .. "\n")
end
io.write("\n> ")
local input = io.read()
if not input then break end
command = input
io.write("\n")
end
else
local input = io.read()
if not input then break end
command = input
io.write("\n")
end
if command then
res = game:resume(command)
write_response(res)
end
end
-- local ast = parser.parse_file "infocom/zork1/actions.zil"
-- local res = compiler.compile(ast)
-- print(parser.view(ast, 0))
-- print(res.body)