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

Further corrections to python3 / android. Card images format has been changed to png. And a bugfix.

This commit is contained in:
lb@lb520 2019-08-12 09:50:38 +02:00
parent 81da718007
commit 5b75c1b413
7 changed files with 37 additions and 15 deletions

View file

@ -30,6 +30,7 @@ include tests/unit-generated/PLACEHOLDER
include .tidyallrc include .tidyallrc
include android/*.py include android/*.py
include android/mk* include android/mk*
include android/initsdk
include android/debian/* include android/debian/*
#graft data/plugins #graft data/plugins
## ##

View file

@ -45,6 +45,11 @@ Prerequisites (needs root):
Build with 'python-for-android' (as user): Build with 'python-for-android' (as user):
Use the repo or an unpacked distribution tarball.
$ python setup.py install
$ make dist (if using the repo)
go to the android directory, then go to the android directory, then
$ ./mkp4a.init [<sdkdir>] [<ndkdir>] # prepare sdk and p4a installation $ ./mkp4a.init [<sdkdir>] [<ndkdir>] # prepare sdk and p4a installation
@ -52,7 +57,6 @@ Build with 'python-for-android' (as user):
$ ./mkp4a.debug # build debug apk $ ./mkp4a.debug # build debug apk
$ ./mkp4a.release <passwd1> [<passwd2>] # build release apk $ ./mkp4a.release <passwd1> [<passwd2>] # build release apk
$ ./mkp4a.unsigned # build an unsigned release apk
The build system will download all required additional The build system will download all required additional
packages (such as the android sdk and more). Do the first build will packages (such as the android sdk and more). Do the first build will
@ -68,11 +72,22 @@ Build with 'python-for-android' (as user):
Cardsets: Cardsets:
Cardsets should be installed in ${HOME}/.PySolFC/cardsets/. On an The Apk includes a minimal set of cards for playing.
android device this is equivalent to /sdcard/.PySolFC/cardsets/.
Additional cardsets can be installed in ${HOME}/.PySolFC/cardsets/.
On an android device this is equivalent to /sdcard/.PySolFC/cardsets/.
Cardsets must use the bmp image format. Use scripts/cardconv Cardsets must use the bmp image format. Use scripts/cardconv
(on a linux system) to convert them, before copying to the device. (on a linux system) to convert them, before copying to the device.
Important Notice on python3/kivy 1.11.x (pysol verson 2.6.4 ff):
In kivy, using python3, the support for bmp images depends on OpenGL.
On fairly up to date Android OpenGL ES 3.x is available. ES (Embedded
System) release is a subset of the full OpenGL. Due to this, bmp image
support will be broken on android, but not on up to date workstations.
As gif images are still slow and error prone, the best we can do is to
use png images instead of bmp (as noted above).
Possible known build issues: Possible known build issues:
2) for android ndk: needs a Version <=13 (because needs ant support). 2) for android ndk: needs a Version <=13 (because needs ant support).

View file

@ -18,9 +18,9 @@ fi
echo '### processing cardsets' echo '### processing cardsets'
( (
cd ${cardsets_dir} cd ${cardsets_dir}
../../scripts/cardconv ../../scripts/cardconv gif png
for i in cardset-*-bmp; do for i in cardset-*-png; do
rm -rf `basename $i -bmp` rm -rf `basename $i -png`
done done
) )

View file

@ -5,7 +5,7 @@ set -eux
new_options=${p4a_options} new_options=${p4a_options}
new_options=${new_options/PySolFC/PySolFCdbg} new_options=${new_options/PySolFC/PySolFCdbg}
new_options=${new_options/org.lubefe16.pysolfc/org.lubefe16.pysolfc.dbg} new_options=${new_options/org.lufebe16.pysolfc/org.lufebe16.pysolfc.dbg}
python3 -m pythonforandroid.toolchain apk \ python3 -m pythonforandroid.toolchain apk \
${new_options} ${new_options}

View file

@ -35,6 +35,10 @@ rm -rf ${tmpdir}/.appveyor.yml
rm -rf ${tmpdir}/.perltidyrc rm -rf ${tmpdir}/.perltidyrc
rm -rf ${tmpdir}/.travis.yml rm -rf ${tmpdir}/.travis.yml
rm -rf ${tmpdir}/setup.py
rm -rf ${tmpdir}/setup_osx.py
rm -rf ${tmpdir}/setup.cfg
cp -a main.py ${tmpdir} cp -a main.py ${tmpdir}
mkdir -p ${tmpdir}/data/images/cards/bottoms/trumps-only mkdir -p ${tmpdir}/data/images/cards/bottoms/trumps-only
echo "" > ${tmpdir}/data/images/cards/bottoms/trumps-only/.keep echo "" > ${tmpdir}/data/images/cards/bottoms/trumps-only/.keep

View file

@ -1541,6 +1541,12 @@ class LMainWindow(BoxLayout, LTkBase):
self.workStack = LStack() self.workStack = LStack()
self.app = None self.app = None
'''
from kivy.graphics import opengl_utils
print('OPENGL support:')
print(opengl_utils.gl_get_extensions())
'''
# self.touches = [] # self.touches = []
# beispiel zu canvas (hintergrund) # beispiel zu canvas (hintergrund)

View file

@ -35,17 +35,13 @@ class SelectCardsetDialogWithPreview(MfxDialog):
_cardset_store = None _cardset_store = None
def __init__(self, parent, title, app, manager, key=None, **kw): def __init__(self, parent, title, app, manager, key=None, **kw):
kw = self.initKw(kw)
MfxDialog.__init__(self, parent, title, **kw)
#
if key is None: if key is None:
key = manager.getSelected() key = 1
self.status = -1
self.key = key
self.app = app self.app = app
self.manager = manager self.manager = manager
self.key = key return
self.preview_key = -1
self.all_keys = []
self.status = -1
def getSelected(self): def getSelected(self):
return None return None