Remix.run Logo
ltr_ 10 months ago

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

Thaxll 10 months ago | parent | next [-]

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

shdh 10 months ago | parent [-]

Definitely the best

mfatihmar 10 months ago | parent | prev | next [-]

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

nazka 10 months 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 10 months ago | parent | prev | next [-]

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

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

cobalt 10 months ago | parent [-]

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

liontwist 10 months 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.