Remix.run Logo
ltr_ 2 years ago

Q: any resource to learn about modern approaches for real time game protocols?

Thaxll 2 years ago | parent | next [-]

One of the best: https://gafferongames.com/

shdh 2 years ago | parent [-]

Definitely the best

mfatihmar 2 years ago | parent | prev | next [-]

shameless plug: https://github.com/0xFA11/GameNetworkingResources

nazka 2 years ago | parent [-]

Thank you for sharing! Do you have any state of the art project or article or pattern etc... I should start diving into?

xeonmc 2 years ago | parent | prev | next [-]

Part 1: https://www.youtube.com/watch?v=W3aieHjyNvw

Part 2: https://www.youtube.com/watch?v=odSBJ49rzDo

cobalt 2 years ago | parent [-]

And https://www.youtube.com/watch?v=A5KW5d15J7I

liontwist 2 years ago | parent | prev [-]

The main difference in modern games is the set of things in the world that might need sync has grown, much more than the available bandwidth.

So need sophisticated logic to filter what needs to be updated in a given frame based on relevance, to fit within a packet,

And of course now you need cloud systems for matchmaking, telemetry, etc.