Advertisement
Guest User

Poker with Structs

a guest
Jul 6th, 2023
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 4.98 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <time.h>
  5.  
  6. #define SUITS 4
  7. #define FACES 13
  8.  
  9. typedef struct
  10. {
  11.         const char *face;
  12.         const char *suit;
  13. } Card;
  14.  
  15. void get_seed_number(int *seed_number);
  16. void shuffle(Card deck[], size_t size);
  17. void deal(Card deck[], size_t size);
  18.  
  19. int check_three_of_a_kind(Card hand[], size_t size);
  20. int check_two_pair(Card hand[], size_t size);
  21. int check_pair(Card hand[], size_t size);
  22.  
  23. int main()
  24. {
  25.         Card deck[FACES * SUITS] = {0};
  26.         size_t size = FACES * SUITS;
  27.  
  28.         srand(time(NULL));
  29.  
  30.         Card *face[FACES] =
  31.         {
  32.                         &(Card){"Ace", ""},
  33.                         &(Card){"Deuce", ""},
  34.                         &(Card){"Three", ""},
  35.                         &(Card){"Four", ""},
  36.                         &(Card){"Five", ""},
  37.                         &(Card){"Six", ""},
  38.                         &(Card){"Seven", ""},
  39.                         &(Card){"Eight", ""},
  40.                         &(Card){"Nine", ""},
  41.                         &(Card){"Ten", ""},
  42.                         &(Card){"Jack", ""},
  43.                         &(Card){"Queen", ""},
  44.                         &(Card){"King", ""}
  45.         };
  46.  
  47.         Card *suit[SUITS] =
  48.         {
  49.                         &(Card){"Hearts", "Hearts"},
  50.                         &(Card){"Diamonds", "Diamonds"},
  51.                         &(Card){"Clubs", "Clubs"},
  52.                         &(Card){"Spades", "Spades"}
  53.         };
  54.  
  55.         for (size_t i = 0; i < size; i++)
  56.         {
  57.                 deck[i].face = face[i % FACES]->face;
  58.                 deck[i].suit = suit[i % SUITS]->suit;
  59.         }
  60.  
  61.         shuffle(deck, size);
  62.         deal(deck, 5);
  63.  
  64.         return 0;
  65. }
  66.  
  67. void get_seed_number(int *seed_number)
  68. {
  69.         printf("Enter the seed number you want to use: ");
  70.         scanf("%d", seed_number);
  71.         printf("\n");
  72. }
  73.  
  74. void shuffle(Card deck[], size_t size)
  75. {
  76.         for (size_t i = 0; i < size; i++)
  77.         {
  78.                 size_t j = rand() % size;
  79.                 Card temp = deck[i];
  80.                 deck[i] = deck[j];
  81.                 deck[j] = temp;
  82.         }
  83. }
  84.  
  85. void deal(Card deck[], size_t size)
  86. {
  87.         int seed_number;
  88.         Card *hand = malloc(size * sizeof(Card));
  89.  
  90.         get_seed_number(&seed_number);
  91.         srand(seed_number);
  92.         for (size_t i = 0; i < size; i++)
  93.         {
  94.                 hand[i] = deck[i];
  95.                 printf("%5s of %-8s\n", hand[i].face, hand[i].suit);
  96.         }
  97.  
  98.         int result = check_three_of_a_kind(hand, size);
  99.         if (result)
  100.         {
  101.                 printf("You have three of a kind.\n");
  102.         }
  103.  
  104.         result = check_two_pair(hand, size);
  105.         if (result)
  106.         {
  107.                 printf("You have two pair.\n");
  108.         }
  109.  
  110.         result = check_pair(hand, size);
  111.         if (result)
  112.         {
  113.                 printf("You have a pair.\n");
  114.         }
  115. }
  116.  
  117. int check_three_of_a_kind(Card hand[], size_t size)
  118. {
  119.         int counts[FACES] = {0};
  120.  
  121.         for (size_t i = 0; i < 5; i++)
  122.         {
  123.                 const char *face = hand[i].face;
  124.                 for (size_t j = 0; j < FACES; j++)
  125.                 {
  126.                         if (i != j && strcmp(face, hand[j].face) == 0)
  127.                         {
  128.                                 counts[j]++;
  129.                                 if (counts[j] == 3)
  130.                                 {
  131.                                         return 1;
  132.                                 }
  133.                         }
  134.                 }
  135.         }
  136.  
  137.         return 0;
  138. }
  139.  
  140. int check_two_pair(Card hand[], size_t size)
  141. {
  142.         int counts[FACES] = {0};
  143.         int pair_count = 0;
  144.  
  145.         for (size_t i = 0; i < 5; i++)
  146.         {
  147.                 const char *face = hand[i].face;
  148.                 for (size_t j = 0; j < FACES; j++)
  149.                 {
  150.                         if (i != j && strcmp(face, hand[j].face) == 0)
  151.                         {
  152.                                 counts[j]++;
  153.                                 if (counts[j] == 2)
  154.                                 {
  155.                                         pair_count++;
  156.                                 }
  157.                         }
  158.                 }
  159.         }
  160.         if (pair_count >=2)
  161.         {
  162.                 return 1;
  163.         }
  164.  
  165.         return 0;
  166. }
  167.  
  168. int check_pair(Card hand[], size_t size)
  169. {
  170.         int counts[FACES] = {0};
  171.  
  172.         for (size_t i = 0; i < 5; i++)
  173.         {
  174.                 const char *face = hand[i].face;
  175.                 for (size_t j = 0; j < FACES; j++)
  176.                 {
  177.                         if (i != j && strcmp(face, hand[j].face) == 0)
  178.                         {
  179.                                 counts[j]++;
  180.                                 if (counts[j] == 2)
  181.                                 {
  182.                                         return 1;
  183.                                 }
  184.                         }
  185.                 }
  186.         }
  187.  
  188.         return 0;
  189. }
  190.  
  191.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement