This repository was archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMain.cs
264 lines (242 loc) · 12.1 KB
/
Main.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
using MelonLoader;
using System;
using System.Reflection;
using UnhollowerRuntimeLib;
using UnityEngine;
using System.IO;
using System.Linq;
using ActionMenuApi;
using ActionMenuApi.Types;
using UnityEngine.UI;
using VRC.Core;
using VRC.Animation;
using VRC.SDKBase;
using Harmony;
using UnhollowerRuntimeLib.XrefScans;
namespace ActionMenuUtils
{
public static class ModInfo
{
public const string Name = "ActionMenuUtils";
public const string Author = "gompo";
public const string Version = "1.3.7";
public const string DownloadLink = "https://github.com/gompocp/ActionMenuUtils/releases";
}
public class Main : MelonMod
{
private static AssetBundle iconsAssetBundle = null;
private static Texture2D respawnIcon;
private static Texture2D helpIcon;
private static Texture2D goHomeIcon;
private static Texture2D resetAvatarIcon;
private static Texture2D rejoinInstanceIcon;
private static ActionMenuAPI actionMenuApi;
private static MelonMod Instance;
public static HarmonyInstance HarmonyInstance => Instance.Harmony;
public override void OnApplicationStart()
{
Instance = this;
try
{
//Adapted from knah's JoinNotifier mod found here: https://github.com/knah/VRCMods/blob/master/JoinNotifier/JoinNotifierMod.cs
using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("ActionMenuUtils.icons"))
using (var tempStream = new MemoryStream((int)stream.Length))
{
stream.CopyTo(tempStream);
iconsAssetBundle = AssetBundle.LoadFromMemory_Internal(tempStream.ToArray(), 0);
iconsAssetBundle.hideFlags |= HideFlags.DontUnloadUnusedAsset;
}
respawnIcon = iconsAssetBundle.LoadAsset_Internal("Assets/Resources/Refresh.png", Il2CppType.Of<Texture2D>()).Cast<Texture2D>();
respawnIcon.hideFlags |= HideFlags.DontUnloadUnusedAsset;
helpIcon = iconsAssetBundle.LoadAsset_Internal("Assets/Resources/Help.png", Il2CppType.Of<Texture2D>()).Cast<Texture2D>();
helpIcon.hideFlags |= HideFlags.DontUnloadUnusedAsset;
goHomeIcon = iconsAssetBundle.LoadAsset_Internal("Assets/Resources/Home.png", Il2CppType.Of<Texture2D>()).Cast<Texture2D>();
goHomeIcon.hideFlags |= HideFlags.DontUnloadUnusedAsset;
resetAvatarIcon = iconsAssetBundle.LoadAsset_Internal("Assets/Resources/Avatar.png", Il2CppType.Of<Texture2D>()).Cast<Texture2D>();
resetAvatarIcon.hideFlags |= HideFlags.DontUnloadUnusedAsset;
rejoinInstanceIcon = iconsAssetBundle.LoadAsset_Internal("Assets/Resources/Pin.png", Il2CppType.Of<Texture2D>()).Cast<Texture2D>();
rejoinInstanceIcon.hideFlags |= HideFlags.DontUnloadUnusedAsset;
}
catch (Exception e) {
MelonLogger.Warning("Consider checking for newer version as mod possibly no longer working, Exception occured OnAppStart(): " + e.Message);
}
ModSettings.RegisterSettings();
ModSettings.Apply();
if(MelonHandler.Mods.Any(m => m.Info.Name.Equals("ActionMenuApi"))) {
if (MelonHandler.Mods.Single(m => m.Info.Name.Equals("ActionMenuApi")).Info.Version.Equals("0.1.0")) MelonLogger.Warning("ActionMenuApi Outdated. 0.1.0 is not supported");
else SetupButtonsForAMAPI();
}
else
{
actionMenuApi = new ActionMenuAPI();
SetupButtons();
}
}
private static void SetupButtonsForAMAPI()
{
AMAPI.AddSubMenuToMenu(ActionMenuPageType.Options, "SOS",
() => {
if (ModSettings.confirmRespawn)
{
AMAPI.AddSubMenuToSubMenu("Respawn",
() => {
AMAPI.AddButtonPedalToSubMenu("Confirm Respawn",Respawn, respawnIcon);
}, respawnIcon
);
}
else
AMAPI.AddButtonPedalToSubMenu("Respawn",Respawn, respawnIcon);
if (ModSettings.confirmAvatarReset)
{
AMAPI.AddSubMenuToSubMenu("Reset Avatar",
() => {
AMAPI.AddButtonPedalToSubMenu("Confirm Reset Avatar",() => ObjectPublicAbstractSealedApBoApObStBoApApUnique.Method_Public_Static_Void_ApiAvatar_String_ApiAvatar_0(API.Fetch<ApiAvatar>("avtr_c38a1615-5bf5-42b4-84eb-a8b6c37cbd11"), "fallbackAvatar", null), resetAvatarIcon);
}, resetAvatarIcon
);
}
else
AMAPI.AddButtonPedalToSubMenu("Reset Avatar",() => ObjectPublicAbstractSealedApBoApObStBoApApUnique.Method_Public_Static_Void_ApiAvatar_String_ApiAvatar_0(API.Fetch<ApiAvatar>("avtr_c38a1615-5bf5-42b4-84eb-a8b6c37cbd11"), "fallbackAvatar", null), resetAvatarIcon);
if (ModSettings.confirmAvatarReset)
{
AMAPI.AddSubMenuToSubMenu("Rejoin Instance",
() => {
AMAPI.AddButtonPedalToSubMenu("Confirm Instance Rejoin",RejoinInstance, resetAvatarIcon);
}, resetAvatarIcon
);
}
else
AMAPI.AddButtonPedalToSubMenu("Rejoin Instance",RejoinInstance, resetAvatarIcon);
if (ModSettings.confirmGoHome)
{
AMAPI.AddSubMenuToSubMenu("Go Home",
() => {
AMAPI.AddButtonPedalToSubMenu("Confirm Go Home",GoHome, goHomeIcon);
}, goHomeIcon
);
}
else
AMAPI.AddButtonPedalToSubMenu("Go Home",GoHome, goHomeIcon);
}, helpIcon
);
}
public override void OnPreferencesLoaded() => ModSettings.Apply();
public override void OnPreferencesSaved() => ModSettings.Apply();
private static void SetupButtons()
{
actionMenuApi.AddPedalToExistingMenu(ActionMenuAPI.ActionMenuPageType.Options, delegate
{
actionMenuApi.CreateSubMenu(delegate {
AddRespawnButton();
AddGoHomeButton();
AddResetAvatarButton();
AddInstanceRejoinButton();
});
}, "Help", helpIcon);
}
private static void AddResetAvatarButton()
{
if (ModSettings.confirmAvatarReset)
{
actionMenuApi.AddPedalToCustomMenu(delegate
{
actionMenuApi.CreateSubMenu(delegate
{ //Definitely abusable to set your own quest avatar
actionMenuApi.AddPedalToCustomMenu(()=> ObjectPublicAbstractSealedApBoApObStBoApApUnique.Method_Public_Static_Void_ApiAvatar_String_ApiAvatar_0(API.Fetch<ApiAvatar>("avtr_c38a1615-5bf5-42b4-84eb-a8b6c37cbd11"), "fallbackAvatar", null)
, "Confirm Reset Avatar", resetAvatarIcon);
});
}, "Reset Avatar", resetAvatarIcon);
}
else
actionMenuApi.AddPedalToCustomMenu(() => ObjectPublicAbstractSealedApBoApObStBoApApUnique.Method_Public_Static_Void_ApiAvatar_String_ApiAvatar_0(API.Fetch<ApiAvatar>("avtr_c38a1615-5bf5-42b4-84eb-a8b6c37cbd11"), "fallbackAvatar", null)
, "Reset Avatar", resetAvatarIcon);
}
private static void AddGoHomeButton()
{
if (ModSettings.confirmGoHome)
{
actionMenuApi.AddPedalToCustomMenu(delegate
{
actionMenuApi.CreateSubMenu(delegate
{
actionMenuApi.AddPedalToCustomMenu(() => GoHome(), "Confirm Go Home", goHomeIcon);
});
}, "Go Home", goHomeIcon);
}
else
actionMenuApi.AddPedalToCustomMenu(() => GoHome(), "Go Home", goHomeIcon);
}
private static void AddRespawnButton()
{
if (ModSettings.confirmRespawn)
{
actionMenuApi.AddPedalToCustomMenu(delegate
{
actionMenuApi.CreateSubMenu(delegate
{
actionMenuApi.AddPedalToCustomMenu(() => Respawn(), "Confirm Respawn", respawnIcon);
});
}, "Respawn", respawnIcon);
}
else
actionMenuApi.AddPedalToCustomMenu(() => Respawn(), "Respawn", respawnIcon);
}
private static void AddInstanceRejoinButton()
{
if (ModSettings.confirmInstanceRejoin)
{
actionMenuApi.AddPedalToCustomMenu(delegate
{
actionMenuApi.CreateSubMenu(delegate
{
actionMenuApi.AddPedalToCustomMenu(() => RejoinInstance(), "Confirm Instance Rejoin", rejoinInstanceIcon);
});
}, "Rejoin Instance", rejoinInstanceIcon);
}
else
actionMenuApi.AddPedalToCustomMenu(() => RejoinInstance(), "Rejoin Instance", rejoinInstanceIcon);
}
private static void Respawn()
{
GameObject.Find("UserInterface/QuickMenu/ShortcutMenu/RespawnButton").GetComponent<Button>().onClick.Invoke();
VRCPlayer.field_Internal_Static_VRCPlayer_0.GetComponent<VRCMotionState>().Reset();
}
private static void RejoinInstance()
{
var instance = RoomManager.field_Internal_Static_ApiWorldInstance_0;
Networking.GoToRoom($"{instance.instanceWorld.id}:{instance.idWithTags}");
}
private static void GoHome()
{
if (ModSettings.forceGoHome)
Utils.GoHome();
else
GameObject.Find("UserInterface/QuickMenu/ShortcutMenu/GoHomeButton").GetComponent<Button>().onClick.Invoke();
}
}
static class Utils
{
//Gracefully taken from Advanced Invites https://github.com/Psychloor/AdvancedInvites/blob/master/AdvancedInvites/Utilities.cs#L356
public static bool XRefScanFor(this MethodBase methodBase, string searchTerm)
{
return XrefScanner.XrefScan(methodBase).Any(
xref => xref.Type == XrefType.Global && xref.ReadAsObject()?.ToString().IndexOf(searchTerm, StringComparison.OrdinalIgnoreCase) >= 0);
}
public static GoHomeDelegate GetGoHomeDelegate
{
get
{
if (goHomeDelegate != null) return goHomeDelegate;
MethodInfo goHomeMethod = typeof(VRCFlowManager).GetMethods(BindingFlags.Public | BindingFlags.Instance).First(
m => m.GetParameters().Length == 0 && m.ReturnType == typeof(void) && m.XRefScanFor("Going to Home Location: "));
goHomeDelegate = (GoHomeDelegate)Delegate.CreateDelegate(
typeof(GoHomeDelegate),
VRCFlowManager.prop_VRCFlowManager_0,
goHomeMethod);
return goHomeDelegate;
}
}
public static void GoHome() => GetGoHomeDelegate();
private static GoHomeDelegate goHomeDelegate;
public delegate void GoHomeDelegate();
}
}