diff options
author | Nathan Vance <nathav63@gmail.com> | 2015-02-16 14:55:31 -0500 |
---|---|---|
committer | Nathan Vance <nathav63@gmail.com> | 2015-02-16 14:55:31 -0500 |
commit | 7761b42b8706545e09b765df8b4f1080d7d34e8c (patch) | |
tree | 62b2aab4289989679ac64655b349a8d38833b625 | |
parent | Added descriptions for special cards (diff) | |
download | 7w-7761b42b8706545e09b765df8b4f1080d7d34e8c.tar.gz 7w-7761b42b8706545e09b765df8b4f1080d7d34e8c.tar.bz2 7w-7761b42b8706545e09b765df8b4f1080d7d34e8c.zip |
Added deck data
-rw-r--r-- | decks.c | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -0,0 +1,38 @@ +#include "7w.h" +#include <time.h> + +int* get_intarray(int size); + +static int era1[] = {0, 1, 2, 3, 6, 7, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 0, 3, 5, 13, 17, 23, 26, + 1, 2, 8, 15, 17, 22, 24, + 4, 9, 10, 11, 12, 16, 20, + 13, 14, 17, 18, 19, 21, 25}; +static int era2[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, + 0, 1, 2, 3, 14, 16, 19, + 4, 5, 6, 10, 12, 17, 20, + 8, 11, 12, 13, 16, 18, 21, + 7, 9, 11, 14, 15, 16, 22}; +static int era3[] = {0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, + 1, 5, 7, 10, 11, 15, + 2, 4, 8, 10, 12, 17, + 0, 2, 6, 7, 10, 13, + 3, 8, 9, 11, 14, 16}; + +void shuffle(int *deck, int n) +{ + int scratch[n]; + int i = 0; + int size = n; + srand(time(NULL)); + while(n) { + scratch[i++] = deck[rand()%n]; + n--; + } + for(i = 0; i < size; i++) deck[i] = scratch[i]; +} + +int* getdeck(int era, int numplayers) +{ + int *ret = get_intarray(numplayers*7); +} |