using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using Newtonsoft.Json;
using PluginConfig.API;
using PluginConfig.API.Decorators;
using PluginConfig.API.Functionals;
using UnityEngine;
using UnityEngine.SceneManagement;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("PlasticChairUpdate")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("My first plugin")]
[assembly: AssemblyTitle("PlasticChairUpdate")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
internal sealed class RefSafetyRulesAttribute : Attribute
{
public readonly int Version;
public RefSafetyRulesAttribute(int P_0)
{
Version = P_0;
}
}
}
namespace PlasticChairUpdate
{
[BepInPlugin("PlasticChairUpdate", "My first plugin", "1.0.0")]
public class Plugin : BaseUnityPlugin
{
public static string modlocat;
public static ManualLogSource Cl;
private static PluginConfigurator config;
public const string Name = "Plastic Chair";
public const string Version = "1.0.0";
public const string GUID = "crash.ultrakill.plasticchair";
public static List<AssetBundle> UltraChair = new List<AssetBundle>();
public static List<ButtonField> Buttons = new List<ButtonField>();
public static int Selected = 2;
public static Dictionary<string, object> prefMap;
private static FileStream prefsStream;
private void Awake()
{
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_000c: Expected O, but got Unknown
Harmony val = new Harmony("org.Crash.FuckLevi");
val.PatchAll(Assembly.GetExecutingAssembly());
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin crash.ultrakill.plasticchair is loaded!");
config = PluginConfigurator.Create("Plastic Chair", "crash.ultrakill.plasticchair");
config.SetIconWithURL("file://" + Path.Combine(ModPath(), "icon.png"));
modlocat = ModPath();
Cl = ((BaseUnityPlugin)this).Logger;
LoadJson();
LoadPrefabs();
MakeButtons();
LoadLastSelected();
SceneManager.sceneLoaded += OnSceneLoaded;
}
public static void LoadLastSelected()
{
int @int = GetInt("chairStorage", 2);
if ((Object)(object)UltraChair.ElementAtOrDefault(@int) == (Object)null)
{
Selected = 0;
SetInt("chairStorage", Selected);
}
else
{
Selected = @int;
SetInt("chairStorage", Selected);
}
((ConfigField)Buttons[Selected]).displayName = addSelected(((ConfigField)Buttons[Selected]).displayName);
Cl.LogInfo((object)("Selected " + @int));
}
public static string addSelected(string s)
{
string text = s.Replace(" [SELECTED]", "");
return text + " [SELECTED]";
}
public static string removeSelected(string s)
{
return s.Replace(" [SELECTED]", "");
}
public static void LoadPrefabs()
{
DirectoryInfo directoryInfo = new DirectoryInfo(ChairPath());
FileInfo[] files = directoryInfo.GetFiles();
FileInfo[] array = files;
foreach (FileInfo fileInfo in array)
{
UltraChair.Add(AssetBundle.LoadFromFile(Path.Combine(ChairPath(), fileInfo.Name)));
}
}
public static void MakeButtons()
{
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0041: Expected O, but got Unknown
//IL_0055: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Expected O, but got Unknown
//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
//IL_00b1: Expected O, but got Unknown
//IL_00c8: Unknown result type (might be due to invalid IL or missing references)
//IL_00d2: Expected O, but got Unknown
new ConfigHeader(config.rootPanel, "Chairs", 24);
int num = 1;
int lastSelected = 0;
ButtonField val = new ButtonField(config.rootPanel, "Default", "crash.ultrakill.plasticchair");
Buttons.Add(val);
val.onClick += (OnClick)delegate
{
lastSelected = Selected;
Selected = 0;
SetInt("chairStorage", Selected);
Cl.LogInfo((object)("Selected " + Selected));
((ConfigField)Buttons[Selected]).displayName = addSelected(((ConfigField)Buttons[Selected]).displayName);
if (lastSelected != Selected)
{
((ConfigField)Buttons[lastSelected]).displayName = removeSelected(((ConfigField)Buttons[lastSelected]).displayName);
}
};
foreach (AssetBundle item in UltraChair)
{
int i = num;
ButtonField val2 = new ButtonField(config.rootPanel, CreateNameProper(((Object)item).name), "crash.ultrakill.plasticchair");
Buttons.Add(val2);
val2.onClick += (OnClick)delegate
{
lastSelected = Selected;
Selected = i;
SetInt("chairStorage", Selected);
Cl.LogInfo((object)("Selected " + Selected));
((ConfigField)Buttons[Selected]).displayName = addSelected(((ConfigField)Buttons[Selected]).displayName);
if (lastSelected != Selected)
{
((ConfigField)Buttons[lastSelected]).displayName = removeSelected(((ConfigField)Buttons[lastSelected]).displayName);
}
};
num++;
}
}
public static string CreateNameProper(string s)
{
string text = s;
TextInfo textInfo = new CultureInfo("en-US", useUserOverride: false).TextInfo;
text = text.Replace("_", " ");
return textInfo.ToTitleCase(text);
}
public static string GameDirectory()
{
//IL_0007: Unknown result type (might be due to invalid IL or missing references)
//IL_000d: Invalid comparison between Unknown and I4
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Invalid comparison between Unknown and I4
string text = Application.dataPath;
if ((int)Application.platform == 1)
{
text = Utility.ParentDirectory(text, 2);
}
else if ((int)Application.platform == 2)
{
text = Utility.ParentDirectory(text, 1);
}
return text;
}
public static string ModDirectory()
{
return Path.Combine(GameDirectory(), "BepInEx", "plugins");
}
public static string ModPath()
{
return Assembly.GetCallingAssembly().Location.Substring(0, Assembly.GetCallingAssembly().Location.LastIndexOf(Path.DirectorySeparatorChar));
}
public static string ChairPath()
{
return Path.Combine(ModPath(), "Chairs");
}
private void OnSceneLoaded(Scene scene, LoadSceneMode mode)
{
//IL_00dc: Unknown result type (might be due to invalid IL or missing references)
//IL_00e1: Unknown result type (might be due to invalid IL or missing references)
//IL_00e9: Unknown result type (might be due to invalid IL or missing references)
//IL_00ee: Unknown result type (might be due to invalid IL or missing references)
//IL_0102: Unknown result type (might be due to invalid IL or missing references)
//IL_0104: Unknown result type (might be due to invalid IL or missing references)
//IL_0129: Unknown result type (might be due to invalid IL or missing references)
if (Selected == 0)
{
return;
}
foreach (GameObject item in GetAllObjectsInScene())
{
MeshRenderer[] components = item.GetComponents<MeshRenderer>();
foreach (MeshRenderer val in components)
{
if (((Object)item).name == "Throne")
{
((Renderer)val).enabled = false;
MeshRenderer[] componentsInChildren = ((Component)val).GetComponentsInChildren<MeshRenderer>();
foreach (MeshRenderer val2 in componentsInChildren)
{
((Renderer)val2).enabled = false;
}
GameObject val3 = UltraChair[Selected - 1].LoadAsset<GameObject>("Ultra_LawnChair");
Cl.LogInfo((object)("Chair loaded is " + ((Object)val3).name));
Quaternion val4 = Quaternion.Euler(-90f, 0f, -90f);
Vector3 position = item.transform.position;
position.z -= 2.71f;
GameObject val5 = Object.Instantiate<GameObject>(val3, position, val4, item.transform);
val5.transform.localScale = new Vector3(0.9f, 0.9f, 0.9f);
}
}
}
}
private static List<GameObject> GetAllObjectsInScene()
{
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002d: Invalid comparison between Unknown and I4
List<GameObject> list = new List<GameObject>();
GameObject[] array = Resources.FindObjectsOfTypeAll(typeof(GameObject)) as GameObject[];
foreach (GameObject val in array)
{
if ((int)((Object)val).hideFlags <= 0)
{
list.Add(val);
}
}
return list;
}
private static void EnsureInitialized()
{
if (prefMap == null)
{
LoadJson();
}
}
private static void LoadJson()
{
if (prefsStream == null)
{
prefsStream = new FileStream(Path.Combine(ModPath(), "LastUsed.json"), FileMode.OpenOrCreate);
}
prefMap = LoadPrefs(prefsStream);
}
private static Dictionary<string, object> LoadPrefs(FileStream stream)
{
return JsonConvert.DeserializeObject<Dictionary<string, object>>(new StreamReader(stream).ReadToEnd()) ?? new Dictionary<string, object>();
}
private static object EnsureValid(string key, object value)
{
return value;
}
public static int GetInt(string key, int fallback = 0)
{
EnsureInitialized();
if (prefMap.TryGetValue(key, out var value))
{
if (value is int num)
{
return (int)EnsureValid(key, num);
}
if (value is long num2)
{
return (int)EnsureValid(key, (int)num2);
}
if (value is float num3)
{
return (int)EnsureValid(key, (int)num3);
}
if (value is double num4)
{
return (int)EnsureValid(key, (int)num4);
}
}
return fallback;
}
public static void SetInt(string key, int content)
{
EnsureInitialized();
content = (int)EnsureValid(key, content);
if (prefMap.ContainsKey(key))
{
prefMap[key] = content;
}
else
{
prefMap.Add(key, content);
}
CommitPrefs();
}
private static void CommitPrefs()
{
string value = JsonConvert.SerializeObject((object)prefMap, (Formatting)1);
prefsStream.SetLength(0L);
StreamWriter streamWriter = new StreamWriter(prefsStream);
streamWriter.Write(value);
streamWriter.Flush();
}
}
public static class MyPluginInfo
{
public const string PLUGIN_GUID = "PlasticChairUpdate";
public const string PLUGIN_NAME = "My first plugin";
public const string PLUGIN_VERSION = "1.0.0";
}
}