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

Fixed Decade hints.

This commit is contained in:
Joe R 2021-09-08 21:18:11 -04:00
parent 50545452bd
commit 48bb9d650b

View file

@ -389,6 +389,23 @@ class AccordionsRevenge(Accordion2):
# ************************************************************************
# Hint should reveal a valid move, but some intelligence should be added.
class Decade_Hint(AbstractHint):
def computeHints(self):
game = self.game
rows = game.s.rows
for i in range(len(rows)):
for j in range(i + 1, len(rows)):
total = 0
count = 0
for k in range(i, j):
total += min(self.game.s.rows[k].cards[0].rank + 1, 10)
count += 1
if total in [10, 20, 30] and count > 1:
self.addHint(5000, 1, rows[i], rows[j - 1])
class Decade_RowStack(PushPin_RowStack):
def acceptsCards(self, from_stack, cards):
@ -426,6 +443,7 @@ class Decade_RowStack(PushPin_RowStack):
class Decade(PushPin):
Hint_Class = Decade_Hint
RowStack_Class = Decade_RowStack
def isGameWon(self):