Fair enough. Last post about this particular topic unless I have some breakthrough worth time:I'm not familiar enough with PowerShell to comment, but good job. From here you could add some kind of filter functionality into the section checking the lines and throw away everything that isn't a menu (ends with:\n
but isn't a label), a Python block (starts with*\$
, excluding things like$ renpy.pause()
) or control flow (containsjump
orcall
). Then tie those together, and you've got a complete map of the game's logic, like...
View attachment 503213
Which would ideally be a screen you get by hitting F11 or something in the Ren'Py IDE, which is a thing that exists in the parallel universe that isn't shit like ours.
Otherwise, the cheap solution would be to convert the label and jump statements into Twine code or some type of markup/charting language with everything inbetween kept as literal text lines, then loading the entire blob into an existing visual editor which would render the tree for you.
View attachment 503236
A proper Ren'Py oriented visual editor would be fucking sick though. Just imagine being able to filter dialogue/jumps/variables on and off at any time on that chart above, or clicking a line and having a debugger on the right side of your screen display which variables exist and what images have been placed onto the screen at that exact point, THEN clicking those and immediately jumping to the point where they've been defined or changed. Or you could use an import window to select a Photoshop file, have it automatically import all the frames of an animation and create a LiveComposite from the layers, then resize and move it into place on your screen in a matter of seconds. Or you could actually just GO TO A LINE by clicking on it, as opposed to reloading the game, holding Ctrl for five minutes, realizing you've gone too far, scrolling back with the mousewheel, realizing you've gone too far again and then mashing space to get there. OR, get this, you could rename a variable by just RENAMING IT, as opposed to having to Ctrl + F through 18 separate fucking files with a fucking regex search to rename all instances ofsome_name
but notsome_name_other
or"some_name"
orjump some_name
or$ some_name()
.
Anyways, I'll stop derailing this thread now with shit that five people care about. Someone post MITY's new game so we have something to argue over.
Used a similar parser to pull 1:1 mappings of jumps inside each label, put it in a csv, and generated a dot file for it to be parsed in graphviz to generate a tree map. It. . .wasn't pretty.
You don't have permission to view the spoiler content.
Log in or register now.
Figured it would be less nightmarish if I wasn't mapping every single label in every book at the same time, so decided to organize the scripts/labels a bit. Changed my script to generate a new directory for each parent .rpy file so that shit in the same area was grouped together, and shoved em all into separate book directories (this could go further, e.g. Bk2 Main vs Ember, Bk 4 Main vs SPole, etc).
So, I did. Here's the still frightening label map (you'll need to zoom in. And give your computer time to render it.):
You don't have permission to view the spoiler content.
Log in or register now.
Attached the extracted labels sorted by book and the .dot files for generating the diagrams.
I'm depressed.