44 lines
1.8 KiB
C#
44 lines
1.8 KiB
C#
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using System.Reflection.Emit;
|
|
using HarmonyLib;
|
|
using NitroxClient.GameLogic;
|
|
using NitroxModel.Helper;
|
|
using UnityEngine;
|
|
|
|
namespace NitroxPatcher.Patches.Dynamic;
|
|
|
|
/// <summary>
|
|
/// Syncs "spawn" command.
|
|
/// </summary>
|
|
public sealed partial class SpawnConsoleCommand_SpawnAsync_Patch : NitroxPatch, IDynamicPatch
|
|
{
|
|
internal static readonly MethodInfo TARGET_METHOD = AccessTools.EnumeratorMoveNext(Reflect.Method((SpawnConsoleCommand t) => t.SpawnAsync(default)));
|
|
|
|
/*
|
|
* MODIFIED:
|
|
* GameObject gameObject = global::Utils.CreatePrefab(prefabForTechType, maxDist, i > 0);
|
|
* SpawnConsoleCommand_OnConsoleCommand_Patch.WrappedCallback(gameObject); <---- INSERTED LINE
|
|
* LargeWorldEntity.Register(gameObject);
|
|
* CrafterLogic.NotifyCraftEnd(gameObject, techType);
|
|
* gameObject.SendMessage("StartConstruction", SendMessageOptions.DontRequireReceiver);
|
|
*/
|
|
public static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> instructions)
|
|
{
|
|
return new CodeMatcher(instructions).MatchStartForward([
|
|
new CodeMatch(OpCodes.Call, Reflect.Method(() => Utils.CreatePrefab(default, default, default)))
|
|
])
|
|
.Advance(1)
|
|
.Insert([
|
|
new CodeInstruction(OpCodes.Dup),
|
|
new CodeInstruction(OpCodes.Call, Reflect.Method(() => Callback(default)))
|
|
])
|
|
.InstructionEnumeration();
|
|
}
|
|
|
|
public static void Callback(GameObject gameObject)
|
|
{
|
|
Resolve<NitroxConsole>().Spawn(gameObject);
|
|
}
|
|
}
|