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

Fix cardsets with not enough bottoms

Playing Hanafuda games that use all 12 card bottoms, e.g. Sumo with
Hanafuda cardsets that have fewer bottoms (Kintengu or Oonsoo) causes an
exception when using PIL or the foundations with missing bottoms don't
show up in PySol without PIL. This fix creates empty replacement images
for foundations where the bottom is not present.
This commit is contained in:
Roderik Ploszek 2018-04-15 13:00:42 +02:00
parent 7518d36aab
commit 1d4302990e

View file

@ -117,7 +117,7 @@ class Images:
if (not USE_PIL and TOOLKIT is not 'kivy') or imagedir is None:
# load image
img = self.__loadCard(filename+self.cs.ext, check_w, check_h)
if USE_PIL:
if USE_PIL and img is not None:
# we have no bottom images
# (data/images/cards/bottoms/<cs_type>)
img = img.resize(self._xfactor, self._yfactor)
@ -148,11 +148,11 @@ class Images:
# bottoms / letters
bottom = None
neg_bottom = None
while len(self._bottom_positive) < 7:
while len(self._bottom_positive) < self.cs.nbottoms:
if bottom is None:
bottom = createImage(cw, ch, fill=None, outline="#000000")
self._bottom_positive.append(bottom)
while len(self._bottom_negative) < 7:
while len(self._bottom_negative) < self.cs.nbottoms:
if neg_bottom is None:
neg_bottom = createImage(cw, ch, fill=None, outline="#ffffff")
self._bottom_negative.append(neg_bottom)
@ -191,14 +191,16 @@ class Images:
# load bottoms
for i in range(self.cs.nbottoms):
name = "bottom%02d" % (i + 1)
self._bottom_positive.append(
self.__loadBottom(name, color='black'))
bottom = self.__loadBottom(name, color='black')
if bottom is not None:
self._bottom_positive.append(bottom)
if progress:
progress.update(step=pstep)
# load negative bottoms
name = "bottom%02d-n" % (i + 1)
self._bottom_negative.append(
self.__loadBottom(name, color='white'))
bottom = self.__loadBottom(name, color='white')
if bottom is not None:
self._bottom_negative.append(bottom)
if progress:
progress.update(step=pstep)
# load letters
@ -435,11 +437,13 @@ class Images:
self._bottom_positive = []
for i in range(self.cs.nbottoms):
name = "bottom%02d" % (i + 1)
self._bottom_positive.append(
self.__loadBottom(name, color='black'))
bottom = self.__loadBottom(name, color='black')
if bottom is not None:
self._bottom_positive.append(bottom)
name = "bottom%02d-n" % (i + 1)
self._bottom_negative.append(
self.__loadBottom(name, color='white'))
bottom = self.__loadBottom(name, color='white')
if bottom is not None:
self._bottom_negative.append(bottom)
# letters
self._letter_positive = []
self._letter_negative = []