mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
move to upstream PyPI pysol_cards
This commit is contained in:
parent
5b80116b69
commit
4ee74a3e2a
1 changed files with 14 additions and 323 deletions
|
@ -54,7 +54,8 @@
|
|||
import unittest
|
||||
|
||||
from pysol_cards.cards import Card, CardRenderer, ms_rearrange
|
||||
from pysol_cards.deal_game import Columns
|
||||
from pysol_cards.deal_game import Columns, Game
|
||||
from pysol_cards.random_base import RandomBase
|
||||
|
||||
# So the localpaths will be overrided.
|
||||
from pysollib.pysolrandom import LCRandom31, constructRandom, \
|
||||
|
@ -184,314 +185,6 @@ def shuffle(orig_cards, rand):
|
|||
return shuffled_cards
|
||||
|
||||
|
||||
class Game:
|
||||
REVERSE_MAP = \
|
||||
{
|
||||
"freecell":
|
||||
["freecell", "forecell", "bakers_game",
|
||||
"ko_bakers_game", "kings_only_bakers_game",
|
||||
"relaxed_freecell", "eight_off"],
|
||||
"der_katz":
|
||||
["der_katz", "der_katzenschwantz", "die_schlange"],
|
||||
"seahaven":
|
||||
["seahaven_towers", "seahaven", "relaxed_seahaven",
|
||||
"relaxed_seahaven_towers"],
|
||||
"bakers_dozen": None,
|
||||
"gypsy": None,
|
||||
"klondike": ["klondike", "klondike_by_threes",
|
||||
"casino_klondike", "small_harp",
|
||||
"thumb_and_pouch", "vegas_klondike", "whitehead"],
|
||||
"simple_simon": None,
|
||||
"yukon": None,
|
||||
"beleaguered_castle": ["beleaguered_castle",
|
||||
"streets_and_alleys", "citadel"],
|
||||
"fan": None,
|
||||
"black_hole": None,
|
||||
"all_in_a_row": None,
|
||||
}
|
||||
|
||||
def __init__(self, game_id, rand, print_ts):
|
||||
mymap = {}
|
||||
for k in self.REVERSE_MAP.keys():
|
||||
if self.REVERSE_MAP[k] is None:
|
||||
mymap[k] = k
|
||||
else:
|
||||
for alias in self.REVERSE_MAP[k]:
|
||||
mymap[alias] = k
|
||||
self.games_map = mymap
|
||||
self.game_id = game_id
|
||||
self.print_ts = print_ts
|
||||
self.rand = rand
|
||||
|
||||
def print_layout(self):
|
||||
game_class = self.lookup()
|
||||
|
||||
if not game_class:
|
||||
raise ValueError("Unknown game type " + self.game_id + "\n")
|
||||
|
||||
self.deal()
|
||||
|
||||
getattr(self, game_class)()
|
||||
|
||||
return self.board.output()
|
||||
|
||||
def lookup(self):
|
||||
return self.games_map[self.game_id]
|
||||
|
||||
def is_two_decks(self):
|
||||
return self.game_id in ("der_katz", "der_katzenschwantz",
|
||||
"die_schlange", "gypsy")
|
||||
|
||||
def get_num_decks(self):
|
||||
if self.is_two_decks():
|
||||
return 2
|
||||
else:
|
||||
return 1
|
||||
|
||||
def deal(self):
|
||||
orig_cards = createCards(self.get_num_decks())
|
||||
|
||||
orig_cards = shuffle(orig_cards, self.rand)
|
||||
|
||||
cards = orig_cards
|
||||
cards.reverse()
|
||||
|
||||
self.cards = cards
|
||||
self.card_idx = 0
|
||||
return True
|
||||
|
||||
def __iter__(self):
|
||||
return self
|
||||
|
||||
def no_more_cards(self):
|
||||
return self.card_idx >= len(self.cards)
|
||||
|
||||
def next(self):
|
||||
if self.no_more_cards():
|
||||
raise StopIteration
|
||||
c = self.cards[self.card_idx]
|
||||
self.card_idx = self.card_idx + 1
|
||||
return c
|
||||
|
||||
def new_cards(self, cards):
|
||||
self.cards = cards
|
||||
self.card_idx = 0
|
||||
|
||||
def add(self, idx, card):
|
||||
return self.board.add(idx, card)
|
||||
|
||||
def add_freecell(self, card):
|
||||
return self.board.add_freecell(card)
|
||||
|
||||
def cyclical_deal(game, num_cards, num_cols, flipped=False):
|
||||
for i in range(num_cards):
|
||||
game.add(i % num_cols, game.next().flip(flipped=flipped))
|
||||
return i
|
||||
|
||||
def add_all_to_talon(game):
|
||||
for card in game:
|
||||
game.board.add_talon(card)
|
||||
|
||||
# These are the games variants:
|
||||
# Each one is a callback.
|
||||
def der_katz(game):
|
||||
if (game.game_id == "die_schlange"):
|
||||
return "Foundations: H-A S-A D-A C-A H-A S-A D-A C-A"
|
||||
|
||||
game.board = Board(9)
|
||||
col_idx = 0
|
||||
|
||||
for card in game:
|
||||
if card.is_king():
|
||||
col_idx = col_idx + 1
|
||||
if not ((game.game_id == "die_schlange") and (card.rank == 1)):
|
||||
game.add(col_idx, card)
|
||||
|
||||
def freecell(game):
|
||||
is_fc = (game.game_id in ('forecell', 'eight_off'))
|
||||
|
||||
game.board = Board(8, with_freecells=is_fc)
|
||||
|
||||
if is_fc:
|
||||
game.cyclical_deal(48, 8)
|
||||
for card in game:
|
||||
game.add_freecell(card)
|
||||
if game.game_id == "eight_off":
|
||||
game.add_freecell(empty_card())
|
||||
else:
|
||||
game.cyclical_deal(52, 8)
|
||||
|
||||
def seahaven(game):
|
||||
game.board = Board(10, with_freecells=True)
|
||||
|
||||
game.add_freecell(empty_card())
|
||||
|
||||
game.cyclical_deal(50, 10)
|
||||
|
||||
for card in game:
|
||||
game.add_freecell(card)
|
||||
|
||||
def bakers_dozen(game):
|
||||
i, n = 0, 13
|
||||
kings = []
|
||||
cards = game.cards
|
||||
cards.reverse()
|
||||
for c in cards:
|
||||
if c.is_king():
|
||||
kings.append(i)
|
||||
i = i + 1
|
||||
for i in kings:
|
||||
j = i % n
|
||||
while j < i:
|
||||
if not cards[j].is_king():
|
||||
cards[i], cards[j] = cards[j], cards[i]
|
||||
break
|
||||
j = j + n
|
||||
|
||||
game.new_cards(cards)
|
||||
|
||||
game.board = Board(13)
|
||||
|
||||
game.cyclical_deal(52, 13)
|
||||
|
||||
def gypsy(game):
|
||||
num_cols = 8
|
||||
game.board = Board(num_cols, with_talon=True)
|
||||
|
||||
game.cyclical_deal(num_cols*2, num_cols, flipped=True)
|
||||
game.cyclical_deal(num_cols, num_cols, flipped=False)
|
||||
|
||||
game.add_all_to_talon()
|
||||
|
||||
def klondike(game):
|
||||
num_cols = 7
|
||||
game.board = Board(num_cols, with_talon=True)
|
||||
|
||||
for r in range(1, num_cols):
|
||||
for s in range(num_cols-r):
|
||||
game.add(s, game.next().flip())
|
||||
|
||||
game.cyclical_deal(num_cols, num_cols)
|
||||
|
||||
game.add_all_to_talon()
|
||||
|
||||
if not (game.game_id == "small_harp"):
|
||||
game.board.reverse_cols()
|
||||
|
||||
def simple_simon(game):
|
||||
game.board = Board(10)
|
||||
|
||||
num_cards = 9
|
||||
|
||||
while num_cards >= 3:
|
||||
for s in range(num_cards):
|
||||
game.add(s, game.next())
|
||||
num_cards = num_cards - 1
|
||||
|
||||
for s in range(10):
|
||||
game.add(s, game.next())
|
||||
|
||||
def fan(game):
|
||||
game.board = Board(18)
|
||||
|
||||
game.cyclical_deal(52-1, 17)
|
||||
|
||||
game.add(17, game.next())
|
||||
|
||||
def _shuffleHookMoveSorter(self, cards, func, ncards):
|
||||
# note that we reverse the cards, so that smaller sort_orders
|
||||
# will be nearer to the top of the Talon
|
||||
sitems, i = [], len(cards)
|
||||
for c in cards[:]:
|
||||
select, sort_order = func(c)
|
||||
if select:
|
||||
cards.remove(c)
|
||||
sitems.append((sort_order, i, c))
|
||||
if len(sitems) >= ncards:
|
||||
break
|
||||
i = i - 1
|
||||
sitems.sort()
|
||||
sitems.reverse()
|
||||
scards = map(lambda item: item[2], sitems)
|
||||
return cards, scards
|
||||
|
||||
def _shuffleHookMoveToBottom(self, cards, func, ncards=999999):
|
||||
# move cards to bottom of the Talon (i.e. last cards to be dealt)
|
||||
cards, scards = self._shuffleHookMoveSorter(cards, func, ncards)
|
||||
ret = scards + cards
|
||||
return ret
|
||||
|
||||
def _shuffleHookMoveToTop(self, cards, func, ncards=999999):
|
||||
# move cards to top of the Talon (i.e. last cards to be dealt)
|
||||
cards, scards = self._shuffleHookMoveSorter(cards, func, ncards)
|
||||
return cards + scards
|
||||
|
||||
def black_hole(game):
|
||||
game.board = Board(17)
|
||||
|
||||
# move Ace to bottom of the Talon (i.e. last cards to be dealt)
|
||||
game.cards = game._shuffleHookMoveToBottom(
|
||||
game.cards, lambda c: (c.id == 13, c.suit), 1)
|
||||
game.next()
|
||||
game.cyclical_deal(52-1, 17)
|
||||
|
||||
return "Foundations: AS"
|
||||
|
||||
def all_in_a_row(game):
|
||||
game.board = Board(13)
|
||||
|
||||
# move Ace to bottom of the Talon (i.e. last cards to be dealt)
|
||||
game.cards = game._shuffleHookMoveToTop(
|
||||
game.cards, lambda c: (c.id == 13, c.suit), 1)
|
||||
game.cyclical_deal(52, 13)
|
||||
return "Foundations: -"
|
||||
|
||||
def beleaguered_castle(game):
|
||||
aces_up = game.game_id in ("beleaguered_castle", "citadel")
|
||||
|
||||
game.board = Board(8, with_foundations=True)
|
||||
|
||||
if aces_up:
|
||||
new_cards = []
|
||||
|
||||
for c in game:
|
||||
if c.is_ace():
|
||||
game.board.put_into_founds(c)
|
||||
else:
|
||||
new_cards.append(c)
|
||||
|
||||
game.new_cards(new_cards)
|
||||
|
||||
for i in range(6):
|
||||
for s in range(8):
|
||||
c = game.next()
|
||||
if (game.game_id == "citadel") and \
|
||||
game.board.put_into_founds(c):
|
||||
# Already dealt with this card
|
||||
True
|
||||
else:
|
||||
game.add(s, c)
|
||||
if game.no_more_cards():
|
||||
break
|
||||
|
||||
if (game.game_id == "streets_and_alleys"):
|
||||
game.cyclical_deal(4, 4)
|
||||
|
||||
def yukon(game):
|
||||
num_cols = 7
|
||||
game.board = Board(num_cols)
|
||||
|
||||
for i in range(1, num_cols):
|
||||
for j in range(i, num_cols):
|
||||
game.add(j, game.next().flip())
|
||||
|
||||
for i in range(4):
|
||||
for j in range(1, num_cols):
|
||||
game.add(j, game.next())
|
||||
|
||||
game.cyclical_deal(num_cols, num_cols)
|
||||
|
||||
|
||||
class MyTests(unittest.TestCase):
|
||||
def _cmp_board(self, got_s, expected_s, blurb):
|
||||
if not self.assertEqual(got_s, expected_s, blurb):
|
||||
|
@ -503,8 +196,8 @@ class MyTests(unittest.TestCase):
|
|||
rand = constructRandom('24')
|
||||
|
||||
def test_24(blurb):
|
||||
game = Game("freecell", rand, True)
|
||||
got_s = game.print_layout()
|
||||
game = Game("freecell", 24, True)
|
||||
got_s = game.calc_layout_string(ren)
|
||||
self.assertEqual(got_s, '''4C 2C 9C 8C QS 4S 2H
|
||||
5H QH 3C AC 3H 4H QD
|
||||
QC 9S 6H 9H 3S KS 3D
|
||||
|
@ -521,10 +214,9 @@ AH 5S 6S AD 8H JD
|
|||
# TEST
|
||||
test_24('MS deal after reset.')
|
||||
|
||||
rand = constructRandom('ms123456')
|
||||
game = Game("freecell", rand, True)
|
||||
game = Game("freecell", 123456, RandomBase.DEALS_MS)
|
||||
# TEST
|
||||
got_s = game.print_layout()
|
||||
got_s = game.calc_layout_string(ren)
|
||||
self.assertEqual(got_s, '''QD TC AS KC AH KH 6H
|
||||
6D TD 8D TH 7C 2H 9C
|
||||
AC AD 5C 5H 8C 9H 9D
|
||||
|
@ -535,10 +227,9 @@ JS 8S 4D 4C 2S 7D 3C
|
|||
JD QH 6S 4H QC 8H
|
||||
''', 'Microsoft Deal 123456')
|
||||
|
||||
rand = constructRandom('123456')
|
||||
game = Game("freecell", rand, True)
|
||||
game = Game("freecell", 123456, True)
|
||||
# TEST
|
||||
self._cmp_board(game.print_layout(), '''3D 6C AS TS QC 8D 4D
|
||||
self._cmp_board(game.calc_layout_string(ren), '''3D 6C AS TS QC 8D 4D
|
||||
2D TC 4H JD TD 2H 5C
|
||||
2C 8S AH KD KH 5S 7C
|
||||
9C 8C QH 3C 5D 9S QD
|
||||
|
@ -549,9 +240,9 @@ KC JS 9H 4S 7S AD
|
|||
''', 'PySolFC deal No. 123456')
|
||||
|
||||
rand = constructRandom('ms3000000000')
|
||||
game = Game("freecell", rand, True)
|
||||
game = Game("freecell", 3000000000, RandomBase.DEALS_MS)
|
||||
# TEST
|
||||
self._cmp_board(game.print_layout(), '''8D TS JS TD JH JD JC
|
||||
self._cmp_board(game.calc_layout_string(ren), '''8D TS JS TD JH JD JC
|
||||
4D QS TH AD 4S TC 3C
|
||||
9H KH QH 4C 5C KD AS
|
||||
9D 5D 8S 4H KS 6S 9S
|
||||
|
@ -562,9 +253,9 @@ KC JS 9H 4S 7S AD
|
|||
''', 'Microsoft Deal #3E9 - long seed.')
|
||||
|
||||
rand = constructRandom('ms6000000000')
|
||||
game = Game("freecell", rand, True)
|
||||
game = Game("freecell", 6000000000, RandomBase.DEALS_MS)
|
||||
# TEST
|
||||
got_s = game.print_layout()
|
||||
got_s = game.calc_layout_string(ren)
|
||||
self.assertEqual(got_s, '''2D 2C QS 8D KD 8C 4C
|
||||
3D AH 2H 4H TS 6H QD
|
||||
4D JS AD 6S JH JC JD
|
||||
|
@ -600,9 +291,9 @@ QH 9H 9D 5S 7S 6C
|
|||
# TEST
|
||||
self.assertEqual(seed, 'ms100001', 'increaseSeed for ms deals')
|
||||
rand = constructRandom(seed)
|
||||
game = Game("freecell", rand, True)
|
||||
game = Game("freecell", int(seed[2:]), RandomBase.DEALS_MS)
|
||||
# TEST
|
||||
self._cmp_board(game.print_layout(), '''5S AH 4H TD 4S JD JS
|
||||
self._cmp_board(game.calc_layout_string(ren), '''5S AH 4H TD 4S JD JS
|
||||
3C 8C 4C AC JC AS QS
|
||||
7C QH 2D QD 8S 9D AD
|
||||
KS 7S 5H 3H TS 3S 5D
|
||||
|
|
Loading…
Add table
Reference in a new issue