views:

21

answers:

0

Hi I am currently developing a MIDlet that plays Black Jack with a server. The MIDlet itself only sends out the following string signals:"wage amount","deal","hit",and "stand" to the dealer which is the server. Then the server deals with all the game logic and betting system. When the MIDlet receives response from the server, it will display the corresponding card and message on the screen.Each message indicates the current status and balance of the player. The status may be"busted","push","dealer wins" or " player wins." Now, I have got all the above working, however, how do I implement it further so the server can deal with at most four players in a round on a turn basis? It would be really helpful if anyone can describe a general design architecture to me. Thank you so much