1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Added basic, but workable, hint logic for Ishido type games.

This commit is contained in:
Joe R 2024-05-22 20:16:20 -04:00
parent 66d2eaba5f
commit b64ef10374

View file

@ -23,6 +23,7 @@
from pysollib.game import Game from pysollib.game import Game
from pysollib.gamedb import GI, GameInfo, registerGame from pysollib.gamedb import GI, GameInfo, registerGame
from pysollib.hint import AbstractHint
from pysollib.layout import Layout from pysollib.layout import Layout
from pysollib.mygettext import _ from pysollib.mygettext import _
from pysollib.pysoltk import MfxCanvasText from pysollib.pysoltk import MfxCanvasText
@ -36,6 +37,24 @@ from pysollib.stack import \
# ************************************************************************ # ************************************************************************
class Ishido_Hint(AbstractHint):
# FIXME: no intelligence whatsoever is implemented here
def computeHints(self):
game = self.game
for r in game.s.rows:
if (not r.cards and
game.isValidPlay(r.id,
game.s.talon.getCard().rank,
game.s.talon.getCard().suit)):
adjacentPiles = game.getAdjacent(r.id)
adjacent = 0
for pile in adjacentPiles:
if len(pile.cards) > 0:
adjacent += 1
self.addHint(100 * adjacent, 1, game.s.talon, r)
class Ishido_RowStack(ReserveStack): class Ishido_RowStack(ReserveStack):
def clickHandler(self, event): def clickHandler(self, event):
if (not self.cards and self.game.s.talon.cards and if (not self.cards and self.game.s.talon.cards and
@ -74,7 +93,7 @@ class Ishido_Talon(OpenTalonStack):
class Ishido(Game): class Ishido(Game):
Talon_Class = Ishido_Talon Talon_Class = Ishido_Talon
RowStack_Class = StackWrapper(Ishido_RowStack, max_move=0) RowStack_Class = StackWrapper(Ishido_RowStack, max_move=0)
Hint_Class = None Hint_Class = Ishido_Hint
REQUIRE_ADJACENT = True REQUIRE_ADJACENT = True
STRICT_FOUR_WAYS = True STRICT_FOUR_WAYS = True