From 2bbea25a42c196b0944100cd8d48cd1901f91902 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sat, 4 Aug 2018 17:40:36 +0300 Subject: [PATCH] Clarify the solver dialog msg on hint-on-intract so people will not think it was solved. --- pysollib/hint.py | 4 +++- pysollib/ui/tktile/solverdialog.py | 12 +++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/pysollib/hint.py b/pysollib/hint.py index c65ecb9e..7824d6e4 100644 --- a/pysollib/hint.py +++ b/pysollib/hint.py @@ -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 diff --git a/pysollib/ui/tktile/solverdialog.py b/pysollib/ui/tktile/solverdialog.py index 41b3e205..53661bd0 100644 --- a/pysollib/ui/tktile/solverdialog.py +++ b/pysollib/ui/tktile/solverdialog.py @@ -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: