GNOME Bugzilla – Bug 445955
implement 'dealable?' feature for all games
Last modified: 2021-06-02 11:33:59 UTC
Please can you add a "Deal cards" entry to the Control menu? Then people could rebind it to a key and play without a mouse. It also helps with the fact that there's no easy way to figure out how to deal cards. Some games might have more than one pack from which one could deal, and I'm not sure how best to handle that. I didn't find such a game so far, though.
Created attachment 89692 [details] [review] implement menu action to deal the next card(s) and demo this in spider This implements menu item + toolbar item to deal the next card(s). From the UI side it's pretty much done, we just need an appropriate icon. From the scheme side it certainly needs improvements: fix interaction with undo/redo, and action sensitivity. Also since this shares probably most of the code with the click-on-stack action, the code should be factored out, and/or have some helpers in sol.c.
... helpers in sol.scm, I mean.
This was suggested before as bug 315489 (WONTFIX). Bug 316220 also has some discussion of how we might implement keyboard support in aisleriot. I believe this could be worth doing if we can find a setup for keyboard control that we could eventually implement for all the games. Now that I'm thinking about it, I have some crazy ideas about this that I will add to bug 126284, which appears to be the right place for that topic (isn't bugzilla fun?).
I don't think the discussion in bug 315489 was on-topic for this since it was about the stock item, not the feature in itself. I also don't think 'deal cards' is really related to keynav. 'Deal cards' action is simple using the above patch; if some game hasn't been changed to support it yet, the action is simply hidden. So IMHO the argument that 'all games need to be changed' doesn't work against this, since this can be done on an individual basis. (Keynav for moving the cards themselves should be implementable in new-aisleriot. I added the concept of a 'focus slot' and 'focus card', but haven't done anything with them yet. Adding keybindings to move the focus, use (say) Space to select, then select a new slot and drop them with (say) Return, shouldn't be too hard.)
Bug 315489 was about adding a Draw button (I agree it's more accurate) to Aisleriot. We would eventually want to implement it in all games that support such an action, but I think it's ok if that comes slowly. I'd personally like to see an "Autoplay foundations" button, since that feature is even less discoverable. I would set the action sensitivity is in (game-over), like we do for status messages, so you at least don't have to add state to undo/redo (it should also make the code work better; it's much easier to check whether you can draw now than to identify and properly account for all cases where it changes). Keyboard navigation is a separate issue, but this would seem more worthwhile to me with the goal of full keyboard accessibility in mind.
The code was committed some time ago. Now 'all' that remains is to add the support to the games themselves, by making them set the 'dealable' feature and implement a dealable? lambda.
Created attachment 95103 [details] [review] implement dealable-feature for agnes I notice no current games support dealable-feature. So, uh, am I doing this right?
You don't need the "(dealable-set-sensitive (dealable?)" calls; the game updates itself by evaluating dealable? after each move. Otherwise looks ok to me. Note that the current API for this isn't set in stone, so if you find that it's more convenient to do deablalbe-set-sensitive instead of implementing a dealable?, it can be changed :)
Well, many (most?) of the bugs I've seen so far in aisleriot games were the result of keeping state separately from the cards (such as the score) and not accounting correctly for all situations where it can change. Calculating extra things (like dealability) based on the card state works much better. Unfortunately, I'm not at my normal computer right now and don't have an environment set up to test this, but I think I did have a problem when (dealable-set-sensitive (dealable?)) wasn't in (new-game). Checking it each move turned out to not be necessary.
Well, the aisleriot code calls dealable? after each call, if the game implements dealable feature. So IMHO either the set-dealable-sensitive should be removed, or the dealable? should be removed; that is either the game (scheme code) sets the dealable when it knows it has changed, or the game (C code) tests whether deal is possible when it thinks it might have changed. Not both ways :) Which one do you think is more easily implementable for all (or at least most) games?
dealable? is easier to implement on the scheme side (and really, it has to be implemented already because games already have logic to decide whether to deal when the user attempts to). Please make sure (I'm still not in a position to check) that the C code checks dealable? when starting a game.
Yes, it does check it. See game.c:aisleriot_game_new_game(), the call to update_game_dealable() at the end.
Thanks; committed. * rules/agnes.scm: Implement dealable? for agnes. Bug #445955, patch by Vincent Povirk.
Created attachment 103173 [details] [review] [PATCH] Implement dealable feature for klondike based games. Bug #445955. aisleriot/rules/athena.scm | 2 +- aisleriot/rules/gold_mine.scm | 2 +- aisleriot/rules/klondike.scm | 10 ++++++++-- aisleriot/rules/saratoga.scm | 2 +- aisleriot/sol.scm | 5 +++++ 5 files changed, 16 insertions(+), 5 deletions(-)
Created attachment 103194 [details] [review] [PATCH] Implement dealable? for zebra. Bug #445955 aisleriot/rules/zebra.scm | 27 +++++++++++++++------------ 1 files changed, 15 insertions(+), 12 deletions(-)
Created attachment 103195 [details] [review] [PATCH] Implement dealable? for whitehead. Bug #445955 aisleriot/rules/whitehead.scm | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-)
Created attachment 103367 [details] [review] [PATCH] Implement dealable? for auld_lang_syne. Bug #445955 aisleriot/rules/auld_lang_syne.scm | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
Created attachment 103368 [details] [review] [PATCH] Implement dealable? for backbone. Bug #445955 aisleriot/rules/backbone.scm | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
Created attachment 103374 [details] [review] [PATCH] Implement dealable? for doublets. Bug #445955 aisleriot/rules/doublets.scm | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-)
Created attachment 103375 [details] [review] [PATCH] Implement dealable? for eagle_wing. Bug #445955 aisleriot/rules/eagle_wing.scm | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-)
Created attachment 103376 [details] [review] [PATCH] Implement dealable? for elevator. Bug #445955 aisleriot/rules/elevator.scm | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
Created attachment 103377 [details] [review] [PATCH] Implement dealable? for escalator. Bug #445955 aisleriot/rules/escalator.scm | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
Created attachment 103543 [details] [review] [PATCH] Implement dealable? for triple_peaks. Bug #445955 aisleriot/rules/triple_peaks.scm | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-)
Created attachment 103544 [details] [review] [PATCH] Implement dealable? for thumb_and_pouch. Bug #445955 aisleriot/rules/thumb_and_pouch.scm | 24 ++++++++++++++---------- 1 files changed, 14 insertions(+), 10 deletions(-)
Created attachment 103545 [details] [review] [PATCH] Implement dealable? for thirteen. Bug #445955 aisleriot/rules/thirteen.scm | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-)
Created attachment 103546 [details] [review] [PATCH] Implement dealable? for straight_up. Bug #445955 aisleriot/rules/straight_up.scm | 26 +++++++++++++++----------- 1 files changed, 15 insertions(+), 11 deletions(-)
Re-assigning to default owner.
*** Bug 315489 has been marked as a duplicate of this bug. ***
I committed these patches; but post-commit review would still be appreciated. Anyone also feel free to tackle the remainaing games; there's a list in aisleriot/TODO.
Created attachment 137913 [details] [review] implement dealable-feature for spider + variants Vincent, does this patch look ok to you?
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/aisleriot/-/issues/82.