mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 18:39:23 +00:00
159 lines
6.6 KiB
C#
159 lines
6.6 KiB
C#
using ABI_RC.Core.InteractionSystem;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ml_amt
|
|
{
|
|
static class Settings
|
|
{
|
|
enum ModSetting
|
|
{
|
|
CrouchLimit,
|
|
ProneLimit,
|
|
IKOverrideFly,
|
|
IKOverrideJump,
|
|
DetectEmotes,
|
|
FollowHips,
|
|
MassCenter
|
|
};
|
|
|
|
public static float CrouchLimit { get; private set; } = 0.75f;
|
|
public static float ProneLimit { get; private set; } = 0.4f;
|
|
public static bool IKOverrideFly { get; private set; } = true;
|
|
public static bool IKOverrideJump { get; private set; } = true;
|
|
public static bool DetectEmotes { get; private set; } = true;
|
|
public static bool FollowHips { get; private set; } = true;
|
|
public static bool MassCenter { get; private set; } = true;
|
|
|
|
static MelonLoader.MelonPreferences_Category ms_category = null;
|
|
static List<MelonLoader.MelonPreferences_Entry> ms_entries = null;
|
|
|
|
static public event Action<float> CrouchLimitChange;
|
|
static public event Action<float> ProneLimitChange;
|
|
static public event Action<bool> IKOverrideFlyChange;
|
|
static public event Action<bool> IKOverrideJumpChange;
|
|
static public event Action<bool> DetectEmotesChange;
|
|
static public event Action<bool> FollowHipsChange;
|
|
static public event Action<bool> MassCenterChange;
|
|
|
|
internal static void Init()
|
|
{
|
|
ms_category = MelonLoader.MelonPreferences.CreateCategory("AMT", null, true);
|
|
|
|
ms_entries = new List<MelonLoader.MelonPreferences_Entry>()
|
|
{
|
|
ms_category.CreateEntry(ModSetting.CrouchLimit.ToString(), (int)(CrouchLimit * 100f)),
|
|
ms_category.CreateEntry(ModSetting.ProneLimit.ToString(), (int)(ProneLimit * 100f)),
|
|
ms_category.CreateEntry(ModSetting.IKOverrideFly.ToString(), IKOverrideFly),
|
|
ms_category.CreateEntry(ModSetting.IKOverrideJump.ToString(), IKOverrideJump),
|
|
ms_category.CreateEntry(ModSetting.DetectEmotes.ToString(), DetectEmotes),
|
|
ms_category.CreateEntry(ModSetting.FollowHips.ToString(), FollowHips),
|
|
ms_category.CreateEntry(ModSetting.MassCenter.ToString(), MassCenter)
|
|
};
|
|
|
|
CrouchLimit = ((int)ms_entries[(int)ModSetting.CrouchLimit].BoxedValue) * 0.01f;
|
|
ProneLimit = ((int)ms_entries[(int)ModSetting.ProneLimit].BoxedValue) * 0.01f;
|
|
IKOverrideFly = (bool)ms_entries[(int)ModSetting.IKOverrideFly].BoxedValue;
|
|
IKOverrideJump = (bool)ms_entries[(int)ModSetting.IKOverrideJump].BoxedValue;
|
|
DetectEmotes = (bool)ms_entries[(int)ModSetting.DetectEmotes].BoxedValue;
|
|
FollowHips = (bool)ms_entries[(int)ModSetting.FollowHips].BoxedValue;
|
|
MassCenter = (bool)ms_entries[(int)ModSetting.MassCenter].BoxedValue;
|
|
|
|
MelonLoader.MelonCoroutines.Start(WaitMainMenuUi());
|
|
}
|
|
|
|
static System.Collections.IEnumerator WaitMainMenuUi()
|
|
{
|
|
while(ViewManager.Instance == null)
|
|
yield return null;
|
|
while(ViewManager.Instance.gameMenuView == null)
|
|
yield return null;
|
|
while(ViewManager.Instance.gameMenuView.Listener == null)
|
|
yield return null;
|
|
|
|
ViewManager.Instance.gameMenuView.Listener.ReadyForBindings += () =>
|
|
{
|
|
ViewManager.Instance.gameMenuView.View.BindCall("OnSliderUpdate_" + ms_category.Identifier, new Action<string, string>(OnSliderUpdate));
|
|
ViewManager.Instance.gameMenuView.View.BindCall("OnToggleUpdate_" + ms_category.Identifier, new Action<string, string>(OnToggleUpdate));
|
|
};
|
|
ViewManager.Instance.gameMenuView.Listener.FinishLoad += (_) =>
|
|
{
|
|
ViewManager.Instance.gameMenuView.View.ExecuteScript(Scripts.GetEmbeddedScript("mods_extension.js"));
|
|
ViewManager.Instance.gameMenuView.View.ExecuteScript(Scripts.GetEmbeddedScript("mod_menu.js"));
|
|
foreach(var l_entry in ms_entries)
|
|
ViewManager.Instance.gameMenuView.View.TriggerEvent("updateModSetting", ms_category.Identifier, l_entry.DisplayName, l_entry.GetValueAsString());
|
|
};
|
|
}
|
|
|
|
static void OnSliderUpdate(string p_name, string p_value)
|
|
{
|
|
if(Enum.TryParse(p_name, out ModSetting l_setting))
|
|
{
|
|
switch(l_setting)
|
|
{
|
|
case ModSetting.CrouchLimit:
|
|
{
|
|
CrouchLimit = int.Parse(p_value) * 0.01f;
|
|
CrouchLimitChange?.Invoke(CrouchLimit);
|
|
}
|
|
break;
|
|
|
|
case ModSetting.ProneLimit:
|
|
{
|
|
ProneLimit = int.Parse(p_value) * 0.01f;
|
|
ProneLimitChange?.Invoke(ProneLimit);
|
|
}
|
|
break;
|
|
}
|
|
|
|
ms_entries[(int)l_setting].BoxedValue = int.Parse(p_value);
|
|
}
|
|
}
|
|
|
|
static void OnToggleUpdate(string p_name, string p_value)
|
|
{
|
|
if(Enum.TryParse(p_name, out ModSetting l_setting))
|
|
{
|
|
switch(l_setting)
|
|
{
|
|
case ModSetting.IKOverrideFly:
|
|
{
|
|
IKOverrideFly = bool.Parse(p_value);
|
|
IKOverrideFlyChange?.Invoke(IKOverrideFly);
|
|
}
|
|
break;
|
|
|
|
case ModSetting.IKOverrideJump:
|
|
{
|
|
IKOverrideJump = bool.Parse(p_value);
|
|
IKOverrideJumpChange?.Invoke(IKOverrideJump);
|
|
}
|
|
break;
|
|
|
|
case ModSetting.DetectEmotes:
|
|
{
|
|
DetectEmotes = bool.Parse(p_value);
|
|
DetectEmotesChange?.Invoke(DetectEmotes);
|
|
}
|
|
break;
|
|
|
|
case ModSetting.FollowHips:
|
|
{
|
|
FollowHips = bool.Parse(p_value);
|
|
FollowHipsChange?.Invoke(FollowHips);
|
|
}
|
|
break;
|
|
|
|
case ModSetting.MassCenter:
|
|
{
|
|
MassCenter = bool.Parse(p_value);
|
|
MassCenterChange?.Invoke(MassCenter);
|
|
}
|
|
break;
|
|
}
|
|
|
|
ms_entries[(int)l_setting].BoxedValue = bool.Parse(p_value);
|
|
}
|
|
}
|
|
}
|
|
}
|