poCker
Loading...
Searching...
No Matches
handranking.h File Reference

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.
 

Detailed Description

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.

Function Documentation

◆ countPipsInCards()

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.

Parameters
found_pipsAn array which will be populated with the found Pip enums.
found_pips_countsAn array containing how many of each Pip were found.
cardsPlayingCard structs to analyze.
cards_countThe size of the cards array.
Returns
The size of the found_pips array which was filled by the function. found_pips and found_pips_counts share the same length.

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.

◆ detectFlush()

int detectFlush ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Flush.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Flush was not present, 0 is returned.

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

◆ detectFOaK()

int detectFOaK ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Four Of a Kind.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Four Of a Kind was not present, 0 is returned.

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)

◆ detectFullHouse()

int detectFullHouse ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Full House.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Full House was not present, 0 is returned.

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)

◆ detectHighCard()

int detectHighCard ( PlayingCard * cards[],
int cards_count )

Calculates players' High Card score.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. Since High Card will always be present, 0 will never be returned.

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

◆ detectPair()

int detectPair ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Pair.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Pair was not present, 0 is returned.

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)

◆ detectRoyalFlush()

int detectRoyalFlush ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Royal Flush.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
1 if a Royal Flush is present, otherwise 0.

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.

◆ detectStraight()

int detectStraight ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Straight.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Straight was not present, 0 is returned.

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.

◆ detectStraightFlush()

int detectStraightFlush ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Straight Flush.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Straight Flush was not present, 0 is returned.

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.

◆ detectTOaK()

int detectTOaK ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Three Of a Kind.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Three Of a Kind was not present, 0 is returned.
Warning
As of right now, this function will NOT work properly if you introduce the ability to play with more than 1 full deck!

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.

◆ detectTwoPair()

int detectTwoPair ( PlayingCard * cards[],
int cards_count )

Detects if the given card set would result in a Two Pair.

Parameters
cardsArray of pointers to playing cards.
cards_countSize of the cards array.
Returns
Tie breaker score to help determine a winner in case of a tie. Higher score wins. If a Two Pair was not present, 0 is returned.

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)

◆ sortCardsInDescOrder()

void sortCardsInDescOrder ( PlayingCard * sorted_cards[],
int cards_count )

Sorts the elements of the given array to be sorted in descending order of card values.

Parameters
sorted_cardsThe array to sort. Its elements will have their indexes modified.
cards_countThe length of the array.