Tagged Questions

Questions relating to development on the subject of all variants of poker.

learn more… | top users | synonyms

105
votes
12answers
9k views

Defeating a Poker Bot

There is a new Open Source poker bot called PokerPirate. I am interested in any creative ways in which a web application could detect/thwart/defeat a poker bot. (This is a purely academic ...
24
votes
9answers
1k views

Generating all 5 card poker hands

This problem sounds simple at first glance, but turns out to be a lot more complicated than it seems. It's got me stumped for the moment. There are 52c5 = 2,598,960 ways to choose 5 cards from a 52 ...
21
votes
11answers
1k views

Detecting an online poker cheat

It recently emerged on a large poker site that some players were possibly able to see all opponents cards as they played through exploiting a security vulnerability that was discovered. A naïve ...
18
votes
7answers
5k views

How do I programmatically calculate Poker Odds?

I'm trying to write a simple game/utility to calculate poker odds. I know there's plenty of resources that talk about the formulas to do so, but I guess I'm having trouble translating that to code. ...
15
votes
2answers
3k views

7 Card Poker Hand Evaluator

Does anyone know a fast algorithm for evaluating 7 card poker hands? Something which is more efficient than simply brute-force checking a every 21 5-card combination of hands from a set of 7. Cheers, ...
11
votes
11answers
621 views

Which is faster — sorting or multiplying a small array of elements?

Reading through Cactus Kev's Poker Hand Evaluator, I noticed the following statements: At first, I thought that I could always simply sort the hand first before passing it to the evaluator; but ...
11
votes
7answers
6k views

Building a Texas Hold'em playing AI..from scratch

I'm interested in building a Texas Hold 'Em AI engine in Java. This is a long term project, one in which I plan to invest at least two years. I'm still at college, haven't build anything ambitious yet ...
9
votes
4answers
1k views

NP-Hard? Algorithmic complexity of online poker collusion detection?

What's the best way to describe the algorithmic complexity of collusion detection for a ten-million-player online poker site? Assume (I don't think these assumptions make much difference so feel free ...
8
votes
4answers
220 views

Implementing a Dynamic Award System

I have been developing a Online Poker Game. But I keep hitting a wall. I want to implement Awards into the system, but I want them to be dynamic. Meaning I don't want to recompile for every award I ...
8
votes
2answers
299 views

Algorithm to find streets and same kind in a hand

This is actually a Mahjong-based question, but a Romme- or even Poker-based background will also easily suffice to understand. In Mahjong 14 tiles (tiles are like cards in Poker) are arranged to 4 ...
7
votes
1answer
386 views

C# Poker Libraries

I'm building a simple poker website for a demo. Anyone know where I can find a set of classes encapsulating card, deck, hand etc. ? Google is not being very helpful, (most links are to codeproject ...
6
votes
3answers
720 views

A Better C# Poker Framework Design?

I'm writing a poker framework in C# and I don't like the design I currently have. My goal is to have a game engine that can play multiple AI agents against each other in batch mode very quickly, and ...
6
votes
10answers
913 views

How can I teach a computer system how to play poker?

At first I have 5 cards by random, of course. Only one time I can change and also l have already taught [the program] the poker rules in my system. My problem is how can I choose "I don't need this ...
6
votes
7answers
3k views

Optimizing Lookups: Dictionary key lookups vs. Array index lookups

I'm writing a 7 card poker hand evaluator as one of my pet projects. While trying to optimize its speed (I like the challenge), I was shocked to find that the performance of Dictionary key lookups was ...
6
votes
10answers
3k views

Function to determine whether a poker hand is a straight?

for a homework assignment I was given a Card class that has enumerated types for the Rank and Suit. I am required to compare two pokerhands (each hand is an ArrayList of 5 cards) and decide the ...
5
votes
5answers
277 views

Dice Question (Full House and Straight recognition)

I'm making a dice game. There are 5 dice in which I have all the values for and I need to determine if they make up a full house (3 of one and 2 of another), small straight (1-4, 2-6 or 3-6) or a ...
5
votes
4answers
554 views

Algorithms for testing a poker hand for a straight draw (4 to a straight)?

I'm in the throes of writing a poker evaluation library for fun and am looking to add the ability to test for draws (open ended, gutshot) for a given set of cards. Just wondering what the "state of ...
5
votes
7answers
309 views

Is there a simpler way than this to calculate a straight in poker?

I have an algorithm for calculating whether a player's hand holds a straight in Texas Hold'em. It works fine, but I wonder if there is a simpler way to do it that does not involve array/string ...
5
votes
11answers
590 views

Why does my isFullHouse() method also accept a simple three-of-a-kind?

I am having problems with my full house method. I thought it was as simple as checking for three of a kind and a pair. But with my current code i am getting a full house with only a three of a kind. ...
5
votes
1answer
459 views

Regex to calculate straight poker hand?

Is there a regex to calculate straight poker hand? I'm using strings to represent the sorted cards, like: AAAAK#sssss = 4 aces and a king, all of spades. A2345#ddddd = straight flush, all of ...
4
votes
2answers
88 views

Can I do better than binary search here?

I want to pick the top "range" of cards based upon a percentage. I have all my possible 2 card hands organized in an array in order of the strength of the hand, like so: AA, KK, AKsuited, QQ, ...
4
votes
8answers
377 views

Commercial-grade randomization for Poker game

I need some advice on how to tackle an algorithmic problem (ie. not programming per se). What follows are my needs and how I tried to meet them. Any comments for improvement would be welcome. Let me ...
4
votes
4answers
606 views

Algorithm to determine the winner of a Texas Hold'em Hand

Ok, so I am making a Texas Hold'em AI for my senior project. I've created the gui and betting/dealing procedures, but I have reached the part where I need to determine who won the hand, and I do not ...
4
votes
3answers
319 views

Cards representation in prolog

I'm trying to learn prolog. This are my first steps with this language. As exercise I want to write program which can recognize some poker hands (Straight flush, Four of a kind, Full house etc.). I'm ...
4
votes
3answers
1k views

Does an open-source poker-related math library exist?

I would like to develop a poker odds application that can give the probability of various game situations. Since the application will be mostly statistical analysis, I figured I would see if someone ...
4
votes
4answers
452 views

Parsing in Ruby (on Rails)

I want to write a Rails app to assist me with my online Poker. I play on PokerStars, and there is text data available for each hand that is played. The format it comes in is this: PokerStars Game ...
4
votes
5answers
1k views

Design Pattern: Parsing similar, but differing schemas in text files

thanks in advance for your help. I am wondering if there is a (design) pattern that can be applied to this problem. I am looking to parse, process, and extract out values from text files with ...
3
votes
1answer
67 views

Poker lobby architecture

I have created an online poker system using WCF net.tcp and WPF for the front end. It works great, but I feel there are some things I can improve upon when I convert the front end to Silverlight. ...
3
votes
2answers
144 views

How to loop through all the combinations of e.g. 48 choose 5 [closed]

Possible Duplicate: How to iteratively generate k elements subsets from a set of size n in java? I want to build my own poker hand evaluator but am having trouble with a particular part. ...
3
votes
1answer
106 views

Porting existing C++ code to R

I would like to port the SpecialK Poker Hand evaluator to R. I think this should be relatively easy using the Rcpp package, but I have no idea where to begin. The existing tutorials seem to focus ...
3
votes
6answers
90 views

(How to manipulate)Poker Positioning using ENUM

Let's say I created the following class: public enum Position { Dealer(1), //1 SB(2), //2 BB(3), //3 UTG(4), //4 UTG1(5), //5 UTG2(6), //6 UTG3(7), //7 ...
3
votes
3answers
170 views

Designing a hand history class for Texas Hold'em in Java

I am trying to come up with a Java hand history class for Texas Hold'em and wanted to bounce an idea off here. Requirements are that every action is stored and there is an efficient way to traverse ...
3
votes
1answer
250 views

poker side pot algorithm

I'm trying to run a poker simulation and have the following data about a poker table: - how much each player contributed to the pot - a "hand score" (after flop) for each player (ie, if ...
3
votes
3answers
164 views

preg_replace multiple instances on 1 line?

I have text like this from poker software (I have highlighted the parts I need to replace). --- FLOP --- [Jh 9h Ah] driverseati checks darrington has 15 seconds left to act darrington bets ...
3
votes
4answers
400 views

Regex to calculate straight poker hand - Using ASCII CODE

In another question I learned how to calculate straight poker hand using regex (here). Now, by curiosity, the question is: can I use regex to calculate the same thing, using ASCII CODE? Something ...
3
votes
5answers
1k views

finished writing a poker hand evaluator looking for a new project

just finished writing a five card poker hand evaluator in C++. now im looking for a new project about the same level of difficulty. maybe a very simple DOS command parser?
3
votes
6answers
2k views

Scoring Poker Hands with Deuces Wild

I'm looking for code or a description of an algorithm for determining the score of a poker hand when deuces are wild. I'd like code that is not encumbered by license fees, GPL, patents, etc. I know ...
2
votes
1answer
72 views

Mental Poker Toolkit

Can anyone suggest a toolkit or framework (or maybe an idea) that can be useful to implement secure and cheat-resistant online poker (texas hold'em) client without trusted third party server?
2
votes
2answers
118 views

How to count longest streak per player

I have a mySQL poker database called TournamentXPlayer that contains a primary index called TournamentXPlayerID and TournamentID, PlayerID, Finish, and Payout. I've been looking at ways to count each ...
2
votes
2answers
228 views

Java poker hand evaluator to not working

I'm trying to figure out how to pass this but actually be working. I am afraid I'm getting false positives. public static boolean hasPair(Card[] cards) { Card[] pair= new Card[5]; for(int ...
2
votes
3answers
298 views

Trying to Include pypoker, poker-eval package in Python

Ok, so i finally got poker-eval and pypoker to install correctly. If i go to the pypoker folder in cygwin, and type "python test.py", it runs the program fine. However, if i copy the test.py file over ...
2
votes
6answers
507 views

Poker Hands in Java

Is there any easy method to compare two poker hands? I'm going about this pretty naively, so if anybody has experience doing this, it could be helpful.
2
votes
4answers
279 views

Get points over the tangent circle(or oval) and balance poker chips on

I try to display some chips for a free poker game (HTML/Javascript client, python server) game. There are seats around the center of the table. for each seats, i know cosinus, sinus, radius (distance ...
2
votes
4answers
333 views

How can I print all possible “full houses” in poker with Java?

I was wondering if anyone knew how to implement the code in java to print all cases of full house. There are roughly 3700 different cases. So far i'm around 2700 but I am having trouble changing the ...
2
votes
2answers
520 views

IComparable and OrderBy. Trying to sort Poker hands with C#

I am attempting to create a simple program that analyzes the poker hands. Given n hands/players and the community cards (Texas hold 'em) I would like to determine the winner(s). However, my test is ...
2
votes
6answers
1k views

Is Collections.shuffle suitable for a poker algorithm?

there is a poker-system in java, that uses Collections.shuffle() on all available cards before the cards are dealt. So a collection of 52 cards 2-9, J, Q, K, A in 4 types. After that we ...
2
votes
2answers
495 views

Where can I operate a PokerBot (and other games) legitimately?

I'd like to build a PokerBot (and a few other games) for the intellectual challenge. However, I only want to do this in an ethical and legal way. So, I need a game server where all players and the ...
1
vote
2answers
110 views

Poker algorithm hand evaluator

I'm working on getting my Poker to evaluate the player hand. I can get the Flush and the jack or better pair to work but am running into problems figuring out how I would do the rest. Any suggestions ...
1
vote
2answers
106 views

Video Poker in C++

I'm starting to write a video poker program and I'm running into some issues. I have a Hold function as you can see below: void Game::Hold( bool& choice ) { if( choice == true ) { ...
1
vote
1answer
119 views

Java library to calculate the equity of texas poker hands

Does anyone know a fast java algorithm\library to calculate the equity or the probability of winning (as the program PokerStove) of texas poker hands? thanks in advance

1 2