mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Continue refactoring.
This commit is contained in:
parent
1fda22efbe
commit
dd2f0ab0e1
14 changed files with 46 additions and 91 deletions
|
@ -109,8 +109,7 @@ class EightOff(KingOnlyBakersGame):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(5):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(5)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
r = self.s.reserves
|
||||
|
@ -161,8 +160,7 @@ class SeahavenTowers(KingOnlyBakersGame):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=(self.s.reserves[1:3]))
|
||||
|
@ -227,8 +225,7 @@ class Tuxedo(Game):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(6):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(6)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=self.s.rows[::3])
|
||||
|
@ -264,8 +261,7 @@ class Penguin(Tuxedo):
|
|||
self.flipMove(self.s.talon)
|
||||
self.moveMove(1, self.s.talon, to_stack, frames=0)
|
||||
# deal rows
|
||||
for i in range(6):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(6)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
|
|
@ -131,8 +131,7 @@ class StreetsAndAlleys(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
for i in range(3):
|
||||
self.s.talon.dealRowAvail()
|
||||
|
@ -151,8 +150,7 @@ class BeleagueredCastle(StreetsAndAlleys):
|
|||
cards, lambda c: (c.rank == 0, c.suit))
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
for i in range(2):
|
||||
self.s.talon.dealRow()
|
||||
|
@ -234,8 +232,7 @@ class Fortress(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
for i in range(3):
|
||||
self.s.talon.dealRowAvail()
|
||||
|
@ -285,8 +282,7 @@ class Bastion(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
for i in range(2):
|
||||
self.s.talon.dealRow()
|
||||
|
@ -300,8 +296,7 @@ class TenByOne(Bastion):
|
|||
Bastion.createGame(self, reserves=1)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
for i in range(3):
|
||||
self.s.talon.dealRowAvail()
|
||||
|
@ -537,8 +532,7 @@ class Zerline(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealCards()
|
||||
|
@ -597,8 +591,7 @@ class Chequers(Fortress):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -659,8 +652,7 @@ class CastleOfIndolence(Game):
|
|||
def startGame(self):
|
||||
for i in range(13):
|
||||
self.s.talon.dealRow(rows=self.s.reserves, frames=0)
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow()
|
||||
|
@ -785,8 +777,7 @@ class Lightweight(StreetsAndAlleys):
|
|||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(rows=self.s.foundations, frames=0)
|
||||
for i in range(self.DEAL[0]):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(self.DEAL[0])
|
||||
self.startDealSample()
|
||||
for i in range(self.DEAL[1]):
|
||||
self.s.talon.dealRowAvail()
|
||||
|
@ -869,8 +860,7 @@ class Soother(Game):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealCards()
|
||||
|
|
|
@ -90,8 +90,7 @@ class BuffaloBill(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
|
|
@ -805,8 +805,7 @@ class Skippy(Canfield):
|
|||
for s in self.s.rows:
|
||||
s.cap.base_rank = row_base_rank
|
||||
#
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealCards()
|
||||
|
|
|
@ -90,8 +90,7 @@ class Capricieuse(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(7):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(7)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(self.s.foundations)
|
||||
|
@ -154,8 +153,7 @@ class Strata(Game):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(7):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(7)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -177,8 +175,7 @@ class Fifteen(Capricieuse):
|
|||
Capricieuse.createGame(self, rows=15, round_text=False)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(6):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(6)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRowAvail()
|
||||
|
||||
|
|
|
@ -125,8 +125,7 @@ class GrandfathersClock(Game):
|
|||
|
||||
def startGame(self):
|
||||
self.playSample("grandfathersclock", loop=1)
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=self.s.foundations)
|
||||
|
||||
|
|
|
@ -208,8 +208,7 @@ class DieRussische(Gypsy):
|
|||
cards, lambda c: (c.rank == 0, c.suit), 1)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(6):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(6)
|
||||
self.startDealSample()
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow()
|
||||
|
@ -292,8 +291,7 @@ class Nomad(MissMilligan):
|
|||
ReserveStack_Class = ReserveStack
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -407,8 +405,7 @@ class PhantomBlockade(Gypsy):
|
|||
Gypsy.createGame(self, rows=13, playcards=24)
|
||||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(2)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -720,8 +717,7 @@ class Flamenco(Gypsy):
|
|||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(rows=self.s.foundations, frames=0)
|
||||
for i in range(2):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(2)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -738,9 +734,7 @@ class Eclipse(Gypsy):
|
|||
Gypsy.createGame(self, rows=13)
|
||||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -888,8 +882,7 @@ class LockedCards(Game):
|
|||
|
||||
def startGame(self, rows=5):
|
||||
self.s.talon.dealRow(rows=self.s.reserves, flip=0, frames=0)
|
||||
for i in range(rows-1):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(rows-1)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealCards()
|
||||
|
@ -974,8 +967,7 @@ class Thirty(Game):
|
|||
l.defaultAll()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=self.s.reserves)
|
||||
|
|
|
@ -388,8 +388,7 @@ class Deep(DerKatzenschwanz):
|
|||
return DerKatzenschwanz.createGame(self, rows=8, reserves=8)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(12):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(12)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
|
|
@ -371,8 +371,7 @@ class AmericanCanister(Klondike):
|
|||
Klondike.createGame(self, max_rounds=1, rows=8, waste=0, texts=0)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(5):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(5)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=self.s.rows[2:6])
|
||||
|
@ -426,8 +425,7 @@ class EightTimesEight(Klondike):
|
|||
Klondike.createGame(self, rows=8)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(7):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(7)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealCards() # deal first card to WasteStack
|
||||
|
|
|
@ -425,8 +425,7 @@ class Fourteen(Game):
|
|||
#
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=self.s.rows[:4])
|
||||
|
@ -635,8 +634,7 @@ class TheWishOpen(TheWish):
|
|||
pass
|
||||
|
||||
def startGame(self):
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
|
|
@ -235,8 +235,7 @@ class GroundsForADivorce(RelaxedSpider):
|
|||
RelaxedSpider.createGame(self, playcards=22)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -254,8 +253,7 @@ class GrandmothersGame(RelaxedSpider):
|
|||
RelaxedSpider.createGame(self, playcards=22)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(5):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(5)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -542,8 +540,7 @@ class MrsMop(RelaxedSpider):
|
|||
RelaxedSpider.createGame(self, rows=13, playcards=24, texts=0)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(7):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(7)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -604,8 +601,7 @@ class Cicely(Game):
|
|||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(rows=self.s.reserves, frames=0)
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(3)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -728,8 +724,7 @@ class Chelicera(Game):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
for i in range(3):
|
||||
self.s.talon.dealRow(rows=self.s.rows[4:])
|
||||
|
@ -820,8 +815,7 @@ class SpiderWeb(RelaxedSpider):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(2)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=self.s.rows[:3])
|
||||
|
@ -1012,8 +1006,7 @@ class York(RelaxedSpider):
|
|||
RelaxedSpider.createGame(self, rows=12, playcards=26, texts=0)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(8):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(8)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow(rows=self.s.rows[2:-2])
|
||||
|
||||
|
@ -1026,8 +1019,7 @@ class BigYork(York):
|
|||
RelaxedSpider.createGame(self, rows=14, playcards=26, texts=0)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(10):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(10)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(rows=[self.s.rows[0], self.s.rows[-1]])
|
||||
|
@ -1067,8 +1059,7 @@ class FredsSpider(Spidike):
|
|||
Spidike.createGame(self, rows=10, playcards=23)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -1145,8 +1136,7 @@ class Incompatibility(Spidike):
|
|||
Spidike.createGame(self, rows=10)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(4):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(4)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
@ -1397,8 +1387,7 @@ class TheJollyRoger(Game):
|
|||
l.defaultStackGroups()
|
||||
|
||||
def startGame(self):
|
||||
for i in range(2):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(2)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
|
||||
|
|
|
@ -157,8 +157,7 @@ class StHelena(Game):
|
|||
(-c.rank, c.suit)), 8)
|
||||
|
||||
def startGame(self):
|
||||
for i in range(7):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(7)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow(self.s.foundations)
|
||||
|
|
|
@ -189,8 +189,7 @@ class DutchSolitaire(Windmill):
|
|||
|
||||
def startGame(self):
|
||||
self.s.talon.dealRow(rows=self.s.foundations, frames=0)
|
||||
for i in range(8):
|
||||
self.s.talon.dealRow(frames=0)
|
||||
self._dealNumRows(8)
|
||||
self.startDealSample()
|
||||
self.s.talon.dealRow()
|
||||
self.s.talon.dealRow()
|
||||
|
|
1
scripts/refactor1.vim
Normal file
1
scripts/refactor1.vim
Normal file
|
@ -0,0 +1 @@
|
|||
let @m=':s#for \w\+ in range(\([0-9]\+\)):#self._dealNumRows(\1)#
jdd'
|
Loading…
Add table
Reference in a new issue