Engine Design Question?

Started by
1 comment, last by hahaha 16 years, 9 months ago
Would this be a good idea if when someone starts a multiplayer game, my game starts a stand alone server. Everyone will only connect to the server which will keep all the players states etc...Each client will only send between itself and the server for retrieving other clients states and setting its states?
Advertisement
Yes. That's the basic principle behind server / client architectures. Server knows everything, does everything, authorise everything, and communicate to clients only what they need to know.

Server should even have authority over every client states. Clients only act as 'terminals'. They send requests and inputs, and the server accepts the clients' inputs or not.

Everything is better with Metal.

Thanks for clearing that up:)

This topic is closed to new replies.

Advertisement