mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 10:29:22 +00:00
277 lines
10 KiB
C#
277 lines
10 KiB
C#
using ABI.CCK.Components;
|
|
using ABI_RC.Core;
|
|
using ABI_RC.Core.InteractionSystem;
|
|
using ABI_RC.Core.Player;
|
|
using ABI_RC.Core.Util.AssetFiltering;
|
|
using ABI_RC.Systems.Camera.VisualMods;
|
|
using ABI_RC.Systems.IK;
|
|
using ABI_RC.Systems.IK.SubSystems;
|
|
using ABI_RC.Systems.Movement;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace ml_prm
|
|
{
|
|
public class PlayerRagdollMod : MelonLoader.MelonMod
|
|
{
|
|
static readonly Type[] ms_teleportTypes = { typeof(UnityEngine.Vector3), typeof(bool), typeof(bool), typeof(UnityEngine.Quaternion?) };
|
|
|
|
static PlayerRagdollMod ms_instance = null;
|
|
|
|
RagdollController m_localController = null;
|
|
|
|
public override void OnInitializeMelon()
|
|
{
|
|
if(ms_instance == null)
|
|
ms_instance = this;
|
|
|
|
Settings.Init();
|
|
ModUi.Init();
|
|
|
|
HarmonyInstance.Patch(
|
|
typeof(PlayerSetup).GetMethod(nameof(PlayerSetup.ClearAvatar)),
|
|
null,
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnAvatarClear_Postfix), BindingFlags.NonPublic | BindingFlags.Static))
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(PlayerSetup).GetMethod(nameof(PlayerSetup.SetupAvatar)),
|
|
null,
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnSetupAvatar_Postfix), BindingFlags.Static | BindingFlags.NonPublic))
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(IKSystem).GetMethod(nameof(IKSystem.ReinitializeAvatar), BindingFlags.Instance | BindingFlags.Public),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnAvatarReinitialize_Prefix), BindingFlags.Static | BindingFlags.NonPublic)),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnAvatarReinitialize_Postfix), BindingFlags.Static | BindingFlags.NonPublic))
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(PlayerSetup).GetMethod("SetupIKScaling", BindingFlags.NonPublic | BindingFlags.Instance),
|
|
null,
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnSetupIKScaling_Postfix), BindingFlags.Static | BindingFlags.NonPublic))
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(CVRSeat).GetMethod(nameof(CVRSeat.SitDown)),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnCVRSeatSitDown_Prefix), BindingFlags.Static | BindingFlags.NonPublic)),
|
|
null
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(BodySystem).GetMethod(nameof(BodySystem.StartCalibration)),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnStartCalibration_Prefix), BindingFlags.Static | BindingFlags.NonPublic)),
|
|
null
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(RootLogic).GetMethod(nameof(RootLogic.SpawnOnWorldInstance)),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnWorldSpawn_Prefix), BindingFlags.Static | BindingFlags.NonPublic)),
|
|
null
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(CombatSystem).GetMethods().First(m => (!m.IsGenericMethod && m.Name == nameof(CombatSystem.Down))),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnCombatDown_Prefix), BindingFlags.Static | BindingFlags.NonPublic)),
|
|
null
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(BetterBetterCharacterController).GetMethod(nameof(BetterBetterCharacterController.ChangeFlight)),
|
|
null,
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnChangeFlight_Postfix), BindingFlags.Static | BindingFlags.NonPublic))
|
|
);
|
|
HarmonyInstance.Patch(
|
|
typeof(IKSystem).GetMethod("OnPreSolverUpdateActiveOffset", BindingFlags.Instance | BindingFlags.NonPublic),
|
|
new HarmonyLib.HarmonyMethod(typeof(PlayerRagdollMod).GetMethod(nameof(OnOffsetUpdate_Prefix), BindingFlags.Static | BindingFlags.NonPublic))
|
|
);
|
|
|
|
// Whitelist the toggle script
|
|
(typeof(SharedFilter).GetField("_localComponentWhitelist", BindingFlags.NonPublic | BindingFlags.Static)?.GetValue(null) as HashSet<Type>)?.Add(typeof(RagdollToggle));
|
|
|
|
MelonLoader.MelonCoroutines.Start(WaitForLocalPlayer());
|
|
}
|
|
|
|
public override void OnDeinitializeMelon()
|
|
{
|
|
if(ms_instance == this)
|
|
ms_instance = null;
|
|
|
|
ModUi.SwitchChange -= this.OnSwitchActivation;
|
|
|
|
if(m_localController != null)
|
|
UnityEngine.Object.Destroy(m_localController);
|
|
m_localController = null;
|
|
}
|
|
|
|
System.Collections.IEnumerator WaitForLocalPlayer()
|
|
{
|
|
while(PlayerSetup.Instance == null)
|
|
yield return null;
|
|
|
|
m_localController = PlayerSetup.Instance.gameObject.AddComponent<RagdollController>();
|
|
ModUi.SwitchChange += this.OnSwitchActivation;
|
|
}
|
|
|
|
void OnSwitchActivation()
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.SwitchRagdoll();
|
|
}
|
|
|
|
// Patches
|
|
static void OnAvatarClear_Postfix() => ms_instance?.OnAvatarClear();
|
|
void OnAvatarClear()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnAvatarClear();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnSetupAvatar_Postfix() => ms_instance?.OnSetupAvatar();
|
|
void OnSetupAvatar()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnAvatarSetup();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnAvatarReinitialize_Prefix() => ms_instance?.OnPreAvatarReinitialize();
|
|
void OnPreAvatarReinitialize()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnPreAvatarReinitialize();
|
|
}
|
|
catch(System.Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnAvatarReinitialize_Postfix() => ms_instance?.OnPostAvatarReinitialize();
|
|
void OnPostAvatarReinitialize()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnPostAvatarReinitialize();
|
|
}
|
|
catch(System.Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnSetupIKScaling_Postfix(ref UnityEngine.Vector3 ___scaleDifference) => ms_instance?.OnSetupIKScaling(___scaleDifference.y);
|
|
void OnSetupIKScaling(float p_scaleDifference)
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnAvatarScaling(1f + p_scaleDifference);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnCVRSeatSitDown_Prefix(ref CVRSeat __instance) => ms_instance?.OnCVRSeatSitDown(__instance);
|
|
void OnCVRSeatSitDown(CVRSeat p_seat)
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnSeatSitDown(p_seat);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnStartCalibration_Prefix() => ms_instance?.OnStartCalibration();
|
|
void OnStartCalibration()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnStartCalibration();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnWorldSpawn_Prefix() => ms_instance?.OnWorldSpawn();
|
|
void OnWorldSpawn()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnWorldSpawn();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnCombatDown_Prefix(ref CombatSystem __instance)
|
|
{
|
|
if((__instance == CombatSystem.Instance) && !__instance.isDown)
|
|
ms_instance?.OnCombatDown();
|
|
}
|
|
void OnCombatDown()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnCombatDown();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static void OnChangeFlight_Postfix() => ms_instance?.OnChangeFlight();
|
|
void OnChangeFlight()
|
|
{
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
m_localController.OnChangeFlight();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
}
|
|
|
|
static bool OnOffsetUpdate_Prefix(ref IKSystem __instance) => ms_instance.OnOffsetUpdate(__instance);
|
|
bool OnOffsetUpdate(IKSystem p_instance)
|
|
{
|
|
bool l_result = true;
|
|
try
|
|
{
|
|
if(m_localController != null)
|
|
l_result = !m_localController.ShoudlDisableHeadOffset();
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
MelonLoader.MelonLogger.Error(e);
|
|
}
|
|
return l_result;
|
|
}
|
|
}
|
|
}
|