In the grapher, split forset from surface mode.

This commit is contained in:
Eric S. Raymond 2022-04-20 07:08:11 -04:00
parent baab09e3ab
commit 3f3e114536
2 changed files with 10 additions and 9 deletions

View file

@ -369,7 +369,7 @@ locations: !!omap
description: description:
long: !!null long: !!null
short: !!null short: !!null
maptag: !!null maptag: 'Nowhere'
conditions: {} conditions: {}
travel: [ travel: [
] ]

View file

@ -6,8 +6,9 @@ Make a DOT graph of Colossal Cave.
-a = emit graph of entire dungeon -a = emit graph of entire dungeon
-d = emit graoh of mazw all different -d = emit graoh of mazw all different
-f = emit graph of forest locations
-m = emit graph of maze all alike -m = emit graph of maze all alike
-s = emit graph of surface locations -s = emit graph of non-forest surface locations
-v = include internal sy,no;s in room labels -v = include internal sy,no;s in room labels
""" """
# Copyright (c) 2017 by Eric S. Raymond # Copyright (c) 2017 by Eric S. Raymond
@ -25,12 +26,10 @@ def alldifferent(loc):
def surface(loc): def surface(loc):
"Select out surface locations" "Select out surface locations"
attrs = location_lookup[loc] return location_lookup[loc]["conditions"].get("ABOVE")
if ("ABOVE" in attrs["conditions"]) and attrs["conditions"]["ABOVE"]:
return True def forest(loc):
if ("FOREST" in attrs["conditions"]) and attrs["conditions"]["FOREST"]: return location_lookup[loc]["conditions"].get("FOREST")
return True
return False
def abbreviate(d): def abbreviate(d):
m = {"NORTH":"N", "EAST":"E", "SOUTH":"S", "WEST":"W", "UPWAR":"U", "DOWN":"D"} m = {"NORTH":"N", "EAST":"E", "SOUTH":"S", "WEST":"W", "UPWAR":"U", "DOWN":"D"}
@ -112,7 +111,7 @@ if __name__ == "__main__":
object_lookup = dict(db["objects"]) object_lookup = dict(db["objects"])
try: try:
(options, arguments) = getopt.getopt(sys.argv[1:], "admsv") (options, arguments) = getopt.getopt(sys.argv[1:], "adfmsv")
except getopt.GetoptError as e: except getopt.GetoptError as e:
print(e) print(e)
sys.exit(1) sys.exit(1)
@ -124,6 +123,8 @@ if __name__ == "__main__":
subset = lambda loc: True subset = lambda loc: True
elif switch == '-d': elif switch == '-d':
subset = alldifferent subset = alldifferent
elif switch == '-f':
subset = forest
elif switch == '-m': elif switch == '-m':
subset = allalike subset = allalike
elif switch == '-s': elif switch == '-s':