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

learn more… | top users | synonyms

-1
votes
1answer
55 views

(C++) Counting duplicates in an array, and then moving that counted number to a corresponding position in a separate array [closed]

I've just begun learning to code c++, so please bear with me, my knowledge is very very limited. This is my first program written from scratch. I'm writing a program that looks at a hand of five ...
-4
votes
2answers
50 views

How to identy a Poker hand in c++ [closed]

I have an assignment in which I need to identify a hand of Texas Hold Em Here is the assignment: http://www.scribd.com/doc/142850594/proj1 And here is my code: http://pastebin.com/Ts387iDw What I ...
0
votes
1answer
44 views

How do I connect my player's changing hands and gameboard to an existing poker hand evaluator?

Although I'm not making a poker game, the objective of the game is the player with the highest poker hand wins. There are four players in my game. I was able to implement a gameboard and a function ...
0
votes
1answer
51 views

Table structure for poker hands [closed]

I'm making an api for a game call shelem by PHP, the hands logic is kinda like poker. I was wondering what is the best and fastest way to store hands into mysql table. I'm concerning about table ...
1
vote
1answer
62 views

How can I find the highest poker hand from a 9 card hand between 4 players?

I've tried to look through several sources online and they all deal with 5 card and 7 card hands. Also, I'm not really looking for the code, I'll try to do that on my own (although perhaps if you're ...
1
vote
1answer
41 views

Poker Hand Evaluation with Jokers

I've written a Naive Poker Evaluation algorithm for a Hold 'Em Poker game I'm developing and I'm wondering what would be the best way to evaluate Jokers within these hands. A thought I had would be ...
-1
votes
1answer
49 views

What is the best way to position players, cards on poker table in game app? [closed]

I am building html5 game. It will be using jquery for dom manipulation and coffeescript.I already have poker table and cards. Now I want to place poker players and cards respectively to table. Doing ...
-9
votes
1answer
94 views

Creating an array to hold a poker hand in C?

I have an assignment due in my computer science class (I posted this question a couple weeks ago but the way it was explained doesn't fit the program I'm supposed to do). I already have a program that ...
0
votes
1answer
57 views

A simple way to calculate outs on a poker game in java

I need to calculate the odds on a poker hand by Java. This is for a school project I don't have much time and I can't find any good and simple method or algorithm.
-1
votes
2answers
56 views

How to rotate starting player? [closed]

I'm designing a multiplayer game of poker. I have Human and Computer objects, both which implement a Player interface which contains methods necessary to a poker player. I have an ArrayList of the ...
0
votes
2answers
68 views

Initialized object array still getting null pointer exception?

I'm completely new to programming and am trying to create a Poker program in Java. This bit of code is in the Player class, where I'm trying to construct an empty hand. No matter how I fill the array ...
-6
votes
1answer
71 views

C# comparing values in an array- simple poker [closed]

I´m programming a very very simple single player poker game. I have done it to the end of the round and I have all cards saved in an array. I now need to evaluate the hands. How can I find out if ...
1
vote
1answer
50 views

C++ Image analyzing + pressing buttons

I have an idea to make a program that would analyze a running program, make a decision and push one of three buttons in that program. I want to ask: A) How should image analyzing work? My idea is ...
-5
votes
1answer
185 views

Dice Poker program [closed]

I need to create a Dice Poker program in Java for my final assignment. The program will give the user a $500 bank and the computer a $5000 bank. The player and computer will roll 5 dice and whoever ...
0
votes
0answers
63 views

Image Smear Effect

Speaking in the least technical terms, remember when Windows XP would freeze and you could smear a window around the screen? In Java, I am trying to draw pseudo 3D poker chip. Since I need the chip ...
0
votes
5answers
156 views

working with HUGE lists in python

