this post was submitted on 02 Jun 2025
464 points (96.6% liked)

Technology

70916 readers
3389 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] peoplebeproblems@midwest.social 61 points 4 days ago (4 children)

Incoming 1Tb videogames. Compression? Who the fuck needs compression.

[–] FordBeeblebrox@lemmy.world 40 points 4 days ago* (last edited 4 days ago) (6 children)

Black ops 6 just demanded another 45 GB for an update on my PS5, when the game is already 200 GB. AAA devs are making me look more into small indie games that don’t eat the whole hard drive to spend my money on, great job folks.

E) meant to say instead of buying a bigger hard drive I’ll support a small dev instead.

[–] AceFuzzLord@lemm.ee 19 points 4 days ago (1 children)

That is absolutely egregious. 200GB game with a 45GB update? You'd be lucky to see me installing a game that's around 20-30GB max anymore because I consider that to be the most acceptable amount of bloat for a game anymore.

[–] FordBeeblebrox@lemmy.world 5 points 4 days ago

Agreed, it’s getting out of control. The most annoying thing is I’m not interested in PvP, just zombies, so probably 80% of that is all just bloat on my hard drive.

[–] gravitas_deficiency@sh.itjust.works 4 points 4 days ago (3 children)

Ok, I’m sorry, but… HOW???? How is it possibly two hundred fucking gigabytes?!?!? What the fuck is taking up so much space???

[–] Pieisawesome@lemmy.dbzer0.com 1 points 3 days ago* (last edited 3 days ago)

It’s mostly textures, video, and audio.

The game code is probably less than 10gb

Change languages in your game, I am willing to bet it doesn’t download a language pack for whatever language you choose.

You need multiple textures for different screens, resolutions, etc. to provide the best looking results. Multiply by the number of unique environments…

Additionally, it’s not like they can only use “high” or “low” assets, as they progressively load different level of detail assets depending on the scene or distance.

Same with all of the video cutscenes in games, they play pre-rendered videos for cutscenes.

[–] FordBeeblebrox@lemmy.world 2 points 4 days ago

More than triple the next largest game. All I want is the zombies mode and space to install other games, I could probably cull 80% of the COD suite and be just fine, but I have to carry the whole bag to reach in 🤷‍♂️

[–] DJDarren@sopuli.xyz 1 points 4 days ago

The game is 50GB, the other 200GB is just "fuck you" space.

[–] DeceasedPassenger@lemmy.world 7 points 4 days ago (1 children)

I arrived at that point a few years ago. You're in for a world of discovery. As an fps fan myself I highly recommend Ultrakill. There's a demo so you don't have to commit.

[–] FordBeeblebrox@lemmy.world 1 points 4 days ago

Thanks I’ll check it out. The gf and I like to shoot zombies but were it not part of PS Plus I surely wouldn’t give them $70. I’ve been playing a lot of Balatro recently, poker roguelike from a sole developer with simple graphics but very fun special powers

[–] corsicanguppy@lemmy.ca 6 points 4 days ago (1 children)

Do you have time to talk about our Lord and Savior FACTORIO? Here; just have a quick taste.

[–] FordBeeblebrox@lemmy.world 1 points 4 days ago

I haven’t played much since my curved monitor got broken but between Stellaris and Rimworld I don’t know if there’s enough time in a day for another build queue. I’ll check it out at some point and fall into the rabbit hole I’m sure.

[–] lud@lemm.ee 3 points 4 days ago (1 children)

Did it use 45 GB extra or were there just 45 GB worth of changes?

[–] FordBeeblebrox@lemmy.world 4 points 4 days ago

Requires an additional 45 clear to accommodate the update file and is currently sitting at 196.5. Deleting Hitman and queuing it up after the update is simple enough technically for someone like me with a wired high speed connection and no data cap, but still a pain in the ass and way too big for a single game.

[–] MonkderVierte@lemmy.ml 2 points 4 days ago* (last edited 4 days ago)

Clean up assets, are you kidding? Gamers have enough disk and time is money! /s

[–] sugar_in_your_tea@sh.itjust.works 13 points 4 days ago (1 children)

Oh, they'll do compression alright, they'll ship every asset in a dozen resolutions with different lossy compression algos so they don't need to spend dev time actually handling model and texture downscaling properly. And games will still run like crap because reasons.

[–] MentalEdge@sopuli.xyz 4 points 4 days ago (1 children)

Games can't really compress their assets much.

Stuff like textures generally use a lossless bitmap format. The compression artefacts you get with lossy formats, while unnoticable to the human eye, can cause much more visible rendering artefacts once the game engine goes to calculate how light should interact with the material.

That's not to say devs couldn't be more efficient, but it does explain why games don't really compress that well.

[–] sugar_in_your_tea@sh.itjust.works 3 points 4 days ago (2 children)

When I say "compress" I mean downscale. I'm suggesting they could have dozens of copies of each texture and model in a host of different resolutions (number of polygons, pixels for textures, etc), instead of handling that in the code. I'm not exactly sure how they currently do low vs medium vs high settings, just suggesting that they could solve that using a ton more data if they essentially had no limitations in terms of customer storage space.

[–] MentalEdge@sopuli.xyz 5 points 4 days ago* (last edited 3 days ago)

Uuh. That is exactly how games work.

And that's completely normal. Every modern game has multiple versions of the same asset at various detail levels, all of which are used. And when you choose between "low, medium, high" that doesn't mean there's a giant pile of assets that go un-used. The game will use them all, rendering a different version of an asset depending on how close to something you are. The settings often just change how far away the game will render at the highest quality, before it starts to drop down to the lower LODs (level of detail).

That's why the games aren't much smaller on console, for exanple. They're not including all the unnecessary assets for different graphics settings from PC. They are all part of how modern game work.

"Handling that in the code" would still involve storing it all somewhere after "generation", same way shaders are better generated in advance, lest you get a stuttery mess.

And it isn't how most game do things even today. Such code does not exist. Not yet at least. Human artists produce better results, and hence games ship with every version of every asset.

Finally automating this is what Unreals nanite system has only recently promised to do, but it has run into snags.

[–] Cocodapuf@lemmy.world 1 points 3 days ago

When I say "compress" I mean downscale. I'm suggesting they could have dozens of copies of each texture and model in a host of different resolutions.

Yeah, that's generally the best way to do it for optimal performance. Games sometimes have an adjustable option to control this in game, LoD (level of detail).

[–] SynonymousStoat@lemmy.world 5 points 4 days ago (2 children)

I don't know about that. These are spinning disks so they aren't exactly going to be fast when compared to solid state drives. Then again, I wouldn't exactly put it past some of the AAA game devs out there.

[–] EndlessNightmare@reddthat.com 1 points 4 days ago

Yeah, I'd expect the bloat to hit when there is a boost in SSD sizes. Right now I think the biggest consumer-grade SSDs are 8TB and are still rather expensive.

[–] corsicanguppy@lemmy.ca 1 points 4 days ago (1 children)

10 of these in a raid6?that's 4x speed and 400tb.

[–] Trail@lemmy.world 2 points 4 days ago

Of it's raid6 it's 320tb or so.

[–] the_q@lemm.ee 5 points 4 days ago

Optimizations are relics of the past!