i developed a real-time fast paced shooter game on Windows Phone a couples month ago, then i ported the Game over to Windows also.
Now i am thinking about making the game multiplayer-capable but i have a few questions since i never done it before:
Considering that its a shooter so there is a lot of bullets, game objects of all types, players/mobs movements etc... :
- Is working with Asynchronous sockets fast enough in this situation?(WP player with Windows player or WP with WP or Windows with Windows)
- Note: Players would be communicating over a centralized sockets server
- Is the performance of Windows Phone Sockets good enough?(3G/4G, Wifi)
- Should i use TCP or UDP or both(UDP for objects/actions and TCP for chat for example)
- How would you proceed to send the data, what kind of data would you be sending and how often?
Thanks a lot in advance! :)