blob: 6a2b00accf202f4564c575ff795dcc7a1ffc8793 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
""" app.py - pääohjelma """
from board import Board, Level
from tui import Tui, AutoTui
from game import Game
from bots import BadBot
# pylint: disable = too-few-public-methods
class App:
""" App - Luokka pääohjelmalle"""
def __init__(self, args=None):
level=Level.BEGINNER
ui_class=Tui
if args:
level = Level.EXPERT if args.expert else level
level = Level.INTERMEDIATE if args.intermediate else level
level = Level.BEGINNER if args.beginner else level
ui_class = AutoTui if args.auto else ui_class
self.board = Board(level=level)
self.bot = BadBot()
self.ui = ui_class(self.bot)
self.game = Game(self.board,self.ui)
def run(self):
""" käynnistää pelin """
while self.game.next():
pass
|