Perhaps the most useless suggestion I've gotten regarding my armature problems: use Godot, Unity, or Unreal, instead of writing your own engine.

If using one of those ever even *seemed* to be an option, I would've used it from the start back in April 2024.

#ProjectSpecialK

I mean, I'm sure they're perfectly good engines in their own right. Except maybe Unity for its licensing fees bullshit and whatnot. But my main issue with all three is that I simply Do Not Get Them.

Maybe it's cos I'm just too goddamn 90s-brained? 2D game engines on DOS are easy to comprehend in comparison.

Writing my own engine, I get to understand its systems simply from having to implement them myself.

@kawa just remembered a time in a web dev class that we were rushed for time, so my team used a little project I'd made a couple years ago for myself for a text based game interface (corruption of champions style, but safe for work).
I had the hardest time trying to explain to my teammates how my engine thing worked - it was basically a state machine. It had no concept of a "room" even. Each "room" was just a function that printed a blurb and had buttons linking to other functions. It worked amazingly but I ended up having to do a lot of the programming of content into the game myself because it took a lot of time to get their heads wrapped around it.

An upshot of my approach was that you could save or restore the game state at literally any time to a serialized JSON file, and you'd get that functionality for free - you could add your own variables and stuff later and they'd be automagically accounted for if you followed the structures I was using when defining new "objects" (collections of variables and functions). But it was just very different than my teammates probably would have thought of doing it. It had no dependencies btw

@wyatt My gf wanted to make a little game about caring for a kitten. I wrote exactly what you just described, minus the saves.

Twice.

There's an HTML/JS version, and a C textmode version that compiles to both #Asspull3X and Win32.

They work the same.

And no external dependencies here either.

@kawa Hmm, now I kind of want to do it again in ncurses/pdcurses (but probably won't). :p