That’s literally how every 3d game works (barring a few procedural games maybe). Now they just stream those texture and meshes as needed and presumably cache them.
Don’t get distracted by this terrible piece of an article. It never states how long this peak was. It could have been just 100ms. So interpolating this to 81gb/h make no sense at all. It’s just pure click bait.
In the end only the total volume downloaded matters (which the article of course doesn’t mention). Why wouldn’t you want to receive that as fast as possible?
LeroyJenkins@lemmy.world 4 weeks ago
it’s not the same. 3d games use polygons and shaders and whatnot. you can optimize things much easier in that space since it’s a lot more computational. 3d tiling is literally a bunch of png files being streamed down.
Decq@lemmy.world 4 weeks ago
Yes, just like msfs does. They still use polygons and shaders… Polygons that make up the terrain and more and shaders that sample png tiles as textures… And much more
zalgotext@sh.itjust.works 4 weeks ago
Other games store those png tiles locally. Which, sure, increases the installed size of the game. Storage is cheap though, might as well use it right? Like, even if this article is off by an order of magnitude, 8Gb/h is still a ton of data to stream just to play a video game. If other games also do that, that’s news to me. But i was under the impression that games try to be as efficient as possible when it comes to networking. Storing all your texture tiles in the cloud and making your clients download and redownload them seems the opposite of efficient, or at least that they optimized for the wrong thing.
Decq@lemmy.world 4 weeks ago
Thats why there is a cache, so you don’t re download every time… So only new locations you visit will be streamed, but it will still be way less than having to pre install maps with locations you might never even visit in game… I don’t get why this is so hard to grasp.
Do you manually download all your maps from google maps/earth every time before you use it? No you don’t, you let the program figure out which parts you actually need and stream it to you. Same exact thing, fot the exact same reason.
Games try to be as efficient possible with their network code for real-time updates, so latency is minimalized. This is not at all important if you prefetch stuff minutes before you actually need it.
AlotOfReading@lemmy.world 4 weeks ago
A highly compressed, global base map at 1m resolution is somewhere on the order of 10TB. MSFS is probably using higher resolution commercial imagery, and that’s just the basemap textures, most of which you’ll never see.
LeroyJenkins@lemmy.world 4 weeks ago
kinda… graphics all end up as polygons eventually but 3d tile rendering has a lot of different considerations and limitations you don’t have with rendering a normal 3d asset rendering. check out things like CesiumJS that is an equivalent kind of technology