A step forward in definining YAML for the travel array.
This commit is contained in:
parent
9301a4f419
commit
bbfc8eb57a
1 changed files with 12 additions and 2 deletions
14
travel.py
14
travel.py
|
@ -42,6 +42,9 @@
|
||||||
# This says that, from 11, 49 takes him to 8 unless game.prop(3)=0, in which
|
# This says that, from 11, 49 takes him to 8 unless game.prop(3)=0, in which
|
||||||
# case he goes to 9. Verb 50 takes him to 9 regardless of game.prop(3).
|
# case he goes to 9. Verb 50 takes him to 9 regardless of game.prop(3).
|
||||||
#
|
#
|
||||||
|
# In addition, it looks as though the action verb value 1 is a sentinel used
|
||||||
|
# when a table entry would have no motions at all in it.
|
||||||
|
#
|
||||||
import sys, yaml
|
import sys, yaml
|
||||||
|
|
||||||
# This is the original travel table from section 3 of adventure.text
|
# This is the original travel table from section 3 of adventure.text
|
||||||
|
@ -688,9 +691,17 @@ def genline(loc):
|
||||||
src = t.pop(0)
|
src = t.pop(0)
|
||||||
if src == loc:
|
if src == loc:
|
||||||
dest = t.pop(0)
|
dest = t.pop(0)
|
||||||
|
try:
|
||||||
|
if t.index(1) == len(t) - 1:
|
||||||
|
t.pop()
|
||||||
|
else:
|
||||||
|
sys.stderr.write("%s (%d): action value 1 in unexpected place\n" %\
|
||||||
|
(locnames[loc], loc))
|
||||||
|
sys.exit(1)
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
cond = dest // 1000
|
cond = dest // 1000
|
||||||
dest = dest % 1000
|
dest = dest % 1000
|
||||||
print("cond %s, dest %s, words: %s" % (cond, dest, t))
|
|
||||||
t = [verbs[e] for e in t]
|
t = [verbs[e] for e in t]
|
||||||
sys.stdout.write(" %s %s %s,\n" % (destdecode(dest), cond, t))
|
sys.stdout.write(" %s %s %s,\n" % (destdecode(dest), cond, t))
|
||||||
sys.stdout.write(" }\n")
|
sys.stdout.write(" }\n")
|
||||||
|
@ -707,7 +718,6 @@ if __name__ == "__main__":
|
||||||
for entry in db["vocabulary"]:
|
for entry in db["vocabulary"]:
|
||||||
if entry["type"] == "motion" and entry["value"] not in verbs:
|
if entry["type"] == "motion" and entry["value"] not in verbs:
|
||||||
verbs[entry["value"]] = entry["word"]
|
verbs[entry["value"]] = entry["word"]
|
||||||
print(verbs)
|
|
||||||
ln = -1
|
ln = -1
|
||||||
while True:
|
while True:
|
||||||
line = fp.readline()
|
line = fp.readline()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue