Denxorz.Satisfactory.Routes 1.0.0

dotnet add package Denxorz.Satisfactory.Routes --version 1.0.0
                    
NuGet\Install-Package Denxorz.Satisfactory.Routes -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Denxorz.Satisfactory.Routes" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Denxorz.Satisfactory.Routes" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Denxorz.Satisfactory.Routes" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Denxorz.Satisfactory.Routes --version 1.0.0
                    
#r "nuget: Denxorz.Satisfactory.Routes, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Denxorz.Satisfactory.Routes@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Denxorz.Satisfactory.Routes&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Denxorz.Satisfactory.Routes&version=1.0.0
                    
Install as a Cake Tool

Denxorz.Satisfactory.Routes

Build Status NuGet License

A .NET library for parsing and analyzing Satisfactory save files to extract route and station information.

Features

  • Extract the stations for trains, drones, and trucks
  • Extract the routes between stations
  • Extract flow/minute based on naming convention (see)

Installation

dotnet add package Denxorz.Satisfactory.Routes

Usage

using Denxorz.Satisfactory.Routes;

var save = SaveDetails.LoadFromStream(File.OpenRead("MySave.sav"));

foreach (var station in stations)
{
    Console.WriteLine($"Station: {station.Name}");
    foreach (var cargo in station.CargoFlows)
    {
        Console.WriteLine($"\t- Cargo: {cargo.Type} {cargo.FlowPerMinute}");
    }
    foreach (var vehicle in station.Transporters)
    {
        Console.WriteLine($"\t- Vehicle: from {vehicle.From} - to {vehicle.To}");
    }
}

Naming convention

This library assumes the following naming for stations: Name [in|out ## Type][in|out ## Type] [Name][in|out ## Type][in|out ## Type]

For example:

  • My Station [in 250.2 Rubber]
  • [Other station][out 6 Plastic][out 200 Coal]

Assumptions

The current parser assumes some things. If you need other specs, let me know in an issue.

  • Stations are named based on convention above
  • Trains only unload at one station
  • Trucks only unload at one station

Tools and Products Used

Versions & Release Notes

version 1.0: First version (.NET 8)

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 202 8/26/2025
1.0.0-alpha.8 115 8/20/2025
1.0.0-alpha.7 119 8/17/2025
1.0.0-alpha.6 121 8/14/2025
1.0.0-alpha.5 122 8/13/2025
1.0.0-alpha.3 118 8/13/2025