/************************************************************************************ Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved. Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use the Utilities SDK except in compliance with the License, which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at https://developer.oculus.com/licenses/utilities-1.31 Unless required by applicable law or agreed to in writing, the Utilities SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ************************************************************************************/ using System.Collections.Generic; namespace UnityEngine.EventSystems { /// /// Simple event system using physics raycasts. Very closely based on UnityEngine.EventSystems.PhysicsRaycaster /// [RequireComponent(typeof(OVRCameraRig))] public class OVRPhysicsRaycaster : BaseRaycaster { public OVRRaycastManager OVRRaycastManager; public GameObject CurrentGameObjectInteraction; public Vector3 PosBall; /// /// Const to use for clarity when no event mask is set /// protected const int kNoEventMaskSet = -1; /// /// Layer mask used to filter events. Always combined with the camera's culling mask if a camera is used. /// [SerializeField] protected LayerMask m_EventMask = kNoEventMaskSet; protected OVRPhysicsRaycaster() { } public override Camera eventCamera { get { return GetComponent().leftEyeCamera; } } /// /// Depth used to determine the order of event processing. /// public virtual int depth { get { return (eventCamera != null) ? (int)eventCamera.depth : 0xFFFFFF; } } public int sortOrder = 0; public override int sortOrderPriority { get { return sortOrder; } } /// /// Event mask used to determine which objects will receive events. /// public int finalEventMask { get { return (eventCamera != null) ? eventCamera.cullingMask & m_EventMask : kNoEventMaskSet; } } /// /// Layer mask used to filter events. Always combined with the camera's culling mask if a camera is used. /// public LayerMask eventMask { get { return m_EventMask; } set { m_EventMask = value; } } /// /// Perform a raycast using the worldSpaceRay in eventData. /// /// /// public override void Raycast(PointerEventData eventData, List resultAppendList) { // This function is closely based on PhysicsRaycaster.Raycast if (OVRRaycastManager.IsInterationMode) { return; } if (eventCamera == null) return; if (!eventData.IsVRPointer()) return; var ray = eventData.GetRay(); float dist = eventCamera.farClipPlane - eventCamera.nearClipPlane; var hits = Physics.RaycastAll(ray, dist, finalEventMask); if (hits.Length > 1) System.Array.Sort(hits, (r1, r2) => r1.distance.CompareTo(r2.distance)); if (hits.Length != 0) { for (int b = 0, bmax = hits.Length; b < bmax; ++b) { var result = new RaycastResult { gameObject = hits[b].collider.gameObject, module = this, distance = hits[b].distance, index = resultAppendList.Count, worldPosition = hits[0].point, worldNormal = hits[0].normal, }; resultAppendList.Add(result); //if (OVRRaycastManager.IsInterationMode) { CurrentGameObjectInteraction = result.gameObject; if (result.gameObject.GetComponent()) { if (result.gameObject.GetComponent().HingeJoint != null) { var lighter = result.gameObject.GetComponent().HingeJoint.GetComponent(); lighter.Highlighted(); PosBall = result.worldPosition; } //else //{ // var lighter = result.gameObject.GetComponent().ConfJoint.GetComponent(); // lighter.Highlighted(); //} } } } } else { CurrentGameObjectInteraction = null; } } /// /// Perform a Spherecast using the worldSpaceRay in eventData. /// /// /// /// Radius of the sphere public void Spherecast(PointerEventData eventData, List resultAppendList, float radius) { if (eventCamera == null) return; if (!eventData.IsVRPointer()) return; var ray = eventData.GetRay(); float dist = eventCamera.farClipPlane - eventCamera.nearClipPlane; var hits = Physics.SphereCastAll(ray, radius, dist, finalEventMask); if (hits.Length > 1) System.Array.Sort(hits, (r1, r2) => r1.distance.CompareTo(r2.distance)); if (hits.Length != 0) { for (int b = 0, bmax = hits.Length; b < bmax; ++b) { var result = new RaycastResult { gameObject = hits[b].collider.gameObject, module = this, distance = hits[b].distance, index = resultAppendList.Count, worldPosition = hits[0].point, worldNormal = hits[0].normal, }; resultAppendList.Add(result); } } } /// /// Get screen position of this world position as seen by the event camera of this OVRPhysicsRaycaster /// /// /// public Vector2 GetScreenPos(Vector3 worldPosition) { // In future versions of Uinty RaycastResult will contain screenPosition so this will not be necessary return eventCamera.WorldToScreenPoint(worldPosition); } } }