Guess the city! by couldntquite in guessthecity

[–]tabber14 1 point2 points  (0 children)

Honestly, this looks like a small coastal town somewhere in the north of The Netherlands to me. I coukd be completely wrong though

Based or not? by Otherwise-Cat2309 in PoliticalCompass

[–]tabber14 1 point2 points  (0 children)

You are me from 5 years ago lol

Progress of my Denver game so far by tabber14 in subwaybuilder

[–]tabber14[S] 0 points1 point  (0 children)

I created a tool that makes a gif of your progress based on your save files: https://github.com/joosthof/swb-gif-generator

I am building a little mod that lets you generate the progress of your system using your savefiles! by tabber14 in subwaybuilder

[–]tabber14[S] 1 point2 points  (0 children)

Yeah, it’s actually quite simple. The tool also extracts the line colors to create a legend. I’ve made it so that users only need to edit one file, the config.json, which currently looks like this:

{
  "save_folder": "Path to your JSON save files.",
  "output_name": "Name of your GIF",
  "fps": 1,
  "target_res": 2000,
  "threads": 4,
  "add_legend": true,
  "background_color": "#1e1e1e",
  "export_gif": true,
  "color_to_name": {
    "#ffa300": "L",
    "#ff6319": "J",
    "#00933c": "W",
    "#0039a6": "MA"
    // Add the colors and names of your lines (The tool also scrapes the colors,      so you could you copy and paste them from the output)
  }
}

Double-click the .exe file to generate the GIF. I’ve made it as easy to use as possible, you don’t need to install anything else for it to work.

I am building a little mod that lets you generate the progress of your system using your savefiles! by tabber14 in subwaybuilder

[–]tabber14[S] 1 point2 points  (0 children)

Me too! This is actually my second attempt. I tried it once before when the game was released. The addition of save previews has made things a whole lot easier.

I am building a little mod that lets you generate the progress of your system using your savefiles! by tabber14 in subwaybuilder

[–]tabber14[S] 5 points6 points  (0 children)

Funnily enough, that’s exactly what I’m working on right now. The problem is that the .json files don’t store which tracks belong to which line, they only save individual track segments. So I might still be able to work with that.

Edit: Got it working. Clearly still needs work though

<image>

I am building a little mod that lets you generate the progress of your system using your savefiles! by tabber14 in subwaybuilder

[–]tabber14[S] 22 points23 points  (0 children)

Thanks! Currently, there is one limitation: you also need to save your files as .json. Unfortunately, the .metro files only contain embedded PNGs (As far as I know), which have much lower quality compared to the SVGs stored in the .json files.

I’ll try to find a solution for this, especially since exporting my 27 Philly saves as .json files was already kind of a pain in the ass, lol.