How can servers let multiple gamers play together in real time?

759 views

Gamers can be across the globe yet if you have good enough internet connection you can play with them, see what each other see and do inside the game real-time without delays.

In: Technology

5 Answers

Anonymous 0 Comments

There’s a lot of very low level detail, but it basically comes down to sharing the workload between the servers and the player’s local.machine (the “client”) and having each connection to the server processed independently of the others so they don’t get mixed up.

If you’re in a game with another person, and they move to the left, the server doesn’t send the whole screen. It just sends a message that “player B moved to the left” and then your computer processes that instruction and draws the screen for you.

You are viewing 1 out of 5 answers, click here to view all answers.