view gamelib/scenes/engine.py @ 241:b1451b0b906f

Link crew quarters to map.
author Simon Cross <hodgestar+bzr@gmail.com>
date Fri, 27 Aug 2010 10:37:47 +0200
parents d00aa26941c4
children 12c4f87ea424
line wrap: on
line source

"""Engine room where things need to be repaired."""

from gamelib.state import Scene, Item, Thing, InteractText, Result


class Engine(Scene):

    FOLDER = "engine"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }

    def __init__(self, state):
        super(Engine, self).__init__(state)
        self.add_thing(ToMap())

    def enter(self):
        return Result("Somewhere in the darkness the engine waits and bides its time.")


class ToMap(Thing):
    "Way to map."

    NAME = "engine.tomap"
    DEST = "map"

    INTERACTS = {
        "door": InteractText(100, 200, "To Map"),
        }

    INITIAL = "door"

    def interact_without(self):
        """Go to map."""
        self.state.set_current_scene("map")


SCENES = [Engine]