示例#1
0
    def __init__(self):
        self.conf = Configuration("useroptions.conf")
        w, h = self.conf.get('core', 'window_width', 'window_height')
        font_file = self.conf.get('render', 'font_file')
        font = Font(font_file, FONT_GREYSCALE | FONT_TCOD)
        self.window = Window(int(w),
                             int(h),
                             "Prism Break, Pyweek 11: 'Caught' ",
                             font=font,
                             renderer=RENDER_SDL)
        self.window.keyrepeat = (100, 100)
        self.view = Console(int(w), int(h))
        self.input = InputMapper(self)

        self._scene = None
        self.running = False