Best solution for multiplayer realtime Android game

Posted by piotrek on Game Development See other posts from Game Development or by piotrek
Published on 2011-11-10T22:13:34Z Indexed on 2011/11/11 18:29 UTC
Read the original article Hit count: 552

I plan to make multiplayer realtime game for Android (2-8 players), and I consider, which solution for multiplayer organization is the best:

  1. Make server on PC, and client on mobile, all communition go through server ( ClientA -> PC SERVER -> All Clients )

  2. Use bluetooth, I don't used yet, and I don't know is it hard to make multiplayer on bluetooth

  3. Make server on one of devices, and other devices connect ( through network, but I don't know is it hard to resolve problem with devices over NAT ? )

  4. Other solution ?

© Game Development or respective owner

Related posts about architecture

Related posts about android