Last year, I spent some time diving into the Choice of Games/Hosted Games catalog, researching how their games recognized player choice and how popular stories achieved player buy in. Like I mentioned in my Game of the Year post, these games are extremely minimalist: just text on a plain background with multiple-choice selections providing the interactivity.
This minimalist construction, plus easy-to-access code, means “code diving” plays a role in how some approach the games. Authors leave notes in the code, sometimes teasing, sometimes trying to obscure things or warn people off. It actually seems like an interesting place for some kind of meta-game; maybe it has already happened and I just don’t know about it.
But this is meant to provide the context for what I was thinking about when, back in last July, I thought I’d try my hand at creating a tool that could generate guides from ChoiceScript games. The tool would march through the code, parsing out the various branch points, while tracking how the game’s state was updated and when the branches would join back together.
I spent a couple weeks tinkering with it while a repair crew worked on our house; I meant (even still mean) to get back to it some day. But time has rolled on, the bits were collecting dust, and I still haven’t come back to it yet, so I figured I’d post what I managed to complete back then. So here are the games I looked at:
Community Class Heroes: Trial By Fire (by Eric Moser)
CCH was my first test subject. It ended up working well for this process, because the game starts off with some relatively simple branching, has a few well-structured complications in the middle, and then resolves fairly cleanly. I also could not find a full guide online for the game circa 2023, so it felt like a guide might help some of the less technically-inclined who didn’t want or didn’t know how to get into the code.
In working on this project, I was pleased by how familiar I got with the game: it was the least surprising thing in the world for me to learn that the author had previously been a lawyer based on the HELL class and emphasis on insurance throughout the story. I also enjoyed finding little quirks, like references to old character classes or small bugs that I tried to highlight with notes in the guide.
Fallen Hero: Rebirth (by Malin Rydén)
Fallen Hero: Rebirth already has an excellent guide (Do U Wanna Build A Sidestep?). That guide was a big inspiration for this project, because (1) it has a clean, minimal style that seemed like something I could automate (to an extent), and (2) it doesn’t really try to plot out paths for the reader, it simply reports them.
But with such a useful guide already out there, generating my own guide here was mainly about building up my familiarity with the code in preparation to try and take on Fallen Hero: Retribution (spoiler: I didn’t get there).
Still, in the end I came across a few interesting things, plus this guide includes the achievements and the text of superficial choices, so I still think this has some value. I also noticed at least one difference with the above guide (in “Do U Wanna Build,” it looks like the Stay Close to Ur Target is flipped), but that’s pretty minor.
Wayhaven Chronicles Book One (by Mishka Jenkins)
Wayhaven Chronicles: Book One Guide
Wayhaven Book 1 was the third book I looked into. It has a lot of branches based your romantic interest that are mainly text-based rather than state-affecting, so I spent a decent amount of time trying to collapse down situations where the choices were programmatically the same or nearly same. I had some luck, and it transferred to the other guides as well, but sometimes things were just different enough that I couldn’t collapse it down cleanly.
I should point out that Wayhaven also has an excellent guide (The Wayhaven Chronicles Guide). It even includes references to how the text itself can change with your choices, which I make no effort to do. But it doesn’t include every superficial choice, so I continued on with my version to provide an alternative.
I, the Forgotten One (by John Louis)
This is the final guide that seemed complete enough to share. It’s pretty rough, but when I started it, the game was very fresh and no guides were out. It could be that a new guide has come out in the interim; if so, great.
That said, this one really highlights how my guides are much closer to the code than an ideal, handcrafted guide. Keeping things vague for spoiler reasons, the primary branch points in ItFO involve a bunch of simulation-esque calculations that obscure the outcome in the code.
It’s a brutal salvo in the war against code-divers. And my guide simply throws it all out there for the reader to figure out; to be honest, it’s time consuming to even check that it’s being reproduced correctly. I did spend some time trying to parse things out, but didn’t get to the point where I was happy enough to publish it.
There’s also another odd side-effect that shows up in here due to some simplifications that I tried to automate. Certain labels get duplicated in odd, but technically correct, ways. These show up as labels with a “(1)” in the name; when you hit one of those, you follow the label in the guide, but then return back to where you left. It’s another thing I was cleaning up before getting distracted; I had fixed it in some unchecked-in code, but other things were broken, so…
Incomplete Projects
I also looked at Blood Moon (by Barbara Truelove) and Fallen Hero: Retribution (also by Malin) during this time. Both presented challenges.
Blood Moon has a style of coding that my tool had a lot of trouble following. To be clear, this is not a criticism; it’s a personal nightmare of mine to have some stranger looking at my code and telling me I did it wrong somehow, so I certainly don’t intend to criticize here. But its use of gotos that jump into the middle of choices really tripped up my assumptions about how authors structured their code.
And Fallen Hero: Retribution just takes that to the next level, with multiple points where the game jumps back to earlier scenes. My tool takes a very orderly, line-by-line path through the code, and it needs a lot help to handle situations where decisions jump you back to earlier code. So, while it parsed through a decent chunk of Retribution, it eventually trips up on one of these big jump backs. I had some thoughts about how I would address this, but I was already itching to return to my own project and shelved it. Maybe same day; perhaps when Fallen Hero: Revelations comes out, I’ll get the itch to map out Retribution again.
All in all, that’s where I’m at. Maybe some of this will be useful to someone who isn’t ready to dive into the code themselves. Or maybe it will inspire someone to do a better job. Either way, it’s out there now.