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.Text.Json;
using System.Text.Json.Serialization;
using BepInEx;
using BepInEx.Bootstrap;
using BepInEx.Logging;
using BepInEx.Unity.IL2CPP;
using GTFO.API;
using GTFO.API.JSON;
using Globals;
using HarmonyLib;
using Il2CppInterop.Runtime.Injection;
using Il2CppSystem;
using Il2CppSystem.Collections.Generic;
using MTFO.Managers;
using Microsoft.CodeAnalysis;
using Player;
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(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
[assembly: AssemblyCompany("PlayerSpawnApart")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("PlayerSpawnApart")]
[assembly: AssemblyTitle("PlayerSpawnApart")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
internal sealed class NullableAttribute : Attribute
{
public readonly byte[] NullableFlags;
public NullableAttribute(byte P_0)
{
NullableFlags = new byte[1] { P_0 };
}
public NullableAttribute(byte[] P_0)
{
NullableFlags = P_0;
}
}
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
internal sealed class NullableContextAttribute : Attribute
{
public readonly byte Flag;
public NullableContextAttribute(byte P_0)
{
Flag = P_0;
}
}
}
namespace PlayerSpawnApart
{
[BepInPlugin("com.Brandont.PlayerSpawnApart", "PlayerSpawnApart", "1.0.2")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class Loader : BasePlugin
{
public const string MODNAME = "PlayerSpawnApart";
public const string AUTHOR = "Brandont";
public const string GUID = "com.Brandont.PlayerSpawnApart";
public const string VERSION = "1.0.2";
public static ManualLogSource Logger;
public override void Load()
{
//IL_004d: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Expected O, but got Unknown
ClassInjector.RegisterTypeInIl2Cpp<PlayerSpawnApart>();
EventAPI.OnManagersSetup += delegate
{
PlayerSpawnApart @object = ((Component)Global.Current).gameObject.AddComponent<PlayerSpawnApart>();
LevelAPI.OnEnterLevel += @object.LevelStarted;
};
Logger = ((BasePlugin)this).Log;
((BasePlugin)this).Log.LogMessage((object)"Loading PlayerSpawnApart");
Harmony val = new Harmony("PlayerSpawnApart");
val.PatchAll();
((BasePlugin)this).Log.LogMessage((object)"Loaded PlayerSpawnApart");
}
}
internal static class PDAPIWrapper
{
public const string PLUGIN_GUID = "MTFO.Extension.PartialBlocks";
public static readonly bool HasPData;
public static JsonConverter? PersistentIDConverter { get; private set; }
static PDAPIWrapper()
{
HasPData = false;
PersistentIDConverter = null;
if (!((BaseChainloader<BasePlugin>)(object)IL2CPPChainloader.Instance).Plugins.TryGetValue("MTFO.Extension.PartialBlocks", out var value))
{
return;
}
try
{
Assembly assembly = ((value == null) ? null : value.Instance?.GetType()?.Assembly);
if ((object)assembly == null)
{
throw new Exception("Assembly is Missing!");
}
Type[] types = assembly.GetTypes();
Type type = types.First((Type t) => t.Name == "PersistentIDConverter");
if ((object)type == null)
{
throw new Exception("Unable to Find PersistentIDConverter Class");
}
PersistentIDConverter = (JsonConverter)Activator.CreateInstance(type);
HasPData = true;
}
catch (Exception value2)
{
Debug.Log(Object.op_Implicit($"Exception thrown while reading data from MTFO_Extension_PartialData:\n{value2}"));
}
}
}
internal class PlayerSpawnApart : MonoBehaviourExtended
{
private static List<PlayerSpawnData> spawnData;
public void LevelStarted()
{
//IL_00d2: Unknown result type (might be due to invalid IL or missing references)
//IL_00ec: Unknown result type (might be due to invalid IL or missing references)
//IL_0106: Unknown result type (might be due to invalid IL or missing references)
//IL_0120: Unknown result type (might be due to invalid IL or missing references)
if (ReadData() == null)
{
Debug.LogError(Object.op_Implicit("There is no teleport data set up!"));
Debug.LogError(Object.op_Implicit("Place teleport data in Custom/PlayerSpawnApart"));
return;
}
spawnData = ReadData();
uint levelLayoutData = RundownManager.ActiveExpedition.LevelLayoutData;
for (int i = 0; i < spawnData.Count; i++)
{
if (spawnData[i].MainLevelLayoutID != levelLayoutData || !spawnData[i].InternalEnabled)
{
continue;
}
Enumerator<PlayerAgent> enumerator = PlayerManager.PlayerAgentsInLevel.GetEnumerator();
while (enumerator.MoveNext())
{
PlayerAgent current = enumerator.Current;
switch (current.PlayerSlotIndex)
{
case 0:
current.TeleportTo(spawnData[i].Player1Spawn);
break;
case 1:
current.TeleportTo(spawnData[i].Player2Spawn);
break;
case 2:
current.TeleportTo(spawnData[i].Player3Spawn);
break;
case 3:
current.TeleportTo(spawnData[i].Player4Spawn);
break;
}
}
}
}
private static List<PlayerSpawnData> ReadData()
{
JsonSerializerOptions jsonSerializerOptions = new JsonSerializerOptions
{
IncludeFields = false,
ReadCommentHandling = JsonCommentHandling.Skip,
PropertyNameCaseInsensitive = true,
WriteIndented = true
};
foreach (JsonConverter converter in JsonSerializer.DefaultSerializerSettings.Converters)
{
jsonSerializerOptions.Converters.Add(converter);
}
if (PDAPIWrapper.HasPData)
{
jsonSerializerOptions.Converters.Add(PDAPIWrapper.PersistentIDConverter);
}
return JsonSerializer.Deserialize<List<PlayerSpawnData>>(File.ReadAllText(Path.Combine(ConfigManager.CustomPath, "PlayerSpawnApart", "SpawnData.json")), jsonSerializerOptions);
}
}
internal class PlayerSpawnData
{
public Vector3 Player1Spawn { get; set; }
public Vector3 Player2Spawn { get; set; }
public Vector3 Player3Spawn { get; set; }
public Vector3 Player4Spawn { get; set; }
public uint MainLevelLayoutID { get; set; }
public bool InternalEnabled { get; set; }
public string DebugName { get; set; }
}
}