12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- """The Adventure game.
- Copyright 2010-2015 Brandon Rhodes. Licensed as free software under the
- Apache License, Version 2.0 as detailed in the accompanying README.txt.
- """
- def load_advent_dat(data):
- import os
- from .data import parse
- datapath = os.path.join(os.path.dirname(__file__), 'advent.dat')
- with open(datapath, 'r', encoding='ascii') as datafile:
- parse(data, datafile)
- def play(seed=None):
- """Turn the Python prompt into an Adventure game.
- With optional the `seed` argument the caller can supply an integer
- to start the Python random number generator at a known state.
- """
- global _game
- from .game import Game
- from .prompt import install_words
- _game = Game(seed)
- load_advent_dat(_game)
- install_words(_game)
- _game.start()
- print(_game.output[:-1])
- def resume(savefile, quiet=False):
- global _game
- from .game import Game
- from .prompt import install_words
- _game = Game.resume(savefile)
- install_words(_game)
- if not quiet:
- print('GAME RESTORED\n')
|