🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

State Snapshot Delta Compression and "Slippy Floats"

Started by
10 comments, last by sufficientreason 7 years, 3 months ago
On 56k modems, that sliding level of compression/precision would totally make sense!
On modern broadband, perhaps not as much ;-)

People with limited data plans and wireless action games may still perhaps benefit from that kind of optimization, and if you have a very crowded game and want to push as many updates as possible into a 1280 byte un-fragmented IPv6 datagram, perhaps that will help, too!
enum Bool { True, False, FileNotFound };
Advertisement

The downside is that the client then needs to keep a rolling history of snapshots it's received to then deflate the delta. This is something I can currently avoid doing, at the cost of some extra bandwidth.

This topic is closed to new replies.

Advertisement