I wanna make some games but idk where to start. Thinking of gbstudio but the hardware limits would make making a card game hard, any other easy tools? Is there a gbstudio eqivament for 16-32 bit systems?

  • BougieBirdie
    link
    fedilink
    English
    1626 days ago

    I highly recommend Godot for a new developer. I made the switch from Unity and it’s just been a pleasure to work with. I’m actually unlearned a bunch of patterns I had to use with Unity because Godot makes things even easier to access .

    I don’t know if it’s got any kind of support for retro systems though

      • BougieBirdie
        link
        fedilink
        English
        426 days ago

        Ah, well you can definitely build for Android with it then. I haven’t personally, but so far every other platform I’ve built for has just been a few clicks and away you go

          • jlow (he/him)
            link
            fedilink
            225 days ago

            Check out Brackeys new videos on Godot. Haven’t personally seen it yet but his stuff was super helpful when we both worked with Unity back when.

  • PonyOfWar
    link
    fedilink
    626 days ago

    I wouldn’t start with retro hardware, those systems have a lot of quirks and limitations that will make development much harder than it needs to be for your first projects. Instead I’d suggest using a modern toolkit like Gamemaker if you want to avoid programming, or an engine like Godot. Lots of good tutorials available for either.

    • sleepybisexualOP
      link
      fedilink
      326 days ago

      I can do that, but the idea being using a ROM was having it be easy to run.

      Could try gamemaker. My idea is an inscription demake

  • @[email protected]
    link
    fedilink
    English
    326 days ago

    I taught myself some 2D game design and coding with Phaser. My idea was to recreate 80s arcade games like frogger and asteroids. It’s great for that and my games run in the browser, pure Javascript.

    https://phaser.io/

    Just remember that making a game includes making artwork and sound and intro screens and more. It’s a lot of work.

    • Rentlar
      link
      125 days ago

      Terminal games are where it’s at, lol. In high school I’ve made connect4, battleship and a couple card games in C.

      Once I took a Mexican Train domino game code I made in C, ported it to Java, then added graphics that showed everything nicely, but clicking on anything just had it pass a number you would have typed to do the action in the terminal UI version.

      • @[email protected]
        link
        fedilink
        English
        225 days ago

        Yah, I have somebody’s 2048 game in my terminal here and play that when I need to stop thinking thoughts for a second.

        OK, but pretend for a second that some of us are mere mortals. Is there a TUI game dev engine (?) we could learn to dev in fairly quickly? One that protects us from the pitfalls of the C language?

        Asking for myself…

  • _NetNomad
    link
    fedilink
    226 days ago

    many retro systems have implementations of a language called BASIC, which is about as easy as it sounds. it has some quirks that aren’t transferable to newer languages and you won’t be able to make anything nearly as sophisticated as retail games for the same hardware but if you find modern engines intimidating, it can be a good place to start

    that said, +1 for godot if you want to learn a more modern tool. it’s way simpler than it may seem at first and there is a huge wealth of beginner-friendly tutorials available online