poCker
|
Contains functions responsible for recognition of poker rankings based on Player hole cards and currently revealed community cards. More...
#include "player.h"
Go to the source code of this file.
Functions | |
int | detectRoyalFlush (PlayingCard *[], int) |
Detects if the given card set would result in a Royal Flush. | |
int | detectStraightFlush (PlayingCard *[], int) |
Detects if the given card set would result in a Straight Flush. | |
int | detectFOaK (PlayingCard *[], int) |
Detects if the given card set would result in a Four Of a Kind. | |
int | detectFullHouse (PlayingCard *[], int) |
Detects if the given card set would result in a Full House. | |
int | detectFlush (PlayingCard *[], int) |
Detects if the given card set would result in a Flush. | |
int | detectStraight (PlayingCard *[], int) |
Detects if the given card set would result in a Straight. | |
int | detectTOaK (PlayingCard *[], int) |
Detects if the given card set would result in a Three Of a Kind. | |
int | detectTwoPair (PlayingCard *[], int) |
Detects if the given card set would result in a Two Pair. | |
int | detectPair (PlayingCard *[], int) |
Detects if the given card set would result in a Pair. | |
int | detectHighCard (PlayingCard *[], int) |
Calculates players' High Card score. | |
int | countPipsInCards (enum Pip[], int[], PlayingCard *[], int) |
Takes a deck of cards and counts the amounts of each pip in the deck. | |
void | sortCardsInDescOrder (PlayingCard *[], int) |
Sorts the elements of the given array to be sorted in descending order of card values. | |
Contains functions responsible for recognition of poker rankings based on Player hole cards and currently revealed community cards.
All methods return a tie breaker score which helps with resolving tie breaks in case two or more players have the same hand. Higher scores win ties. Each method calculates their tie break score differently.
int countPipsInCards | ( | enum Pip | found_pips[], |
int | found_pips_counts[], | ||
PlayingCard * | cards[], | ||
int | cards_count ) |
Takes a deck of cards and counts the amounts of each pip in the deck.
found_pips | An array which will be populated with the found Pip enums. |
found_pips_counts | An array containing how many of each Pip were found. |
cards | PlayingCard structs to analyze. |
cards_count | The size of the cards array. |
found_pips and found_pips_counts should be initialized with cards_count lengths before calling this function. To ensure that the function does not reach outside of those arrays, they should preferably be initialized with the length of cards_count.
int detectFlush | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Flush.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Flush is a hand consisting of 5 cards of the same suit. For example: Ace of Spades, 4 of Spades, Queen of Spades, 7 of Spades, 10 of Spades
In the event of a tie between players, the highest card in the Flush wins. Rule of the highest card continues through the rest of the cards in descending order, in case a tie is still unbroken. If two or more players have cards of exact same value, tie becomes unbreakable.
The score of a Flush is calculated as follows: Sum of (cardValue * 20 ^ n) for cards in descending order, where n = 4 -> 0
int detectFOaK | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Four Of a Kind.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Four Of a Kind is a strong hand consisting of 4 cards of equal value. For example: 8888Q, 9999A, 4444J
In the event of a tie between players, the highest value of those four cards that make up the rank wins. If two or more players have Four of a Kind consisting of same cards, highest 5th kicker card wins. If the kicker card could not resolve a tie, it becomes unbreakable.
The score of a Four Of a Kind is calculated as follows: (value of card that makes the FOaK) * 100 + (value of 5th card)
int detectFullHouse | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Full House.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Full House is a hand consisting of 3 cards of one value and 2 cards of another For example: JJ888, 33AAA, QQ555, 44KKK
In the event of a tie between players, the highest value of the card making up the "trio" wins. If two or more players have a Full House with the same "trio", the highest value of the remaining pair wins. If the card pair could not resolve a tie, it becomes unbreakable.
The score of a Full House is calculated as follows: ("trio" card value) * 100 + (pair card value)
int detectHighCard | ( | PlayingCard * | cards[], |
int | cards_count ) |
Calculates players' High Card score.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
High Card is the weakest hand possible where a combination of player's and community's cards do not interact to create a stronger hand.
The score of a High Card is calculated as follows: Sum of (card value * 20 ^ n) for all 5 cards in descending order, where n = 4 -> 0
int detectPair | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Pair.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Pair is a hand which consists of 2 cards of equal value. For example: KK827, QQ24A, JJ76Q
In the event of a tie between players, the higher card pair wins. If two or more players have a Pair of the same value, the highest card from the remaining 3 cards wins. If the highest cards are the same, the second highest determines the winner. Same for the lowest card. If two or more players have a set of cards with the exact same values, tie becomes unbreakable.
The score of a Pair is calculated as follows: (pair card value * 20 ^ 3) + (highest non-pair card * 20 ^ 2) + (2nd highest non-pair card * 20) + (3rd highest non-pair card)
int detectRoyalFlush | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Royal Flush.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Royal Flush is the best hand possible. It consists of A, K, Q, J and 10, all of the same suit.
While ties are very unlikely, they are unbreakable. Two or more players having a Royal Flush results in an instant tie.
Since Royal Flush ties can't be broken, they don't have any scores calculated. The returned value is a simple integer behaving like a boolean indicating whether or not a Royal Flush was found.
int detectStraight | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Straight.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Straight is a hand which has 5 cards of consecutive value, but of different suits. For example: T9876, KQJT9, 65432, 87654
In the event of a tie between players, the highest card in the Straight wins. If two or more players have cards of exact same value, tie becomes unbreakable.
The score of a Straight is simply the value of the highest card.
int detectStraightFlush | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Straight Flush.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Straight Flush is the 2nd best hand possible. It consists of 5 cards of consecutive value and of the same suit. For example: 10 of Clubs, 9 of Clubs, 8 of Clubs, 7 of Clubs, 6 of Clubs.
While ties are unlikely, in the event of one happening, highest card wins. If two or more players have Straight Flushes with same highest cards, a tie becomes unbreakable.
The score of a Straight Flush is equal to the highest card's value.
int detectTOaK | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Three Of a Kind.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Three Of a Kind is a hand which consists of 3 cards of equal value. For example: TTT23, 666Q2, 999AQ
In the event of a tie between players, the higher card making up the TOaK wins. In a game with only one full deck of playing cards, it's impossible for 2 players to have a Three Of a Kind consisting of cards with the same value.
The score of a Three Of a Kind is simply the value of the card the TOaK is made of.
int detectTwoPair | ( | PlayingCard * | cards[], |
int | cards_count ) |
Detects if the given card set would result in a Two Pair.
cards | Array of pointers to playing cards. |
cards_count | Size of the cards array. |
Two Pair is a hand which consists of 2 sets of 2 cards of equal value. For example: 9922A, 55TTK, QQ778
In the event of a tie between players, the higher card pair wins. If the higher pairs are the same, the higher second pair wins. If both second pairs are the same, the highest value of the 5th kicker card wins. If even the kicker card is of the same value, the tie becomes unbreakable.
The score of a Two Pair is calculated as follows: (value of higher pair card * 20 ^ 2) + (value of lower pair card * 20) + (value of kicker card)
void sortCardsInDescOrder | ( | PlayingCard * | sorted_cards[], |
int | cards_count ) |
Sorts the elements of the given array to be sorted in descending order of card values.
sorted_cards | The array to sort. Its elements will have their indexes modified. |
cards_count | The length of the array. |