using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Logging;
using PluginConfig.API;
using PluginConfig.API.Fields;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("Easy_Swap")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Easy_Swap")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("e3092892-8c2e-4984-9cfb-5c9eedc22d08")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace Easy_Swap;
[BepInPlugin("com.the_cat.Easy_Swap", "Easy_Swap", "1.3.1")]
public class Plugin : BaseUnityPlugin
{
public const string GUID = "com.the_cat.Easy_Swap";
public const string PluginName = "Easy_Swap";
public const string VersionString = "1.3.1";
public static string AssemblyFolder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? "";
public static ManualLogSource Log = new ManualLogSource("Easy_Swap");
private bool configCreated = false;
public static void EquipWeapon(Swap.Guns WeaponEnum)
{
switch (WeaponEnum)
{
case Swap.Guns.RevovlerBlue:
{
int num2 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rev0", 0) == 2)
{
num2 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.revolverPierce[num2]), true);
break;
}
case Swap.Guns.RevovlerGreen:
{
int num3 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rev2", 0) == 2)
{
num3 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.revolverRicochet[num3]), true);
break;
}
case Swap.Guns.RevovlerRed:
{
int num = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rev1", 0) == 2)
{
num = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.revolverTwirl[num]), true);
break;
}
}
switch (WeaponEnum)
{
case Swap.Guns.ShotgunBlue:
{
int num5 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.sho0", 0) == 2)
{
num5 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.shotgunGrenade[num5]), true);
break;
}
case Swap.Guns.ShotgunGreen:
{
int num6 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.sho1", 0) == 2)
{
num6 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.shotgunPump[num6]), true);
break;
}
case Swap.Guns.ShotgunRed:
{
int num4 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.sho2", 0) == 2)
{
num4 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.shotgunRed[num4]), true);
break;
}
}
switch (WeaponEnum)
{
case Swap.Guns.NailgunBlue:
{
int num8 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.nai0", 0) == 2)
{
num8 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.nailMagnet[num8]), true);
break;
}
case Swap.Guns.NailgunGreen:
{
int num9 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.nai1", 0) == 2)
{
num9 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.nailOverheat[num9]), true);
break;
}
case Swap.Guns.NailgunRed:
{
int num7 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.nai2", 0) == 2)
{
num7 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.nailRed[num7]), true);
break;
}
}
switch (WeaponEnum)
{
case Swap.Guns.RailBlue:
{
int num11 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rai0", 0) == 2)
{
num11 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.railCannon[num11]), true);
break;
}
case Swap.Guns.RailGreen:
{
int num12 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rai1", 0) == 2)
{
num12 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.railHarpoon[num12]), true);
break;
}
case Swap.Guns.RailRed:
{
int num10 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rai2", 0) == 2)
{
num10 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.railMalicious[num10]), true);
break;
}
}
switch (WeaponEnum)
{
case Swap.Guns.RocketBlue:
{
int num14 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rock0", 0) == 2)
{
num14 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.rocketBlue[num14]), true);
break;
}
case Swap.Guns.RocketGreen:
{
int num15 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rock1", 0) == 2)
{
num15 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.rocketGreen[num15]), true);
break;
}
case Swap.Guns.RocketRed:
{
int num13 = 0;
if (MonoSingleton<PrefsManager>.Instance.GetInt("weapon.rock2", 0) == 2)
{
num13 = 1;
}
MonoSingleton<GunControl>.Instance.ForceWeapon(AddressablesExtensions.ToAsset(MonoSingleton<GunSetter>.Instance.rocketRed[num13]), true);
break;
}
}
}
public static Color[] GetVariantColors()
{
//IL_00cb: Unknown result type (might be due to invalid IL or missing references)
//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
//IL_00d3: Unknown result type (might be due to invalid IL or missing references)
//IL_00d4: Unknown result type (might be due to invalid IL or missing references)
//IL_00db: Unknown result type (might be due to invalid IL or missing references)
//IL_00dc: Unknown result type (might be due to invalid IL or missing references)
Color[] variationColors = MonoSingleton<ColorBlindSettings>.Instance.variationColors;
Color val = default(Color);
((Color)(ref val))..ctor(variationColors[0].r * 0.5f, variationColors[0].g * 0.5f, variationColors[0].b * 0.5f);
Color val2 = default(Color);
((Color)(ref val2))..ctor(variationColors[1].r * 0.5f, variationColors[1].g * 0.5f, variationColors[1].b * 0.5f);
Color val3 = default(Color);
((Color)(ref val3))..ctor(variationColors[2].r * 0.5f, variationColors[2].g * 0.5f, variationColors[2].b * 0.5f);
return (Color[])(object)new Color[3] { val, val2, val3 };
}
private void Awake()
{
((BaseUnityPlugin)this).Logger.LogInfo((object)"Easy_Swap,V1.3.1 is loading...");
Log = ((BaseUnityPlugin)this).Logger;
((BaseUnityPlugin)this).Logger.LogInfo((object)"Easy_Swap,V1.3.1 is loaded.");
}
private void Update()
{
if (!configCreated && (Object)(object)MonoSingleton<ColorBlindSettings>.Instance != (Object)null)
{
PluginConfig.InitConfig();
Log.LogInfo((object)"Easy_Swap,V1.3.1 Plugin Config is loaded.");
configCreated = true;
}
Swap.SwapOnKeypress();
}
}
public class PluginConfig
{
public static KeyCodeField RevovlerBlue;
public static KeyCodeField RevovlerGreen;
public static KeyCodeField RevovlerRed;
public static KeyCodeField ShotgunBlue;
public static KeyCodeField ShotgunGreen;
public static KeyCodeField ShotgunRed;
public static KeyCodeField NailgunBlue;
public static KeyCodeField NailgunGreen;
public static KeyCodeField NailgunRed;
public static KeyCodeField RailcannonBlue;
public static KeyCodeField RailcannonGreen;
public static KeyCodeField RailcannonRed;
public static KeyCodeField RocketBlue;
public static KeyCodeField RocketGreen;
public static KeyCodeField RocketRed;
public static void InitConfig()
{
//IL_0046: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Expected O, but got Unknown
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_0062: Expected O, but got Unknown
//IL_0069: Unknown result type (might be due to invalid IL or missing references)
//IL_0080: Unknown result type (might be due to invalid IL or missing references)
//IL_008a: Expected O, but got Unknown
//IL_0091: Unknown result type (might be due to invalid IL or missing references)
//IL_00a8: Unknown result type (might be due to invalid IL or missing references)
//IL_00b2: Expected O, but got Unknown
//IL_00b9: Unknown result type (might be due to invalid IL or missing references)
//IL_00d4: Unknown result type (might be due to invalid IL or missing references)
//IL_00da: Expected O, but got Unknown
//IL_00e6: Unknown result type (might be due to invalid IL or missing references)
//IL_00f0: Expected O, but got Unknown
//IL_00f7: Unknown result type (might be due to invalid IL or missing references)
//IL_010e: Unknown result type (might be due to invalid IL or missing references)
//IL_0118: Expected O, but got Unknown
//IL_011f: Unknown result type (might be due to invalid IL or missing references)
//IL_0136: Unknown result type (might be due to invalid IL or missing references)
//IL_0140: Expected O, but got Unknown
//IL_0147: Unknown result type (might be due to invalid IL or missing references)
//IL_0162: Unknown result type (might be due to invalid IL or missing references)
//IL_0169: Expected O, but got Unknown
//IL_0176: Unknown result type (might be due to invalid IL or missing references)
//IL_0180: Expected O, but got Unknown
//IL_0187: Unknown result type (might be due to invalid IL or missing references)
//IL_019f: Unknown result type (might be due to invalid IL or missing references)
//IL_01a9: Expected O, but got Unknown
//IL_01b0: Unknown result type (might be due to invalid IL or missing references)
//IL_01c8: Unknown result type (might be due to invalid IL or missing references)
//IL_01d2: Expected O, but got Unknown
//IL_01d9: Unknown result type (might be due to invalid IL or missing references)
//IL_01f4: Unknown result type (might be due to invalid IL or missing references)
//IL_01fb: Expected O, but got Unknown
//IL_0208: Unknown result type (might be due to invalid IL or missing references)
//IL_0212: Expected O, but got Unknown
//IL_0219: Unknown result type (might be due to invalid IL or missing references)
//IL_0231: Unknown result type (might be due to invalid IL or missing references)
//IL_023b: Expected O, but got Unknown
//IL_0242: Unknown result type (might be due to invalid IL or missing references)
//IL_025a: Unknown result type (might be due to invalid IL or missing references)
//IL_0264: Expected O, but got Unknown
//IL_026b: Unknown result type (might be due to invalid IL or missing references)
//IL_0286: Unknown result type (might be due to invalid IL or missing references)
//IL_028d: Expected O, but got Unknown
//IL_029a: Unknown result type (might be due to invalid IL or missing references)
//IL_02a4: Expected O, but got Unknown
//IL_02ab: Unknown result type (might be due to invalid IL or missing references)
//IL_02c3: Unknown result type (might be due to invalid IL or missing references)
//IL_02cd: Expected O, but got Unknown
//IL_02d4: Unknown result type (might be due to invalid IL or missing references)
//IL_02ec: Unknown result type (might be due to invalid IL or missing references)
//IL_02f6: Expected O, but got Unknown
//IL_02fd: Unknown result type (might be due to invalid IL or missing references)
PluginConfigurator val = PluginConfigurator.Create("Easy Swap", "com.the_cat.Easy_Swap");
val.SetIconWithURL(Path.Combine(Plugin.AssemblyFolder, "icon.png") ?? "");
Color[] variantColors = Plugin.GetVariantColors();
ConfigPanel val2 = new ConfigPanel(val.rootPanel, "Revovler", "revlovPanelES");
RevovlerBlue = new KeyCodeField(val2, "Revovler (Piercer)", "RevlovES1", (KeyCode)0);
RevovlerBlue.fieldColor = variantColors[0];
RevovlerGreen = new KeyCodeField(val2, "Revovler (Marksman)", "RevlovES2", (KeyCode)0);
RevovlerGreen.fieldColor = variantColors[1];
RevovlerRed = new KeyCodeField(val2, "Revovler (Sharpshooter)", "RevlovES3", (KeyCode)0);
RevovlerRed.fieldColor = variantColors[2];
ConfigPanel val3 = new ConfigPanel(val.rootPanel, "Shotgun", "ShotPanelES");
ShotgunBlue = new KeyCodeField(val3, "Shotgun (Core Eject)", "ShotES1", (KeyCode)0);
ShotgunBlue.fieldColor = variantColors[0];
ShotgunGreen = new KeyCodeField(val3, "Shotgun (Pump)", "ShotES2", (KeyCode)0);
ShotgunGreen.fieldColor = variantColors[1];
ShotgunRed = new KeyCodeField(val3, "Shotgun (Sawed On)", "ShotES3", (KeyCode)0);
ShotgunRed.fieldColor = variantColors[2];
ConfigPanel val4 = new ConfigPanel(val.rootPanel, "Nailgun", "NailPanelES");
NailgunBlue = new KeyCodeField(val4, "Nailgun (Attractor)", "NailES1", (KeyCode)0);
NailgunBlue.fieldColor = variantColors[0];
NailgunGreen = new KeyCodeField(val4, "Nailgun (Overheat)", "NailES2", (KeyCode)0);
NailgunGreen.fieldColor = variantColors[1];
NailgunRed = new KeyCodeField(val4, "Nailgun (Jumpstart)", "NailES3", (KeyCode)0);
NailgunRed.fieldColor = variantColors[2];
ConfigPanel val5 = new ConfigPanel(val.rootPanel, "Railcannon", "railPanelES");
RailcannonBlue = new KeyCodeField(val5, "Railcannon (Electric)", "RailES1", (KeyCode)0);
RailcannonBlue.fieldColor = variantColors[0];
RailcannonGreen = new KeyCodeField(val5, "Railcannon (Screwdriver)", "RailES2", (KeyCode)0);
RailcannonGreen.fieldColor = variantColors[1];
RailcannonRed = new KeyCodeField(val5, "Railcannon (Malicious)", "RailES3", (KeyCode)0);
RailcannonRed.fieldColor = variantColors[2];
ConfigPanel val6 = new ConfigPanel(val.rootPanel, "Rocket Launcher", "railPanelES");
RocketBlue = new KeyCodeField(val6, "Rocket (Freeze Frame)", "RocketES1", (KeyCode)0);
RocketBlue.fieldColor = variantColors[0];
RocketGreen = new KeyCodeField(val6, "Rocket (S.R.S)", "RocketlES2", (KeyCode)0);
RocketGreen.fieldColor = variantColors[1];
RocketRed = new KeyCodeField(val6, "Rocket (Firestarter)", "RocketES3", (KeyCode)0);
RocketRed.fieldColor = variantColors[2];
}
}
public class Swap
{
public enum Guns
{
RevovlerBlue = 11,
RevovlerGreen = 12,
RevovlerRed = 13,
ShotgunBlue = 21,
ShotgunGreen = 22,
ShotgunRed = 23,
NailgunBlue = 31,
NailgunGreen = 32,
NailgunRed = 33,
RailBlue = 41,
RailGreen = 42,
RailRed = 43,
RocketBlue = 51,
RocketGreen = 52,
RocketRed = 53
}
public static void SwapOnKeypress()
{
//IL_005e: Unknown result type (might be due to invalid IL or missing references)
//IL_0080: Unknown result type (might be due to invalid IL or missing references)
//IL_00a2: Unknown result type (might be due to invalid IL or missing references)
//IL_00c6: Unknown result type (might be due to invalid IL or missing references)
//IL_00ea: Unknown result type (might be due to invalid IL or missing references)
//IL_010e: Unknown result type (might be due to invalid IL or missing references)
//IL_0132: Unknown result type (might be due to invalid IL or missing references)
//IL_0156: Unknown result type (might be due to invalid IL or missing references)
//IL_017a: Unknown result type (might be due to invalid IL or missing references)
//IL_019e: Unknown result type (might be due to invalid IL or missing references)
//IL_01c2: Unknown result type (might be due to invalid IL or missing references)
//IL_01e6: Unknown result type (might be due to invalid IL or missing references)
//IL_020a: Unknown result type (might be due to invalid IL or missing references)
//IL_022e: Unknown result type (might be due to invalid IL or missing references)
//IL_0252: Unknown result type (might be due to invalid IL or missing references)
if ((Object)(object)MonoSingleton<OptionsManager>.Instance != (Object)null && (Object)(object)MonoSingleton<NewMovement>.Instance != (Object)null && !MonoSingleton<OptionsManager>.Instance.inIntro && !MonoSingleton<OptionsManager>.Instance.paused && !MonoSingleton<NewMovement>.Instance.dead)
{
if (UnityInput.Current.GetKeyDown(PluginConfig.RevovlerBlue.value))
{
Plugin.EquipWeapon(Guns.RevovlerBlue);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RevovlerGreen.value))
{
Plugin.EquipWeapon(Guns.RevovlerGreen);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RevovlerRed.value))
{
Plugin.EquipWeapon(Guns.RevovlerRed);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.ShotgunBlue.value))
{
Plugin.EquipWeapon(Guns.ShotgunBlue);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.ShotgunGreen.value))
{
Plugin.EquipWeapon(Guns.ShotgunGreen);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.ShotgunRed.value))
{
Plugin.EquipWeapon(Guns.ShotgunRed);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.NailgunBlue.value))
{
Plugin.EquipWeapon(Guns.NailgunBlue);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.NailgunGreen.value))
{
Plugin.EquipWeapon(Guns.NailgunGreen);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.NailgunRed.value))
{
Plugin.EquipWeapon(Guns.NailgunRed);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RailcannonBlue.value))
{
Plugin.EquipWeapon(Guns.RailBlue);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RailcannonGreen.value))
{
Plugin.EquipWeapon(Guns.RailGreen);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RailcannonRed.value))
{
Plugin.EquipWeapon(Guns.RailRed);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RocketBlue.value))
{
Plugin.EquipWeapon(Guns.RocketBlue);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RocketGreen.value))
{
Plugin.EquipWeapon(Guns.RocketGreen);
}
if (UnityInput.Current.GetKeyDown(PluginConfig.RocketRed.value))
{
Plugin.EquipWeapon(Guns.RocketRed);
}
}
}
}