views:

245

answers:

1

Hi ALL,

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 appreciate any kind of advise.

Many thanks!

+4  A: 

There's JPC-API which provides general playing card services and rendering. Beyond that you need to be more specific about what you need. The problem you describe is a little larget in scope. Are you looking for help in

  • Lobby services (finding other players)
  • Gaming network protocol (to communicate moves between players)
  • Gaming theory (to write the computer opponent)
  • Winning condition detection
  • Game UI development

or some other aspect?

Jherico
@Jherico - thanks for your input, I'll start from creating UI and gaming network protocol to get going with basic functionality and then I'll try to add mentioned functionalities.
Registered User