CameraCaptureBridge.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. #if UNITY_EDITOR
  2. #define USE_REFLECTION
  3. #endif
  4. using System;
  5. using System.Collections.Generic;
  6. #if UNITY_EDITOR
  7. #if USE_REFLECTION
  8. using System.Reflection;
  9. #else
  10. using UnityEditor.Recorder;
  11. #endif
  12. #endif
  13. namespace UnityEngine.Rendering
  14. {
  15. /// <summary>
  16. /// Bridge class for camera captures.
  17. /// </summary>
  18. public static class CameraCaptureBridge
  19. {
  20. #if USE_REFLECTION
  21. private static FieldInfo m_Enabled;
  22. private static MethodInfo m_GetActions;
  23. #endif
  24. private static Dictionary<Camera, HashSet<Action<RenderTargetIdentifier, CommandBuffer>>> actionDict =
  25. new Dictionary<Camera, HashSet<Action<RenderTargetIdentifier, CommandBuffer>>>();
  26. private static bool _enabled;
  27. static CameraCaptureBridge()
  28. {
  29. #if USE_REFLECTION
  30. const string optionsClassName = "UnityEditor.Recorder.Options";
  31. const string editorDllName = "Unity.Recorder.Editor";
  32. var optionsType = Type.GetType(optionsClassName + ", " + editorDllName);
  33. if (optionsType == null)
  34. return;
  35. const string useCameraCaptureCallbacksFieldName = "useCameraCaptureCallbacks";
  36. var useCameraCaptureCallbacksField = optionsType.GetField(
  37. useCameraCaptureCallbacksFieldName,
  38. BindingFlags.Public | BindingFlags.Static);
  39. if (useCameraCaptureCallbacksField == null)
  40. return;
  41. const string captureClassName = "UnityEditor.Recorder.Input.CameraCapture";
  42. var captureType = Type.GetType(captureClassName + ", " + editorDllName);
  43. if (captureType == null)
  44. return;
  45. const string getActionsMethodName = "GetActions";
  46. var getActionsMethod = captureType.GetMethod(
  47. getActionsMethodName,
  48. BindingFlags.Public | BindingFlags.Static);
  49. if (getActionsMethod == null)
  50. return;
  51. m_Enabled = useCameraCaptureCallbacksField;
  52. m_GetActions = getActionsMethod;
  53. #endif
  54. }
  55. /// <summary>
  56. /// Enable camera capture.
  57. /// </summary>
  58. public static bool enabled
  59. {
  60. get
  61. {
  62. return
  63. #if USE_REFLECTION
  64. m_Enabled == null ? _enabled : (bool)m_Enabled.GetValue(null)
  65. #elif UNITY_EDITOR
  66. UnityEditor.Recorder.Options.useCameraCaptureCallbacks
  67. #else
  68. _enabled
  69. #endif
  70. ;
  71. }
  72. set
  73. {
  74. #if USE_REFLECTION
  75. m_Enabled?.SetValue(null, value);
  76. #elif UNITY_EDITOR
  77. UnityEditor.Recorder.Options.useCameraCaptureCallbacks = value;
  78. #endif
  79. _enabled = value;
  80. }
  81. }
  82. /// <summary>
  83. /// Provides the set actions to the renderer to be triggered at the end of the render loop for camera capture
  84. /// </summary>
  85. /// <param name="camera">The camera to get actions for</param>
  86. /// <returns>Enumeration of actions</returns>
  87. public static IEnumerator<Action<RenderTargetIdentifier, CommandBuffer>> GetCaptureActions(Camera camera)
  88. {
  89. #if USE_REFLECTION
  90. if (m_GetActions != null)
  91. {
  92. var recorderActions = (m_GetActions.Invoke(null, new object[] { camera }) as IEnumerator<Action<RenderTargetIdentifier, CommandBuffer>>);
  93. if (recorderActions != null)
  94. return recorderActions;
  95. }
  96. #elif UNITY_EDITOR
  97. var recorderActions = UnityEditor.Recorder.Input.CameraCapture.GetActions(camera);
  98. if (recorderActions != null)
  99. return recorderActions;
  100. #endif
  101. if (!actionDict.TryGetValue(camera, out var actions))
  102. return null;
  103. return actions.GetEnumerator();
  104. }
  105. /// <summary>
  106. /// Adds actions for camera capture
  107. /// </summary>
  108. /// <param name="camera">The camera to add actions for</param>
  109. /// <param name="action">The action to add</param>
  110. public static void AddCaptureAction(Camera camera, Action<RenderTargetIdentifier, CommandBuffer> action)
  111. {
  112. actionDict.TryGetValue(camera, out var actions);
  113. if (actions == null)
  114. {
  115. actions = new HashSet<Action<RenderTargetIdentifier, CommandBuffer>>();
  116. actionDict.Add(camera, actions);
  117. }
  118. actions.Add(action);
  119. }
  120. /// <summary>
  121. /// Removes actions for camera capture
  122. /// </summary>
  123. /// <param name="camera">The camera to remove actions for</param>
  124. /// <param name="action">The action to remove</param>
  125. public static void RemoveCaptureAction(Camera camera, Action<RenderTargetIdentifier, CommandBuffer> action)
  126. {
  127. if (camera == null)
  128. return;
  129. if (actionDict.TryGetValue(camera, out var actions))
  130. actions.Remove(action);
  131. }
  132. }
  133. }