• ZILtoid1991@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    3 days ago

    Game dev? Just force Rust into it, despite being quite mediocre for the job, there’s so many engines written in Rust. ECS is the answer to everything!

    • jasory@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      10 hours ago

      “Game dev… Just force Rust into it”

      What’s wrong with Rust for game dev? It seems similar to C++, and C# which are the dominant languages.

      I can see arguments that the current projects have poor approaches, but not that the language itself is ill-suited.

      • ZILtoid1991@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        3 hours ago

        Rust has constant by default, which many don’t like in gamedev circles. Yes, compilers don’t care and optimize - at the highest optimization setting, otherwise it’s marginally slower, and each constant use will just add up.

        Other Functional Programming features of Rust makes writing transform functions quite good, until you need to get the results of those functions to be displayed.

        Some of the system-level allocation is quite hard with Rust, if not impossible.

        The borrow checker is hard to use with games, not to mention it has a big impact on performance.

        Object-Oriented Programming is possible through macros, but sometimes you need OOP instead of Entity Component System for more system-level stuff. Sure, ECS is really nice for game systems, but Bevy (an engine written in Rust) uses it for everything.