-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.cs
77 lines (69 loc) · 3.85 KB
/
Plugin.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
using System.Reflection;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Logging;
using BepInEx.Unity.IL2CPP;
using GrimbaHack.Data;
using GrimbaHack.Modules;
using GrimbaHack.Modules.ComboTrial;
using GrimbaHack.Modules.ComboTrial.UI;
using GrimbaHack.Modules.PlayerInput;
using GrimbaHack.UI;
using GrimbaHack.UI.MenuManagers;
using GrimbaHack.UI.Popup.CommonElements;
using GrimbaHack.Utility;
using HarmonyLib;
using Il2CppInterop.Runtime.Injection;
using nway.gameplay.ui;
namespace GrimbaHack;
[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)]
public class Plugin : BasePlugin
{
internal new static ManualLogSource Log;
internal static ConfigEntry<string> TwitchClientID;
internal static ConfigEntry<string> TwitchAccessToken;
internal static ConfigEntry<string> TwitchUsername;
internal static ConfigEntry<string> TwitchBroadcasterID;
internal static ConfigEntry<string> TwitchPredictionTitle;
internal static ConfigEntry<string> TwitchPredictionMessage;
internal static ConfigEntry<bool> TwitchPredictionTournamentMode;
internal static ConfigEntry<int> TwitchPredictionWinsRequired;
internal static ConfigEntry<bool> EXPERIMENTAL_MemoryFix;
internal static ConfigEntry<bool> EXPERIMENTAL_TextureLoader;
public override void Load()
{
TwitchClientID = Config.Bind("Twitch", "ClientId", "", "Client ID for Twitch API");
TwitchAccessToken = Config.Bind("Twitch", "AccessToken", "", "Access Token for Twitch");
TwitchUsername = Config.Bind("Twitch", "TwitchUsername", "", "Twitch username");
TwitchBroadcasterID = Config.Bind("Twitch", "TwitchBroadcasterID", "", "Broadcaster ID for twitch channel");
TwitchPredictionTitle = Config.Bind("Twitch", "TwitchPredictionTitle", "Who wins?", "Title for the Prediction");
TwitchPredictionMessage = Config.Bind("Twitch", "TwitchPredictionMessage", "{P1} vs {P2}, who wins? Bet now!",
"Message the chat bot will say when a prediction starts, empty message will not send a message");
TwitchPredictionTournamentMode = Config.Bind("Twitch", "TwitchPredictionTournamentMode", false,
"Tournament mode changes to a FT format expecting 1 round matches instead of multi-round matches.");
TwitchPredictionWinsRequired = Config.Bind("Twitch", "TwitchPredictionWinsRequired", 3,
"Wins required when in tournament mode");
EXPERIMENTAL_MemoryFix = Config.Bind("EXPERIMENTAL", "EXPERIMENTAL_MemoryFix", false,
"Enable experimental memory leak fix");
EXPERIMENTAL_TextureLoader = Config.Bind("EXPERIMENTAL", "EXPERIMENTAL_TextureLoader", false,
"Enable experimental texture loader");
Log = base.Log;
LegacyUISetup.Init(this);
var harmony = new Harmony("Base.Grimbakor.Mod");
harmony.PatchAll(Assembly.GetExecutingAssembly());
EnumInjector.RegisterEnumInIl2Cpp<DefaultMenuOptions>();
EnumInjector.RegisterEnumInIl2Cpp<StageSelectOverrideOptions>();
ClassInjector.RegisterTypeInIl2Cpp<BetterRangeSelector>();
ClassInjector.RegisterTypeInIl2Cpp<PlayerInputBehaviour>();
EnumInjector.RegisterEnumInIl2Cpp<DefaultMenuOptions>();
TextureLoader.Instance.CreateFolders();
FontAssetManager.Init();
GrimUITrainingModeController.Init();
GrimUIMainSettingsController.Init();
CommandHistoryFix.Init();
ComboTrialDataManager.Instance.Init();
MemoryLeakFix.SetDefault();
OnEnterMainMenuActionHandler.Instance.AddCallback(() => { SpriteMap.Instance.GenerateSpriteMap(); });
// OnArmorTakeDamageCallbackHandler.Instance.AddPostfix(info => Log.LogInfo($"{info.attackName} | {info.attacker.GetCharacterName()} | {info.victim.GetCharacterName()}"));
}
}