Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
1k views

Is F# a good language for card game AI?

I'm writing a Mahjong Game in C# (the Chinese traditional game, not the solitaire kind). While writing the code for the bot player's AI, I'm wondering if a functional language like F# would be a more ...
9
votes
4answers
261 views

Strategies for for games with incomplete information

Are there general strategies for games with incomplete information, especially trick-taking games like Bridge and Doppelkopf? I am interested in ways to implement AI strategies for such games. The ...
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 ...
6
votes
4answers
311 views

Why won't my simple if statement work?

I've designed a simple card game where two cards are displayed and the user has to bet on whether they will get a card that is inbetween the two cards displayed. If the user doesn't want to bet, they ...
6
votes
6answers
6k views

Where can I find free playing card images for use in creating games?

I'm looking for some free-to-use-for-any-purpose (public domain, BSD-license, etc.) playing card images for use in games. I found a pretty nice collection at http://www.jfitz.com/cards/, but was ...
5
votes
2answers
466 views

Structure/algorithm for solving game with overlapping cards

Consider a card game along the lines of Tower Solitaire, Tripeaks, or Fairway Solitaire: the table consists of some number of cards which are immediately available, each of which might be covering ...
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
1k views

Is there a built in Playing Card library in .Net?

Is there some built in Card graphics library built into .Net/Windows? Is there any way to utilize the card graphics used by the various card games that come with Windows? They look really nice and it ...
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
1answer
793 views

Java: online card game library/class/e.g

I am looking for java example solution/library/class for online card game. I'm interested in creating non-profit thousand card game, with functionality to play human vs human and human vs AI. I'll ...
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
1answer
661 views

Creating a standard card game (iPhone SDK)

I am trying to create a card game with a standard deck of cards. I need to be able to create a new card on screen every time someone draws a card from the deck and then be able to continuously move it ...
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
429 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
1answer
112 views

How should i deal with the card assigment of my game?

I've checked most of the question that was display regarding my title but they were not related to what i am looking for, so i am starting my own question. The game i am trying to re-create as an ...
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 ...