using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Security.Permissions;
using System.Text.RegularExpressions;
using BepInEx;
using BepInEx.Logging;
using FistVR;
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: AssemblyCompany("NGA")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("Persistent player progression! Raid, stash loot, and deploy with seemless scene/loadout saving.")]
[assembly: AssemblyFileVersion("0.0.1.0")]
[assembly: AssemblyInformationalVersion("0.0.1")]
[assembly: AssemblyProduct("NGA.VaultSaveCompatibility")]
[assembly: AssemblyTitle("BepInEx Plugin Title")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.0.1.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 BepInEx
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
[Conditional("CodeGeneration")]
internal sealed class BepInAutoPluginAttribute : Attribute
{
public BepInAutoPluginAttribute(string id = null, string name = null, string version = null)
{
}
}
}
namespace BepInEx.Preloader.Core.Patching
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
[Conditional("CodeGeneration")]
internal sealed class PatcherAutoPluginAttribute : Attribute
{
public PatcherAutoPluginAttribute(string id = null, string name = null, string version = null)
{
}
}
}
namespace NGA
{
[BepInPlugin("NGA.VaultSaveCompatibility", "VaultSaveCompatibility", "0.0.1")]
[BepInDependency("nrgill28.Sodalite", "1.4.1")]
[BepInProcess("h3vr.exe")]
public class VaultSaveCompatibility : BaseUnityPlugin
{
[HarmonyPatch(typeof(VaultSystem))]
[HarmonyPatch("SpawnVaultFile")]
private class VaultSystemSpawnVaultFileHook
{
private static bool Prefix(ref bool __result, VaultFile f, Transform SpawnRelativeTo, bool spawnRelativeTo, bool decodeAsLoadout, bool clearScene, out string ErrorMessage, Vector3 spawnOffset, ReturnObjectListDelegate del = null, bool displayFileLoad = false)
{
//IL_002a: Unknown result type (might be due to invalid IL or missing references)
//IL_0306: Unknown result type (might be due to invalid IL or missing references)
ErrorMessage = string.Empty;
Debug.Log((object)("SpawnRelativeTo" + spawnRelativeTo + " " + spawnOffset));
if (f.Objects.Count < 1)
{
ErrorMessage = "No Objects Found in file";
Debug.LogWarning((object)"No Objects Found in file");
__result = false;
return false;
}
if (decodeAsLoadout && !GM.CurrentPlayerBody.DoesQuickbeltNameExist(f.QuickbeltLayoutName))
{
ErrorMessage = "Quickbelt Layout Not Found, Cannot Spawn";
Debug.LogWarning((object)"Quickbelt Layout Not Found, Cannot Spawn");
__result = false;
return false;
}
List<int> list = new List<int>();
for (int i = 0; i < f.Objects.Count; i++)
{
List<int> list2 = new List<int>();
for (int j = 0; j < f.Objects[i].Elements.Count; j++)
{
string objectID = f.Objects[i].Elements[j].ObjectID;
if (!IM.OD.ContainsKey(objectID))
{
Logger.LogWarning((object)("Cannot find FVRObject with ID: " + objectID + " and thus cannot spawn file"));
list2.Add(j);
}
else if (!IM.HasSpawnedID(IM.OD[objectID].SpawnedFromId))
{
Logger.LogWarning((object)("Cannot find ItemSpawnerID with ID: " + IM.OD[objectID].SpawnedFromId + " and thus cannot spawn file"));
list2.Add(j);
}
}
for (int num = list2.Count - 1; num >= 0; num--)
{
int index = list2[num];
f.Objects[i].Elements.RemoveAt(index);
}
if (f.Objects[i].Elements.Count < 1)
{
list.Add(i);
}
}
for (int num2 = list.Count - 1; num2 >= 0; num2--)
{
int index2 = list[num2];
f.Objects.RemoveAt(index2);
}
SanitizeRoundTypes(f);
for (int k = 0; k < f.Objects.Count; k++)
{
f.Objects[k].Index = k;
for (int l = 0; l < f.Objects[k].Elements.Count; l++)
{
f.Objects[k].Elements[l].Index = l;
}
}
AnvilManager.Run(VaultSystem.SpawnVaultFileRoutine(f, SpawnRelativeTo, spawnRelativeTo, decodeAsLoadout, clearScene, spawnOffset, del, displayFileLoad));
__result = true;
return false;
}
private static void SanitizeRoundTypes(VaultFile f)
{
//IL_0073: Unknown result type (might be due to invalid IL or missing references)
//IL_0078: 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_00ad: Unknown result type (might be due to invalid IL or missing references)
//IL_010c: Unknown result type (might be due to invalid IL or missing references)
//IL_0111: Unknown result type (might be due to invalid IL or missing references)
//IL_01f8: Unknown result type (might be due to invalid IL or missing references)
//IL_01fd: Unknown result type (might be due to invalid IL or missing references)
//IL_025c: Unknown result type (might be due to invalid IL or missing references)
//IL_0261: Unknown result type (might be due to invalid IL or missing references)
for (int i = 0; i < f.Objects.Count; i++)
{
for (int j = 0; j < f.Objects[i].Elements.Count; j++)
{
string objectID = f.Objects[i].Elements[j].ObjectID;
if (string.IsNullOrEmpty(objectID) || Regex.IsMatch(objectID, "^CartridgeBox.*$"))
{
Logger.LogMessage((object)("Skipping CartridgeBox objectID: " + objectID));
continue;
}
FVRObject val = IM.OD[objectID];
FireArmRoundType roundType = val.RoundType;
List<int> list = new List<int>();
FireArmRoundClass val2;
for (int k = 0; k < f.Objects[i].Elements[j].LoadedRoundsInChambers.Count; k++)
{
if (!AM.DoesClassExistForType(f.Objects[i].Elements[j].LoadedRoundsInChambers[k], roundType))
{
ManualLogSource logger = Logger;
string[] obj = new string[6]
{
"Cannot find round of type: ",
((object)(FireArmRoundType)(ref roundType)).ToString(),
" and class: ",
null,
null,
null
};
val2 = f.Objects[i].Elements[j].LoadedRoundsInChambers[k];
obj[3] = ((object)(FireArmRoundClass)(ref val2)).ToString();
obj[4] = " for objectID: ";
obj[5] = objectID;
logger.LogMessage((object)string.Concat(obj));
list.Add(k);
}
}
for (int num = list.Count - 1; num >= 0; num--)
{
int index = list[num];
f.Objects[i].Elements[j].LoadedRoundsInChambers.RemoveAt(index);
}
List<int> list2 = new List<int>();
for (int l = 0; l < f.Objects[i].Elements[j].LoadedRoundsInMag.Count; l++)
{
if (!AM.DoesClassExistForType(f.Objects[i].Elements[j].LoadedRoundsInMag[l], roundType))
{
ManualLogSource logger2 = Logger;
string[] obj2 = new string[6]
{
"Cannot find round of type: ",
((object)(FireArmRoundType)(ref roundType)).ToString(),
" and class: ",
null,
null,
null
};
val2 = f.Objects[i].Elements[j].LoadedRoundsInMag[l];
obj2[3] = ((object)(FireArmRoundClass)(ref val2)).ToString();
obj2[4] = " for objectID: ";
obj2[5] = objectID;
logger2.LogMessage((object)string.Concat(obj2));
list2.Add(l);
}
}
for (int num2 = list2.Count - 1; num2 >= 0; num2--)
{
int index2 = list2[num2];
f.Objects[i].Elements[j].LoadedRoundsInMag.RemoveAt(index2);
}
}
}
}
}
internal static ManualLogSource Logger { get; private set; }
private void Awake()
{
//IL_0012: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Expected O, but got Unknown
Logger = ((BaseUnityPlugin)this).Logger;
Harmony val = new Harmony("NGA.VaultSaveCompatibility");
val.PatchAll();
Logger.LogMessage((object)"Hello, world! Sent from NGA.VaultSaveCompatibility 0.0.2");
}
}
}