using System;
using System.Collections.Generic;
using System.Diagnostics;
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 CG.Ship.Hull;
using Gameplay.CompositeWeapons;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using Photon.Pun;
using Photon.Realtime;
using UnityEngine;
using VoidManager;
using VoidManager.MPModChecks;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyCompany("EjectMagazine")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("EjectMagazine")]
[assembly: AssemblyTitle("Ejects empty magazines instead of destroying them")]
[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 EjectMagazine
{
[HarmonyPatch(typeof(BulletMagazine), "ConsumeContainer")]
internal class BulletMagazinePatch
{
internal static List<Player> playersWithMod = new List<Player>();
private static bool Prefix(BulletMagazine __instance, CarryablesSocket socket)
{
//IL_0044: Unknown result type (might be due to invalid IL or missing references)
//IL_0049: Unknown result type (might be due to invalid IL or missing references)
//IL_004e: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
if (!VoidManagerPlugin.Enabled)
{
return true;
}
Player owner = ((MonoBehaviourPun)((WeaponElement)__instance).WeaponBase).photonView.Owner;
if (owner.IsLocal || playersWithMod.Contains(owner))
{
socket.EjectCarryable(((Component)socket).transform.rotation * Vector3.back * 10f);
return false;
}
return true;
}
}
public class MyPluginInfo
{
public const string PLUGIN_GUID = "id107.ejectmagazine";
public const string PLUGIN_NAME = "EjectMagazine";
public const string USERS_PLUGIN_NAME = "Eject Magazine";
public const string PLUGIN_VERSION = "1.0.1";
public const string PLUGIN_DESCRIPTION = "Ejects empty magazines instead of destroying them";
public const string PLUGIN_ORIGINAL_AUTHOR = "18107";
public const string PLUGIN_AUTHORS = "18107, Mest";
public const string PLUGIN_THUNDERSTORE_ID = "";
}
[BepInPlugin("id107.ejectmagazine", "Eject Magazine", "1.0.1")]
[BepInProcess("Void Crew.exe")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class BepinPlugin : BaseUnityPlugin
{
internal static ManualLogSource Log;
private void Awake()
{
Log = ((BaseUnityPlugin)this).Logger;
Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly(), (string)null);
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin id107.ejectmagazine is loaded!");
}
}
public class VoidManagerPlugin : VoidPlugin
{
public static bool Enabled { get; private set; }
public override MultiplayerType MPType => (MultiplayerType)8;
public override string Author => "18107, Mest";
public override string Description => "Ejects empty magazines instead of destroying them";
public override string ThunderstoreID => "";
public VoidManagerPlugin()
{
Events.Instance.ClientModlistRecieved += delegate(object o, PlayerEventArgs e)
{
BulletMagazinePatch.playersWithMod.RemoveAll((Player player) => !PhotonNetwork.PlayerList.Contains(player));
if (NetworkedPeerManager.Instance.NetworkedPeerHasMod(e.player, "id107.ejectmagazine"))
{
BulletMagazinePatch.playersWithMod.Add(e.player);
}
};
}
public override SessionChangedReturn OnSessionChange(SessionChangedInput input)
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_001d: Unknown result type (might be due to invalid IL or missing references)
//IL_001e: Unknown result type (might be due to invalid IL or missing references)
//IL_0021: Unknown result type (might be due to invalid IL or missing references)
Enabled = input.IsMod_Session;
SessionChangedReturn result = default(SessionChangedReturn);
result.SetMod_Session = true;
return result;
}
}
}