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

Kivy/Android:

- Added full picture hint to menu.
This commit is contained in:
lufebe16 2023-09-30 17:08:07 +02:00
parent 96699c8fa2
commit c027e6ca0e
2 changed files with 72 additions and 13 deletions

View file

@ -21,30 +21,79 @@
#
# ---------------------------------------------------------------------------#
# imports
# import os
# import traceback
import math
# PySol imports
from kivy.uix.stacklayout import StackLayout
# Toolkit imports
# from tkutil import after, after_cancel
# from tkutil import bind, unbind_destroy, makeImage
# from tkcanvas import MfxCanvas, MfxCanvasGroup
# from tkcanvas import MfxCanvasImage, MfxCanvasRectangle
# from pysollib.settings import TITLE
from pysollib.kivy.LApp import LImage, LTopLevel0
from pysollib.mygettext import _
# ************************************************************************
# *
# ************************************************************************
full_picture_dialog = None
class ImageStacker(StackLayout):
def __init__(self, **kw):
super().__init__(**kw)
self.images = []
self.dx = 1
self.dy = 1
self.asp = 1 # width/height.
def set_matrix(self, dx, dy):
self.dx = dx
self.dy = dy
def set_aspect(self, asp):
self.asp = asp # width/height.
def add_image(self, image):
self.images.append(image)
self.add_widget(image)
def on_size(self, instance, value):
hint_x = 1.0 / self.dx
hint_y = 1.0 / self.dx
vasp = value[0]/value[1]
# adjust width or height
if vasp < self.asp:
hint_y = hint_y * vasp / self.asp
else:
hint_x = hint_x * self.asp / vasp
# apply to all images
for i in self.images:
i.size_hint = (hint_x, hint_y)
class FullPictureDialog(object):
def __init__(self, parent, title, game, **kw):
self.game = game
self.top = LTopLevel0(parent, title)
self.frame = self.top.content
self.images = game.app.subsampled_images
dx, dy = self.images.CARDW, self.images.CARDH
print (self.images) # noqa
print (dx,dy) # noqa
cards = self.game.gameinfo.trumps
cols = int(math.ceil(math.sqrt(len(cards))))
print (cols) # noqa
self.stp = ImageStacker()
self.stp.set_aspect(dx/dy)
self.stp.set_matrix(cols, cols)
for card in cards:
image = LImage(texture=self.images._card[card].texture)
self.stp.add_image(image)
self.frame.add_widget(self.stp)
def create_full_picture_dialog(parent, game):
pass
pd = FullPictureDialog(parent, _("Full picture"), game) # noqa
'''
global full_picture_dialog
try:

View file

@ -432,6 +432,12 @@ class AssistMenuDialog(LMenuDialog):
super(AssistMenuDialog, self).__init__(
menubar, parent, title, app, **kw)
def make_auto_close(self, command):
def auto_close_command():
command()
self.closeWindow(0)
return auto_close_command
def buildTree(self, tv, node):
tv.add_node(LTreeNode(
text=_('Hint'), command=self.menubar.mHint))
@ -439,6 +445,10 @@ class AssistMenuDialog(LMenuDialog):
tv.add_node(LTreeNode(
text=_('Highlight piles'), command=self.menubar.mHighlightPiles))
tv.add_node(LTreeNode(
text=_('Show full picture...'),
command=self.make_auto_close(self.menubar.mFullPicture)))
# tv.add_node(LTreeNode(
# text='Find Card', command=self.menubar.mFindCard))