mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Compare commits
4 commits
490f8f2f25
...
f9a09f864e
Author | SHA1 | Date | |
---|---|---|---|
|
f9a09f864e | ||
|
efd87e1257 | ||
|
d3b1674a47 | ||
|
91e5cdafa3 |
12 changed files with 54 additions and 36 deletions
|
@ -35,6 +35,7 @@ deploy:
|
||||||
dist: trusty
|
dist: trusty
|
||||||
before_install:
|
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 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:
|
install:
|
||||||
- sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace
|
- sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace
|
||||||
- export PY_MODS='pycotap random2 six'
|
- export PY_MODS='pycotap random2 six'
|
||||||
|
|
1
Brewfile
1
Brewfile
|
@ -1,3 +1,4 @@
|
||||||
|
brew "perl"
|
||||||
brew "cpanminus"
|
brew "cpanminus"
|
||||||
brew "gettext", link: true
|
brew "gettext", link: true
|
||||||
brew "gnutls"
|
brew "gnutls"
|
||||||
|
|
|
@ -54,7 +54,7 @@ class Numerica_Hint(DefaultHint):
|
||||||
# FIXME: demo is clueless
|
# FIXME: demo is clueless
|
||||||
|
|
||||||
# def _getDropCardScore(self, score, color, r, t, ncards):
|
# def _getDropCardScore(self, score, color, r, t, ncards):
|
||||||
# FIXME: implement this method
|
# FIXME: implement this method
|
||||||
|
|
||||||
def _getMoveWasteScore(self, score, color, r, t, pile, rpile):
|
def _getMoveWasteScore(self, score, color, r, t, pile, rpile):
|
||||||
assert r in (self.game.s.waste, self.game.s.talon) and len(pile) == 1
|
assert r in (self.game.s.waste, self.game.s.talon) and len(pile) == 1
|
||||||
|
|
|
@ -326,6 +326,7 @@ class Rachel(pysollib.game.StartDealRowAndCards, RelaxedSpider):
|
||||||
|
|
||||||
class Scorpion_RowStack(Yukon_SS_RowStack, Spider_RowStack):
|
class Scorpion_RowStack(Yukon_SS_RowStack, Spider_RowStack):
|
||||||
canDropCards = Spider_RowStack.canDropCards
|
canDropCards = Spider_RowStack.canDropCards
|
||||||
|
canMoveCards = OpenStack.canMoveCards
|
||||||
|
|
||||||
|
|
||||||
class Scorpion(RelaxedSpider):
|
class Scorpion(RelaxedSpider):
|
||||||
|
|
|
@ -109,7 +109,7 @@ class Images:
|
||||||
imagedir = self.d.findDir(cs_type, d)
|
imagedir = self.d.findDir(cs_type, d)
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
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
|
# load image
|
||||||
img = self.__loadCard(filename+self.cs.ext, check_w, check_h)
|
img = self.__loadCard(filename+self.cs.ext, check_w, check_h)
|
||||||
if USE_PIL and img is not None:
|
if USE_PIL and img is not None:
|
||||||
|
@ -257,7 +257,7 @@ class Images:
|
||||||
return self._bottom[0]
|
return self._bottom[0]
|
||||||
|
|
||||||
def getBlankBottom(self):
|
def getBlankBottom(self):
|
||||||
if TOOLKIT is 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
return self._bottom[0]
|
return self._bottom[0]
|
||||||
return self._blank_bottom
|
return self._blank_bottom
|
||||||
|
|
||||||
|
|
|
@ -762,7 +762,7 @@ class LImageItem(BoxLayout, LBase):
|
||||||
|
|
||||||
def on_touch_up(self, touch):
|
def on_touch_up(self, touch):
|
||||||
if touch.grab_current is self:
|
if touch.grab_current is self:
|
||||||
# release my grabbed touch!
|
# release my grabbed touch!
|
||||||
print('ungrab')
|
print('ungrab')
|
||||||
touch.ungrab(self)
|
touch.ungrab(self)
|
||||||
return True
|
return True
|
||||||
|
@ -1212,7 +1212,7 @@ class LMenu(ActionView, LBase):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
for c in items:
|
for c in items:
|
||||||
# print ('LMenu: delete child %s' % c)
|
# print ('LMenu: delete child %s' % c)
|
||||||
self.clear_widgets([c])
|
self.clear_widgets([c])
|
||||||
for c in menues:
|
for c in menues:
|
||||||
# print ('LMenu: delete child %s' % c)
|
# print ('LMenu: delete child %s' % c)
|
||||||
|
@ -1688,7 +1688,7 @@ class LMainWindow(BoxLayout, LTkBase):
|
||||||
t = self.workStack.items[i]
|
t = self.workStack.items[i]
|
||||||
# print("stackkey: %s" % str(t[0]))
|
# print("stackkey: %s" % str(t[0]))
|
||||||
# print("stackitem: %s" % str(t[1]))
|
# print("stackitem: %s" % str(t[1]))
|
||||||
if t[0] is 'playground':
|
if t[0] == 'playground':
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
if isinstance(t[1], LTopLevel):
|
if isinstance(t[1], LTopLevel):
|
||||||
|
|
|
@ -841,14 +841,14 @@ class MfxCanvas(Widget):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def addtag(self, tag, b, c):
|
def addtag(self, tag, b, c):
|
||||||
# print ('Canvas: addtag %s %s %s' % (tag, b, c))
|
# print ('Canvas: addtag %s %s %s' % (tag, b, c))
|
||||||
# self.tags[c] = tag
|
# self.tags[c] = tag
|
||||||
# self.tags.append(tag)
|
# self.tags.append(tag)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def delete(self, tag):
|
def delete(self, tag):
|
||||||
# print ('MfxCanvas: delete tag=%s' % tag)
|
# print ('MfxCanvas: delete tag=%s' % tag)
|
||||||
# y = self.yy
|
# y = self.yy
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def update_idletasks(self):
|
def update_idletasks(self):
|
||||||
|
|
|
@ -347,9 +347,9 @@ def markImage(image):
|
||||||
def _createImageMask(texture, color):
|
def _createImageMask(texture, color):
|
||||||
|
|
||||||
col = 0
|
col = 0
|
||||||
if (color is 'black'):
|
if (color == 'black'):
|
||||||
col = 0
|
col = 0
|
||||||
if (color is 'white'):
|
if (color == 'white'):
|
||||||
col = 255
|
col = 255
|
||||||
|
|
||||||
g = texture.pixels
|
g = texture.pixels
|
||||||
|
|
|
@ -384,27 +384,27 @@ Please check your %s installation.
|
||||||
|
|
||||||
|
|
||||||
if TOOLKIT == 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
from pysollib.kivy.LApp import LApp
|
from pysollib.kivy.LApp import LApp
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
class KivyApp(LApp):
|
class KivyApp(LApp):
|
||||||
def __init__(self, args):
|
def __init__(self, args):
|
||||||
super(KivyApp, self).__init__()
|
super(KivyApp, self).__init__()
|
||||||
self.args = args
|
self.args = args
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
logging.info("KivyApp: build")
|
logging.info("KivyApp: build")
|
||||||
|
|
||||||
self.app = app = Application()
|
self.app = app = Application()
|
||||||
app.top = self.mainWindow
|
app.top = self.mainWindow
|
||||||
self.startCode = pysol_init(app, self.args)
|
self.startCode = pysol_init(app, self.args)
|
||||||
|
|
||||||
logging.info('Main: App Initialised - starting main loop')
|
logging.info('Main: App Initialised - starting main loop')
|
||||||
return self.mainWindow
|
return self.mainWindow
|
||||||
|
|
||||||
def main(args=None):
|
def main(args=None):
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
KivyApp(args).run()
|
KivyApp(args).run()
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
|
|
|
@ -1476,7 +1476,7 @@ class Stack:
|
||||||
if img is None:
|
if img is None:
|
||||||
return
|
return
|
||||||
# self.canvas.update_idletasks()
|
# self.canvas.update_idletasks()
|
||||||
if TOOLKIT is 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
self.game.top.waitAnimation()
|
self.game.top.waitAnimation()
|
||||||
item = MfxCanvasImage(self.canvas, card.x, card.y,
|
item = MfxCanvasImage(self.canvas, card.x, card.y,
|
||||||
image=img, anchor=ANCHOR_NW, group=self.group)
|
image=img, anchor=ANCHOR_NW, group=self.group)
|
||||||
|
@ -1657,7 +1657,7 @@ class DealRow_StackMethods:
|
||||||
self.game.flipMove(self)
|
self.game.flipMove(self)
|
||||||
self.game.moveMove(1, self, r, frames=frames)
|
self.game.moveMove(1, self, r, frames=frames)
|
||||||
self.game.leaveState(old_state)
|
self.game.leaveState(old_state)
|
||||||
if TOOLKIT is 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
self.game.top.waitAnimation()
|
self.game.top.waitAnimation()
|
||||||
return len(stacks)
|
return len(stacks)
|
||||||
|
|
||||||
|
@ -1689,7 +1689,7 @@ class DealRow_StackMethods:
|
||||||
self.game.moveMove(1, self, r, frames=frames)
|
self.game.moveMove(1, self, r, frames=frames)
|
||||||
break
|
break
|
||||||
self.game.leaveState(old_state)
|
self.game.leaveState(old_state)
|
||||||
if TOOLKIT is 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
self.game.top.waitAnimation()
|
self.game.top.waitAnimation()
|
||||||
return n
|
return n
|
||||||
|
|
||||||
|
@ -2473,7 +2473,7 @@ class BasicRowStack(OpenStack):
|
||||||
|
|
||||||
# Abstract class.
|
# Abstract class.
|
||||||
class SequenceRowStack(SequenceStack_StackMethods, BasicRowStack):
|
class SequenceRowStack(SequenceStack_StackMethods, BasicRowStack):
|
||||||
canMoveCards = OpenStack.canMoveCards
|
# canMoveCards = OpenStack.canMoveCards
|
||||||
|
|
||||||
def __init__(self, x, y, game, **cap):
|
def __init__(self, x, y, game, **cap):
|
||||||
kwdefault(cap, max_move=999999, max_accept=999999)
|
kwdefault(cap, max_move=999999, max_accept=999999)
|
||||||
|
@ -2907,7 +2907,7 @@ class WasteTalonStack(TalonStack):
|
||||||
else:
|
else:
|
||||||
self.game.moveMove(1, self, waste, frames=4, shadow=0)
|
self.game.moveMove(1, self, waste, frames=4, shadow=0)
|
||||||
self.fillStack()
|
self.fillStack()
|
||||||
if TOOLKIT is 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
self.game.top.waitAnimation()
|
self.game.top.waitAnimation()
|
||||||
elif waste.cards and self.round != self.max_rounds:
|
elif waste.cards and self.round != self.max_rounds:
|
||||||
if sound:
|
if sound:
|
||||||
|
|
|
@ -1670,7 +1670,7 @@ Unsupported game for import.
|
||||||
gameid = write_game(self.app)
|
gameid = write_game(self.app)
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
# if False:
|
# if False:
|
||||||
# traceback.print_exc()
|
# traceback.print_exc()
|
||||||
self._calc_MfxMessageDialog()(
|
self._calc_MfxMessageDialog()(
|
||||||
self.top, title=_('Save game error'),
|
self.top, title=_('Save game error'),
|
||||||
text=_('''
|
text=_('''
|
||||||
|
|
|
@ -6,7 +6,7 @@ from pysol_tests.common_mocks1 import MockApp, MockCanvas, MockItem, MockTalon
|
||||||
|
|
||||||
import pysollib.stack
|
import pysollib.stack
|
||||||
from pysollib.acard import AbstractCard
|
from pysollib.acard import AbstractCard
|
||||||
from pysollib.games.spider import Scorpion_RowStack
|
from pysollib.games.spider import Scorpion_RowStack, Spider_RowStack
|
||||||
|
|
||||||
|
|
||||||
class MockGame:
|
class MockGame:
|
||||||
|
@ -60,3 +60,18 @@ class MyTests(unittest.TestCase):
|
||||||
stack = self._calc_Scorpion_stack()
|
stack = self._calc_Scorpion_stack()
|
||||||
self.assertTrue(stack.canMoveCards(stack.cards[4:]))
|
self.assertTrue(stack.canMoveCards(stack.cards[4:]))
|
||||||
self.assertTrue(stack)
|
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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue