mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
68 lines
No EOL
2.3 KiB
C#
68 lines
No EOL
2.3 KiB
C#
using ABI_RC.Core.Player;
|
|
using MelonLoader;
|
|
using System.Collections;
|
|
|
|
namespace NAK.Melons.FuckMetrics;
|
|
|
|
public class FuckMetricsMod : MelonMod
|
|
{
|
|
public const string SettingsCategory = "FuckMetrics";
|
|
public static readonly MelonPreferences_Category CategoryFuckMetrics = MelonPreferences.CreateCategory(SettingsCategory);
|
|
|
|
public static readonly MelonPreferences_Entry<SettingState> EntryDisableMetrics =
|
|
CategoryFuckMetrics.CreateEntry("Menu Metrics", SettingState.MenuOnly, description: "Disables menu metrics (FPS & Ping). Updates once on menu open if disabled.");
|
|
|
|
public static readonly MelonPreferences_Entry<SettingState> EntryDisableCoreUpdates =
|
|
CategoryFuckMetrics.CreateEntry("Menu Core Updates", SettingState.MenuOnly, description: "Disables menu core updates (Gamerule Icons & Debug Status). Updates once on menu open if disabled.");
|
|
|
|
public enum SettingState
|
|
{
|
|
Always,
|
|
MenuOnly,
|
|
Disabled
|
|
}
|
|
|
|
public override void OnInitializeMelon()
|
|
{
|
|
EntryDisableMetrics.OnEntryValueChangedUntyped.Subscribe(OnDisableMetrics);
|
|
EntryDisableCoreUpdates.OnEntryValueChangedUntyped.Subscribe(OnDisableCoreUpdates);
|
|
ApplyPatches(typeof(HarmonyPatches.CVR_MenuManagerPatches));
|
|
ApplyPatches(typeof(HarmonyPatches.ViewManagerPatches));
|
|
MelonCoroutines.Start(WaitForLocalPlayer());
|
|
}
|
|
|
|
IEnumerator WaitForLocalPlayer()
|
|
{
|
|
yield return PlayerSetup.Instance == null;
|
|
UpdateSettings();
|
|
}
|
|
|
|
private void OnDisableMetrics(object arg1, object arg2)
|
|
{
|
|
FuckMetrics.ToggleMetrics(EntryDisableMetrics.Value == SettingState.Always);
|
|
}
|
|
|
|
private void OnDisableCoreUpdates(object arg1, object arg2)
|
|
{
|
|
FuckMetrics.ToggleCoreUpdates(EntryDisableCoreUpdates.Value == SettingState.Always);
|
|
}
|
|
|
|
private void UpdateSettings()
|
|
{
|
|
FuckMetrics.ToggleMetrics(EntryDisableMetrics.Value == SettingState.Always);
|
|
FuckMetrics.ToggleCoreUpdates(EntryDisableCoreUpdates.Value == SettingState.Always);
|
|
}
|
|
|
|
private void ApplyPatches(Type type)
|
|
{
|
|
try
|
|
{
|
|
HarmonyInstance.PatchAll(type);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
LoggerInstance.Msg($"Failed while patching {type.Name}!");
|
|
LoggerInstance.Error(e);
|
|
}
|
|
}
|
|
} |