1--- a/bin/Data Structures: The Card Game Sun Dec 06 23:41:28 2009 +0000
2+++ b/bin/Data Structures: The Card Game Mon Dec 07 02:16:50 2009 +0000
3@@ -15,8 +15,8 @@
4 === Hands
5 Each player has a five-card hand.
6
7-=== Lists
8-Each player has three stacks called the "lists" (this needs a much less stupid name). The objective of the game is to get all three lists to have every value (2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K) in order. The lists may start with any value, but must loop back 'round to one less than that value.
9+=== Arrays
10+Each player has three arrays. The objective of the game is to get all three arrays to have every value (2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K) in order. The lists may start with any value, but must loop back 'round to one less than that value.
11
12 == Setup
13
14@@ -24,4 +24,23 @@
15
16 == Gameplay
17
18-Place text here.
19\ No newline at end of file
20+The game is a turn based game. Each players turn can be divided up into phases.
21+
22+=== Phase 1 (Inserting into arrays)
23+During this phase, the player can use any card from their hand, pop for any of the 2 stacks, or remove the head of the list to place the proper next card on his or her own array. An array can only be started from a card in the player's hand. Should an array become complete on a card move, the array is turned upside down (so all cards are now face down) and will be shuffled back into the deck at the end of the turn.
24+
25+Should the player use all 5 cards in their hand, they are allowed to redraw all 5 cards. Likewise, should all 5 cards in the queue be used, it will be refilled here.
26+
27+=== Phase 2 (Discards)
28+Phase 2 begins by "burning" the head of the queue. The player removes the head of the queue and places it on the to-be-shuffle-back-in pile.
29+
30+The player then must place one of their cards on the stack.
31+
32+Should the player have any cards in their hand and the queue not be full, they can optionally put cards from their hand into the queue.
33+
34+=== Phase 3 (Replenish)
35+
36+At this phase should the queue be less than 5 cards, it is replenished by drawing from the deck.
37+
38+Also, the players hand is replenished to 5 cards.
39+