Most active commenters

    ←back to thread

    3883 points kuroguro | 22 comments | | HN request time: 0.925s | source | bottom
    1. faebi ◴[] No.26296673[source]
    Wow, many people argue how optimized GTA was and then this. I wonder how much money they lost because of this. I often stopped playing because it just took too long to load.
    replies(9): >>26296692 #>>26296720 #>>26296775 #>>26296786 #>>26296791 #>>26296828 #>>26297077 #>>26297196 #>>26300316 #
    2. eznzt ◴[] No.26296692[source]
    The 3D engine is highly optimised.
    replies(1): >>26296904 #
    3. alborzb ◴[] No.26296720[source]
    It always fascinates me how sometimes people defend things just because they're a fan, even if the particular aspect they're defending doesn't make sense!

    I've seen this happen with some other games which are not the best optimised for PCs, but the fans will still defend the developers, just because they like the brand

    replies(3): >>26296785 #>>26297067 #>>26298868 #
    4. c7DJTLrn ◴[] No.26296775[source]
    Yep, sometimes I feel like having a drive around, and then I remember how long it takes to load and play something else instead. If you end up in a lobby with undesirables and are forced to switch, you've got another long wait.
    5. comboy ◴[] No.26296785[source]
    They did some good stuff: http://www.adriancourreges.com/blog/2015/11/02/gta-v-graphic...

    And just thinking about the size of the game and popularity, to make it work at all, requires some skill. Which makes the OP even more unbelievable.

    6. connicpu ◴[] No.26296786[source]
    I'm willing to bet the developers who wrote the in game store are not the same developers who optimized the rendering pipeline
    7. blibble ◴[] No.26296791[source]
    I tried GTA online once and indeed got fed up of the load times
    8. psyklic ◴[] No.26296828[source]
    I wouldn't be surprised if the long wait increases profits -- as you wait, Rockstar shows you ads for on-sale items.
    9. SteveNuts ◴[] No.26296904[source]
    They must have hired a Solarwinds intern to write the loading screen.
    10. ip26 ◴[] No.26297067[source]
    It's part of social validation. You inherently want other people to like the things you like, because it validates your choices. This in turn means you'll defend things you like.

    Even "rebels", who supposedly relish having fringe tastes, want other rebels to approve of their tastes.

    The more strongly you stake your identity as "fan of X", the more social disapproval of X hurts.

    11. jeroenhd ◴[] No.26297077[source]
    GTA, at least the core gameplay and the single player mode, is quite well optimised. The game ran well even on the cheaper side of gaming PC hardware.

    This... this is GTA online. It's a cash cow designed to suck cash out of your pocket. Ads for things you can spend your money on are shown while "connecting", so if this delay wasn't introduced intentionally, it sure isn't a high priority fix. The code isn't part of the optimised, streamlined, interactive part of the game, it's part of the menu and loader system.

    Most of these online games/services have so-called "whales" that contribute most if not all of the income the platform makes. If these whales are willing to spend the wads of cash they throw at the platform, they won't even care for another five minutes of ads. The amounts of cash some of these people spend is obscene; the millions Take Two profit from GTA every year are generally generated by only a tiny (usually a single number percentage) of the total player base.

    In the end, I doubt they've lost much money on this. They might've even made some from the extra ads.

    replies(1): >>26297543 #
    12. formerly_proven ◴[] No.26297196[source]
    GTA V (the single player game) is quite well optimized and needs a frame rate limiter on most newer systems because it will run at over ~180 fps, at which point the engine starts to barf all over itself.

    GTA Online is a huge, enormously buggy and slow mess that will generally struggle to run at 80 fps on a top-of-the-line 2020 system (think 10900K at over 5 GHz with a 3090) and will almost never cross the 120 fps threshold no matter how fast your system is and how low the settings are.

    replies(1): >>26297317 #
    13. ecf ◴[] No.26297317[source]
    > at which point the engine starts to barf all over itself.

    I’m really confused as to why games are determining anything whatsoever based on the refresh rate of the screen.

    Skyrim has this same problem and not being able to play over 60fps is the reason I haven’t touched the game in years.

    replies(4): >>26297539 #>>26297778 #>>26298753 #>>26300634 #
    14. megameter ◴[] No.26297539{3}[source]
    It's a coding strategy intended to optimize around console refresh targets first and then "do whatever" for PC build.

    Generally, a AAA console game will target 30hz or 60hz. Therefore the timing loop is built to serve updates at a steady pace of 30 or 60, with limiting if it goes faster. Many game engines also interpolate animations separately from the rest of the gameplay, allowing them to float at different refresh rates. Many game engines further will also decouple AI routine tick rates from physics to spread out the load. Many game engines now also interleave updates and kick off the next frame before the first is complete, using clever buffering and multithreaded job code. All told, timing in games is one of those hazard zones where the dependencies are both numerous and invisible.

    When you bring this piece of intricate engineering over to PC and crank up the numbers, you hit edge cases. Things break. It's usually possible to rework the design to get better framerate independence, but doing do would be invasive - you'd be changing assumptions that are now baked into the content. It isn't just fixing one routine.

    15. jsheard ◴[] No.26297543[source]
    > GTA, at least the core gameplay and the single player mode, is quite well optimised. The game ran well even on the cheaper side of gaming PC hardware.

    It's easy to forget that GTA5/GTA:O was originally a 360/PS3 game, getting a game of that scope running at all on a system with just 256MB of RAM and VRAM was an incredible achievement.

    The A-Team developers who made that happen were probably moved over to Red Dead Redemption 2 though, with GTA5s long tail being handled by the B-Team.

    16. gridspy ◴[] No.26297778{3}[source]
    Because if you run the simulation at a different frame-rate from the rendering it is a huge amount more work. Suddenly you have to start marshaling data through intermediate data structures and apply interpolation to everything.

    If you then try to run the simulation in parallel with the rendering (rather than between some frames) it is even more work, since inter-thread communication is hard.

    This stuff might seem easy for very good programmers, however on a game you want to hire a wide range of programmer skill and "game-play programmers" tend to be weaker on the pure programming front (their skills lie elsewhere)

    17. AndriyKunitsyn ◴[] No.26298753{3}[source]
    Because unfortunately, in order to draw something on the screen, you need to determine what you draw first. So, before each screen refresh, a thing called "game simulation tick" happens.
    18. bredren ◴[] No.26298868[source]
    This is common with disgraced entertainers.
    19. _the_inflator ◴[] No.26300316[source]
    I disagree. There is no contradiction. JSON can be a different beast for C, C++, Java, backend coders. You can implement complex 3D graphics while struggling with JSON.

    For example, my backend Java guys struggled heavily with JSON mappers. It took them forever to apply changes safely. My department consumes a lot of data from backend systems and we have to aggregate and transform them. Unfortunately the consumed structure changes often.

    While a JSON mapper in our case in JAVA was sort of exceptionally hard to handle, a simple NodeJS layer in JavaScript did the job exceptionally easy and fast. So we used a small NodeJS layer to handle the mapping instead of doing this in Java.

    Moral of the story: Sometimes there are better tools outside your view. And this seems to be many times the case for JSON. JSON means JavaScript Object Notation. It is still tough for OO languages to handle.

    This is my observation.

    replies(1): >>26300928 #
    20. SSLy ◴[] No.26300634{3}[source]
    >Skyrim has this same problem and not being able to play over 60fps is the reason I haven’t touched the game in years.

    https://www.nexusmods.com/skyrimspecialedition/mods/34705 >Refresh rate uncap for exclusive fullscreen mode.

    21. Koiwai ◴[] No.26300928[source]
    What are you talking about? the performance improvement is showcased in real world and you're denying it?
    replies(1): >>26313873 #
    22. imtringued ◴[] No.26313873{3}[source]
    I don't know why but denial is one of the most common strategies of our time.