This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2023:projects:cgf2 [2023/10/25 15:29] – [storage] walley | notes:data:fall2023:projects:cgf2 [2023/11/01 15:17] (current) – [pop] jwieland | ||
---|---|---|---|
Line 43: | Line 43: | ||
=====pop===== | =====pop===== | ||
+ | This is an example of what your pop function might look like. | ||
+ | < | ||
+ | void pop(stack* s, Cardnode* card) { | ||
+ | s->top = card-> | ||
+ | card-> | ||
+ | card-> | ||
+ | if(s-> | ||
+ | s-> | ||
+ | } | ||
+ | } | ||
+ | </ | ||
====stack underflow==== | ====stack underflow==== | ||
Line 55: | Line 66: | ||
At the start of the game, all the foundations are empty. To win Freecell, all four foundations must be filled up with the entire deck of cards. | At the start of the game, all the foundations are empty. To win Freecell, all four foundations must be filled up with the entire deck of cards. | ||
+ | |||
+ | ===Foundation logic=== | ||
+ | To accomplish this functionality you can create the following bool function: | ||
+ | |||
+ | <code C> | ||
+ | // Funtion for checking a valid placment of a card in the final destination | ||
+ | bool isMoveValid(stack* upperStack, cardnode* card) | ||
+ | { | ||
+ | // If the stack is empty, only Ace can be placed | ||
+ | if (upperStack-> | ||
+ | { | ||
+ | return card-> | ||
+ | } | ||
+ | |||
+ | cardnode* topCard = upperStack-> | ||
+ | |||
+ | // Checks if suits are the same and the card being added is one higher than the current card | ||
+ | return (topCard-> | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This function checks if the current card in your hand can be placed onto one of the final stacks (NOTE: This also takes into account that the current card you have matches the suit you are trying to place it on) | ||
+ | |||
+ | Here is a possible example of calling the function: | ||
+ | <code C> | ||
+ | // Checks if the card can be dropped with the isMoveValid funtion and drops if so | ||
+ | if (isMoveValid(currentStack, | ||
+ | { | ||
+ | cardnode* topCard = pop(Hand); | ||
+ | push(currentStack, | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Note: | ||
+ | hand-> | ||
+ | |||
+ | |||
====storage==== | ====storage==== | ||
There are four Storage piles in the top-left of the board. Unlike the foundations, | There are four Storage piles in the top-left of the board. Unlike the foundations, | ||
Line 60: | Line 108: | ||
Like the foundations, | Like the foundations, | ||
====tableau==== | ====tableau==== | ||
+ | The tableaus are the eight piles of cards below the storage piles and foundation piles. | ||
+ | |||
+ | At the start of the game, the tableaus are filled up with all 52 cards in a shuffled manner (It can be purely random, or placed strategically, | ||
+ | - The card being placed has a value of exactly one less than the card it's being placed onto. | ||
+ | - The card being placed has a color opposite than the card it's being placed onto. | ||
+ | |||
+ | The strategy for the player is to try to line up tableaus into positions going from King to Ace. This makes it much easier to place the cards into the foundations. | ||
+ | Note: When coding the tableaus, a max size for each stack may be desirable so that cards do not go off-screen. | ||
====pile==== | ====pile==== |