mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2025-12-09 03:33:29 +08:00
94 lines
3.3 KiB
C#
94 lines
3.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection.Emit;
|
|
using BepInEx.Configuration;
|
|
using HarmonyLib;
|
|
|
|
namespace CheatEnabler;
|
|
public static class PlanetPatch
|
|
{
|
|
public static ConfigEntry<bool> WaterPumpAnywhereEnabled;
|
|
public static ConfigEntry<bool> TerraformAnywayEnabled;
|
|
|
|
public static void Init()
|
|
{
|
|
WaterPumpAnywhereEnabled.SettingChanged += (_, _) => WaterPumperPatch.Enable(WaterPumpAnywhereEnabled.Value);
|
|
TerraformAnywayEnabled.SettingChanged += (_, _) => TerraformAnyway.Enable(TerraformAnywayEnabled.Value);
|
|
WaterPumperPatch.Enable(WaterPumpAnywhereEnabled.Value);
|
|
TerraformAnyway.Enable(TerraformAnywayEnabled.Value);
|
|
}
|
|
|
|
public static void Uninit()
|
|
{
|
|
WaterPumperPatch.Enable(false);
|
|
TerraformAnyway.Enable(false);
|
|
}
|
|
|
|
private static class WaterPumperPatch
|
|
{
|
|
private static Harmony _patch;
|
|
|
|
public static void Enable(bool on)
|
|
{
|
|
if (on)
|
|
{
|
|
_patch ??= Harmony.CreateAndPatchAll(typeof(WaterPumperPatch));
|
|
}
|
|
else
|
|
{
|
|
_patch?.UnpatchSelf();
|
|
_patch = null;
|
|
}
|
|
}
|
|
|
|
[HarmonyTranspiler]
|
|
[HarmonyPatch(typeof(BuildTool_BlueprintPaste), "CheckBuildConditions")]
|
|
[HarmonyPatch(typeof(BuildTool_Click), "CheckBuildConditions")]
|
|
private static IEnumerable<CodeInstruction> BuildTool_CheckBuildConditions_Transpiler(
|
|
IEnumerable<CodeInstruction> instructions, ILGenerator generator)
|
|
{
|
|
var matcher = new CodeMatcher(instructions, generator);
|
|
matcher.MatchForward(false,
|
|
new CodeMatch(instr => instr.opcode == OpCodes.Ldc_I4_S && instr.OperandIs(22))
|
|
).Advance(1).MatchForward(false,
|
|
new CodeMatch(instr => instr.opcode == OpCodes.Ldc_I4_S && instr.OperandIs(22))
|
|
);
|
|
matcher.Repeat(codeMatcher =>
|
|
{
|
|
codeMatcher.SetAndAdvance(OpCodes.Ldc_I4_S, 0);
|
|
});
|
|
return matcher.InstructionEnumeration();
|
|
}
|
|
}
|
|
private static class TerraformAnyway
|
|
{
|
|
private static Harmony _patch;
|
|
|
|
public static void Enable(bool on)
|
|
{
|
|
if (on)
|
|
{
|
|
_patch ??= Harmony.CreateAndPatchAll(typeof(TerraformAnyway));
|
|
}
|
|
else
|
|
{
|
|
_patch?.UnpatchSelf();
|
|
_patch = null;
|
|
}
|
|
}
|
|
|
|
[HarmonyTranspiler]
|
|
[HarmonyPatch(typeof(BuildTool_Reform), nameof(BuildTool_Reform.ReformAction))]
|
|
private static IEnumerable<CodeInstruction> BuildTool_Reform_ReformAction_Patch(IEnumerable<CodeInstruction> instructions, ILGenerator generator)
|
|
{
|
|
var matcher = new CodeMatcher(instructions, generator);
|
|
matcher.MatchForward(false,
|
|
new CodeMatch(OpCodes.Callvirt, AccessTools.Method(typeof(Player), "get_sandCount"))
|
|
).Advance(3).InsertAndAdvance(
|
|
new CodeInstruction(OpCodes.Ldc_I4_0),
|
|
new CodeInstruction(OpCodes.Call, AccessTools.Method(typeof(Math), "Max", new[] { typeof(int), typeof(int) }))
|
|
).Advance(1).RemoveInstructions(3);
|
|
return matcher.InstructionEnumeration();
|
|
}
|
|
}
|
|
} |