From 4a53c175f5d6c7869a315a6ba5b9c2496a730864 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Wed, 5 Jun 2019 15:00:12 +0300 Subject: [PATCH] Extract ms_rearrange . --- pysollib/game.py | 12 ++++-------- tests/lib/pysol_tests/ms_deals1/__init__.py | 11 ++++------- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/pysollib/game.py b/pysollib/game.py index 3e5b99fe..257397da 100644 --- a/pysollib/game.py +++ b/pysollib/game.py @@ -22,12 +22,13 @@ # --------------------------------------------------------------------------- -# imports import math import time import traceback from pickle import Pickler, Unpickler, UnpicklingError +from pysol_cards.cards import ms_rearrange + from pysollib.gamedb import GI from pysollib.help import help_about from pysollib.hint import DefaultHint @@ -1058,13 +1059,8 @@ class Game(object): # get a fresh copy of the original game-cards cards = list(self.cards) # init random generator - if isinstance(self.random, LCRandom31) and len(cards) == 52: - # FreeCell mode - fcards = [] - for i in range(13): - for j in (0, 39, 26, 13): - fcards.append(cards[i + j]) - cards = fcards + if isinstance(self.random, LCRandom31): + cards = ms_rearrange(cards) self.random.reset() # reset to initial seed # shuffle self.random.shuffle(cards) diff --git a/tests/lib/pysol_tests/ms_deals1/__init__.py b/tests/lib/pysol_tests/ms_deals1/__init__.py index 6e1c63f6..8d5bd66b 100644 --- a/tests/lib/pysol_tests/ms_deals1/__init__.py +++ b/tests/lib/pysol_tests/ms_deals1/__init__.py @@ -53,6 +53,8 @@ # imports import unittest +from pysol_cards.cards import ms_rearrange + # So the localpaths will be overrided. from pysollib.pysolrandom import LCRandom31, constructRandom, \ random__long2str, random__str2long @@ -244,13 +246,8 @@ def flip_card(card_str, flip): def shuffle(orig_cards, rand): shuffled_cards = list(orig_cards) - if isinstance(rand, LCRandom31) and len(shuffled_cards) == 52: - # FreeCell mode - fcards = [] - for i in range(13): - for j in (0, 39, 26, 13): - fcards.append(shuffled_cards[i + j]) - shuffled_cards = fcards + if isinstance(rand, LCRandom31): + shuffled_cards = ms_rearrange(shuffled_cards) # rand.shuffle works in place rand.shuffle(shuffled_cards) return shuffled_cards