chaostreff-flensburg / node-newton-wars

A reimplementation of the newton wars game in node.
MIT License
1 stars 0 forks source link

Server-side physics and game loop #1

Open nicklasfrahm opened 7 years ago

nicklasfrahm commented 7 years ago

The concept of the whole server communication is such, that we only send the necessary data delta. This means that for example, if a user joins, not all users are sent to the other clients again, but only the new user is added. The same applies for the game loop. If objects are moved, more precisely the rockets. The added points need to be sent somehow. But not the whole points array. This issue should implement the following:

Pfannkuchensack commented 7 years ago

http://buildnewgames.com/real-time-multiplayer/ Some Infos