Blob


1 a text adventure
2 =================
4 "a text adventure" is a text adventure based on the (unfortunately)
5 unfinished tutorial:
6 http://home.hccnet.nl/r.helderman/adventures/htpataic01.html
8 The code is more or less the same that you'll find on the tutorial,
9 except for the stile and some minor difference in the structure.
12 building
13 --------
15 make
17 It requires awk(1), a C compiler and the GNU readline library.
19 It builds on OpenBSD without external packages installed btw.
22 grammar
23 -------
25 While you can look for the grammar in `parseexec.c:/^parseexec`, I
26 would ask you not to do so: you may read spoilers.
28 Instead, try to express what you want to accomplish in plain english,
29 it should work. (note: no punctuation or conjunctions are supported
30 as of now)
32 Some examples
34 > quit
36 > look around
38 > look guard
40 > go to east
42 > pick up the coin
44 > ...