From d68d1a33f52ad9ddeb97c6e45f1e66cdf27c67f5 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Sat, 27 Jan 2024 12:36:02 +0200 Subject: Implementing uncertain moves as bot option. --- app.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'app.py') diff --git a/app.py b/app.py index 6a2b00a..be44752 100644 --- a/app.py +++ b/app.py @@ -8,16 +8,18 @@ from bots import BadBot class App: """ App - Luokka pääohjelmalle""" def __init__(self, args=None): - level=Level.BEGINNER - ui_class=Tui + level = Level.BEGINNER + ui_class = Tui + uncertain = False 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 + uncertain = args.uncertain self.board = Board(level=level) - self.bot = BadBot() + self.bot = BadBot(uncertain=uncertain) self.ui = ui_class(self.bot) self.game = Game(self.board,self.ui) -- cgit v1.2.3