123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using BepInEx.Bootstrap;
- using Mono.Cecil;
- namespace BepInEx
- {
- #region BaseUnityPlugin
- /// <summary>
- /// This attribute denotes that a class is a plugin, and specifies the required metadata.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
- public class BepInPlugin : Attribute
- {
- /// <summary>
- /// The unique identifier of the plugin. Should not change between plugin versions.
- /// </summary>
- public string GUID { get; protected set; }
- /// <summary>
- /// The user friendly name of the plugin. Is able to be changed between versions.
- /// </summary>
- public string Name { get; protected set; }
- /// <summary>
- /// The specific version of the plugin.
- /// </summary>
- public SemVer.Version Version { get; protected set; }
- /// <param name="GUID">The unique identifier of the plugin. Should not change between plugin versions.</param>
- /// <param name="Name">The user friendly name of the plugin. Is able to be changed between versions.</param>
- /// <param name="Version">The specific version of the plugin.</param>
- public BepInPlugin(string GUID, string Name, string Version)
- {
- this.GUID = GUID;
- this.Name = Name;
- this.Version = TryParseLongVersion(Version);
- }
- private static SemVer.Version TryParseLongVersion(string version)
- {
- if (SemVer.Version.TryParse(version, out var v))
- return v;
- // no System.Version.TryParse() on .NET 3.5
- try
- {
- var longVersion = new System.Version(version);
- return new SemVer.Version(longVersion.Major, longVersion.Minor, longVersion.Build);
- }
- catch { }
- return null;
- }
- internal static BepInPlugin FromCecilType(TypeDefinition td)
- {
- var attr = MetadataHelper.GetCustomAttributes<BepInPlugin>(td, false).FirstOrDefault();
- if (attr == null)
- return null;
- return new BepInPlugin((string)attr.ConstructorArguments[0].Value, (string)attr.ConstructorArguments[1].Value, (string)attr.ConstructorArguments[2].Value);
- }
- }
- /// <summary>
- /// This attribute specifies any dependencies that this plugin has on other plugins.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
- public class BepInDependency : Attribute, ICacheable
- {
- /// <summary>
- /// Flags that are applied to a dependency
- /// </summary>
- [Flags]
- public enum DependencyFlags
- {
- /// <summary>
- /// The plugin has a hard dependency on the referenced plugin, and will not run without it.
- /// </summary>
- HardDependency = 1,
- /// <summary>
- /// This plugin has a soft dependency on the referenced plugin, and is able to run without it.
- /// </summary>
- SoftDependency = 2,
- }
- /// <summary>
- /// The GUID of the referenced plugin.
- /// </summary>
- public string DependencyGUID { get; protected set; }
- /// <summary>
- /// The flags associated with this dependency definition.
- /// </summary>
- public DependencyFlags Flags { get; protected set; }
- /// <summary>
- /// The version <see cref="SemVer.Range">range</see> of the referenced plugin.
- /// </summary>
- public SemVer.Range VersionRange { get; protected set; }
- /// <summary>
- /// Marks this <see cref="BaseUnityPlugin"/> as dependent on another plugin. The other plugin will be loaded before this one.
- /// If the other plugin doesn't exist, what happens depends on the <see cref="Flags"/> parameter.
- /// </summary>
- /// <param name="DependencyGUID">The GUID of the referenced plugin.</param>
- /// <param name="Flags">The flags associated with this dependency definition.</param>
- public BepInDependency(string DependencyGUID, DependencyFlags Flags = DependencyFlags.HardDependency)
- {
- this.DependencyGUID = DependencyGUID;
- this.Flags = Flags;
- VersionRange = null;
- }
- /// <summary>
- /// Marks this <see cref="BaseUnityPlugin"/> as dependent on another plugin. The other plugin will be loaded before this one.
- /// If the other plugin doesn't exist or is of a version not satisfying <see cref="VersionRange"/>, this plugin will not load and an error will be logged instead.
- /// </summary>
- /// <param name="guid">The GUID of the referenced plugin.</param>
- /// <param name="version">The version range of the referenced plugin.</param>
- /// <remarks>When version is supplied the dependency is always treated as HardDependency</remarks>
- public BepInDependency(string guid, string version) : this(guid)
- {
- VersionRange = SemVer.Range.Parse(version);
- }
- internal static IEnumerable<BepInDependency> FromCecilType(TypeDefinition td)
- {
- var attrs = MetadataHelper.GetCustomAttributes<BepInDependency>(td, true);
- return attrs.Select(customAttribute =>
- {
- var dependencyGuid = (string)customAttribute.ConstructorArguments[0].Value;
- var secondArg = customAttribute.ConstructorArguments[1].Value;
- if (secondArg is string minVersion) return new BepInDependency(dependencyGuid, minVersion);
- return new BepInDependency(dependencyGuid, (DependencyFlags)secondArg);
- }).ToList();
- }
- void ICacheable.Save(BinaryWriter bw)
- {
- bw.Write(DependencyGUID);
- bw.Write((int)Flags);
- bw.Write(VersionRange.ToString());
- }
- void ICacheable.Load(BinaryReader br)
- {
- DependencyGUID = br.ReadString();
- Flags = (DependencyFlags)br.ReadInt32();
- VersionRange = SemVer.Range.Parse(br.ReadString());
- }
- }
- /// <summary>
- /// This attribute specifies other plugins that are incompatible with this plugin.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
- public class BepInIncompatibility : Attribute, ICacheable
- {
- /// <summary>
- /// The GUID of the referenced plugin.
- /// </summary>
- public string IncompatibilityGUID { get; protected set; }
-
- /// <summary>
- /// Marks this <see cref="BaseUnityPlugin"/> as incompatible with another plugin.
- /// If the other plugin exists, this plugin will not be loaded and a warning will be shown.
- /// </summary>
- /// <param name="IncompatibilityGUID">The GUID of the referenced plugin.</param>
- public BepInIncompatibility(string IncompatibilityGUID)
- {
- this.IncompatibilityGUID = IncompatibilityGUID;
- }
- internal static IEnumerable<BepInIncompatibility> FromCecilType(TypeDefinition td)
- {
- var attrs = MetadataHelper.GetCustomAttributes<BepInIncompatibility>(td, true);
- return attrs.Select(customAttribute =>
- {
- var dependencyGuid = (string)customAttribute.ConstructorArguments[0].Value;
- return new BepInIncompatibility(dependencyGuid);
- }).ToList();
- }
- void ICacheable.Save(BinaryWriter bw)
- {
- bw.Write(IncompatibilityGUID);
- }
- void ICacheable.Load(BinaryReader br)
- {
- IncompatibilityGUID = br.ReadString();
- }
- }
- /// <summary>
- /// This attribute specifies which processes this plugin should be run for. Not specifying this attribute will load the plugin under every process.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
- public class BepInProcess : Attribute
- {
- /// <summary>
- /// The name of the process that this plugin will run under.
- /// </summary>
- public string ProcessName { get; protected set; }
- /// <param name="ProcessName">The name of the process that this plugin will run under.</param>
- public BepInProcess(string ProcessName)
- {
- this.ProcessName = ProcessName;
- }
- internal static List<BepInProcess> FromCecilType(TypeDefinition td)
- {
- var attrs = MetadataHelper.GetCustomAttributes<BepInProcess>(td, true);
- return attrs.Select(customAttribute => new BepInProcess((string)customAttribute.ConstructorArguments[0].Value)).ToList();
- }
- }
- #endregion
- #region MetadataHelper
- /// <summary>
- /// Helper class to use for retrieving metadata about a plugin, defined as attributes.
- /// </summary>
- public static class MetadataHelper
- {
- internal static IEnumerable<CustomAttribute> GetCustomAttributes<T>(TypeDefinition td, bool inherit) where T : Attribute
- {
- var result = new List<CustomAttribute>();
- var type = typeof(T);
- var currentType = td;
- do
- {
- result.AddRange(currentType.CustomAttributes.Where(ca => ca.AttributeType.FullName == type.FullName));
- currentType = currentType.BaseType?.Resolve();
- } while (inherit && currentType?.FullName != "System.Object");
- return result;
- }
- /// <summary>
- /// Retrieves the BepInPlugin metadata from a plugin type.
- /// </summary>
- /// <param name="pluginType">The plugin type.</param>
- /// <returns>The BepInPlugin metadata of the plugin type.</returns>
- public static BepInPlugin GetMetadata(Type pluginType)
- {
- object[] attributes = pluginType.GetCustomAttributes(typeof(BepInPlugin), false);
- if (attributes.Length == 0)
- return null;
- return (BepInPlugin)attributes[0];
- }
- /// <summary>
- /// Retrieves the BepInPlugin metadata from a plugin instance.
- /// </summary>
- /// <param name="plugin">The plugin instance.</param>
- /// <returns>The BepInPlugin metadata of the plugin instance.</returns>
- public static BepInPlugin GetMetadata(object plugin)
- => GetMetadata(plugin.GetType());
- /// <summary>
- /// Gets the specified attributes of a type, if they exist.
- /// </summary>
- /// <typeparam name="T">The attribute type to retrieve.</typeparam>
- /// <param name="pluginType">The plugin type.</param>
- /// <returns>The attributes of the type, if existing.</returns>
- public static T[] GetAttributes<T>(Type pluginType) where T : Attribute
- {
- return (T[])pluginType.GetCustomAttributes(typeof(T), true);
- }
- /// <summary>
- /// Gets the specified attributes of an assembly, if they exist.
- /// </summary>
- /// <param name="assembly">The assembly.</param>
- /// <typeparam name="T">The attribute type to retrieve.</typeparam>
- /// <returns>The attributes of the type, if existing.</returns>
- public static T[] GetAttributes<T>(Assembly assembly) where T : Attribute
- {
- return (T[])assembly.GetCustomAttributes(typeof(T), true);
- }
- /// <summary>
- /// Gets the specified attributes of an instance, if they exist.
- /// </summary>
- /// <typeparam name="T">The attribute type to retrieve.</typeparam>
- /// <param name="plugin">The plugin instance.</param>
- /// <returns>The attributes of the instance, if existing.</returns>
- public static IEnumerable<T> GetAttributes<T>(object plugin) where T : Attribute
- => GetAttributes<T>(plugin.GetType());
- /// <summary>
- /// Retrieves the dependencies of the specified plugin type.
- /// </summary>
- /// <param name="plugin">The plugin type.</param>
- /// <returns>A list of all plugin types that the specified plugin type depends upon.</returns>
- public static IEnumerable<BepInDependency> GetDependencies(Type plugin)
- {
- return plugin.GetCustomAttributes(typeof(BepInDependency), true).Cast<BepInDependency>();
- }
- }
- #endregion
- }
|