Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
129 views

Card game AI approaches? (Imperfect information)

What are some algorithms or methods used in imperfect information games such as card games? I'm planning to enhance the "expectimax" algorithm by giving it random pattern (still don't have an idea ...
2
votes
3answers
503 views

Opensource simple card game/solitaire engine example needed

I am looking forward to write a card solitaire game, including AI (if this simple can be called so) playing algorithm. No multiplayer facilities needed. I suppose there are some wheels I need not to ...
1
vote
0answers
43 views

J2ME - changing views in game

I am currently writing a J2ME app for a card game which begins at a menu screen which gives the option to select a number of different card games to play. This menu screen is a form and I need to know ...
1
vote
2answers
166 views

multiplayer online flash games?

I have an idea to create a multiplayer online card game and I prefer to use flash, like yahoo chess(it is not a card game), zynga poker etc. I wanna know is there any tutorial which is useful for ...
0
votes
1answer
44 views

Server in C decomposition handling processes durring managing server responses to client

Hello I'm making server for simple Memory Game. I need little help with decomposition in my program, I know what I want but I don't know how should I write it in C, cause I don't have many ...
0
votes
1answer
57 views

actionListener using in Memory Game Client - server aplication

I'm solving one problem and I've kinda stucked. I'll start with some background. I'm programing memory game (for example it is something like this http://www.mathsisfun.com/games/memory/index.html). ...
0
votes
0answers
284 views

Multiplayer card game using PHP/Ajax and mysql [closed]

I am designing a map game, using PHP and MYSQL. I don't know how to make the players who sign-in to the website to see other players who are also connected to the site and be able to chat with one ...
0
votes
1answer
459 views

C++ card game, exercise with classes [closed]

Hallo everybody, I wrote a little code to get some exerice in C++... The code works... but it has a little problem... if you want to solve the problem go ahead and read, if you don't want to please ...
0
votes
5answers
213 views

Using javascript to insert id into list elements

I am messing around with a deck of cards that I made.I have it set up so that there is a method that spits out cards by suit into a list, so if I want spades I get a <ol> of all of the spades ...
0
votes
2answers
352 views

“Face-up” Solitaire Algorithm

I'm designing a program to solve solitaire games in the highest-scoring way possible. The game is scored on the following point system: 10 points for moving Aces to top 9 points for moving 2s to top ...
-2
votes
1answer
263 views

poker(Texas Holdem) winning percentage between multiple players on preflop [closed]

I am working on an application where I need to calculate poker odds. There would be 2 or more players getting 2 cards each as in preflop condition. Now I have to calculate the percentage to ...