Git Product home page Git Product logo

poker-parser's Introduction

Poker Parser

This project provides functionality to take an array of cards and be able to parse it into a hand which provides information such as an ID and a generic rank based on standard poker hands.

Useage

There are two steps involved in the process, the first being creating a Hand object. To do this, an array of five cards is passed into the ParseHand method of the client, which will validate the input to ensure five cards are present, and no duplicate cards are passed in to assume only one deck is being used. It is then checked against a set of definitions of standard poker hands to determine the highest hand that it conforms to.

var client = new PokerClient();
var cards =  new Card[] {
  new Card(Suit.Hearts, CardValue.Seven),
  new Card(Suit.Hearts, CardValue.Eight),
  new Card(Suit.Hearts, CardValue.Nine),
  new Card(Suit.Hearts, CardValue.Ten),
  new Card(Suit.Hearts, CardValue.Jack),
};

Hand hand = client.ParseHand(cards);
// hand.Definition.HandIdentifier == "straight_flush";

Once a hand is created, it can then be compared to other hands by calling the CompareHands method and passing in two hands. The return value of this method is the better of the two hands, or null in the case that both hands are equal.

Hand firstHand = ... // two pair
Hand secondHand = ... // three of a kind

Hand better = client.CompareHands(firstHand, secondHand);
// better.Definition.HandIdentifier == "three_of_a_kind"

poker-parser's People

Contributors

vilyan01 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.