1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| using System; using System.Collections.Generic; using System.Reflection;
namespace UnityEngine.UI { internal class ReflectionMethodsCache { public delegate bool Raycast3DCallback(Ray r, out RaycastHit hit, float f, int i); public delegate RaycastHit2D Raycast2DCallback(Vector2 p1, Vector2 p2, float f, int i); public delegate RaycastHit[] RaycastAllCallback(Ray r, float f, int i); public delegate RaycastHit2D[] GetRayIntersectionAllCallback(Ray r, float f, int i); public delegate int GetRayIntersectionAllNonAllocCallback(Ray r, RaycastHit2D[] results, float f, int i); public delegate int GetRaycastNonAllocCallback(Ray r, RaycastHit[] results, float f, int i);
// We call Physics.Raycast and Physics2D.Raycast through reflection to avoid creating a hard dependency from // this class to the Physics/Physics2D modules, which would otherwise make it impossible to make content with UI // without force-including both modules. public ReflectionMethodsCache() { var raycast3DMethodInfo = typeof(Physics).GetMethod("Raycast", new[] {typeof(Ray), typeof(RaycastHit).MakeByRefType(), typeof(float), typeof(int)}); if (raycast3DMethodInfo != null) raycast3D = (Raycast3DCallback)UnityEngineInternal.ScriptingUtils.CreateDelegate(typeof(Raycast3DCallback), raycast3DMethodInfo); var raycast2DMethodInfo = typeof(Physics2D).GetMethod("Raycast", new[] {typeof(Vector2), typeof(Vector2), typeof(float), typeof(int)}); if (raycast2DMethodInfo != null) raycast2D = (Raycast2DCallback)UnityEngineInternal.ScriptingUtils.CreateDelegate(typeof(Raycast2DCallback), raycast2DMethodInfo); var raycastAllMethodInfo = typeof(Physics).GetMethod("RaycastAll", new[] {typeof(Ray), typeof(float), typeof(int)}); if (raycastAllMethodInfo != null) raycast3DAll = (RaycastAllCallback)UnityEngineInternal.ScriptingUtils.CreateDelegate(typeof(RaycastAllCallback), raycastAllMethodInfo); var getRayIntersectionAllMethodInfo = typeof(Physics2D).GetMethod("GetRayIntersectionAll", new[] {typeof(Ray), typeof(float), typeof(int)}); if (getRayIntersectionAllMethodInfo != null) getRayIntersectionAll = (GetRayIntersectionAllCallback)UnityEngineInternal.ScriptingUtils.CreateDelegate(typeof(GetRayIntersectionAllCallback), getRayIntersectionAllMethodInfo); var getRayIntersectionAllNonAllocMethodInfo = typeof(Physics2D).GetMethod("GetRayIntersectionNonAlloc", new[] { typeof(Ray), typeof(RaycastHit2D[]), typeof(float), typeof(int) }); if (getRayIntersectionAllNonAllocMethodInfo != null) getRayIntersectionAllNonAlloc = (GetRayIntersectionAllNonAllocCallback)UnityEngineInternal.ScriptingUtils.CreateDelegate(typeof(GetRayIntersectionAllNonAllocCallback), getRayIntersectionAllNonAllocMethodInfo); var getRaycastAllNonAllocMethodInfo = typeof(Physics).GetMethod("RaycastNonAlloc", new[] { typeof(Ray), typeof(RaycastHit[]), typeof(float), typeof(int) }); if (getRaycastAllNonAllocMethodInfo != null) getRaycastNonAlloc = (GetRaycastNonAllocCallback)UnityEngineInternal.ScriptingUtils.CreateDelegate(typeof(GetRaycastNonAllocCallback), getRaycastAllNonAllocMethodInfo); } public Raycast3DCallback raycast3D = null; public RaycastAllCallback raycast3DAll = null; public Raycast2DCallback raycast2D = null; public GetRayIntersectionAllCallback getRayIntersectionAll = null; public GetRayIntersectionAllNonAllocCallback getRayIntersectionAllNonAlloc = null; public GetRaycastNonAllocCallback getRaycastNonAlloc = null; private static ReflectionMethodsCache s_ReflectionMethodsCache = null; public static ReflectionMethodsCache Singleton { get { if (s_ReflectionMethodsCache == null) s_ReflectionMethodsCache = new ReflectionMethodsCache(); return s_ReflectionMethodsCache; } } };
}
|