using System;
using System.Collections.Generic;
using System.Diagnostics;
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.Configuration;
using BepInEx.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETFramework,Version=v4.7", FrameworkDisplayName = ".NET Framework 4.7")]
[assembly: AssemblyCompany("LethalPosters")]
[assembly: AssemblyConfiguration("release")]
[assembly: AssemblyDescription("LethalCopmany posters API")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("LethalPosters")]
[assembly: AssemblyTitle("LethalPosters")]
[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 LethalPosters
{
internal class Config
{
private static ConfigFile ConfigFile { get; set; }
static Config()
{
//IL_0010: Unknown result type (might be due to invalid IL or missing references)
//IL_001a: Expected O, but got Unknown
ConfigFile = new ConfigFile(Paths.ConfigPath + "\\LethalPosters.cfg", true);
foreach (string posterFolder in Plugin.PosterFolders)
{
int num = posterFolder.IndexOf("plugins\\", StringComparison.Ordinal) + "plugins\\".Length;
int num2 = posterFolder.IndexOf("\\LethalPosters", num, StringComparison.Ordinal);
string text = posterFolder.Substring(num, num2 - num);
if (!ConfigFile.Bind<bool>(text, "Enabled", true, "Enable or disable " + text).Value)
{
Directory.Move(posterFolder, posterFolder + ".Disabled");
}
}
}
}
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(Plugin.PosterFiles, materials[0]);
UpdateTexture(Plugin.TipFiles, materials[1]);
}
private static void UpdateTexture(IReadOnlyList<string> files, Material material)
{
//IL_001c: Unknown result type (might be due to invalid IL or missing references)
//IL_0022: Expected O, but got Unknown
if (files.Count != 0)
{
int index = Plugin.Rand.Next(files.Count);
Texture2D val = new Texture2D(2, 2);
Logger.LogInfo((object)("Patching " + ((Object)material).name + " with " + files[index]));
ImageConversion.LoadImage(val, File.ReadAllBytes(files[index]));
material.mainTexture = (Texture)(object)val;
}
}
}
[BepInPlugin("LethalPosters", "LethalPosters", "1.0.0")]
public class Plugin : BaseUnityPlugin
{
public static List<string> PosterFolders = new List<string>();
public static readonly List<string> PosterFiles = new List<string>();
public static readonly List<string> TipFiles = new List<string>();
public static Random Rand = new Random();
private void Awake()
{
//IL_00e4: Unknown result type (might be due to invalid IL or missing references)
PosterFolders = Directory.GetDirectories(Paths.PluginPath, "LethalPosters", SearchOption.AllDirectories).ToList();
foreach (string posterFolder in PosterFolders)
{
string[] files = Directory.GetFiles(Path.Combine(posterFolder, "posters"));
foreach (string text in files)
{
if (Path.GetExtension(text) != ".old")
{
PosterFiles.Add(text);
}
}
files = Directory.GetFiles(Path.Combine(posterFolder, "tips"));
foreach (string text2 in files)
{
if (Path.GetExtension(text2) != ".old")
{
TipFiles.Add(text2);
}
}
}
Patches.Init(((BaseUnityPlugin)this).Logger);
new Harmony("LethalPosters").PatchAll(typeof(Patches));
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin LethalPosters (1.0.0) is loaded!");
}
}
public static class PluginInfo
{
public const string PLUGIN_GUID = "LethalPosters";
public const string PLUGIN_NAME = "LethalPosters";
public const string PLUGIN_VERSION = "1.0.0";
}
}