using System;
using System.Diagnostics;
using System.IO;
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 UnityEngine;
[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("DrunkCompany")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("My first plugin")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("DrunkCompany")]
[assembly: AssemblyTitle("DrunkCompany")]
[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 DrunkCompany
{
internal class Patches
{
private static ManualLogSource Logger { get; set; }
public static void Init(ManualLogSource logger)
{
Logger = logger;
}
[HarmonyPatch(typeof(StartOfRound), "Start")]
[HarmonyPostfix]
private static void StartPatch()
{
Logger.LogInfo((object)"Patching Start in StartOfRound");
UpdateMaterials(0);
}
[HarmonyPatch(typeof(RoundManager), "GenerateNewLevelClientRpc")]
[HarmonyPostfix]
private static void GenerateNewLevelClientRpcPatch(int randomSeed)
{
Logger.LogInfo((object)"Patching GenerateNewLevelClientRpc in RoundManager");
UpdateMaterials(randomSeed);
}
private static void UpdateMaterials(int seed)
{
Logger.LogInfo((object)"Patching the textures");
Plugin.Rand = new Random(seed);
Material[] materials = ((Renderer)GameObject.Find("HangarShip/Plane.001").GetComponent<MeshRenderer>()).materials;
UpdateTexture(Path.Combine(Paths.PluginPath, "Cosmic_Collectors-DrunkCompany", "poster.jpg"), materials[1]);
}
private static void UpdateTexture(string file, Material material)
{
//IL_0003: Unknown result type (might be due to invalid IL or missing references)
//IL_0009: Expected O, but got Unknown
Texture2D val = new Texture2D(2, 2);
Logger.LogInfo((object)("Patching " + ((Object)material).name + " with " + file));
ImageConversion.LoadImage(val, File.ReadAllBytes(file));
material.mainTexture = (Texture)(object)val;
}
}
[BepInPlugin("DrunkCompany", "DrunkCompany", "1.0.0")]
public class Plugin : BaseUnityPlugin
{
public static Random Rand = new Random();
private void Awake()
{
//IL_003e: Unknown result type (might be due to invalid IL or missing references)
//IL_0044: Expected O, but got Unknown
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin DrunkCompany has awaken!");
((BaseUnityPlugin)this).Logger.LogInfo((object)("Path loaded " + Paths.PluginPath));
Patches.Init(((BaseUnityPlugin)this).Logger);
Harmony val = new Harmony("DrunkCompany");
val.PatchAll(typeof(Patches));
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin DrunkCompany is loaded!");
}
}
public static class PluginInfo
{
public const string PLUGIN_GUID = "DrunkCompany";
public const string PLUGIN_NAME = "DrunkCompany";
public const string PLUGIN_VERSION = "1.0.0";
}
}