Simple multiplayer game

hello,

Im little bit cofused about all those technologies are available for game developing. I would apprisiate some tips of what fits most to my case.

I am a programer so i got the besic knowlage, i guess. What i want to develop its a multiplayer card game, simple, not extremy graphics. I want to hold states for players and different games, have a database with the scores and things like that. Just need a platofmorm to make as easy as possible the user interaction and “turn play” mode.

give me some spesific anwsers please

and thank you

to get answers you will need to ask some questions :smiley:

ha…:slight_smile: I thought i already wrote too much.

Lets say a “poker” game for example. What i need to build the interface, client site? And what for the server site, to hadle the indiidual games and actions?
Last time i was in University i remember i used Java applet and these socket libraries using multithreading for the server site, also some rmi staff, it was ok i think i might do the same now. But i was wondering if there is something new out there after 3 years :), maybe better

Use HTTP for client-server communication. So you can simply use Servlets, Jsp or even PHP for the server side, which can be used on cheap rentable servers. You will also avoid firewall and proxy problems this way. A poker game is even possible to completely run on the server and just deliver html-pages to the browser.

This is one solution buti believe its a little hard, and running all the game in the server i dont think its effeciency. Anyway i was looking something like a game engine or a framework to start builfing on this.