blob: 0dfef0a8375851f27f4e732b1072bcae9ca16ba2 (
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
28
29
30
31
32
33
34
35
36
|
""" app.py - pääohjelma """
from board import Board, Level, LevelSpecs
from tui import Tui
from game import Game
from bots import SimpleBot, DSSPBot
# pylint: disable = too-few-public-methods
class App:
""" App - Luokka pääohjelmalle"""
def __init__(self, args=None):
board_opts = {'level': Level.BEGINNER}
tui_opts = {'bot': DSSPBot}
if args:
# pylint: disable = multiple-statements
if args.intermediate: board_opts['level'] = Level.INTERMEDIATE
if args.expert: board_opts['level'] = Level.EXPERT
if args.width: board_opts['width'] = args.width
if args.height: board_opts['height'] = args.height
if args.mines: board_opts['mines'] = args.mines
if args.simple: tui_opts['bot'] = SimpleBot
tui_opts['autoplay'] = args.auto
tui_opts['interactive'] = not args.uncertain
tui_opts['suppress'] = args.quiet
tui_opts['height'] = LevelSpecs[board_opts['level']][1]
self.board = Board(**board_opts)
tui_opts['level_name']=self.board.get_level_name()
self.ui = Tui(**tui_opts)
self.game = Game(self.board,self.ui)
def run(self):
""" käynnistää pelin """
while self.game.next():
pass
return self.board.is_winning()
|