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

Compare commits

...

5 commits

Author SHA1 Message Date
Shlomi Fish
4deb3ebb58 bump the version to 2.6.2 2019-02-27 22:52:26 +02:00
Jonathan Lovelace
f9a09f864e .travis.yml: Download minimal cardset tarball from SourceForge and include its cardsets in packages. 2019-02-22 01:01:35 -05:00
Jonathan Lovelace
efd87e1257 Brewfile: Install a current version of Perl.
The one used by default seems to be 5.18, which while not _very_ old (released 2013 or 2014,
depending on which patch version) seems a likely cause of the test failures I'm seeing in
CI but am unable to reproduce in my Linux environment (where 5.24.3 is the oldest version
available).
2019-02-21 16:12:06 -05:00
Shlomi Fish
d3b1674a47 Fix spider illegal moves canMove bug.
See https://sourceforge.net/p/pysolfc/bugs/36/ . TODO: add tests.
2019-02-19 19:45:51 +02:00
Shlomi Fish
91e5cdafa3 Fix the indentation.
See http://perl-begin.org/tutorials/bad-elements/#no-indentation .
2019-02-19 17:14:17 +02:00
13 changed files with 55 additions and 37 deletions

View file

@ -35,6 +35,7 @@ deploy:
dist: trusty
before_install:
- if test "$TRAVIS_OS_NAME" = "osx" ; then export CPPFLAGS="$CPPFLAGS -I$(brew --prefix openssl)/include" PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig:$PKG_CONFIG_PATH" LDFLAGS="$LDFLAGS -L$(brew --prefix openssl)/lib" ;fi
- if test "$TRAVIS_OS_NAME" = "osx" ; then wget --content-disposition https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/minimal/PySolFC-Cardsets--Minimal-2.0.tar.xz/download && tar xJf PySolFC-Cardsets--Minimal-2.0.tar.xz && mv PySolFC-Cardsets--Minimal-2.0/cardset-* data ; fi
install:
- sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace
- export PY_MODS='pycotap random2 six'

View file

@ -1,3 +1,4 @@
brew "perl"
brew "cpanminus"
brew "gettext", link: true
brew "gnutls"

View file

@ -326,6 +326,7 @@ class Rachel(pysollib.game.StartDealRowAndCards, RelaxedSpider):
class Scorpion_RowStack(Yukon_SS_RowStack, Spider_RowStack):
canDropCards = Spider_RowStack.canDropCards
canMoveCards = OpenStack.canMoveCards
class Scorpion(RelaxedSpider):

View file

@ -109,7 +109,7 @@ class Images:
imagedir = self.d.findDir(cs_type, d)
except Exception:
pass
if (not USE_PIL and TOOLKIT is not 'kivy') or imagedir is None:
if (not USE_PIL and TOOLKIT != 'kivy') or imagedir is None:
# load image
img = self.__loadCard(filename+self.cs.ext, check_w, check_h)
if USE_PIL and img is not None:
@ -257,7 +257,7 @@ class Images:
return self._bottom[0]
def getBlankBottom(self):
if TOOLKIT is 'kivy':
if TOOLKIT == 'kivy':
return self._bottom[0]
return self._blank_bottom

View file

@ -1688,7 +1688,7 @@ class LMainWindow(BoxLayout, LTkBase):
t = self.workStack.items[i]
# print("stackkey: %s" % str(t[0]))
# print("stackitem: %s" % str(t[1]))
if t[0] is 'playground':
if t[0] == 'playground':
pass
else:
if isinstance(t[1], LTopLevel):

View file

@ -347,9 +347,9 @@ def markImage(image):
def _createImageMask(texture, color):
col = 0
if (color is 'black'):
if (color == 'black'):
col = 0
if (color is 'white'):
if (color == 'white'):
col = 255
g = texture.pixels

View file

@ -32,7 +32,7 @@ PACKAGE = 'PySolFC'
TITLE = 'PySol'
PACKAGE_URL = 'http://pysolfc.sourceforge.net/'
VERSION_TUPLE = (2, 6, 1)
VERSION_TUPLE = (2, 6, 2)
VERSION = '.'.join(map(str, VERSION_TUPLE))
# Tk windowing system (auto set up in init.py)

View file

@ -1476,7 +1476,7 @@ class Stack:
if img is None:
return
# self.canvas.update_idletasks()
if TOOLKIT is 'kivy':
if TOOLKIT == 'kivy':
self.game.top.waitAnimation()
item = MfxCanvasImage(self.canvas, card.x, card.y,
image=img, anchor=ANCHOR_NW, group=self.group)
@ -1657,7 +1657,7 @@ class DealRow_StackMethods:
self.game.flipMove(self)
self.game.moveMove(1, self, r, frames=frames)
self.game.leaveState(old_state)
if TOOLKIT is 'kivy':
if TOOLKIT == 'kivy':
self.game.top.waitAnimation()
return len(stacks)
@ -1689,7 +1689,7 @@ class DealRow_StackMethods:
self.game.moveMove(1, self, r, frames=frames)
break
self.game.leaveState(old_state)
if TOOLKIT is 'kivy':
if TOOLKIT == 'kivy':
self.game.top.waitAnimation()
return n
@ -2473,7 +2473,7 @@ class BasicRowStack(OpenStack):
# Abstract class.
class SequenceRowStack(SequenceStack_StackMethods, BasicRowStack):
canMoveCards = OpenStack.canMoveCards
# canMoveCards = OpenStack.canMoveCards
def __init__(self, x, y, game, **cap):
kwdefault(cap, max_move=999999, max_accept=999999)
@ -2907,7 +2907,7 @@ class WasteTalonStack(TalonStack):
else:
self.game.moveMove(1, self, waste, frames=4, shadow=0)
self.fillStack()
if TOOLKIT is 'kivy':
if TOOLKIT == 'kivy':
self.game.top.waitAnimation()
elif waste.cards and self.round != self.max_rounds:
if sound:

View file

@ -6,7 +6,7 @@ from pysol_tests.common_mocks1 import MockApp, MockCanvas, MockItem, MockTalon
import pysollib.stack
from pysollib.acard import AbstractCard
from pysollib.games.spider import Scorpion_RowStack
from pysollib.games.spider import Scorpion_RowStack, Spider_RowStack
class MockGame:
@ -60,3 +60,18 @@ class MyTests(unittest.TestCase):
stack = self._calc_Scorpion_stack()
self.assertTrue(stack.canMoveCards(stack.cards[4:]))
self.assertTrue(stack)
def _calc_Spider_stack(self):
g = MockGame()
stack = Spider_RowStack(0, 0, g)
for s, r in [(2, 5), (3, 7), (2, 7), (2, 0), (2, 3), (2, 5), (1, 4)]:
c = AbstractCard(1000+r*100+s*10, 0, s, r, g)
c.face_up = True
c.item = MockItem()
stack.addCard(c)
return stack
def test_Spider_canMoveCards_non_top(self):
stack = self._calc_Spider_stack()
self.assertFalse(stack.canMoveCards(stack.cards[5:]))
self.assertTrue(stack)