• smeg@feddit.uk
    link
    fedilink
    English
    arrow-up
    2
    ·
    21 days ago

    That’s excusable in My First Game™ but surely professional AAAAA game would never cut corners and code something so lazily, eh?

    • vithigar
      link
      fedilink
      English
      arrow-up
      5
      ·
      21 days ago

      It’s not really laziness. Storing as JSON solves or prevents a lot of problems you could run into with something bespoke and “optimally packed”, you just have the tradeoff of needing more storage for it. Even then, the increased storage can be largely mitigated with compression. JSON compresses very well.

      The problem is usually what they’re storing, not how they’re storing it. For example, The Witcher (first one) has ~20MB save files. These are mostly a bespoke packed binary format, but contain things like raw strings of descriptions in multiple localisations for items being carried, and complete descriptors of game quests. Things that should just be ID values that point to that data in the game files. It also leads with like… 13KB of zero-padding for some reason.