mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Android/Kivy:
- zoom settings persistence - event mapping
This commit is contained in:
parent
673cb847bc
commit
70909f6469
5 changed files with 93 additions and 24 deletions
|
@ -1347,6 +1347,7 @@ class Game(object):
|
||||||
# pause game if root window has been iconified
|
# pause game if root window has been iconified
|
||||||
if self.app and not self.pause:
|
if self.app and not self.pause:
|
||||||
self.app.menubar.mPause()
|
self.app.menubar.mPause()
|
||||||
|
# should return EVENT_HANDLED or EVENT_PROPAGATE
|
||||||
|
|
||||||
_resizeHandlerID = None
|
_resizeHandlerID = None
|
||||||
|
|
||||||
|
@ -1370,6 +1371,7 @@ class Game(object):
|
||||||
if self._resizeHandlerID:
|
if self._resizeHandlerID:
|
||||||
self.canvas.after_cancel(self._resizeHandlerID)
|
self.canvas.after_cancel(self._resizeHandlerID)
|
||||||
self._resizeHandlerID = self.canvas.after(250, self._resizeHandler)
|
self._resizeHandlerID = self.canvas.after(250, self._resizeHandler)
|
||||||
|
# should return EVENT_HANDLED or EVENT_PROPAGATE explicitly.
|
||||||
|
|
||||||
def playSample(self, name, priority=0, loop=0):
|
def playSample(self, name, priority=0, loop=0):
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,7 @@ from pysollib.kivy.LBase import LBase
|
||||||
from pysollib.kivy.LTask import LTask, LTaskQ
|
from pysollib.kivy.LTask import LTask, LTaskQ
|
||||||
from pysollib.kivy.androidperms import requestStoragePerm
|
from pysollib.kivy.androidperms import requestStoragePerm
|
||||||
from pysollib.kivy.androidrot import AndroidScreenRotation
|
from pysollib.kivy.androidrot import AndroidScreenRotation
|
||||||
|
from pysollib.kivy.tkconst import EVENT_HANDLED, EVENT_PROPAGATE
|
||||||
from pysollib.resource import CSI
|
from pysollib.resource import CSI
|
||||||
|
|
||||||
if platform != 'android':
|
if platform != 'android':
|
||||||
|
@ -792,27 +793,44 @@ class LImageItem(BoxLayout, LBase):
|
||||||
def get_image_type(self):
|
def get_image_type(self):
|
||||||
return self.image_type
|
return self.image_type
|
||||||
|
|
||||||
|
'''
|
||||||
|
NOTE:
|
||||||
|
The following code binds kivy events to tk-like (?) events used
|
||||||
|
in common code. There are several problems
|
||||||
|
- EVENT_HANDLED and EVENT_PROPAGATE constants are defined separately in
|
||||||
|
different ui implementations, but are used in common code (stack.py,
|
||||||
|
game/__init__.py, many game implementations: (241 functions!))
|
||||||
|
- EVENT_PROPAGATE is defined to 'None', which is highly unspecific.
|
||||||
|
(conditions would evaluate to False, empty returns of event function
|
||||||
|
implicitly return EVENT_PROPAGATE).
|
||||||
|
- Most events return EVENT_HANDLED even if they did not change anything
|
||||||
|
in current situations. I would expect specifically for stack base cards
|
||||||
|
that they return HANDLE_PROPAGATE if nothing happened.
|
||||||
|
LB241111.
|
||||||
|
'''
|
||||||
|
|
||||||
def send_event_pressed_n(self, event, n):
|
def send_event_pressed_n(self, event, n):
|
||||||
|
r = EVENT_PROPAGATE
|
||||||
if self.group and n in self.group.bindings:
|
if self.group and n in self.group.bindings:
|
||||||
self.group.bindings[n](event)
|
r = self.group.bindings[n](event)
|
||||||
|
return r
|
||||||
|
|
||||||
def send_event_pressed(self, touch, event):
|
def send_event_pressed(self, touch, event):
|
||||||
|
|
||||||
|
r = EVENT_PROPAGATE
|
||||||
if touch.is_double_tap:
|
if touch.is_double_tap:
|
||||||
self.send_event_pressed_n(event, '<Double-1>')
|
r = self.send_event_pressed_n(event, '<Double-1>')
|
||||||
else:
|
else:
|
||||||
button = 'left'
|
button = 'left'
|
||||||
if 'button' in touch.profile:
|
if 'button' in touch.profile:
|
||||||
button = touch.button
|
button = touch.button
|
||||||
if button == 'left':
|
if button == 'left':
|
||||||
self.send_event_pressed_n(event, '<1>')
|
r = self.send_event_pressed_n(event, '<1>')
|
||||||
return
|
|
||||||
if button == 'middle':
|
if button == 'middle':
|
||||||
self.send_event_pressed_n(event, '<2>')
|
r = self.send_event_pressed_n(event, '<2>')
|
||||||
return
|
|
||||||
if button == 'right':
|
if button == 'right':
|
||||||
self.send_event_pressed_n(event, '<3>')
|
r = self.send_event_pressed_n(event, '<3>')
|
||||||
return
|
return r
|
||||||
|
|
||||||
def on_touch_down(self, touch):
|
def on_touch_down(self, touch):
|
||||||
|
|
||||||
|
@ -825,9 +843,6 @@ class LImageItem(BoxLayout, LBase):
|
||||||
if stack.cards[i] == self.card:
|
if stack.cards[i] == self.card:
|
||||||
print('LCardImage: stack = %s' % stack)
|
print('LCardImage: stack = %s' % stack)
|
||||||
print('LCardImage: touch = %s' % str(touch))
|
print('LCardImage: touch = %s' % str(touch))
|
||||||
print('grab')
|
|
||||||
# grab the touch!
|
|
||||||
touch.grab(self)
|
|
||||||
ppos, psize = self.game.canvas.KivyToCore(
|
ppos, psize = self.game.canvas.KivyToCore(
|
||||||
touch.pos, self.size)
|
touch.pos, self.size)
|
||||||
event = LEvent()
|
event = LEvent()
|
||||||
|
@ -835,9 +850,14 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
self.dragstart = touch.pos
|
self.dragstart = touch.pos
|
||||||
event.cardid = i
|
event.cardid = i
|
||||||
self.send_event_pressed(touch, event)
|
r = self.send_event_pressed(touch, event)
|
||||||
|
# print("********* event return = ",r)
|
||||||
|
if r == EVENT_HANDLED:
|
||||||
AndroidScreenRotation.lock(toaster=False)
|
AndroidScreenRotation.lock(toaster=False)
|
||||||
|
print('grab')
|
||||||
|
touch.grab(self)
|
||||||
return True
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
if self.group is not None:
|
if self.group is not None:
|
||||||
print('LCardImage: self=%s group=%s' % (self, self.group))
|
print('LCardImage: self=%s group=%s' % (self, self.group))
|
||||||
|
@ -847,8 +867,10 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event = LEvent()
|
event = LEvent()
|
||||||
event.x = ppos[0]
|
event.x = ppos[0]
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
self.group.bindings['<1>'](event)
|
r = self.group.bindings['<1>'](event)
|
||||||
|
if r == EVENT_HANDLED:
|
||||||
return True
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
if self.card is None:
|
if self.card is None:
|
||||||
return False
|
return False
|
||||||
|
@ -859,12 +881,14 @@ class LImageItem(BoxLayout, LBase):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def send_event_released_1(self, event):
|
def send_event_released_1(self, event):
|
||||||
|
r = EVENT_PROPAGATE
|
||||||
if self.group and '<ButtonRelease-1>' in self.group.bindings:
|
if self.group and '<ButtonRelease-1>' in self.group.bindings:
|
||||||
self.group.bindings['<ButtonRelease-1>'](event)
|
r = self.group.bindings['<ButtonRelease-1>'](event)
|
||||||
|
return r
|
||||||
|
|
||||||
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!
|
# ungrab. this stops move events after a drag.
|
||||||
print('ungrab')
|
print('ungrab')
|
||||||
touch.ungrab(self)
|
touch.ungrab(self)
|
||||||
return True
|
return True
|
||||||
|
@ -882,8 +906,11 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event.x = ppos[0]
|
event.x = ppos[0]
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
event.cardid = i
|
event.cardid = i
|
||||||
self.send_event_released_1(event)
|
r = self.send_event_released_1(event)
|
||||||
|
# print("********* event return = ",r)
|
||||||
|
if r == EVENT_HANDLED:
|
||||||
return True
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
if self.group is not None:
|
if self.group is not None:
|
||||||
print('LCardImage: self=%s group=%s' % (self, self.group))
|
print('LCardImage: self=%s group=%s' % (self, self.group))
|
||||||
|
@ -893,8 +920,10 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event = LEvent()
|
event = LEvent()
|
||||||
event.x = ppos[0]
|
event.x = ppos[0]
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
self.group.bindings['<ButtonRelease-1>'](event)
|
r = self.group.bindings['<ButtonRelease-1>'](event)
|
||||||
|
if r == EVENT_HANDLED:
|
||||||
return True
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
if self.card is None:
|
if self.card is None:
|
||||||
return False
|
return False
|
||||||
|
|
|
@ -38,6 +38,7 @@ from pysollib.kivy.LApp import LTopLevel
|
||||||
from pysollib.kivy.LApp import LTreeNode
|
from pysollib.kivy.LApp import LTreeNode
|
||||||
from pysollib.kivy.LApp import LTreeRoot
|
from pysollib.kivy.LApp import LTreeRoot
|
||||||
from pysollib.kivy.LObjWrap import LBoolWrap
|
from pysollib.kivy.LObjWrap import LBoolWrap
|
||||||
|
from pysollib.kivy.LObjWrap import LListWrap
|
||||||
from pysollib.kivy.LObjWrap import LNumWrap
|
from pysollib.kivy.LObjWrap import LNumWrap
|
||||||
from pysollib.kivy.LObjWrap import LStringWrap
|
from pysollib.kivy.LObjWrap import LStringWrap
|
||||||
from pysollib.kivy.androidrot import AndroidScreenRotation
|
from pysollib.kivy.androidrot import AndroidScreenRotation
|
||||||
|
@ -1531,6 +1532,7 @@ class PysolMenubarTk:
|
||||||
language=LStringWrap(opt, "language"),
|
language=LStringWrap(opt, "language"),
|
||||||
save_games_geometry=LBoolWrap(opt, "save_games_geometry"),
|
save_games_geometry=LBoolWrap(opt, "save_games_geometry"),
|
||||||
pause=LBoolWrap(self, "pause"),
|
pause=LBoolWrap(self, "pause"),
|
||||||
|
table_zoom=LListWrap(opt, "table_zoom"),
|
||||||
# cards
|
# cards
|
||||||
cardset=LNumWrap(self, "cardset"),
|
cardset=LNumWrap(self, "cardset"),
|
||||||
cardback=LNumWrap(self, "cardback"),
|
cardback=LNumWrap(self, "cardback"),
|
||||||
|
|
|
@ -371,7 +371,6 @@ class MfxTooltip:
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
# Kivy implementation of MfxScrolledCanvas.
|
# Kivy implementation of MfxScrolledCanvas.
|
||||||
|
|
||||||
|
|
||||||
from kivy.uix.scatterlayout import Scatter # noqa
|
from kivy.uix.scatterlayout import Scatter # noqa
|
||||||
from kivy.uix.stencilview import StencilView # noqa
|
from kivy.uix.stencilview import StencilView # noqa
|
||||||
from kivy.graphics.transformation import Matrix # noqa
|
from kivy.graphics.transformation import Matrix # noqa
|
||||||
|
@ -389,8 +388,27 @@ class LScatterFrame(Scatter):
|
||||||
self.scale_max = 2.2
|
self.scale_max = 2.2
|
||||||
self.lock_pos = None
|
self.lock_pos = None
|
||||||
self.offset = None
|
self.offset = None
|
||||||
|
self.tkopt = None
|
||||||
|
|
||||||
|
def set_scale(self,zoom):
|
||||||
|
scale = zoom[0]
|
||||||
|
self.transform = Matrix().scale(scale,scale,1)
|
||||||
|
xoff = zoom[1]
|
||||||
|
yoff = zoom[2]
|
||||||
|
self.offset = (xoff,yoff)
|
||||||
|
|
||||||
def _update(self):
|
def _update(self):
|
||||||
|
# initialisation
|
||||||
|
if self.tkopt is None:
|
||||||
|
app = self.inner.wmain.app
|
||||||
|
tkopt = None
|
||||||
|
if app is not None: tkopt = app.menubar.tkopt
|
||||||
|
if tkopt is not None:
|
||||||
|
self.tkopt = tkopt
|
||||||
|
self.set_scale(tkopt.table_zoom.value)
|
||||||
|
print("table_zoom",tkopt.table_zoom.value)
|
||||||
|
|
||||||
|
# update
|
||||||
if self.lock_pos is None:
|
if self.lock_pos is None:
|
||||||
self.lock_pos = "locked"
|
self.lock_pos = "locked"
|
||||||
if self.offset is not None:
|
if self.offset is not None:
|
||||||
|
@ -470,7 +488,14 @@ class LScatterFrame(Scatter):
|
||||||
offmy = float(self.bbox[1][1] - self.size[1])
|
offmy = float(self.bbox[1][1] - self.size[1])
|
||||||
if (offmx>0 and offmy>0):
|
if (offmx>0 and offmy>0):
|
||||||
self.offset = (offx/offmx,offy/offmy)
|
self.offset = (offx/offmx,offy/offmy)
|
||||||
# print ("offset = ",self.offset)
|
|
||||||
|
# update persistent zoom parameters
|
||||||
|
zoom = self.bbox[1][0]/float(self.size[0])
|
||||||
|
if self.offset is not None:
|
||||||
|
zoominfo = [zoom, self.offset[0], self.offset[1]]
|
||||||
|
else:
|
||||||
|
zoominfo = [zoom, 0.0, 0.0]
|
||||||
|
self.tkopt.table_zoom.value = zoominfo
|
||||||
|
|
||||||
|
|
||||||
class LScrollFrame(BoxLayout,StencilView):
|
class LScrollFrame(BoxLayout,StencilView):
|
||||||
|
|
|
@ -143,6 +143,7 @@ solver_iterations_output_step = integer
|
||||||
solver_preset = string
|
solver_preset = string
|
||||||
display_win_message = boolean
|
display_win_message = boolean
|
||||||
language = string
|
language = string
|
||||||
|
table_zoom = list
|
||||||
|
|
||||||
[sound_samples]
|
[sound_samples]
|
||||||
move = boolean
|
move = boolean
|
||||||
|
@ -322,6 +323,7 @@ class Options:
|
||||||
# ('favorite_gameid', 'list'),
|
# ('favorite_gameid', 'list'),
|
||||||
('display_win_message', 'bool'),
|
('display_win_message', 'bool'),
|
||||||
('language', 'str'),
|
('language', 'str'),
|
||||||
|
# ('table_zoom', 'list'),
|
||||||
]
|
]
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@ -417,6 +419,7 @@ class Options:
|
||||||
self.translate_game_names = True
|
self.translate_game_names = True
|
||||||
self.display_win_message = True
|
self.display_win_message = True
|
||||||
self.language = ''
|
self.language = ''
|
||||||
|
self.table_zoom = [1.0, 0.0, 0.0]
|
||||||
# sound
|
# sound
|
||||||
self.sound = True
|
self.sound = True
|
||||||
self.sound_mode = 1
|
self.sound_mode = 1
|
||||||
|
@ -668,6 +671,7 @@ class Options:
|
||||||
|
|
||||||
config['general']['recent_gameid'] = self.recent_gameid
|
config['general']['recent_gameid'] = self.recent_gameid
|
||||||
config['general']['favorite_gameid'] = self.favorite_gameid
|
config['general']['favorite_gameid'] = self.favorite_gameid
|
||||||
|
config['general']['table_zoom'] = self.table_zoom
|
||||||
visible_buttons = [b for b in self.toolbar_vars
|
visible_buttons = [b for b in self.toolbar_vars
|
||||||
if self.toolbar_vars[b]]
|
if self.toolbar_vars[b]]
|
||||||
config['general']['visible_buttons'] = visible_buttons
|
config['general']['visible_buttons'] = visible_buttons
|
||||||
|
@ -813,6 +817,13 @@ class Options:
|
||||||
except Exception:
|
except Exception:
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
|
|
||||||
|
table_zoom = self._getOption('general', 'table_zoom', 'list')
|
||||||
|
if table_zoom is not None:
|
||||||
|
try:
|
||||||
|
self.table_zoom = [float(i) for i in table_zoom]
|
||||||
|
except Exception:
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
visible_buttons = self._getOption('general', 'visible_buttons', 'list')
|
visible_buttons = self._getOption('general', 'visible_buttons', 'list')
|
||||||
if visible_buttons is not None:
|
if visible_buttons is not None:
|
||||||
for key in TOOLBAR_BUTTONS:
|
for key in TOOLBAR_BUTTONS:
|
||||||
|
|
Loading…
Add table
Reference in a new issue