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

Android/Kivy version

- Zoom: bug fixes and refactoring
This commit is contained in:
lufebe16 2024-11-09 13:45:19 +01:00
parent 552585f143
commit 2bfc6bdd3d
4 changed files with 80 additions and 74 deletions

View file

@ -7,6 +7,14 @@ export GRADLE_OPTS="-Xms1724m -Xmx5048m -Dorg.gradle.jvmargs='-Xms1724m -Xmx5048
echo '### run buildozer' echo '### run buildozer'
if [ "$1" == "test" ]
then
echo '### ... release.test'
buildozer --profile test android release
exit 0
fi
if [ "$1" ] if [ "$1" ]
then then
echo '### ... release' echo '### ... release'

View file

@ -441,3 +441,7 @@ warn_on_root = 1
# Then, invoke the command line with the "demo" profile: # Then, invoke the command line with the "demo" profile:
# #
#buildozer --profile demo android debug #buildozer --profile demo android debug
[app@test]
title = PySolFC.test
package.name = pysolfc.test

View file

@ -653,6 +653,21 @@ class MfxCanvas(LImage):
self.bind(pos=self.pos_update_widget) self.bind(pos=self.pos_update_widget)
self.bind(size=self.size_update_widget) self.bind(size=self.size_update_widget)
def on_touch_down(self,touch):
ret = False
ret = super(MfxCanvas,self).on_touch_down(touch)
return ret
def on_touch_up(self,touch):
ret = False
ret = super(MfxCanvas,self).on_touch_up(touch)
return ret
def on_touch_move(self,touch):
ret = False
ret = super(MfxCanvas,self).on_touch_move(touch)
return ret
def KivyToCoreP(self, pos, size, scale): def KivyToCoreP(self, pos, size, scale):
cpos = pos cpos = pos
cpos = (cpos[0] - self.pos[0], self.pos[1] + cpos = (cpos[0] - self.pos[0], self.pos[1] +

View file

@ -383,27 +383,29 @@ class LScatterFrame(Scatter):
self.inner = inner self.inner = inner
self.add_widget(inner) self.add_widget(inner)
self.bind(pos=self._updatepos) self.bind(pos=self._updatepos)
self.bind(size=self._update) self.bind(size=self._updatesize)
self.do_rotation = False self.do_rotation = False
self.scale_min = 1.0 self.scale_min = 1.0
self.scale_max = 2.5 self.scale_max = 2.2
self.do_collide_after_children = True
self.saved_pos = None
self.lock_pos = None self.lock_pos = None
self.offset = None
def _update(self,instance,value): def _update(self):
print("_update",self.pos,self.size)
self.inner.size = self.size
def _updatepos(self,instance,value):
print("_updatepos",self.pos,self.size)
if self.lock_pos is None: if self.lock_pos is None:
self.lock_pos = "locked" self.lock_pos = "locked"
if self.saved_pos is not None: if self.offset is not None:
px = self.parent.pos[0]+self.saved_pos[0] dx = round(self.offset[0] * (self.bbox[1][0] - self.size[0]))
py = self.parent.pos[1]+self.saved_pos[1] dy = round(self.offset[1] * (self.bbox[1][1] - self.size[1]))
self.pos = (px,py) self.pos = (self.parent.pos[0]-dx,self.parent.pos[1]-dy)
self.lock_pos = None self.lock_pos = None
print("_update",self.pos,self.size)
def _updatesize(self,instance,value):
self.inner.size = self.size
self._update()
def _updatepos(self,instance,value):
self._update()
def collide_point(self,x,y): def collide_point(self,x,y):
px,py = self.parent.pos px,py = self.parent.pos
@ -413,85 +415,62 @@ class LScatterFrame(Scatter):
return False return False
def on_touch_down(self, touch): def on_touch_down(self, touch):
ret = False if touch.is_double_tap: return False
x,y = touch.pos x,y = touch.pos
if self.collide_point(x,y): if self.collide_point(x,y):
ret = super(LScatterFrame, self).on_touch_down(touch) return super(LScatterFrame, self).on_touch_down(touch)
return ret return False
def on_touch_up(self, touch): def on_touch_up(self, touch):
ret = False if touch.grab_current == self:
return super(LScatterFrame, self).on_touch_up(touch)
x,y = touch.pos x,y = touch.pos
if self.collide_point(x,y): if self.collide_point(x,y):
ret = super(LScatterFrame, self).on_touch_up(touch) return super(LScatterFrame, self).on_touch_up(touch)
return ret return False
def on_touch_move(self, touch): def on_touch_move(self, touch):
ret = False ret = False
x,y = touch.pos self.lock_pos = "locked"
if self.collide_point(x,y): ret = super(LScatterFrame, self).on_touch_move(touch)
self.lock_pos = "locked" self.lock_pos = None
ret = super(LScatterFrame, self).on_touch_move(touch)
self.lock_pos = None
return ret return ret
def on_transform_with_touch(self,touch): def on_transform_with_touch(self,touch):
print("on_transform",self.transform) self.chk_bnd()
# Restrict translation so that the widget remains fully def chk_bnd(self):
# filled and the game cannot leave the screen completely. # Keep the game on the screen.
# calculate appearant size. As we do not allow rotation # limiting parameters:
# this will work. pos,size = self.bbox
pw,ph = self.parent.size w,h = size
il = self.transform.transform_point(0,0,0) x,y = pos
iu = self.transform.transform_point(pw,ph,0)
print ("il",il)
print ("iu",iu)
# Our Edge points are now:
w = iu[0] - il[0]
h = iu[1] - il[1]
x,y = self.pos
px,py = self.parent.pos px,py = self.parent.pos
sx,sy = self.parent.size sx,sy = self.parent.size
print("dim-inner",x,y,w,h) # calculate correction matrix and apply
print("dim-parent",px,py,sx,sy)
# calculate correction matrices
tmx = None
tmy = None
tmxx = None
tmyy = None
if (x>px):
tmx = Matrix().translate(px-x,0,0)
print("x0")
if (y>py):
tmy = Matrix().translate(0,py-y,0)
print("y0")
if ((x+w) <= (px+sx)):
tmxx = Matrix().translate(px+sx-x-w,0,0)
print("x1")
if ((y+h) <= (py+sy)):
tmyy = Matrix().translate(0,py+sy-y-h,0)
print("y1")
# combine and apply
tm = Matrix() tm = Matrix()
if tmx is not None: if (x>px):
tm = tm.multiply(tmx) tm = tm.multiply(Matrix().translate(px-x,0,0))
if tmy is not None: if (y>py):
tm = tm.multiply(tmy) tm = tm.multiply(Matrix().translate(0,py-y,0))
if tmxx is not None: if ((x+w) <= (px+sx)):
tm = tm.multiply(tmxx) tm = tm.multiply(Matrix().translate(px+sx-x-w,0,0))
if tmyy is not None: if ((y+h) <= (py+sy)):
tm = tm.multiply(tmyy) tm = tm.multiply(Matrix().translate(0,py+sy-y-h,0))
self.apply_transform(tm) self.apply_transform(tm)
offx = self.pos[0] - self.parent.pos[0]
offy = self.pos[1] - self.parent.pos[1] # save current offset.
self.saved_pos = (offx,offy) self.offset = None
offx = self.parent.pos[0] - self.pos[0]
offy = self.parent.pos[1] - self.pos[1]
offmx = float(self.bbox[1][0] - self.size[0])
offmy = float(self.bbox[1][1] - self.size[1])
if (offmx>0 and offmy>0):
self.offset = (offx/offmx,offy/offmy)
# print ("offset = ",self.offset)
class LScrollFrame(BoxLayout,StencilView): class LScrollFrame(BoxLayout,StencilView):