Rasagar/Library/PackageCache/com.unity.render-pipelines.core/Runtime/Documentation.cs

199 lines
7.9 KiB
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using System;
using System.Runtime.CompilerServices;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Diagnostics.CodeAnalysis;
#if UNITY_EDITOR
using PackageInfo = UnityEditor.PackageManager.PackageInfo;
#endif
[assembly: InternalsVisibleTo("Unity.RenderPipelines.Core.Editor.Tests")]
namespace UnityEngine.Rendering
{
/// <summary>
/// Attribute to define the help url
/// </summary>
/// <example>
/// [CoreRPHelpURLAttribute("Volume")]
/// public class Volume : MonoBehaviour
/// </example>
[Conditional("UNITY_EDITOR")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum, AllowMultiple = false)]
public class CoreRPHelpURLAttribute : HelpURLAttribute
{
/// <summary>
/// The constructor of the attribute
/// </summary>
/// <param name="pageName">The name of the documentation page.</param>
/// <param name="packageName">The package name, defaulting to "com.unity.render-pipelines.core".</param>
public CoreRPHelpURLAttribute(string pageName, string packageName = "com.unity.render-pipelines.core")
: base(DocumentationInfo.GetPageLink(packageName, pageName, ""))
{
}
/// <summary>
/// The constructor of the attribute
/// </summary>
/// <param name="pageName">The name of the documentation page.</param>
/// <param name="pageHash">The hash specifying a section within the page.</param>
/// <param name="packageName">The package name, defaulting to "com.unity.render-pipelines.core".</param>
public CoreRPHelpURLAttribute(string pageName, string pageHash, string packageName = "com.unity.render-pipelines.core")
: base(DocumentationInfo.GetPageLink(packageName, pageName, pageHash))
{
}
}
/// <summary>
/// Use this attribute to define the help URP.
/// </summary>
/// <example>
/// [CoreRPHelpURLAttribute("Volume")]
/// public class Volume : MonoBehaviour
/// </example>
[Conditional("UNITY_EDITOR")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum, AllowMultiple = false)]
public class CurrentPipelineHelpURLAttribute : HelpURLAttribute
{
private string pageName { get; }
/// <summary>
/// The constructor of the attribute
/// </summary>
/// <param name="pageName">The name of the documentation page.</param>
public CurrentPipelineHelpURLAttribute(string pageName)
: base(null)
{
this.pageName = pageName;
}
/// <summary>
/// Returns the URL to the given page in the current Render Pipeline package documentation site.
/// </summary>
public override string URL
{
get
{
#if UNITY_EDITOR
if (DocumentationUtils.TryGetPackageInfoForType(GraphicsSettings.currentRenderPipeline?.GetType() ?? typeof(DocumentationInfo), out var package, out var version))
{
return DocumentationInfo.GetPackageLink(package, version, this.pageName);
}
#endif
return string.Empty;
}
}
}
//We need to have only one version number amongst packages (so public)
/// <summary>
/// Documentation Info class.
/// </summary>
public class DocumentationInfo
{
const string fallbackVersion = "13.1";
const string url = "https://docs.unity3d.com/Packages/{0}@{1}/manual/{2}.html{3}";
/// <summary>
/// Current version of the documentation.
/// </summary>
public static string version
{
get
{
#if UNITY_EDITOR
if (DocumentationUtils.TryGetPackageInfoForType(typeof(DocumentationInfo), out _, out var version))
return version;
#endif
return fallbackVersion;
}
}
/// <summary>
/// Generates a help URL for the given package and page name.
/// </summary>
/// <param name="packageName">The package name.</param>
/// <param name="packageVersion">The package version.</param>
/// <param name="pageName">The page name without the extension.</param>
/// <returns>The full URL of the page.</returns>
public static string GetPackageLink(string packageName, string packageVersion, string pageName) => string.Format(url, packageName, packageVersion, pageName, "");
/// <summary>
/// Generates a help url for the given package and page name
/// </summary>
/// <param name="packageName">The package name</param>
/// <param name="pageName">The page name without the extension.</param>
/// <returns>The full URL of the page.</returns>
public static string GetPageLink(string packageName, string pageName) => string.Format(url, packageName, version, pageName, "");
/// <summary>
/// Generates a help url for the given package and page name
/// </summary>
/// <param name="packageName">The package name</param>
/// <param name="pageName">The page name without the extension.</param>
/// <param name="pageHash">The page hash</param>
/// <returns>The full URL of the page.</returns>
public static string GetPageLink(string packageName, string pageName, string pageHash) => string.Format(url, packageName, version, pageName, pageHash);
}
/// <summary>
/// Set of utils for documentation
/// </summary>
public static class DocumentationUtils
{
/// <summary>
/// Obtains the help url from an enum
/// </summary>
/// <typeparam name="TEnum">The enum with a <see cref="HelpURLAttribute"/></typeparam>
/// <param name="mask">[Optional] The current value of the enum</param>
/// <returns>The full url</returns>
public static string GetHelpURL<TEnum>(TEnum mask = default)
where TEnum : struct, IConvertible
{
var helpURLAttribute = (HelpURLAttribute)mask
.GetType()
.GetCustomAttributes(typeof(HelpURLAttribute), false)
.FirstOrDefault();
return helpURLAttribute == null ? string.Empty : $"{helpURLAttribute.URL}#{mask}";
}
/// <summary>
/// Obtains the help URL from a type.
/// </summary>
/// <param name="type">The type decorated with the HelpURL attribute.</param>
/// <param name="url">The full URL from the HelpURL attribute. If the attribute is not present, this value is null.</param>
/// <returns>Returns true if the attribute is present, and false otherwise.</returns>
public static bool TryGetHelpURL(Type type, out string url)
{
var attribute = type.GetCustomAttribute<HelpURLAttribute>(false);
url = attribute?.URL;
return attribute != null;
}
#if UNITY_EDITOR
/// <summary>
/// Obtain package informations from a specific type
/// </summary>
/// <param name="type">The type used to retrieve package information</param>
/// <param name="packageName">The name of the package containing the given type</param>
/// <param name="version">The version number of the package containing the given type. Only Major.Minor will be returned as fix is not used for documentation</param>
/// <returns></returns>
public static bool TryGetPackageInfoForType([DisallowNull] Type type, [NotNullWhen(true)] out string packageName, [NotNullWhen(true)] out string version)
{
var packageInfo = PackageInfo.FindForAssembly(type.Assembly);
if (packageInfo == null)
{
packageName = null;
version = null;
return false;
}
packageName = packageInfo.name;
version = packageInfo.version.Substring(0, packageInfo.version.LastIndexOf('.'));
return true;
}
#endif
}
}