76 lines
2.4 KiB
C#
76 lines
2.4 KiB
C#
using CG.Game;
|
|
using CG.Ship.Modules;
|
|
using Gameplay.Enhancements;
|
|
using Gameplay.Ship;
|
|
using HarmonyLib;
|
|
using Photon.Pun;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VoidManager.Utilities;
|
|
|
|
namespace AutomaticShipSystems
|
|
{
|
|
[HarmonyPatch(typeof(Enhancement))]
|
|
internal class EnhancementPatch
|
|
{
|
|
[HarmonyPrepare]
|
|
static void HookEvents()
|
|
{
|
|
Configs.TrimConfig.SettingChanged += ToggleAutomaticTrims;
|
|
}
|
|
|
|
[HarmonyPostfix]
|
|
[HarmonyPatch("SetState")]
|
|
static void SetState(Enhancement __instance, EnhancementState newState)
|
|
{
|
|
if (!PhotonNetwork.IsMasterClient) return;
|
|
|
|
if (Configs.TrimConfig.Value &&
|
|
ClientGame.Current?.PlayerShip?.GetModule<Helm>()?.Engine?.GetComponentsInChildren<Enhancement>()?.Contains(__instance) == true &&
|
|
newState == EnhancementState.Inactive)
|
|
{
|
|
Tools.DelayDoUnique(__instance, () => ResetTrim(__instance), Configs.TrimDelay);
|
|
}
|
|
}
|
|
|
|
private static void ResetTrim(Enhancement trim)
|
|
{
|
|
if (!PhotonNetwork.IsMasterClient || !Tools.PlayerShipExists) return;
|
|
|
|
if (trim.CurrentState.Value == EnhancementState.Inactive)
|
|
{
|
|
trim.RequestStateChange(EnhancementState.Active, 1);
|
|
}
|
|
}
|
|
|
|
internal static void ToggleAutomaticTrims(object sender, EventArgs e)
|
|
{
|
|
if (!PhotonNetwork.IsMasterClient) return;
|
|
|
|
Enhancement[] trims = ClientGame.Current?.PlayerShip?.GetModule<Helm>()?.Engine?.GetComponentsInChildren<Enhancement>();
|
|
if (trims == null || trims.Length == 0) return;
|
|
|
|
if (Configs.TrimConfig.Value)
|
|
{
|
|
foreach (Enhancement trim in trims)
|
|
{
|
|
if (trim.CurrentState.Value == EnhancementState.Inactive)
|
|
{
|
|
Tools.DelayDoUnique(trim, () => ResetTrim(trim), Configs.TrimDelay);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (Enhancement trim in trims)
|
|
{
|
|
Tools.CancelDelayDoUnique(trim);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|