渡されたキーワードに応じてディクショナリからシーン オブジェクトをインスタンス化し、scenes
それを返します。
次のシーンに切り替わるのはなぜですか?
次のシーンに切り替わる理由は、基本クラスでは各シーン extends がenter()
functionの実行を終了した後にシーケンス内の次のシーンを指定するためです。
class Engine(object):
def __init__(self, scene_map):
self.scene_map = scene_map
def play(self):
current_scene = self.scene_map.opening_scene()
while True:
print "\n--------"
next_scene_name = current_scene.enter() # returns next scene key
current_scene = self.scene_map.next_scene(next_scene_name) # initiates next scene and sets it as `current_scene`
たとえばCentralCorridor
、入力されたアクションに応じた最後のシーンは、次のシーンのキーを返します。
def enter(self):
print "The Gothons of Planet Percal #25 have invaded your ship and destroyed"
...
print "flowing around his hate filled body. He's blocking the door to the"
print "Armory and about to pull a weapon to blast you."
action = raw_input("> ")
if action == "shoot!":
print "Quick on the draw you yank out your blaster and fire it at the Gothon."
...
print "you are dead. Then he eats you."
return 'death' # next scene `Death`
elif action == "dodge!":
print "Like a world class boxer you dodge, weave, slip and slide right"
...
print "your head and eats you."
return 'death' # next scene `Death`
elif action == "tell a joke":
print "Lucky for you they made you learn Gothon insults in the academy."
...
return 'laser_weapon_armory' # next scene `LaserWeaponArmory`
else:
print "DOES NOT COMPUTE!"
return 'central_corridor' # next scene `CentralCorridor`
そして、シーケンス全体enter()
は、プログラムを終了する死のシーンの関数で終了します。
def enter(self):
print Death.quips[randint(0, len(self.quips)-1)]
exit(1)