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

Kivy/Android

- visual update of favorites list corrected
This commit is contained in:
lufebe16 2023-12-10 11:18:38 +01:00
parent b49f82ad02
commit 917e7a1311
3 changed files with 70 additions and 53 deletions

View file

@ -892,7 +892,7 @@ class LTreeNode(ButtonBehavior, TreeViewLabel, LBase):
if self.variable: if self.variable:
self.variable.bind(value=self.onVarChange) self.variable.bind(value=self.onVarChange)
self.onVarChange(self.variable, self.variable.get()) self.onVarChange(self.variable, self.variable.value)
# self.gameview = gameview # self.gameview = gameview
self.coreFont = self.font_size self.coreFont = self.font_size

View file

@ -65,8 +65,8 @@ from pysollib.settings import TITLE
class TkVarObj(EventDispatcher): class TkVarObj(EventDispatcher):
def __init(self): def __init__(self):
self.value = None pass
def set(self, v): def set(self, v):
if v is None: if v is None:
@ -77,6 +77,10 @@ class TkVarObj(EventDispatcher):
def get(self): def get(self):
return self.value return self.value
def on_value(self, obj, val):
print('TkVarObj.on_value:', val)
pass
class BooleanVar(TkVarObj): class BooleanVar(TkVarObj):
value = BooleanProperty(False) value = BooleanProperty(False)
@ -103,7 +107,6 @@ class LMenuBase(object):
def make_pop_command(self, parent, title): def make_pop_command(self, parent, title):
def pop_command(event): def pop_command(event):
print('event = %s' % event)
parent.popWork(title) parent.popWork(title)
return pop_command return pop_command
@ -122,15 +125,9 @@ class LMenuBase(object):
command() command()
return auto_command return auto_command
def addCheckNode(self, tv, rg, title, auto_var, auto_com):
command = self.make_auto_command(auto_var, auto_com)
rg1 = tv.add_node(
LTreeNode(text=title, command=command, variable=auto_var), rg)
return rg1
def make_val_command(self, variable, value, command): def make_val_command(self, variable, value, command):
def val_command(): def val_command():
variable.set(value) variable.value = value
command() command()
return val_command return val_command
@ -139,14 +136,6 @@ class LMenuBase(object):
command(key) command(key)
return vars_command return vars_command
def addRadioNode(self, tv, rg, title, auto_var, auto_val, auto_com):
command = self.make_val_command(auto_var, auto_val, auto_com)
rg1 = tv.add_node(
LTreeNode(text=title,
command=command,
variable=auto_var, value=auto_val), rg)
return rg1
def make_game_command(self, key, command): def make_game_command(self, key, command):
def game_command(): def game_command():
self.closeWindow(0) self.closeWindow(0)
@ -159,6 +148,20 @@ class LMenuBase(object):
command() command()
return _command return _command
def addCheckNode(self, tv, rg, title, auto_var, auto_com):
command = self.make_auto_command(auto_var, auto_com)
rg1 = tv.add_node(
LTreeNode(text=title, command=command, variable=auto_var), rg)
return rg1
def addRadioNode(self, tv, rg, title, auto_var, auto_val, auto_com):
command = self.make_val_command(auto_var, auto_val, auto_com)
rg1 = tv.add_node(
LTreeNode(text=title,
command=command,
variable=auto_var, value=auto_val), rg)
return rg1
# ************************************************************************ # ************************************************************************
# * Tree Generators # * Tree Generators
# ************************************************************************ # ************************************************************************
@ -321,12 +324,35 @@ class FileMenuDialog(LMenuDialog):
super(FileMenuDialog, self).__init__( super(FileMenuDialog, self).__init__(
menubar, parent, title, app, **kw) menubar, parent, title, app, **kw)
def make_favid_list(self, tv, rg):
favids = self.app.opt.favorite_gameid
for fid in favids:
gi = self.app.getGameInfo(fid)
if gi:
command = self.make_game_command(
fid, self.menubar._mSelectGame)
tv.add_node(
LTreeNode(text=gi.name, command=command), rg)
def remove_favid_list(self, tv, rg):
delist = []
for n in rg.nodes:
if n.text not in [_('<Add>'), _('<Remove>')]:
delist.append(n)
for m in delist:
tv.remove_node(m)
def change_favid_list(self, command, *args):
def doit():
command()
self.remove_favid_list(args[0], args[1])
self.make_favid_list(args[0], args[1])
return doit
def buildTree(self, tv, node): def buildTree(self, tv, node):
rg = tv.add_node( rg = tv.add_node(
LTreeNode(text=_('Recent games'))) LTreeNode(text=_('Recent games')))
# Recent Liste
recids = self.app.opt.recent_gameid recids = self.app.opt.recent_gameid
# recgames = []
for rid in recids: for rid in recids:
gi = self.app.getGameInfo(rid) gi = self.app.getGameInfo(rid)
if gi: if gi:
@ -339,20 +365,15 @@ class FileMenuDialog(LMenuDialog):
LTreeNode(text=_('Favorite games'))) LTreeNode(text=_('Favorite games')))
if rg: if rg:
tv.add_node(LTreeNode( tv.add_node(LTreeNode(
text=_('<Add>'), command=self.menubar.mAddFavor), rg) text=_('<Add>'),
command=self.change_favid_list(
self.menubar.mAddFavor, tv, rg)), rg)
tv.add_node(LTreeNode( tv.add_node(LTreeNode(
text=_('<Remove>'), command=self.menubar.mDelFavor), rg) text=_('<Remove>'),
command=self.change_favid_list(
self.menubar.mDelFavor, tv, rg)), rg)
# Recent Liste self.make_favid_list(tv, rg)
favids = self.app.opt.favorite_gameid
# favgames = []
for fid in favids:
gi = self.app.getGameInfo(fid)
if gi:
command = self.make_game_command(
fid, self.menubar._mSelectGame)
tv.add_node(
LTreeNode(text=gi.name, command=command), rg)
tv.add_node(LTreeNode( tv.add_node(LTreeNode(
text=_('Load'), command=self.make_command(self.menubar.mOpen))) text=_('Load'), command=self.make_command(self.menubar.mOpen)))
@ -456,7 +477,8 @@ class GameMenuDialog(LMenuDialog):
def buildTree(self, tv, node): def buildTree(self, tv, node):
tv.add_node(LTreeNode( tv.add_node(LTreeNode(
text=_('Current game...'), text=_('Current game...'),
command=self.auto_close(self.make_command(101, self.menubar.mPlayerStats))), None) # noqa command=self.auto_close(
self.make_command(101, self.menubar.mPlayerStats))), None)
# tv.add_node(LTreeNode( # tv.add_node(LTreeNode(
# text='All games ...', # text='All games ...',
@ -1324,44 +1346,37 @@ class HelpMenuDialog(LMenuDialog):
kw['persist'] = True kw['persist'] = True
super(HelpMenuDialog, self).__init__(menubar, parent, title, app, **kw) super(HelpMenuDialog, self).__init__(menubar, parent, title, app, **kw)
def make_help_command(self, command):
def help_command():
command()
self.closeWindow(0)
return help_command
def buildTree(self, tv, node): def buildTree(self, tv, node):
tv.add_node( tv.add_node(
LTreeNode( LTreeNode(
text=_('Contents'), text=_('Contents'),
command=self.make_help_command(self.menubar.mHelp))) command=self.auto_close(self.menubar.mHelp)))
tv.add_node( tv.add_node(
LTreeNode( LTreeNode(
text=_('How to use PySol'), text=_('How to use PySol'),
command=self.make_help_command(self.menubar.mHelpHowToPlay))) command=self.auto_close(self.menubar.mHelpHowToPlay)))
tv.add_node( tv.add_node(
LTreeNode( LTreeNode(
text=_('Rules for this game'), text=_('Rules for this game'),
command=self.make_help_command(self.menubar.mHelpRules))) command=self.auto_close(self.menubar.mHelpRules)))
tv.add_node( tv.add_node(
LTreeNode( LTreeNode(
text=_('License terms'), text=_('License terms'),
command=self.make_help_command(self.menubar.mHelpLicense))) command=self.auto_close(self.menubar.mHelpLicense)))
tv.add_node( tv.add_node(
LTreeNode( LTreeNode(
text=_('About %s...') % TITLE, text=_('About %s...') % TITLE,
command=self.make_help_command(self.menubar.mHelpAbout))) command=self.auto_close(self.menubar.mHelpAbout)))
# tv.add_node(LTreeNode( # tv.add_node(LTreeNode(
# text='AboutKivy ...', # text='AboutKivy ...',
# command=self.makeHtmlCommand(self.menubar, "kivy.html"))) # command=self.makeHtmlCommand(self.menubar, "kivy.html")))
'''
def makeHtmlCommand(self, bar, htmlfile): def makeHtmlCommand(self, bar, htmlfile):
def htmlCommand(): def htmlCommand():
bar.mHelpHtml(htmlfile) bar.mHelpHtml(htmlfile)
return htmlCommand return htmlCommand
'''
# ************************************************************************ # ************************************************************************
# * # *
@ -2095,7 +2110,7 @@ class PysolMenubarTk:
def mAddFavor(self, *event): def mAddFavor(self, *event):
gameid = self.app.game.id gameid = self.app.game.id
if gameid not in self.app.opt.favorite_gameid: if gameid not in self.app.opt.favorite_gameid:
self.app.opt.favorite_gameid.append(gameid) self.app.opt.favorite_gameid.insert(0, gameid)
self.updateFavoriteGamesMenu() self.updateFavoriteGamesMenu()
def mDelFavor(self, *event): def mDelFavor(self, *event):
@ -2319,17 +2334,17 @@ the next time you restart the %(app)s""") % {'app': TITLE})
def mOptAnimations(self, *args): def mOptAnimations(self, *args):
if self._cancelDrag(break_pause=False): if self._cancelDrag(break_pause=False):
return return
self.app.opt.animations = self.tkopt.animations.get() self.app.opt.animations = self.tkopt.animations.value
def mRedealAnimation(self, *args): def mRedealAnimation(self, *args):
if self._cancelDrag(break_pause=False): if self._cancelDrag(break_pause=False):
return return
self.app.opt.redeal_animation = self.tkopt.redeal_animation.get() self.app.opt.redeal_animation = self.tkopt.redeal_animation.value
def mWinAnimation(self, *args): def mWinAnimation(self, *args):
if self._cancelDrag(break_pause=False): if self._cancelDrag(break_pause=False):
return return
self.app.opt.win_animation = self.tkopt.win_animation.get() self.app.opt.win_animation = self.tkopt.win_animation.value
def mWinDialog(self, *args): def mWinDialog(self, *args):
if self._cancelDrag(break_pause=False): if self._cancelDrag(break_pause=False):

View file

@ -5,7 +5,9 @@ release = 1
use_bzip2 = 1 use_bzip2 = 1
[flake8] [flake8]
extend-ignore = H101,H104,H201,H237,H301,H306,H403,H404,H405 extend-ignore = H101,H104,H201,H237,H301,H306,H403,H404,H405,
# remove some most ugly flakes (proposal)
# E231,E302
[sdist] [sdist]
force_manifest = 1 force_manifest = 1