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:
parent
50545452bd
commit
48bb9d650b
1 changed files with 18 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue