diff --git a/ESCBothMenus/ESCBothMenus.csproj b/ESCBothMenus/ESCBothMenus.csproj new file mode 100644 index 0000000..e94f9dc --- /dev/null +++ b/ESCBothMenus/ESCBothMenus.csproj @@ -0,0 +1,2 @@ + + diff --git a/ESCBothMenus/Main.cs b/ESCBothMenus/Main.cs new file mode 100644 index 0000000..926127d --- /dev/null +++ b/ESCBothMenus/Main.cs @@ -0,0 +1,52 @@ +using System.Reflection; +using ABI_RC.Core.InteractionSystem; +using ABI_RC.Systems.InputManagement; +using ABI_RC.Systems.Movement; +using HarmonyLib; +using MelonLoader; +using UnityEngine; + +namespace NAK.ESCBothMenus; + +public class ESCBothMenusMod : MelonMod +{ + public override void OnInitializeMelon() + { + HarmonyInstance.Patch( + typeof(ViewManager).GetMethod(nameof(ViewManager.Update), + BindingFlags.NonPublic | BindingFlags.Instance), + prefix: new HarmonyMethod(typeof(ESCBothMenusMod).GetMethod(nameof(OnPreViewManagerUpdate), + BindingFlags.NonPublic | BindingFlags.Static)) + ); + } + + private static float _timer = -1f; + private static bool _main; + + private static void OnPreViewManagerUpdate() + { + if (CVRInputManager.Instance.mainMenuButton + && !BetterBetterCharacterController.Instance.IsSittingOnControlSeat()) + { + if (_timer < 0f) _timer = 0.2f; + else _main = true; + } + + if (_timer >= 0f && (_timer -= Time.deltaTime) <= 0f) + { + var vm = ViewManager.Instance; + var qm = CVR_MenuManager.Instance; + + if (vm.IsViewShown) vm.UiStateToggle(false); + else if (qm.IsViewShown) qm.ToggleQuickMenu(false); + else if (_main) vm.UiStateToggle(true); + else qm.ToggleQuickMenu(true); + + _timer = -1f; + _main = false; + } + + // consume so original logic doesn't fire + CVRInputManager.Instance.mainMenuButton = false; + } +} \ No newline at end of file diff --git a/ESCBothMenus/Properties/AssemblyInfo.cs b/ESCBothMenus/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..03242e7 --- /dev/null +++ b/ESCBothMenus/Properties/AssemblyInfo.cs @@ -0,0 +1,32 @@ +using MelonLoader; +using NAK.ESCBothMenus.Properties; +using System.Reflection; + +[assembly: AssemblyVersion(AssemblyInfoParams.Version)] +[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)] +[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)] +[assembly: AssemblyTitle(nameof(NAK.ESCBothMenus))] +[assembly: AssemblyCompany(AssemblyInfoParams.Author)] +[assembly: AssemblyProduct(nameof(NAK.ESCBothMenus))] + +[assembly: MelonInfo( + typeof(NAK.ESCBothMenus.ESCBothMenusMod), + nameof(NAK.ESCBothMenus), + AssemblyInfoParams.Version, + AssemblyInfoParams.Author, + downloadLink: "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ESCBothMenus" +)] + +[assembly: MelonGame("ChilloutVR", "ChilloutVR")] +[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] +[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)] +[assembly: MelonColor(255, 246, 25, 99)] // red-pink +[assembly: MelonAuthorColor(255, 158, 21, 32)] // red +[assembly: HarmonyDontPatchAll] + +namespace NAK.ESCBothMenus.Properties; +internal static class AssemblyInfoParams +{ + public const string Version = "1.0.0"; + public const string Author = "NotAKidoS"; +} \ No newline at end of file diff --git a/ESCBothMenus/format.json b/ESCBothMenus/format.json new file mode 100644 index 0000000..4dfdc9d --- /dev/null +++ b/ESCBothMenus/format.json @@ -0,0 +1,23 @@ +{ + "_id": 219, + "name": "ScrollFlight", + "modversion": "1.0.5", + "gameversion": "2025r181", + "loaderversion": "0.7.2", + "modtype": "Mod", + "author": "NotAKidoS", + "description": "Scroll-wheel to adjust flight speed in Desktop. Stole idea from Luc.", + "searchtags": [ + "flight", + "scroll", + "speed", + "modifier" + ], + "requirements": [ + "None" + ], + "downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r48/ScrollFlight.dll", + "sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ScrollFlight/", + "changelog": "- Rebuilt for CVR 2025r181", + "embedcolor": "#f61963" +} \ No newline at end of file