This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
notes:fall2024:projects:cgfx [2024/10/23 15:52] – [mkstacklist] gsalce | notes:fall2024:projects:cgfx [2024/10/23 15:56] (current) – [Cursor] gsalce | ||
---|---|---|---|
Line 92: | Line 92: | ||
====Cursor==== | ====Cursor==== | ||
+ | |||
+ | FreeCell is a game that requires fluent movement for the cards between the original free cells, and the cells that will become available as the game progresses. | ||
+ | |||
+ | Traditionally, | ||
+ | |||
+ | There are a couple schools of thought on how to implement this movement into your game: | ||
+ | |||
+ | 1) You could implement a pointer arrow (or a couple) to represent which stack the player is currently looking at. Then, assign keybinds to have the cards go to a certain cell / stack. Vircon32 has more than enough buttons to accomplish this goal. | ||
+ | |||
+ | 2) You could introduce new movement patterns to the link list, so that the player may move up / down / left / right to move particular sets of cards at a time. |