vote up 4 vote down star
2

What would be strategies for writing a good computer opponent for a card game? Most card games are games of incomplete information, so simply mapping out and traversing the game tree as one could do with a board game does not seem too promising.

Maybe one could track what open cards are in the game (as soon as they are revealed) and assign probabilities to certain events (e.g. opponent still has 2 cards of clubs).

Does anyone have experience with this? Links and directions greatly appreciated.

Thanks! -Mark

flag

6 Answers

vote up 4 vote down

What you describe using probabilities is basically how poker AI (or a human poker expert) works. There's been an ongoing series on Coding the Wheel about creating a Poker Bot that you might be interested in reading.

link|flag
vote up 2 vote down

Another good read is the http://aigamedev.com/ site. It's very detailed and goes into code examples where it applies.

link|flag
vote up 0 vote down

a concrete answer: implement the min-max algorithm with random events like drawing of cards containing propabilities instead of hard decisions.

link|flag
vote up 0 vote down

use common sense: let the computer play by the same rules a human would (logic), and change difficulty level by changing parameters such as quality of AI memory.

I implemented a memory game which is maybe a simple case compared to what you are looking for, but it worked pretty well.

link|flag
vote up 2 vote down

Again it's a blog, but an interesting one in this area is Computer Programming and Magic: The Gathering. If nothing else it's notable because of the very complicated programming, MTG has a sea of rules for the cards and because the author actually completed his first version of the program three years ago. Tons of game projects get no further than the planning stage.

The project he describes in his blog is open source so you can see if there's anything interesting to you there and he's very prolific about posting to his blog.

link|flag
vote up 1 vote down

The University of Alberta has a Poker-playing program named Polaris that competes against professionals in tournaments. Their web site at http://poker.cs.ualberta.ca has a lot of information.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.