From 899d0997a6badae6535e9f69e0f6d70f3a272578 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Sun, 14 Jan 2024 16:02:12 +0200 Subject: Adding the idiot bot for giving idiot hints. --- bots/bot.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bots/bot.py (limited to 'bots/bot.py') diff --git a/bots/bot.py b/bots/bot.py new file mode 100644 index 0000000..1b7fedd --- /dev/null +++ b/bots/bot.py @@ -0,0 +1,14 @@ +""" bots/bot.py - bottien kantaisä """ +from tui.static import Action + +class Bot(): + """ Bot - perusluokka perittäväksi """ + # pylint: disable = too-few-public-methods + def __init__(self): + self.hints = 0 + + def hint(self, matrix, x, y): + """ antaa vinkin. tässä tapauksessa ei mitään """ + # pylint: disable = unused-argument + self.hints += 1 + return Action.NOOP, x, y -- cgit v1.2.3