After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 445955 - implement 'dealable?' feature for all games
implement 'dealable?' feature for all games
Status: RESOLVED OBSOLETE
Product: aisleriot
Classification: Other
Component: games
git master
Other All
: Normal enhancement
: ---
Assigned To: aisleriot-maint
aisleriot-maint
: 315489 (view as bug list)
Depends on: 474698
Blocks:
 
 
Reported: 2007-06-10 06:49 UTC by liam
Modified: 2021-06-02 11:33 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
implement menu action to deal the next card(s) and demo this in spider (9.95 KB, patch)
2007-06-10 13:13 UTC, Christian Persch
none Details | Review
implement dealable-feature for agnes (1.65 KB, patch)
2007-09-07 03:45 UTC, Vincent Povirk
committed Details | Review
[PATCH] Implement dealable feature for klondike based games. Bug #445955. (3.25 KB, patch)
2008-01-18 23:25 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for zebra. Bug #445955 (1.73 KB, patch)
2008-01-19 14:33 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for whitehead. Bug #445955 (1.38 KB, patch)
2008-01-19 14:37 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for auld_lang_syne. Bug #445955 (900 bytes, patch)
2008-01-21 21:35 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for backbone. Bug #445955 (1.03 KB, patch)
2008-01-21 21:38 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for doublets. Bug #445955 (1.04 KB, patch)
2008-01-21 22:15 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for eagle_wing. Bug #445955 (1.15 KB, patch)
2008-01-21 22:18 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for elevator. Bug #445955 (865 bytes, patch)
2008-01-21 22:22 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for escalator. Bug #445955 (872 bytes, patch)
2008-01-21 22:24 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for triple_peaks. Bug #445955 (1.57 KB, patch)
2008-01-23 13:09 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for thumb_and_pouch. Bug #445955 (1.58 KB, patch)
2008-01-23 13:13 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for thirteen. Bug #445955 (1.04 KB, patch)
2008-01-23 13:19 UTC, Christian Persch
committed Details | Review
[PATCH] Implement dealable? for straight_up. Bug #445955 (1.66 KB, patch)
2008-01-23 13:22 UTC, Christian Persch
committed Details | Review
implement dealable-feature for spider + variants (3.95 KB, patch)
2009-07-06 12:09 UTC, Christian Persch
none Details | Review

Description liam 2007-06-10 06:49:29 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.
Comment 1 Christian Persch 2007-06-10 13:13:30 UTC
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.
Comment 2 Christian Persch 2007-06-10 13:14:59 UTC
... helpers in sol.scm, I mean.
Comment 3 Vincent Povirk 2007-06-10 16:57:17 UTC
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?).
Comment 4 Christian Persch 2007-06-10 17:20:24 UTC
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.)
Comment 5 Vincent Povirk 2007-06-10 18:22:17 UTC
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.
Comment 6 Christian Persch 2007-08-29 20:59:32 UTC
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.
Comment 7 Vincent Povirk 2007-09-07 03:45:00 UTC
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?
Comment 8 Christian Persch 2007-09-07 18:21:43 UTC
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 :)
Comment 9 Vincent Povirk 2007-09-08 01:08:35 UTC
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.
Comment 10 Christian Persch 2007-09-08 20:31:53 UTC
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?
Comment 11 Vincent Povirk 2007-09-08 22:32:52 UTC
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.
Comment 12 Christian Persch 2007-09-08 22:52:06 UTC
Yes, it does check it. See game.c:aisleriot_game_new_game(), the call to update_game_dealable() at the end.
Comment 13 Christian Persch 2008-01-06 18:53:59 UTC
Thanks; committed.

        * rules/agnes.scm: Implement dealable? for agnes. Bug #445955, patch
        by Vincent Povirk.

Comment 14 Christian Persch 2008-01-18 23:25:46 UTC
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(-)
Comment 15 Christian Persch 2008-01-19 14:33:09 UTC
Created attachment 103194 [details] [review]
[PATCH] Implement dealable? for zebra. Bug #445955

 aisleriot/rules/zebra.scm |   27 +++++++++++++++------------
 1 files changed, 15 insertions(+), 12 deletions(-)
Comment 16 Christian Persch 2008-01-19 14:37:54 UTC
Created attachment 103195 [details] [review]
[PATCH] Implement dealable? for whitehead. Bug #445955

 aisleriot/rules/whitehead.scm |   19 +++++++++++--------
 1 files changed, 11 insertions(+), 8 deletions(-)
Comment 17 Christian Persch 2008-01-21 21:35:07 UTC
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(-)
Comment 18 Christian Persch 2008-01-21 21:38:46 UTC
Created attachment 103368 [details] [review]
[PATCH] Implement dealable? for backbone. Bug #445955

 aisleriot/rules/backbone.scm |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)
Comment 19 Christian Persch 2008-01-21 22:15:52 UTC
Created attachment 103374 [details] [review]
[PATCH] Implement dealable? for doublets. Bug #445955

 aisleriot/rules/doublets.scm |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)
Comment 20 Christian Persch 2008-01-21 22:18:23 UTC
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(-)
Comment 21 Christian Persch 2008-01-21 22:22:01 UTC
Created attachment 103376 [details] [review]
[PATCH] Implement dealable? for elevator. Bug #445955

 aisleriot/rules/elevator.scm |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)
Comment 22 Christian Persch 2008-01-21 22:24:11 UTC
Created attachment 103377 [details] [review]
[PATCH] Implement dealable? for escalator. Bug #445955

 aisleriot/rules/escalator.scm |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)
Comment 23 Christian Persch 2008-01-23 13:09:00 UTC
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(-)
Comment 24 Christian Persch 2008-01-23 13:13:52 UTC
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(-)
Comment 25 Christian Persch 2008-01-23 13:19:14 UTC
Created attachment 103545 [details] [review]
[PATCH] Implement dealable? for thirteen. Bug #445955

 aisleriot/rules/thirteen.scm |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)
Comment 26 Christian Persch 2008-01-23 13:22:10 UTC
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(-)
Comment 27 Christian Persch 2008-03-25 12:02:44 UTC
Re-assigning to default owner.
Comment 28 Christian Persch 2008-04-01 12:14:13 UTC
*** Bug 315489 has been marked as a duplicate of this bug. ***
Comment 29 Christian Persch 2008-06-18 20:50:24 UTC
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.
Comment 30 Christian Persch 2009-07-06 12:09:21 UTC
Created attachment 137913 [details] [review]
implement dealable-feature for spider + variants

Vincent, does this patch look ok to you?
Comment 31 GNOME Infrastructure Team 2021-06-02 11:33:59 UTC
-- 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.