how can I manage a huge list of 100+ million strings? How can i begin to work with such a huge list? example large list: cards = [ ...
-1
votes
1answer
112 views

Deciding who has won a hand of Poker in Java [closed]

What would be the best way to compare two (and only two) players hands in Java using the best combination for 5 cards out of 7 cards (texas hold'em)? If each card is assigned a value or enum then is ...
0
votes
1answer
294 views

Two plus Two Poker hand evaluator: How are the cards mapped to the integers?

In an effort to create the fastest possible monte carlo texas hold'em hand analyzer with C++, I am currently looking into the subject of hand evaluation. As many of you may know, there are quite a ...
-5
votes
1answer
117 views

How to implement betting around a poker table? [closed]

I am having trouble implementing a round of betting in a game of Texas Hold'em. It should start with the player left of the dealer and go around the table. The program should wait for the current ...
0
votes
2answers
108 views

VBScript Poker Game — What hand do I have?

Odd little project I am working on. Before you answer, yes, I know that vbscript is probably the worst language to use for this. I need help determining what each player has. Each card has a unique ...
0
votes
2answers
110 views

Trying to sort values in C using a bubble sort method for poker game

so I have created a (mostly working) poker hand score meter, the only problem I am currently having is that I need to sort the values of the card into order to correctly identify a straight or ...
3
votes
3answers
126 views

Texas Hold 'em recognizing one pair

I'm having trouble with my program recognizing a one pair ONLY AFTER it first checks for a two pair. When checking for the one pair first it finds it ok. But when I check for the two pair first then ...
2
votes
4answers
114 views

Which is more appropriate for static data - final char or enum?

Relating to my Poker Java program would it be a wise decision to choose enum's over chars and ints? As far as I can tell assigning a separate integer value to a char has the benefit of ease of ...
-4
votes
1answer
124 views

Poker project using JFrames [closed]

I have a Java Poker Project. I programmed two JFrames for the game and when you run the project, displays the JFrames together instead of the first and when it's done the second. Any ideas?
1
vote
1answer
61 views

Prolog - get X possible cards from a deck

I am writing a Poker program in Prolog and I your help. I want the computer to check, what kind of hands he could still get with the cards that are already lying on the table and in his hand. To do ...
0
votes
4answers
194 views

Generating 5 playing cards

I've been trying to make a poker game bot for IRC, but I can't seem to get my head around dealing the cards. I know this algorithm is quite inefficient, but it's the best I could come up with using ...
1
vote
1answer
78 views

Assigning char to int

I'm making a poker game, and i have the shuffle function (based in other answer here). Now my problem is, how can i assign the name of the card to each number of the array, for example i want ...
1
vote
1answer
53 views

Enumerating over all poker head to head hands

There are possible head-to-head match ups in Hold 'em. Assuming I have an array with each card, how can I enumerate all these match ups? For example, to enumerate all possible starting hands is: ...
-4
votes
1answer
158 views

Hold Em Poker Odds [closed]

I am looking for a java library that can run on android that has the following simple functionality: Given a pair of hole cards, plus optionally the flop, turn and river cards. What is the ...
-2
votes
1answer
63 views

What kind of client server set up should I use? [closed]

I am about to start a big project in college and have chosen to create an online poker game that can be played between android apps. I want to use a web server to act as a dealer e.g. deal cards, ...
2
votes
2answers
76 views

Poker and handling money in the pot with SQL transactions for consistency

I was wondering how to handle money in a SQL database to maintain consistency. I presume the tables would look something like below. Consider the following scenario: if two players are playing then ...
-1
votes
2answers
192 views

Documentation for poker-engine [closed]

I am interested in developing a poker game. For this purpose I found poker-engine. But with all googling and searching the projects sites I couldn't find any documentation on its API. Do you know any ...
-5
votes
1answer
120 views

develop video poker php [closed]

for my web site I'm developing a video poker in php. I used a mt_rand generator for generating an array of 52 cards. I completed my game but I noticed that the winnings are very frequent. Each hand ...
1
vote
2answers
883 views

Java code for dealing cards from a deck

I am trying to write a method to remove the specified number of cards from the top of the deck and return them as an array. This is what i have done so far. A method to create the deck, copy the ...
1
vote
1answer
156 views

Poker hands - parsing a log file in Java

Hello I am carrying on a Java project for the university, where I should analyse poker hands. I found some poker hands in a txt log file. They would typically look like this: PokerStars Zoom Hand ...
1
vote
4answers
274 views

How to check for Full House in my poker game?

Problem: Creating a video poker game for my internet programming class. I have everything else working except I'm missing something in my logic down below. It returns true for Full House when all I ...
-6
votes
2answers
212 views

Algorithm to generate poker suit patterns [closed]

I'm looking for an elegant algorithm to generate poker suit patterns for an arbitrary number of cards. A suit pattern contains all arrangements of a suit for a given set of ranks that are of ...
0
votes
4answers
128 views

Creating an array of arrays in Java

Say I have a Player class such as: public class Player { String name; int chips; int betVal; } Is the following code correct for creating the array of the players? public static void ...
1
vote
2answers
189 views

Java permutations

I am trying to write a program which can keep track of the number of chips each player has in poker. This is not a poker game, only a program which can keep the number of chips each player has. ...
1
vote
1answer
230 views

Compare Arrays in Dice game

* Coded Edited with Fix * I found an open source project that has a few bugs (I have fixed a couple so far) but this one has me stumped. The issue that I am trying to solve... If I have 3 sets of ...
0
votes
0answers
67 views

What is the theoretical and practical status of mental poker? [closed]

I'm able to find a lot of scattered papers on the development of mental poker since RSA proposed the initial solution but no recent report (i.e. after 2005) on what is the status of the problem, eg: ...
1
vote
3answers
352 views

Coding a logical sub pot system for texas holdem poker

Edit It seems like I am getting different responses on how the game actual works, and after reading the official rules, and talking to numerous poker buddies, I guess I don't know the rules myself. ...
0
votes
2answers
101 views

How can I generate all unique card pairs from a list of cards?

I am implementing a hand strength evaluator, which is to evaluate all possible pairs from the remaining 47 cards, after dealing one hand and the flop. I have implemented the evaluator, but I'm ...
0
votes
0answers
160 views

Bayesian Poker: How to find distributions that you can't find using combinatorics

This is my first question on stackoverflow and also my first time implementing a Baysian network so I will apologize ahead of time for any novice mistakes I make. The goal of my project is to ...
0
votes
1answer
96 views

Now.js + Express -> Disconnect issue

this is a question to all the Node Gurus out there: I'm new using NowJs with Express and i'm building a poker site. The main problem that I have is : When a User creates a game, opens a new window ...
1
vote
1answer
141 views

How does poker tracking software evaluates live hands

I'm just curious how they make this kind of software. Do they? Capture the screen and use an OCR library to track hands Determine the memory locations of the hands and read it directly from there ...
2
votes
2answers
457 views

Getting win percentages for Texas hold'em poker without monte carlo/exhaustive enumeration

Sorry I'm just starting this project and don't have any ideas or code, I'm asking more of a theoretical question than a programming one. It seems that every google search provides the same responses ...
2
votes
3answers
170 views

Infinite loop for a pokerhand dealer

I've been trying to make this method for the deck to deal, but once it deals 52 cards it goes onto an infinite loop. I am aware this is because I have it to generate a random number until it gets a ...
-1
votes
1answer
240 views

Java Image Handling

I am trying to do a poker hand simulator. I am using Netbeans, and by the means of its GUI editor I created a JFrame in which I added the JPG of the poker table. After doing this, is it possible to ...
17
votes
2answers
2k views

Faster poker hand evaluation

I'm trying to use "RayW hand evaluator" approach to get a card combination score (5 best cards out of 7). However I'm having some performance issues with this method. According to sources - using this ...

1 2 3