Sure Todd, lol

  • Dubious_Fart@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    11 months ago

    They could at least make the random PoI’s interesting if there was some…randomness to them.

    Like, I walk into a PoI, I already know where the chests are, the locked doors, are, where the stupid fucking corpse in the shower is, etc etc. cause I’ve ran through this PoI 20 times.

    I dont know why at least the locations of chests and locked doors cant be randomized. Make things at least marginally interesting, instead of cookie cuttered to extreme.

    • Otome-chan@kbin.social
      link
      fedilink
      arrow-up
      0
      ·
      11 months ago

      You can, but randomizing chests+locked doors is kinda complicated, and the more “interesting” your generations the harder it is to code and the more dev time it takes. And for a AAA game release you can’t really do that.

      Key+Lock randomization is something that has been solved, and has been used most notably in procedurally generated zeldalikes. But that’s still niche indie territory, and not used for major game releases.

      • zalgotext@sh.itjust.works
        link
        fedilink
        arrow-up
        0
        ·
        11 months ago

        Hasn’t this game been in development for like 5 years? And they built it on an existing engine that they have tons of experience with. You could have said “they were limited on how much they could randomize POIs because of the old engine” and I would have believed you because that sounds way more plausible than “it’s hard to code, so AAA games can’t do it”. Like what?

        • Otome-chan@kbin.social
          link
          fedilink
          arrow-up
          1
          ·
          11 months ago

          The issue with procedural generation is the game has to be built for it from the ground up and in a modular way. AAAs try to make themselves appealing by using novel new high quality assets that aren’t modular.

          I haven’t played starfield so idk what they ended up doing, but from the sound of it they have pre-made assets/areas that they then place onto pre-generated worlds in a randomized way.

          To make one of these “areas” procedural in itself, they’d then have to code a whole system for that. With AAA/3D the hard part is making modular environments without it looking repetitive or ugly.

          My point isn’t so much that it can’t be done in a AAA game. But rather that it’s risky to do (not all players like it), and you have to structure your development around it. Lots can go wrong, there’s stuff you gotta sacrifice to make it work, etc.

          If starfield is on the old bethesda engine then that’s even more of a reason. You can’t just plug and play an entire procedural generation thing in there without some fairly large overhauls or just gluing on an unrelated system.

          In practice, bethesda probably took the lazy route: using their existing engine without major changes, then just making new assets for it, throwing stuff about a bit randomly, and calling it a day.

          That’s the thing about procedural generation is: it’s a lot of effort and sucks up a huge part of the game’s development and comes at some pretty strict costs (repetitive looking environments/gameplay, reduced novelty, larger programming dev time to make it work). It can be done, but for a cost-cutting AAA studio they’re not gonna bother.