• jarfil@beehaw.org
    link
    fedilink
    arrow-up
    34
    ·
    10 months ago
    1. Don’t roll out your own crypto suite
    2. Don’t write your own game engine
    3. Don’t create your own OS from scratch
    4. Don’t build another multipurpose framework

    Whom am I kidding, go do all of that! Learn why you most probably shouldn’t 😆

  • miniu@programming.dev
    link
    fedilink
    arrow-up
    23
    ·
    10 months ago

    Making your own engine is worthwhile learning experience. The same as trying to recreate any of the foundational tools that you use. Might not be the fastest or best way to make a game but a good way to make yourself a better developer.

    • Sonotsugipaa@lemmy.dbzer0.comOP
      link
      fedilink
      English
      arrow-up
      12
      ·
      10 months ago

      Not the fastest

      This is my 4th Vulkan related “project” and 2nd attempt at making something other than a glorified tutorial workspace in 6 years, and it took me 4 weeks to draw this stuff with minimal technical debt.

      I could just use an existing game engine, but what’s the fun in not manually sorting all draw commands by mesh>pipeline>material and hunting synchronization hazards by just looking at funny glyphs for extended periods of time?

      • AeroLemming@lemm.ee
        link
        fedilink
        English
        arrow-up
        4
        ·
        10 months ago

        The best part is when your game just spontaneously closes. No logs, just some weird failure that’s got something to do with graphics.

        Well, that’s the OpenGL experience, anyway. Damn opaque state machines…

        • Sonotsugipaa@lemmy.dbzer0.comOP
          link
          fedilink
          English
          arrow-up
          2
          ·
          10 months ago

          Eh, at this point it happens every 3 commits, you get used to abusing gdb (since valgrind just dies).

          I hope the police doesn’t find my unregistered breakpoint minigun…

    • wopazoo [he/him]@hexbear.net
      link
      fedilink
      English
      arrow-up
      6
      ·
      10 months ago

      Keep in mind that if you actually want to make a game, make a game not an engine. Too many video game projects get bogged down in the engine development stage and never make it to completion.