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

Clarify the solver dialog msg on hint-on-intract

so people will not think it was solved.
This commit is contained in:
Shlomi Fish 2018-08-04 17:40:36 +03:00
parent 02edf2afdd
commit 2bbea25a42
2 changed files with 12 additions and 4 deletions

View file

@ -1048,6 +1048,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
command = FCS_COMMAND+' '+' '.join([str(i) for i in args])
pout, perr = self.run_solver(command, board)
self.solver_state = 'unknown'
#
stack_types = {
'the': game.s.foundations,
@ -1157,7 +1158,8 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
self.hints = hints
if len(hints) > 0:
self.solver_state = 'solved'
if self.solver_state != 'intractable':
self.solver_state = 'solved'
self.hints.append(None) # XXX
# print self.hints

View file

@ -177,9 +177,15 @@ class BaseSolverDialog:
return
hints_len = len(solver.hints)-1
if hints_len > 0:
t = ungettext('This game is solvable in %d move.',
'This game is solvable in %d moves.',
hints_len) % hints_len
if solver.solver_state == 'intractable':
t = ungettext('This game can be hinted in %d move.',
'This game can be hinted in %d moves.',
hints_len)
else:
t = ungettext('This game is solvable in %d move.',
'This game is solvable in %d moves.',
hints_len)
t = t % hints_len
self.result_label['text'] = t
self.play_button.config(state='normal')
else: