using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
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 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(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyCompany("DragonRidersExtrasMod")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0+1e4773cf635fad5e0e2bc8c004f7db3560ef9ee5")]
[assembly: AssemblyProduct("DragonRidersExtrasMod")]
[assembly: AssemblyTitle("DragonRidersExtrasMod")]
[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.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;
}
}
[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 System
{
internal readonly struct Index : IEquatable<Index>
{
private static class ThrowHelper
{
[DoesNotReturn]
public static void ThrowValueArgumentOutOfRange_NeedNonNegNumException()
{
throw new ArgumentOutOfRangeException("value", "Non-negative number required.");
}
}
private readonly int _value;
public static Index Start => new Index(0);
public static Index End => new Index(-1);
public int Value
{
get
{
if (_value < 0)
{
return ~_value;
}
return _value;
}
}
public bool IsFromEnd => _value < 0;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Index(int value, bool fromEnd = false)
{
if (value < 0)
{
ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException();
}
if (fromEnd)
{
_value = ~value;
}
else
{
_value = value;
}
}
private Index(int value)
{
_value = value;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Index FromStart(int value)
{
if (value < 0)
{
ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException();
}
return new Index(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Index FromEnd(int value)
{
if (value < 0)
{
ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException();
}
return new Index(~value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public int GetOffset(int length)
{
int num = _value;
if (IsFromEnd)
{
num += length + 1;
}
return num;
}
public override bool Equals([NotNullWhen(true)] object? value)
{
return value is Index && _value == ((Index)value)._value;
}
public bool Equals(Index other)
{
return _value == other._value;
}
public override int GetHashCode()
{
return _value;
}
public static implicit operator Index(int value)
{
return FromStart(value);
}
public override string ToString()
{
if (IsFromEnd)
{
return ToStringFromEnd();
}
return ((uint)Value).ToString();
}
private string ToStringFromEnd()
{
return "^" + Value;
}
}
internal readonly struct Range : IEquatable<Range>
{
private static class HashHelpers
{
public static int Combine(int h1, int h2)
{
uint num = (uint)(h1 << 5) | ((uint)h1 >> 27);
return ((int)num + h1) ^ h2;
}
}
private static class ThrowHelper
{
[DoesNotReturn]
public static void ThrowArgumentOutOfRangeException()
{
throw new ArgumentOutOfRangeException("length");
}
}
public Index Start { get; }
public Index End { get; }
public static Range All => Index.Start..Index.End;
public Range(Index start, Index end)
{
Start = start;
End = end;
}
public override bool Equals([NotNullWhen(true)] object? value)
{
return value is Range range && range.Start.Equals(Start) && range.End.Equals(End);
}
public bool Equals(Range other)
{
return other.Start.Equals(Start) && other.End.Equals(End);
}
public override int GetHashCode()
{
return HashHelpers.Combine(Start.GetHashCode(), End.GetHashCode());
}
public override string ToString()
{
return Start.ToString() + ".." + End;
}
public static Range StartAt(Index start)
{
return start..Index.End;
}
public static Range EndAt(Index end)
{
return Index.Start..end;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public (int Offset, int Length) GetOffsetAndLength(int length)
{
Index start = Start;
int num = ((!start.IsFromEnd) ? start.Value : (length - start.Value));
Index end = End;
int num2 = ((!end.IsFromEnd) ? end.Value : (length - end.Value));
if ((uint)num2 > (uint)length || (uint)num > (uint)num2)
{
ThrowHelper.ThrowArgumentOutOfRangeException();
}
return (num, num2 - num);
}
}
}
namespace System.Runtime.Versioning
{
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)]
internal sealed class RequiresPreviewFeaturesAttribute : Attribute
{
public string? Message { get; }
public string? Url { get; set; }
public RequiresPreviewFeaturesAttribute()
{
}
public RequiresPreviewFeaturesAttribute(string? message)
{
Message = message;
}
}
}
namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false, AllowMultiple = false)]
internal sealed class AsyncMethodBuilderAttribute : Attribute
{
public Type BuilderType { get; }
public AsyncMethodBuilderAttribute(Type builderType)
{
BuilderType = builderType;
}
}
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
internal sealed class CallerArgumentExpressionAttribute : Attribute
{
public string ParameterName { get; }
public CallerArgumentExpressionAttribute(string parameterName)
{
ParameterName = parameterName;
}
}
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = false)]
internal sealed class CompilerFeatureRequiredAttribute : Attribute
{
public const string RefStructs = "RefStructs";
public const string RequiredMembers = "RequiredMembers";
public string FeatureName { get; }
public bool IsOptional { get; set; }
public CompilerFeatureRequiredAttribute(string featureName)
{
FeatureName = featureName;
}
}
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute
{
public string[] Arguments { get; }
public InterpolatedStringHandlerArgumentAttribute(string argument)
{
Arguments = new string[1] { argument };
}
public InterpolatedStringHandlerArgumentAttribute(params string[] arguments)
{
Arguments = arguments;
}
}
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)]
internal sealed class InterpolatedStringHandlerAttribute : Attribute
{
}
[EditorBrowsable(EditorBrowsableState.Never)]
internal static class IsExternalInit
{
}
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
internal sealed class ModuleInitializerAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
internal sealed class RequiredMemberAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Interface, Inherited = false)]
internal sealed class SkipLocalsInitAttribute : Attribute
{
}
}
namespace System.Diagnostics.CodeAnalysis
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)]
internal sealed class AllowNullAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)]
internal sealed class DisallowNullAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
internal sealed class DoesNotReturnAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
internal sealed class DoesNotReturnIfAttribute : Attribute
{
public bool ParameterValue { get; }
public DoesNotReturnIfAttribute(bool parameterValue)
{
ParameterValue = parameterValue;
}
}
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, Inherited = false)]
internal sealed class MaybeNullAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
internal sealed class MaybeNullWhenAttribute : Attribute
{
public bool ReturnValue { get; }
public MaybeNullWhenAttribute(bool returnValue)
{
ReturnValue = returnValue;
}
}
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)]
internal sealed class MemberNotNullAttribute : Attribute
{
public string[] Members { get; }
public MemberNotNullAttribute(string member)
{
Members = new string[1] { member };
}
public MemberNotNullAttribute(params string[] members)
{
Members = members;
}
}
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)]
internal sealed class MemberNotNullWhenAttribute : Attribute
{
public bool ReturnValue { get; }
public string[] Members { get; }
public MemberNotNullWhenAttribute(bool returnValue, string member)
{
ReturnValue = returnValue;
Members = new string[1] { member };
}
public MemberNotNullWhenAttribute(bool returnValue, params string[] members)
{
ReturnValue = returnValue;
Members = members;
}
}
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, Inherited = false)]
internal sealed class NotNullAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Parameter | AttributeTargets.ReturnValue, AllowMultiple = true, Inherited = false)]
internal sealed class NotNullIfNotNullAttribute : Attribute
{
public string ParameterName { get; }
public NotNullIfNotNullAttribute(string parameterName)
{
ParameterName = parameterName;
}
}
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
internal sealed class NotNullWhenAttribute : Attribute
{
public bool ReturnValue { get; }
public NotNullWhenAttribute(bool returnValue)
{
ReturnValue = returnValue;
}
}
[AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false, Inherited = false)]
internal sealed class SetsRequiredMembersAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
internal sealed class StringSyntaxAttribute : Attribute
{
public const string CompositeFormat = "CompositeFormat";
public const string DateOnlyFormat = "DateOnlyFormat";
public const string DateTimeFormat = "DateTimeFormat";
public const string EnumFormat = "EnumFormat";
public const string GuidFormat = "GuidFormat";
public const string Json = "Json";
public const string NumericFormat = "NumericFormat";
public const string Regex = "Regex";
public const string TimeOnlyFormat = "TimeOnlyFormat";
public const string TimeSpanFormat = "TimeSpanFormat";
public const string Uri = "Uri";
public const string Xml = "Xml";
public string Syntax { get; }
public object?[] Arguments { get; }
public StringSyntaxAttribute(string syntax)
{
Syntax = syntax;
Arguments = new object[0];
}
public StringSyntaxAttribute(string syntax, params object?[] arguments)
{
Syntax = syntax;
Arguments = arguments;
}
}
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
internal sealed class UnscopedRefAttribute : Attribute
{
}
}
namespace DragonRidersExtrasMod.Patches
{
internal static class DragonRiders
{
public static IEnumerable<string> ValidDragons = new string[30]
{
"DModer_Ygg", "DModer_Ygg1", "DModer_Ygg2", "DModer_Ygg3", "DModer_Ygg4", "DFrosty_Ygg", "DFrosty_Ygg1", "DFrosty_Ygg2", "DFrosty_Ygg3", "DFrosty_Ygg4",
"dragon_ygg_black", "DSwamp_Ygg", "dragon_ygg_smauger", "dragon_ygg0_fire", "dragon_ygg1_fire", "dragon_ygg2_fire", "dragon_ygg3_fire", "dragon_ygg4_fire", "dragon_ygg0_blue", "dragon_ygg1_blue",
"dragon_ygg2_blue", "dragon_ygg3_blue", "dragon_ygg4_blue", "Admin_Dragon_Ygg", "DModer_Wild_Ygg", "Legend_dragon_Moder_ygg", "Legend_dragon_Smauger_ygg", "Legend_dragon_Nidhogg_ygg", "Legend_dragon_Astrid_Ygg", "Cannibal_Ygg"
};
}
internal static class SadleExtensions
{
public static bool IsDragon(this Sadle sadle)
{
return DragonRiders.ValidDragons.Any(delegate(string d)
{
MonsterAI monsterAI = sadle.m_monsterAI;
bool? obj;
if (monsterAI == null)
{
obj = null;
}
else
{
GameObject gameObject = ((Component)monsterAI).gameObject;
obj = ((gameObject == null) ? null : ((Object)gameObject).name?.StartsWith(d));
}
bool? flag = obj;
return flag.GetValueOrDefault();
});
}
}
[HarmonyPatch(typeof(Sadle), "ApplyControlls")]
internal static class PatchApplyControlls
{
private static void Postfix(Sadle __instance, ref Vector3 moveDir, ref Vector3 lookDir, ref bool run, ref bool autoRun, ref bool block)
{
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
//IL_003e: Unknown result type (might be due to invalid IL or missing references)
//IL_0043: Unknown result type (might be due to invalid IL or missing references)
//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
//IL_00e8: Unknown result type (might be due to invalid IL or missing references)
//IL_0125: Unknown result type (might be due to invalid IL or missing references)
//IL_012e: Unknown result type (might be due to invalid IL or missing references)
//IL_0134: Expected I4, but got Unknown
//IL_0104: Unknown result type (might be due to invalid IL or missing references)
//IL_009f: Unknown result type (might be due to invalid IL or missing references)
//IL_00a4: Unknown result type (might be due to invalid IL or missing references)
//IL_00b2: Unknown result type (might be due to invalid IL or missing references)
//IL_00b4: Unknown result type (might be due to invalid IL or missing references)
//IL_0093: Unknown result type (might be due to invalid IL or missing references)
//IL_0098: 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_00bf: Unknown result type (might be due to invalid IL or missing references)
//IL_00c1: Unknown result type (might be due to invalid IL or missing references)
if ((Object)(object)Player.m_localPlayer == (Object)null || !__instance.IsDragon())
{
return;
}
float skillFactor = ((Character)Player.m_localPlayer).GetSkills().GetSkillFactor((SkillType)110);
Speed val = (Speed)4;
Vector3 val2 = Vector3.zero;
if ((block || (double)moveDir.z > 0.5) | (run ? true : false))
{
Vector3 val3;
if (__instance.IsDragon() && __instance.m_character.m_flying)
{
val3 = lookDir;
}
else
{
Vector3 val4 = lookDir;
val4.y = 0f;
val3 = val4;
}
((Vector3)(ref val3)).Normalize();
val2 = val3;
}
if (run)
{
val = (Speed)2;
}
else if ((double)moveDir.z > 0.5)
{
val = (Speed)1;
}
else if ((double)moveDir.z < -0.5)
{
val = (Speed)0;
}
else if (block)
{
val = (Speed)3;
}
__instance.m_nview.InvokeRPC("Controls", new object[3]
{
val2,
(int)val,
skillFactor
});
}
}
}
namespace ExampleCallMethodMod
{
[BepInPlugin("com.github.dragonridersextrasmod.DragonRidersExtrasMod", "DragonRidersExtrasMod", "1.0.0.0")]
public class DragonRidersExtras : BaseUnityPlugin
{
private static readonly Harmony harmony = new Harmony("com.github.dragonridersextrasmod.DragonRidersExtrasMod");
private static ConfigEntry<bool> _loggingEnabled;
private static DragonRidersExtras _instance;
public const string PluginAuthor = "DragonRidersExtrasMod";
public const string PluginGuid = "com.github.dragonridersextrasmod.DragonRidersExtrasMod";
public const string PluginName = "DragonRidersExtrasMod";
public const string PluginVersion = "1.0.0.0";
private void Awake()
{
_loggingEnabled = ((BaseUnityPlugin)this).Config.Bind<bool>("Logging", "Logging Enabled", false, "Enable logging");
_instance = this;
harmony.PatchAll();
}
private void OnDestroy()
{
_instance = null;
harmony.UnpatchSelf();
}
public static void Log(string message)
{
if (_loggingEnabled.Value)
{
((BaseUnityPlugin)_instance).Logger.LogInfo((object)message);
}
}
public static void LogWarning(string message)
{
if (_loggingEnabled.Value)
{
((BaseUnityPlugin)_instance).Logger.LogWarning((object)message);
}
}
public static void LogError(string message)
{
if (_loggingEnabled.Value)
{
((BaseUnityPlugin)_instance).Logger.LogError((object)message);
}
}
}
}