Tagged Questions

6
votes
1answer
125 views

Detect loops in computer player in a cardgame

A while ago I created a small cardgame web app for fun. The player plays against the computer and mostly it works fine. Sometimes though the computer player gets into a loop, the point of the game is ...
5
votes
6answers
1k views

Incomplete information card game

I would like to develop a trick taking card game. The game is between four players, one of which is a human and the other three hands are played by the computer. Where can I read up about developing ...
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
2answers
178 views

How to validate a Rummikub combination with Jokers

In the game of Rummikub, for those who don't know it, you have tiles in 4 colours and with 13 different numbers on them (so 4 x 13 = 52 unique tiles) which you must use to make groups. There are two ...
2
votes
3answers
703 views

Algorithm to find an optimum number of rummy-style sets?

I'm developing a card game that uses rummy-style sets of three cards. From a random selection of cards, I need the algorithm to pick out which cards would get me the highest number of sets. By ...
1
vote
1answer
346 views

Split function in objective-c (card game)

i'm beginner in objective c, i'm creating a card game for iPhone and I've a problem with a function: I create a deck of cards, shuffle it and now I need to split the deck in 4 hands (for the 4 ...
1
vote
2answers
510 views

C# ASP.Net BlackJack/CardGames Reference

I want to build a card game in C# ASP.Net. Something like blackjack or solitaire. Has anyone any ideas on how to go about doing this or any references I could refer to? Books on card game designs ...
0
votes
3answers
428 views

XNA Cards Games

I want to make a card game using C# and i found some APIs that give me access toward cards, but that APIs are for C++ that needed a wrapper. XNA framework have some way to access cards for a card game ...
0
votes
2answers
684 views

Creating a multiplayer card game

I was trying to make a multiplayer card game. I know networking concepts, so I know how to handle data between successive turns. I Haven't done a similar thing before so if any one could point me to a ...
0
votes
2answers
376 views

UIButton modify image of UIImageView

I'm developing an iPhone app, and I need a little help. I created a button and I want when I click on to change an image's imageView by the button's one. the image and button : CGRect slot1Rect = ...
0
votes
2answers
213 views

Help in creating a card stack

I'm trying to develop a card game with Flex, and I was wondering if there's a way to create an horizontal list (the cards that I have in my hand) having the elements overlapped, like you can see in ...
0
votes
2answers
257 views

Python Solitaire

This is more of a thought i had awhile rather than an actual problem to solve, maybe more a discussion, but i was wondering if it would be possible to design the game of solitaire and be abkle to play ...
0
votes
2answers
741 views

Flash CS4 [AS3]: Playing Card Deck Array

I am looking to make a card game in Flash CS4 using AS3 and I am stuck on the very first step. I have created graphics for a standard 52 card deck of playing cards and imported them into the library ...