Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d62aa0d3b6 | |||
| cf279e21b3 | |||
| 6d3989a024 | |||
| c67d008504 | |||
| b2a6cc425b | |||
| cfc1063f83 |
184
PartIDRedirectionPlugin .cs
Normal file
184
PartIDRedirectionPlugin .cs
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
using BepInEx;
|
||||||
|
using BepInEx.Logging;
|
||||||
|
using HarmonyLib;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace PartIDRedirection
|
||||||
|
{
|
||||||
|
[BepInPlugin(PluginInfo.PLUGIN_GUID, PluginInfo.PLUGIN_NAME, PluginInfo.PLUGIN_VERSION)]
|
||||||
|
public class PartIDRedirectionPlugin : BaseUnityPlugin
|
||||||
|
{
|
||||||
|
private const string REDIRECT_CONFIG_FILENAME = "PartID.redirects.cfg";
|
||||||
|
|
||||||
|
internal static Dictionary<string, string> IdentifierMappings { get; private set; }
|
||||||
|
internal static ManualLogSource PluginLogger { get; private set; }
|
||||||
|
|
||||||
|
private void Awake()
|
||||||
|
{
|
||||||
|
PluginLogger = Logger;
|
||||||
|
|
||||||
|
string configFilePath = Path.Combine(Paths.ConfigPath, REDIRECT_CONFIG_FILENAME);
|
||||||
|
IdentifierMappings = LoadRedirectMappings(configFilePath);
|
||||||
|
|
||||||
|
Logger.LogInfo($"Loaded {IdentifierMappings.Count} PartID redirect(s) from: {configFilePath}");
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Harmony harmony = new Harmony(PluginInfo.PLUGIN_GUID);
|
||||||
|
harmony.PatchAll(typeof(PartsDatabasePatch));
|
||||||
|
harmony.PatchAll(typeof(PartInstancePatch));
|
||||||
|
Logger.LogInfo("Successfully patched PartsDatabase.GetDesc method");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.LogError($"Failed to apply Harmony patches: {ex}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Dictionary<string, string> LoadRedirectMappings(string filePath)
|
||||||
|
{
|
||||||
|
var mappings = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
if (!File.Exists(filePath))
|
||||||
|
{
|
||||||
|
PluginLogger?.LogWarning($"Redirect configuration file not found: {filePath}");
|
||||||
|
return mappings;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string[] lines = File.ReadAllLines(filePath);
|
||||||
|
int lineNumber = 0;
|
||||||
|
|
||||||
|
foreach (string rawLine in lines)
|
||||||
|
{
|
||||||
|
lineNumber++;
|
||||||
|
string line = rawLine.Trim();
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(line) || line.StartsWith("#"))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
int separatorIndex = line.IndexOf('=');
|
||||||
|
|
||||||
|
if (separatorIndex <= 0 || separatorIndex >= line.Length - 1)
|
||||||
|
{
|
||||||
|
PluginLogger?.LogWarning($"Invalid format at line {lineNumber}: {line}");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
string oldID = line.Substring(0, separatorIndex).Trim();
|
||||||
|
string newID = line.Substring(separatorIndex + 1).Trim();
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(oldID) || string.IsNullOrEmpty(newID))
|
||||||
|
{
|
||||||
|
PluginLogger?.LogWarning($"Empty ID at line {lineNumber}: {line}");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mappings.ContainsKey(oldID))
|
||||||
|
{
|
||||||
|
PluginLogger?.LogWarning($"Duplicate mapping for '{oldID}' at line {lineNumber}. Using latest definition.");
|
||||||
|
}
|
||||||
|
|
||||||
|
mappings[oldID] = newID;
|
||||||
|
}
|
||||||
|
|
||||||
|
PluginLogger?.LogInfo($"Successfully parsed {mappings.Count} redirect mapping(s)");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
PluginLogger?.LogError($"Error reading redirect file: {ex.Message}");
|
||||||
|
}
|
||||||
|
|
||||||
|
return mappings;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static class PluginInfo
|
||||||
|
{
|
||||||
|
public const string PLUGIN_GUID = "com.anonymus637.partidredirection";
|
||||||
|
public const string PLUGIN_NAME = "PartID Redirection";
|
||||||
|
public const string PLUGIN_VERSION = "1.0.0";
|
||||||
|
}
|
||||||
|
|
||||||
|
[HarmonyPatch(typeof(PartsDatabase))]
|
||||||
|
internal static class PartsDatabasePatch
|
||||||
|
{
|
||||||
|
[HarmonyPatch("GetDesc", new Type[] { typeof(string), typeof(GetString) })]
|
||||||
|
[HarmonyPrefix]
|
||||||
|
private static void GetDescPrefix(ref string partName)
|
||||||
|
{
|
||||||
|
RedirectPartName(ref partName);
|
||||||
|
}
|
||||||
|
|
||||||
|
[HarmonyPatch("GetPartDescription")]
|
||||||
|
[HarmonyPrefix]
|
||||||
|
private static void GetPartDescriptionPrefix(ref string partName)
|
||||||
|
{
|
||||||
|
RedirectPartName(ref partName);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RedirectPartName(ref string partName)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(partName))
|
||||||
|
return;
|
||||||
|
|
||||||
|
string cleanPartName = partName;
|
||||||
|
int newlineIndex = partName.IndexOfAny(new char[] { '\n', '\r' });
|
||||||
|
if (newlineIndex > 0)
|
||||||
|
{
|
||||||
|
cleanPartName = partName.Substring(0, newlineIndex).Trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PartIDRedirectionPlugin.IdentifierMappings.TryGetValue(cleanPartName, out string redirectedIdentifier))
|
||||||
|
{
|
||||||
|
PartIDRedirectionPlugin.PluginLogger?.LogInfo(
|
||||||
|
$"Redirecting part identifier: '{cleanPartName}' → '{redirectedIdentifier}'"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (newlineIndex > 0)
|
||||||
|
{
|
||||||
|
partName = redirectedIdentifier + partName.Substring(newlineIndex);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
partName = redirectedIdentifier;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[HarmonyPatch(typeof(PartInstance))]
|
||||||
|
internal static class PartInstancePatch
|
||||||
|
{
|
||||||
|
[HarmonyPatch("name", MethodType.Getter)]
|
||||||
|
[HarmonyPostfix]
|
||||||
|
private static void NameGetterPostfix(PartInstance __instance, ref string __result)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(__result))
|
||||||
|
return;
|
||||||
|
|
||||||
|
string cleanPartName = __result;
|
||||||
|
int newlineIndex = __result.IndexOfAny(new char[] { '\n', '\r' });
|
||||||
|
if (newlineIndex > 0)
|
||||||
|
{
|
||||||
|
cleanPartName = __result.Substring(0, newlineIndex).Trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PartIDRedirectionPlugin.IdentifierMappings.TryGetValue(cleanPartName, out string redirectedIdentifier))
|
||||||
|
{
|
||||||
|
if (newlineIndex > 0)
|
||||||
|
{
|
||||||
|
__result = redirectedIdentifier + __result.Substring(newlineIndex);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
__result = redirectedIdentifier;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
Properties/AssemblyInfo.cs
Normal file
16
Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
[assembly: AssemblyTitle("PartID Redirection Plugin")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("PartID Redirection Plugin")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2026 by anonymus637")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
[assembly: Guid("9c7cfc83-908f-49f8-86a7-5e16fe6898f3")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||||
@ -34,7 +34,7 @@ This plugin maintains backward compatibility with legacy save files and configur
|
|||||||
|
|
||||||
### Step 2: Install PartID Redirection Plugin
|
### Step 2: Install PartID Redirection Plugin
|
||||||
|
|
||||||
1. Download the latest release of [PartID.Redirection.Plugin]()
|
1. Download the latest release of [PartID.Redirection.Plugin](https://git.fabian133.com/anonymus637/PartID.Redirection.Plugin/releases)
|
||||||
2. Copy the DLL file to: `<Game Directory>/BepInEx/plugins/`
|
2. Copy the DLL file to: `<Game Directory>/BepInEx/plugins/`
|
||||||
3. Copy `PartID_Redirects.cfg` to: `<Game Directory>/BepInEx/config/`
|
3. Copy `PartID_Redirects.cfg` to: `<Game Directory>/BepInEx/config/`
|
||||||
4. Launch the game
|
4. Launch the game
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user