I just released Titan HD for iPad 2.0 with online multiplayer support. This is a turn-based board game. It uses GAE for most game logic but I had to add another server to handle some things GAE couldn't (specifically, live connection multiplexing using WebSockets).
I can give you a rundown of what I had to do if you're interested. However, if you're going the browser based route, some of your decisions will be different from mine. For example, not all browsers support WebSockets, so you need some kind of compatibility layer like
socket.io or SockJS (I wouldn't recommend the Channel APIs due to stability). Also, I used Game Center for authentication, rather than OpenID or the like.
- Kris
On Wednesday, December 12, 2012 11:39:43 AM UTC-8, Bryan wrote:
Thinking of making a very simple turn based mobile game for Facebook or Google users. Is anyone aware of an existing working platform on Google Code I could deploy to my GAE setup?