1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327 |
- using UnityEngine;
- using UnityEngine.UI;
- using UnityEngine.Events;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- using AOT;
- public class SvrManager : MonoBehaviour
- {
- public static SvrManager Instance;
- //{
- // get
- // {
- // if (instance == null) instance = FindObjectOfType<SvrManager>();
- // if (instance == null) Debug.LogError("SvrManager object component not found");
- // return instance;
- // }
- //}
- //private static SvrManager instance;
- static public int EyeLayerMax = 8; // svrApi SVR_MAX_EYE_LAYERS
- static public int OverlayLayerMax = 8; // svrApi SVR_MAX_OVERLAY_LAYERS
- static public int RenderLayersMax = 16; // svrApi SVR_MAX_RENDER_LAYERS
- public Action SvrInitializedCallBack;
- public enum svrEventType
- {
- kEventNone = 0,
- kEventSdkServiceStarting = 1,
- kEventSdkServiceStarted = 2,
- kEventSdkServiceStopped = 3,
- kEventControllerConnecting = 4,
- kEventControllerConnected = 5,
- kEventControllerDisconnected = 6,
- kEventThermal = 7,
- kEventVrModeStarted = 8,
- kEventVrModeStopping = 9,
- kEventVrModeStopped = 10,
- kEventSensorError = 11,
- kEventMagnometerUncalibrated = 12,
- kEventBoundarySystemCollision = 13,
- kEvent6dofRelocation = 14,
- kEvent6dofWarningFeatureCount = 15,
- kEvent6dofWarningLowLight = 16,
- kEvent6dofWarningBrightLight = 17,
- kEvent6dofWarningCameraCalibration = 18
- };
- [Serializable]
- public class SvrSettings
- {
- public enum eAntiAliasing
- {
- k1 = 1,
- k2 = 2,
- k4 = 4,
- };
-
- public enum eDepth
- {
- k16 = 16,
- k24 = 24
- };
-
- public enum eChromaticAberrationCorrection
- {
- kDisable = 0,
- kEnable = 1
- };
-
- public enum eVSyncCount
- {
- k0 = 0,
- k1 = 1,
- k2 = 2,
- };
-
- public enum eMasterTextureLimit
- {
- k0 = 0, // full size
- k1 = 1, // half size
- k2 = 2, // quarter size
- k3 = 3, // ...
- k4 = 4 // ...
- };
-
- public enum ePerfLevel
- {
- Minimum = 1,
- Medium = 2,
- Maximum = 3
- };
- public enum eFrustumType
- {
- Camera = 0,
- Device = 1,
- }
- public enum eEyeBufferType
- {
- //Mono = 0,
- StereoSeperate = 1,
- //StereoSingle = 2,
- //Array = 3,
- }
- [Tooltip("If head tracking lost, fade the display")]
- public bool poseStatusFade = true;
- [Tooltip("Use eye tracking (if available)")]
- public bool trackEyes = true;
- [Tooltip("Use position tracking (if available)")]
- public bool trackPosition = true;
- [Tooltip("Track position conversion from meters")]
- public float trackPositionScale = 1;
- [Tooltip("Height of the eyes from base of head")]
- public float headHeight = 0.0750f;
- [Tooltip("Depth of the eyes from center of head")]
- public float headDepth = 0.0805f;
- [Tooltip("Distance between the eyes")]
- public float interPupilDistance = 0.064f;
- //[Tooltip("Distance of line-of-sight convergence (0 disabled)")]
- //public float stereoConvergence = 0;
- //[Tooltip("Pitch angle to the horizon in degrees")]
- //public float horizonElevation = 0;
- [Tooltip("Eye field of view render target reprojection margin (% of fov) [0..]")]
- public float eyeFovMargin = 0.0f;
- [Tooltip("Eye render target scale factor")]
- public float eyeResolutionScaleFactor = 1.0f;
- [Tooltip("Eye render target depth buffer")]
- public eDepth eyeDepth = eDepth.k24;
- [Tooltip("Eye render target MSAA value")]
- public eAntiAliasing eyeAntiAliasing = eAntiAliasing.k2;
- [Tooltip("Overlay render target scale factor")]
- public float overlayResolutionScaleFactor = 1.0f;
- [Tooltip("Overlay render target depth buffer")]
- public eDepth overlayDepth = eDepth.k16;
- [Tooltip("Overlay render target MSAA value")]
- public eAntiAliasing overlayAntiAliasing = eAntiAliasing.k1;
- [Tooltip("Limit refresh rate")]
- public eVSyncCount vSyncCount = eVSyncCount.k1;
- [Tooltip("Chromatic Aberration Correction")]
- public eChromaticAberrationCorrection chromaticAberationCorrection = eChromaticAberrationCorrection.kEnable;
- [Tooltip("QualitySettings TextureQuality FullRes, HalfRes, etc.")]
- public eMasterTextureLimit masterTextureLimit = eMasterTextureLimit.k0;
- [Tooltip("CPU performance level")]
- public ePerfLevel cpuPerfLevel = ePerfLevel.Medium;
- [Tooltip("GPU performance level")]
- public ePerfLevel gpuPerfLevel = ePerfLevel.Medium;
- [Tooltip("Foveated render gain [1..], 0/feature disabled")]
- public Vector2 foveationGain = new Vector2(0.0f, 0.0f);
- [Tooltip("Foveated render hires area [0..]")]
- public float foveationArea = 0.0f;
- [Tooltip("Foveated render min pixel density [1/16..1]")]
- public float foveationMinimum = 0.25f;
- [Tooltip("Use perspective of unity camera or device frustum data")]
- public eFrustumType frustumType = eFrustumType.Camera;
- [Tooltip("Display buffer type (default stereo seperate)")]
- public eEyeBufferType displayType = eEyeBufferType.StereoSeperate;
- }
- [SerializeField]
- public SvrSettings settings;
- [Serializable]
- public class SvrStatus
- {
- [Tooltip("SnapdragonVR SDK Initialized")]
- public bool initialized = false;
- [Tooltip("SnapdragonVR SDK Running")]
- public bool running = false;
- [Tooltip("SnapdragonVR SDK Pose Status: 0/None, 1/Rotation, 2/Position, 3/RotationAndPosition")]
- public int pose = 0;
- public int poseModify = 0;
- }
- [SerializeField]
- public SvrStatus status;
- public enum eFadeState { FadeIn, FadeOut }
- [NonSerialized]
- public eFadeState fadeState = eFadeState.FadeIn;
- [NonSerialized]
- public float fadeDuration = 2f;
- [Header("Camera Rig")]
- public Transform head;
- public Transform gaze;
- public Camera monoCamera;
- public Camera leftCamera;
- public Camera rightCamera;
- public Camera leftOverlay;
- public Camera rightOverlay;
- public Camera monoOverlay;
- public SvrOverlay fadeOverlay;
- public SvrOverlay reticleOverlay;
- public Vector3 leftCameraOffsetPostion= new Vector3 (0,0,0);
- public Vector3 leftCameraOffsetAngles= new Vector3 (0,2.5f,0);
- public Vector3 rightCameraOffsetPostion= new Vector3 (0,0,0);
- public Vector3 rightCameraOffsetAngles= new Vector3 (0,-2.5f,0);
- public static bool init;
- public Vector2 FocalPoint { get; set; } // Foveated Rendering Focal Point
- public int FrameCount { get { return frameCount; } }
-
- private int frameCount = 0;
- private static WaitForEndOfFrame waitForEndOfFrame = new WaitForEndOfFrame();
- public SvrPlugin plugin = null;
- private float sensorWarmupDuration = 0.25f;
- private List<SvrEye> eyes = new List<SvrEye>(EyeLayerMax);
- private List<SvrOverlay> overlays = new List<SvrOverlay>(OverlayLayerMax);
- private bool disableInput = false;
- private Coroutine onResume = null;
- private Coroutine submitFrame = null;
- /// <summary>
- /// Svr event listener.
- /// </summary>
- public interface SvrEventListener {
- /// <summary>
- /// Raises the svr event event.
- /// </summary>
- /// <param name="ev">Ev.</param>
- void OnSvrEvent (SvrEvent ev);
- };
- public enum svrThermalLevel
- {
- kSafe,
- kLevel1,
- kLevel2,
- kLevel3,
- kCritical,
- kNumThermalLevels
- };
- public enum svrThermalZone
- {
- kCpu,
- kGpu,
- kSkin,
- kNumThermalZones
- };
- public struct svrEventData_Thermal
- {
- public svrThermalZone zone; //!< Thermal zone
- public svrThermalLevel level; //!< Indication of the current zone thermal level
- };
- [StructLayout(LayoutKind.Explicit)]
- public struct svrEventData
- {
- [FieldOffset(0)]
- public svrEventData_Thermal thermal;
- //[FieldOffset(0)]
- //public svrEventData_New newData;
- }
- public struct SvrEvent
- {
- public svrEventType eventType; //!< Type of event
- public uint deviceId; //!< An identifier for the device that generated the event (0 == HMD)
- public float eventTimeStamp; //!< Time stamp for the event in seconds since the last svrBeginVr call
- public svrEventData eventData; //!< Event specific data payload
- };
- private List<SvrEventListener> eventListeners = new List<SvrEventListener>();
- public bool Initialized
- {
- get { return status.initialized; }
- }
- public bool IsRunning
- {
- get { return status.running; }
- }
- public bool DisableInput
- {
- get { return disableInput; }
- set { disableInput = value; }
- }
- void Awake()
- {
- if(Instance) {
- DestroyImmediate(gameObject);
- return;
- }
- Instance = this;
- if (!ValidateReferencedComponents ())
- {
- enabled = false;
- return;
- }
- RegisterListeners();
- Input.backButtonLeavesApp = true;
- Screen.sleepTimeout = SleepTimeout.NeverSleep;
- Application.targetFrameRate = -1;
- }
- void OnGUI() {
-
- }
- bool ValidateReferencedComponents()
- {
- plugin = SvrPlugin.Instance;
- if(plugin == null)
- {
- Debug.LogError("Svr Plugin failed to load. Disabling...");
- return false;
- }
- if(head == null)
- {
- Debug.LogError("Required head gameobject not found! Disabling...");
- return false;
- }
- if(monoCamera == null && (leftCamera == null || rightCamera == null))
- {
- Debug.LogError("Required eye components are missing! Disabling...");
- return false;
- }
- return true;
- }
- #if UNITY_2018
- void OnEnable()
- {
- if (UnityEngine.Rendering.GraphicsSettings.renderPipelineAsset)
- {
- UnityEngine.Experimental.Rendering.RenderPipeline.beginCameraRendering += OnPreRenderEvent;
- }
- }
- void OnDisable()
- {
- if (UnityEngine.Rendering.GraphicsSettings.renderPipelineAsset)
- {
- UnityEngine.Experimental.Rendering.RenderPipeline.beginCameraRendering -= OnPreRenderEvent;
- }
- }
- private void OnPreRenderEvent(Camera camera)
- {
- camera.SendMessage("OnPreRenderEvent", SendMessageOptions.DontRequireReceiver);
- }
- #endif
- IEnumerator Start ()
- {
- yield return StartCoroutine(Initialize());
- status.initialized = plugin.IsInitialized();
- SetOverlayFade(eFadeState.FadeIn);
- yield return StartCoroutine(plugin.BeginVr((int)settings.cpuPerfLevel, (int)settings.gpuPerfLevel));
- if (!plugin.IsRunning())
- {
- Debug.LogError("Svr failed!");
- Application.Quit();
- yield return null; // Wait one frame
- }
- float recenterTimeout = 1f;
- while (!plugin.RecenterTracking() && recenterTimeout > 0f)
- {
- yield return null; // Wait one frame
- recenterTimeout -= Time.deltaTime;
- }
- yield return new WaitForSecondsRealtime(sensorWarmupDuration);
- submitFrame = StartCoroutine(SubmitFrame());
- status.running = true;
- SvrInitializedCallBack?.Invoke();
-
- plugin.SetGlassDisconnectedCallBack(GlassDisconnetedCallBack);
- Debug.Log("Svr initialized!");
- }
- [MonoPInvokeCallback(typeof(SvrPlugin.GlassDisconnectedCallBack))]
- private static void GlassDisconnetedCallBack() {
- Debug.Log("GlassDisconnetedCallBack");
- Application.Quit();
- }
- IEnumerator Initialize()
- {
- // Plugin must be initialized OnStart in order to properly
- // get a valid surface
- // GameObject mainCameraGo = GameObject.FindWithTag("MainCamera");
- // if (mainCameraGo)
- // {
- // mainCameraGo.SetActive(false);
- //
- // Debug.Log("Camera with MainCamera tag found.");
- // if (!disableInput)
- // {
- // Debug.Log("Will use translation and orientation from the MainCamera.");
- // transform.position = mainCameraGo.transform.position;
- // transform.rotation = mainCameraGo.transform.rotation;
- // }
- //
- // Debug.Log("Disabling Camera with MainCamera tag");
- // }
- GL.Clear(false, true, Color.black);
- yield return StartCoroutine(plugin.Initialize());
- InitializeCameras();
- InitializeEyes();
- InitializeOverlays();
- int trackingMode = (int)SvrPlugin.TrackingMode.kTrackingOrientation;
- if (settings.trackPosition)
- trackingMode |= (int)SvrPlugin.TrackingMode.kTrackingPosition;
- if (settings.trackEyes)
- trackingMode |= (int)SvrPlugin.TrackingMode.kTrackingEye;
- plugin.SetTrackingMode(trackingMode);
- plugin.SetVSyncCount((int)settings.vSyncCount);
- QualitySettings.vSyncCount = (int)settings.vSyncCount;
- }
- Matrix4x4 leftcalibration = new Matrix4x4(
- new Vector4(0.999928f, -0.0108193f, 0.00518164f, 0),
- new Vector4(0.0110425f, 0.998918f, -0.0451751f, 0),
- new Vector4(-0.00468727f, 0.045229f, 0.998966f, 0),
- new Vector4(-0.0182249f, 0.01366f, -0.0578625f, 1));
- Matrix4x4 leftXIE = new Matrix4x4(
- new Vector4(0.999928f, -0.010819f, 0.00518164f, 0),
- new Vector4(0.011042f, 0.998918f, -0.0451751f, 0),
- new Vector4(-0.004687f, 0.045229f, 0.998966f, 0),
- new Vector4(0.018460f, -0.031915f, -1.056663f, 1));
- Matrix4x4 rigthXIE = new Matrix4x4(
- new Vector4(0.99994f, 0.00570579f, -0.00933801f, 0),
- new Vector4(-0.00613274f, 0.998906f, -0.0463502f, 0),
- new Vector4(0.00906334f, 0.0464047f, 0.998882f, 0),
- new Vector4(-0.057191f, -0.028896f, -1.048315f, 1));
- // 11-30 19:32:56.734 7534 7534 I willie_native_log: Controller::onMouseDown mViewMatrixArray[0] = [0.999928, 0.011042, -0.004687, 0.018460; -0.010819, 0.998918, 0.045229, -0.031915; 0.005182, -0.045175, 0.998966, -1.056663; 0.000000, 0.000000, 0.000000, 1.000000]
- //11-30 19:32:56.734 7534 7534 I willie_native_log: Controller::onMouseDown mViewMatrixArray[1] =
- //[0.999940, -0.006133, 0.009063, -0.057191; 0.005706, 0.998906, 0.046405, -0.028896; -0.009338, -0.046350, 0.998882, -1.048315; 0.000000, 0.000000, 0.000000, 1.000000]
- Matrix4x4 rightcalibration = new Matrix4x4(
- new Vector4(0.99994f, 0.00570579f, -0.00933801f, 0),
- new Vector4(-0.00613274f, 0.998906f, -0.0463502f, 0),
- new Vector4(0.00906334f, 0.0464047f, 0.998882f, 0),
- new Vector4(-0.0161295f, 0.0176911f, -0.0497315f, 1));
- //Matrix4x4 initView = new Matrix4x4(
- // new Vector4(0.707f, 0f, 0.707f, 0),
- // new Vector4(0f, 1f, 0f, 0),
- // new Vector4(-0.707f, 0f, 0.707f, 0),
- // new Vector4(-0f, 0f, -1.414f, 1));
- Matrix4x4 initView = new Matrix4x4(
- new Vector4(1f, 0f, 0f, 0),
- new Vector4(0f, 1f, 0f, 0),
- new Vector4(0f, 0f, 1f, 0),
- new Vector4(0f, 0f, -1f, 1));
- Matrix4x4 leftPD = new Matrix4x4(
- new Vector4(1f, 0f, 0f, 0f),
- new Vector4(0f, 1f, 0f, 0),
- new Vector4(0f, 0f, 1f, 0),
- new Vector4(0.032f, 0f, 0f, 1f));
- Matrix4x4 rightPD = new Matrix4x4(
- new Vector4(1f, 0f, 0f, 0),
- new Vector4(0f, 1f, 0f, 0),
- new Vector4(0f, 0f, 1f, 0),
- new Vector4(-0.032f, 0f, 0f, 1));
- Matrix4x4 invertZ = new Matrix4x4(
- new Vector4(1, 0, 0, 0),
- new Vector4(0, 1, 0, 0),
- new Vector4(0, 0, -1, 0),
- new Vector4(0, 0, 0, 1));
- private void InitializeCameras()
- {
- float stereoConvergence = plugin.deviceInfo.targetFrustumConvergence; //settings.stereoConvergence
- float horizonElevation = plugin.deviceInfo.targetFrustumPitch; //settings.horizonElevation
- float convergenceAngle = 0f;
- if (stereoConvergence > Mathf.Epsilon) convergenceAngle = Mathf.Rad2Deg * Mathf.Atan2(0.5f * settings.interPupilDistance, stereoConvergence);
- else if (stereoConvergence < -Mathf.Epsilon) convergenceAngle = -Mathf.Rad2Deg * Mathf.Atan2(0.5f * settings.interPupilDistance, -stereoConvergence);
- // left
- Vector3 eyePos;
- eyePos.x = -0.5f * settings.interPupilDistance;
- eyePos.y = (!settings.trackPosition ? settings.headHeight : 0);
- eyePos.z = (!settings.trackPosition ? settings.headDepth : 0);
- eyePos += head.transform.localPosition;
- Quaternion eyeRot;
- eyeRot = Quaternion.Euler(horizonElevation, convergenceAngle, 0);
- if (leftCamera != null)
- {
- leftCamera.transform.localPosition = eyePos+leftCameraOffsetPostion;
- leftCamera.transform.localRotation = eyeRot;
- leftCamera.transform.localEulerAngles = leftCamera.transform.localEulerAngles+leftCameraOffsetAngles;
- Debug.Log(leftCamera.worldToCameraMatrix);
- //leftCamera.worldToCameraMatrix = leftcalibration * leftCamera.worldToCameraMatrix;
- // Matrix4x4 xx =invertZ* Matrix4x4.Inverse( Matrix4x4.TRS(leftCamera.transform.position, leftCamera.transform.rotation, leftCamera.transform.lossyScale));
- Matrix4x4 xx = (Matrix4x4.TRS(leftCamera.transform.position, leftCamera.transform.rotation, leftCamera.transform.lossyScale));
- Debug.Log(xx);
- Debug.Log(leftCamera.transform.position.x+ " "+leftCamera.transform.position.y+" " + leftCamera.transform.position.z);
- Debug.Log(leftCamera.transform.rotation.x + " " + leftCamera.transform.rotation.y + " " + leftCamera.transform.rotation.z + " " + leftCamera.transform.rotation.w);
- }
- if (leftOverlay != null)
- {
- leftOverlay.transform.localPosition = eyePos;
- leftOverlay.transform.localRotation = eyeRot;
- }
- // right
- eyePos.x *= -1;
- eyeRot = Quaternion.Euler(horizonElevation, -convergenceAngle, 0);
- if (rightCamera != null)
- {
- rightCamera.transform.localPosition = eyePos+rightCameraOffsetPostion;
- rightCamera.transform.localRotation = eyeRot;
- rightCamera.transform.localEulerAngles = rightCamera.transform.localEulerAngles+rightCameraOffsetAngles;
- }
- if (rightOverlay != null)
- {
- rightOverlay.transform.localPosition = eyePos;
- rightOverlay.transform.localRotation = eyeRot;
- }
- // mono
- eyePos.x = 0.0f;
- eyeRot = Quaternion.Euler(horizonElevation, 0, 0);
- if (monoCamera != null)
- {
- monoCamera.transform.localPosition = eyePos;
- monoCamera.transform.localRotation = eyeRot;
- }
- if (monoOverlay != null)
- {
- monoOverlay.transform.localPosition = eyePos;
- monoOverlay.transform.localRotation = eyeRot;
- }
- }
- private void AddEyes(Camera cam, SvrEye.eSide side)
- {
- bool enableCamera = false;
- var eyesFound = cam.gameObject.GetComponents<SvrEye>();
- for (int i = 0; i < eyesFound.Length; i++)
- {
- eyesFound[i].Side = side;
- if (eyesFound[i].imageType == SvrEye.eType.RenderTexture) enableCamera = true;
- }
- eyes.AddRange(eyesFound);
- if (eyesFound.Length == 0)
- {
- var eye = cam.gameObject.AddComponent<SvrEye>();
- eye.Side = side;
- eyes.Add(eye);
- enableCamera = true;
- }
- #if UNITY_5_4 || UNITY_5_5
- cam.hdr = false;
- #else // UNITY_5_6 plus
- cam.allowHDR = false;
- cam.allowMSAA = false;
- #endif
- cam.enabled = enableCamera;
- }
- private void InitializeEyes()
- {
- eyes.Clear();
- if (monoCamera != null && monoCamera.gameObject.activeSelf)
- {
- AddEyes(monoCamera, SvrEye.eSide.Both);
- }
- if (leftCamera != null && leftCamera.gameObject.activeSelf)
- {
- AddEyes(leftCamera, SvrEye.eSide.Left);
- }
- if (rightCamera != null && rightCamera.gameObject.activeSelf)
- {
- AddEyes(rightCamera, SvrEye.eSide.Right);
- }
- for (int i = 0; i < SvrEye.Instances.Count; i++)
- {
- var eye = SvrEye.Instances[i];
- if (!eyes.Contains(eye))
- {
- eyes.Add(eye); // Add eyes found outside of svr camera hierarchy
- }
- }
- SvrPlugin.DeviceInfo info = plugin.deviceInfo;
- foreach(SvrEye eye in eyes)
- {
- if (eye == null) continue;
- eye.FovMargin = settings.eyeFovMargin;
- eye.Format = RenderTextureFormat.Default;
- eye.Resolution = new Vector2(info.targetEyeWidthPixels, info.targetEyeHeightPixels);
- eye.ResolutionScaleFactor = settings.eyeResolutionScaleFactor;
- eye.Depth = (int)settings.eyeDepth;
- eye.AntiAliasing = (int)settings.eyeAntiAliasing; // hdr not supported with antialiasing
- eye.FrustumType = (int)settings.frustumType;
- eye.OnPreRenderListener = OnPreRenderListener;
- eye.OnPostRenderListener = OnPostRenderListener;
- eye.Initialize();
- }
- }
- private void AddOverlays(Camera cam, SvrOverlay.eSide side)
- {
- bool enableCamera = false;
- var overlaysFound = cam.gameObject.GetComponents<SvrOverlay>();
- for (int i = 0; i < overlaysFound.Length; i++)
- {
- overlaysFound[i].Side = side;
- if (overlaysFound[i].imageType == SvrOverlay.eType.RenderTexture) enableCamera = true;
- }
- overlays.AddRange(overlaysFound);
- if (overlaysFound.Length == 0)
- {
- var overlay = cam.gameObject.AddComponent<SvrOverlay>();
- overlay.Side = side;
- overlays.Add(overlay);
- enableCamera = true;
- }
- #if UNITY_5_4 || UNITY_5_5
- cam.hdr = false;
- #else // UNITY_5_6 plus
- cam.allowHDR = false;
- cam.allowMSAA = false;
- #endif
- cam.enabled = enableCamera;
- }
- private void InitializeOverlays()
- {
- overlays.Clear();
- if (leftOverlay != null && leftOverlay.gameObject.activeSelf)
- {
- AddOverlays(leftOverlay, SvrOverlay.eSide.Left);
- }
- if (rightOverlay != null && rightOverlay.gameObject.activeSelf)
- {
- AddOverlays(rightOverlay, SvrOverlay.eSide.Right);
- }
- if (monoOverlay != null && monoOverlay.gameObject.activeSelf)
- {
- AddOverlays(monoOverlay, SvrOverlay.eSide.Both);
- }
- for (int i = 0; i < SvrOverlay.Instances.Count; i++)
- {
- var overlay = SvrOverlay.Instances[i];
- if (!overlays.Contains(overlay))
- {
- overlays.Add(overlay); // Add overlays found outside of svr camera hierarchy
- }
- }
- SvrPlugin.DeviceInfo info = plugin.deviceInfo;
- foreach (SvrOverlay overlay in overlays)
- {
- if (overlay == null) continue;
- overlay.Format = RenderTextureFormat.Default;
- overlay.Resolution = new Vector2(info.targetEyeWidthPixels, info.targetEyeHeightPixels);
- overlay.ResolutionScaleFactor = settings.overlayResolutionScaleFactor;
- overlay.Depth = (int)settings.overlayDepth;
- overlay.AntiAliasing = (int)settings.overlayAntiAliasing; // hdr not supported with antialiasing
- overlay.FrustumType = (int)settings.frustumType;
- overlay.OnPreRenderListener = OnPreRenderListener;
- overlay.OnPostRenderListener = OnPostRenderListener;
- overlay.Initialize();
- }
- }
- public void SetOverlayFade(eFadeState fadeValue)
- {
- fadeState = fadeValue;
- var startAlpha = fadeState == eFadeState.FadeIn ? 1f : 0f;
- UpdateOverlayFade(startAlpha);
- }
- public bool IsOverlayFading()
- {
- return !Mathf.Approximately((float)fadeState, fadeAlpha);
- }
- private float fadeAlpha = 0f;
- private void UpdateOverlayFade(float targetAlpha, float rate = 0)
- {
- if (fadeOverlay == null) return;
- fadeAlpha = rate > 0 ? Mathf.MoveTowards(fadeAlpha, targetAlpha, rate) : targetAlpha;
- var fadeTexture = fadeOverlay.imageTexture as Texture2D;
- if (fadeTexture != null)
- {
- var fadeColors = fadeTexture.GetPixels();
- for (int i = 0; i < fadeColors.Length; ++i)
- {
- fadeColors[i].a = fadeAlpha;
- }
- fadeTexture.SetPixels(fadeColors);
- fadeTexture.Apply(false);
- }
- var isActive = fadeAlpha > 0.0f;
- if (fadeOverlay.enabled != isActive)
- {
- fadeOverlay.enabled = isActive;
- }
- }
- IEnumerator SubmitFrame ()
- {
- Vector3 frustumSize = Vector3.zero;
- frustumSize.x = 0.5f * (plugin.deviceInfo.targetFrustumLeft.right - plugin.deviceInfo.targetFrustumLeft.left);
- frustumSize.y = 0.5f * (plugin.deviceInfo.targetFrustumLeft.top - plugin.deviceInfo.targetFrustumLeft.bottom);
- frustumSize.z = plugin.deviceInfo.targetFrustumLeft.near;
- //Debug.LogFormat("SubmitFrame: Frustum Size ({0:F2}, {1:F2}, {2:F2})", frustumSize.x, frustumSize.y, frustumSize.z);
- while (true)
- {
- yield return waitForEndOfFrame;
- if ((plugin.GetTrackingMode() & (int)SvrPlugin.TrackingMode.kTrackingEye) != 0) // Request eye pose
- {
- status.pose |= plugin.GetEyePose(ref eyePose);
- }
- var eyePoint = Vector3.zero;
- if ((status.pose & (int)SvrPlugin.TrackingMode.kTrackingEye) != 0) // Valid eye pose
- {
- //Debug.LogFormat("Left Eye Position: {0}, Direction: {1}", eyePose.leftPosition.ToString(), eyePose.leftDirection.ToString());
- //Debug.LogFormat("Right Eye Position: {0}, Direction: {1}", eyePose.rightPosition.ToString(), eyePose.rightDirection.ToString());
- //Debug.LogFormat("Combined Eye Position: {0}, Direction: {1}", eyePose.combinedPosition.ToString(), eyePose.combinedDirection.ToString());
- var combinedDirection = Vector3.zero;
- if ((eyePose.leftStatus & (int)SvrPlugin.EyePoseStatus.kGazeVectorValid) != 0) combinedDirection += eyePose.leftDirection;
- if ((eyePose.rightStatus & (int)SvrPlugin.EyePoseStatus.kGazeVectorValid) != 0) combinedDirection += eyePose.rightDirection;
- //if ((eyePose.combinedStatus & (int)SvrPlugin.EyePoseStatus.kGazeVectorValid) != 0) combinedDirection += eyePose.combinedDirection;
- if (combinedDirection.sqrMagnitude > 0f)
- {
- combinedDirection.Normalize();
- //Debug.LogFormat("Eye Direction: ({0:F2}, {1:F2}, {2:F2})", combinedDirection.x, combinedDirection.y, combinedDirection.z);
- float denominator = Vector3.Dot(combinedDirection, Vector3.forward);
- if (denominator > float.Epsilon)
- {
- // eye direction intersection with frustum near plane (left)
- eyePoint = combinedDirection * frustumSize.z / denominator;
- eyePoint.x /= frustumSize.x; // [-1..1]
- eyePoint.y /= frustumSize.y; // [-1..1]
- //Debug.LogFormat("Eye Point: ({0:F2}, {1:F2})", eyePoint.x, eyePoint.y);
- }
- }
- }
- var currentGain = SvrOverrideSettings.FoveateGain == Vector2.zero ?
- settings.foveationGain : SvrOverrideSettings.FoveateGain;
- var currentArea = SvrOverrideSettings.FoveateArea == 0f ?
- settings.foveationArea : SvrOverrideSettings.FoveateArea;
- var currentMinimum = SvrOverrideSettings.FoveateMinimum == 0f ?
- settings.foveationMinimum : SvrOverrideSettings.FoveateMinimum;
- for (int i = 0; i < eyes.Count; i++)
- {
- var eye = eyes[i];
- if (eye.TextureId > 0 && eye.ImageType == SvrEye.eType.RenderTexture)
- {
- plugin.SetFoveationParameters(eye.TextureId, eye.PreviousId, eyePoint.x, eyePoint.y, currentGain.x, currentGain.y, currentArea, currentMinimum);
- plugin.ApplyFoveation();
- }
- }
- var horizontalFieldOfView = 0f;
- if (settings.eyeFovMargin > 0f)
- {
- horizontalFieldOfView = (monoCamera.enabled ? monoCamera.fieldOfView / monoCamera.aspect : leftCamera.fieldOfView / leftCamera.aspect) * Mathf.Deg2Rad;
- }
- plugin.SubmitFrame(frameCount, horizontalFieldOfView, (int)settings.displayType);
-
- frameCount++;
- }
- }
- public bool RecenterTracking()
- {
- if (!Initialized)
- return false;
- return plugin.RecenterTracking();
- }
- void OnPreRenderListener (int sideMask, int textureId, int previousId)
- {
- if (!IsRunning)
- return;
- var currentGain = SvrOverrideSettings.FoveateGain == Vector2.zero ?
- settings.foveationGain : SvrOverrideSettings.FoveateGain;
- var currentArea = SvrOverrideSettings.FoveateArea == 0f ?
- settings.foveationArea : SvrOverrideSettings.FoveateArea;
- var currentMinimum = SvrOverrideSettings.FoveateMinimum == 0f ?
- settings.foveationMinimum : SvrOverrideSettings.FoveateMinimum;
- plugin.SetFoveationParameters(textureId, previousId, FocalPoint.x, FocalPoint.y, currentGain.x, currentGain.y, currentArea, currentMinimum);
- plugin.BeginEye(sideMask, frameDelta);
- }
- void OnPostRenderListener (int sideMask, int layerMask)
- {
- if (!IsRunning)
- return;
- plugin.EndEye (sideMask, layerMask);
- }
- public void SetPause(bool pause)
- {
- if (!Initialized)
- return;
- if (pause)
- {
- OnPause();
- }
- else
- {
- onResume = StartCoroutine(OnResume());
- }
- }
- void OnPause()
- {
- //Debug.Log("SvrManager.OnPause()");
- status.running = false;
- if (onResume != null) {
- StopCoroutine(onResume);
- onResume = null;
- }
- if (submitFrame != null) { StopCoroutine(submitFrame); submitFrame = null; }
- if (plugin.IsRunning()) plugin.EndVr();
- }
- IEnumerator OnResume()
- {
- //Debug.Log("SvrManager.OnResume()");
- SetOverlayFade(eFadeState.FadeIn);
- yield return StartCoroutine(plugin.BeginVr((int)settings.cpuPerfLevel, (int)settings.gpuPerfLevel));
- float recenterTimeout = 1f;
- while (!plugin.RecenterTracking() && recenterTimeout > 0f)
- {
- yield return null; // Wait one frame
- recenterTimeout -= Time.deltaTime;
- }
- yield return new WaitForSecondsRealtime(sensorWarmupDuration);
- submitFrame = StartCoroutine (SubmitFrame ());
- status.running = plugin.IsRunning();
- onResume = null;
- }
- [NonSerialized]
- public SvrPlugin.HeadPose headPose;
- [NonSerialized]
- public SvrPlugin.EyePose eyePose;
- [NonSerialized]
- public Vector3 eyeDirection = Vector3.forward;
- [NonSerialized]
- public Vector2 eyeFocus = Vector2.zero;
- [NonSerialized]
- public float eyeSmoother = 0.2f;
- [NonSerialized]
- public float[] frameDelta = new float[9];
-
- public Vector3 modifyPosition = Vector3.zero;
- public Quaternion modifyOrientation = Quaternion.identity;
- bool outBload = false;
- float[] outTransformArray = new float[32];
- void LateUpdate()
- {
- if (!IsRunning)
- {
- return;
- }
- int trackingMode = plugin.GetTrackingMode();
- var prevOrientation = headPose.orientation;
- //status.poseModify = plugin.GetPredictedPoseModify(ref modifyOrientation, ref modifyPosition, frameCount);
- status.pose = plugin.GetHeadPose(ref headPose, frameCount);
- if ((trackingMode & (int)SvrPlugin.TrackingMode.kTrackingEye) != 0)
- {
- status.pose |= plugin.GetEyePose(ref eyePose, frameCount);
- }
- if (!disableInput)
- {
- if ((status.pose & (int)SvrPlugin.TrackingMode.kTrackingOrientation) != 0)
- {
- head.transform.localRotation = headPose.orientation;
- // delta orientation screen space x, y offset for foveated rendering
- var deltaOrientation = Quaternion.Inverse(prevOrientation) * headPose.orientation;
- var lookDirection = deltaOrientation * Vector3.forward;
- //Debug.LogFormat("Look Direction: {0}", lookDirection.ToString());
- lookDirection *= plugin.deviceInfo.targetFrustumLeft.near / lookDirection.z;
- float xTotal = 0.5f * (plugin.deviceInfo.targetFrustumLeft.right - plugin.deviceInfo.targetFrustumLeft.left);
- float xAdjust = (xTotal != 0.0f) ? lookDirection.x / xTotal : 0.0f;
- float yTotal = 0.5f * (plugin.deviceInfo.targetFrustumLeft.top - plugin.deviceInfo.targetFrustumLeft.bottom);
- float yAdjust = (yTotal != 0.0f) ? lookDirection.y / yTotal : 0.0f;
- //xAdjust *= 0.5f * plugin.deviceInfo.targetEyeWidthPixels;
- //yAdjust *= 0.5f * plugin.deviceInfo.targetEyeHeightPixels;
- // rotation around z [cos(z), sin(z), 0], [-sin(z), cos(z), 0], [0, 0, 1]
- Vector3 deltaEulers = deltaOrientation.eulerAngles;
- float cosZ = Mathf.Cos(deltaEulers.z * Mathf.Deg2Rad);
- float sinZ = Mathf.Sin(deltaEulers.z * Mathf.Deg2Rad);
- // Output rotation and translation
- frameDelta[0] = cosZ;
- frameDelta[1] = sinZ;
- frameDelta[2] = 0.0f;
- frameDelta[3] = -sinZ;
- frameDelta[4] = cosZ;
- frameDelta[5] = 0.0f;
- frameDelta[6] = xAdjust;
- frameDelta[7] = yAdjust;
- frameDelta[8] = 1.0f;
- }
- if (settings.trackPosition && (status.pose & (int)SvrPlugin.TrackingMode.kTrackingPosition) != 0)
- {
- head.transform.localPosition = headPose.position * settings.trackPositionScale;
- }
- if ((status.pose & (int)SvrPlugin.TrackingMode.kTrackingEye) != 0)
- {
- //Debug.LogFormat("Left Eye Position: {0}, Direction: {1}", eyePose.leftPosition.ToString(), eyePose.leftDirection.ToString());
- //Debug.LogFormat("Right Eye Position: {0}, Direction: {1}", eyePose.rightPosition.ToString(), eyePose.rightDirection.ToString());
- //Debug.LogFormat("Combined Eye Position: {0}, Direction: {1}", eyePose.combinedPosition.ToString(), eyePose.combinedDirection.ToString());
- var combinedDirection = Vector3.zero;
- if ((eyePose.leftStatus & (int)SvrPlugin.EyePoseStatus.kGazeVectorValid) != 0) combinedDirection += eyePose.leftDirection;
- if ((eyePose.rightStatus & (int)SvrPlugin.EyePoseStatus.kGazeVectorValid) != 0) combinedDirection += eyePose.rightDirection;
- //if ((eyePose.combinedStatus & (int)SvrPlugin.EyePoseStatus.kGazeVectorValid) != 0) combinedDirection += eyePose.combinedDirection;
- if (combinedDirection.sqrMagnitude > 0f)
- {
- combinedDirection.Normalize();
- //Debug.LogFormat("Eye Direction: ({0:F2}, {1:F2}, {2:F2})", combinedDirection.x, combinedDirection.y, combinedDirection.z);
- eyeDirection = eyeSmoother > 0.001f ? Vector3.Lerp(eyeDirection, combinedDirection, eyeSmoother) : combinedDirection;
- //var combinedPosition = Vector3.zero;
- //if ((eyePose.leftStatus & (int)SvrPlugin.EyePoseStatus.kGazePointValid) != 0) combinedPosition += eyePose.leftPosition;
- //if ((eyePose.rightStatus & (int)SvrPlugin.EyePoseStatus.kGazePointValid) != 0) combinedPosition += eyePose.rightPosition;
- ////if ((eyePose.combinedStatus & (int)SvrPlugin.EyePoseStatus.kGazePointValid) != 0) combinedPosition += eyePose.combinedPosition;
- gaze.localPosition = monoCamera.transform.localPosition;
- gaze.localRotation = Quaternion.LookRotation(eyeDirection, Vector3.up);
- float denominator = Vector3.Dot(eyeDirection, Vector3.forward);
- if (denominator > float.Epsilon)
- {
- // eye direction intersection with frustum near plane (left)
- var eyePoint = eyeDirection * plugin.deviceInfo.targetFrustumLeft.near / denominator;
- // size of the frustum near plane (left)
- var nearSize = new Vector2(0.5f*(plugin.deviceInfo.targetFrustumLeft.right - plugin.deviceInfo.targetFrustumLeft.left),
- 0.5f*(plugin.deviceInfo.targetFrustumLeft.top - plugin.deviceInfo.targetFrustumLeft.bottom));
- eyeFocus.Set(eyePoint.x / nearSize.x, eyePoint.y / nearSize.y); // Normalized [-1,1]
- //Debug.LogFormat("Eye Focus: {0}", eyeFocus.ToString());
- FocalPoint = eyeFocus; // Cache for foveated rendering
- }
- }
- }
- }
- var isValid = true;
- if (settings.poseStatusFade)
- {
- isValid = !settings.trackPosition
- || ((trackingMode & (int)SvrPlugin.TrackingMode.kTrackingPosition) == 0)
- || (status.pose & (int)SvrPlugin.TrackingMode.kTrackingPosition) != 0;
- }
- var targetAlpha = fadeState == eFadeState.FadeOut || !isValid ? 1f : 0f;
- UpdateOverlayFade(targetAlpha, Time.deltaTime / fadeDuration);
- if (Application.platform == RuntimePlatform.Android) {
- if (Input.GetMouseButton(0)) {
- leftCamera.ResetWorldToCameraMatrix();
- rightCamera.ResetWorldToCameraMatrix();
- } else {
- leftCamera.worldToCameraMatrix = plugin.leftViewMatrix * invertZ;
- rightCamera.worldToCameraMatrix = plugin.rightViewMatrix * invertZ;
- }
- }
- }
- public void Shutdown()
- {
- //Debug.Log("SvrManager.Shutdown()");
- status.running = false;
- if (submitFrame != null) { StopCoroutine(submitFrame); submitFrame = null; }
- if (plugin.IsRunning()) plugin.EndVr();
- if (plugin.IsInitialized()) plugin.Shutdown();
- status.initialized = false;
- }
- void OnDestory()
- {
- //Debug.Log("SvrManager.OnDestroy()");
- UnregisterListeners();
- Shutdown();
- }
- public delegate void OnApplicationPauseDele(bool pause);
- public static event OnApplicationPauseDele onApplicationPauseDele;
- void OnApplicationPause(bool pause)
- {
- onApplicationPauseDele?.Invoke(pause);
- Debug.LogFormat("SvrManager.OnApplicationPause({0})",pause);
- SetPause(pause);
- }
- void OnApplicationQuit()
- {
- //Debug.Log("SvrManager.OnApplicationQuit()");
- Shutdown();
- }
- static public Matrix4x4 Perspective(float left, float right, float bottom, float top, float near, float far)
- {
- float x = 2.0F * near / (right - left);
- float y = 2.0F * near / (top - bottom);
- float a = (right + left) / (right - left);
- float b = (top + bottom) / (top - bottom);
- float c = -(far + near) / (far - near);
- float d = -(2.0F * far * near) / (far - near);
- float e = -1.0F;
- Matrix4x4 m = new Matrix4x4();
- m[0, 0] = x;
- m[0, 1] = 0;
- m[0, 2] = a;
- m[0, 3] = 0;
- m[1, 0] = 0;
- m[1, 1] = y;
- m[1, 2] = b;
- m[1, 3] = 0;
- m[2, 0] = 0;
- m[2, 1] = 0;
- m[2, 2] = c;
- m[2, 3] = d;
- m[3, 0] = 0;
- m[3, 1] = 0;
- m[3, 2] = e;
- m[3, 3] = 0;
- return m;
- }
- void RegisterListeners()
- {
- SvrOverrideSettings.OnEyeAntiAliasingChangedEvent += OnEyeAntiAliasingChanged;
- SvrOverrideSettings.OnEyeDepthChangedEvent += OnEyeDepthChanged;
- SvrOverrideSettings.OnEyeResolutionScaleFactorChangedEvent += OnEyeResolutionScaleFactorChanged;
- SvrOverrideSettings.OnOverlayAntiAliasingChangedEvent += OnOverlayAntiAliasingChanged;
- SvrOverrideSettings.OnOverlayDepthChangedEvent += OnOverlayDepthChanged;
- SvrOverrideSettings.OnOverlayResolutionScaleFactorChangedEvent += OnOverlayResolutionScaleFactorChanged;
- SvrOverrideSettings.OnChromaticAberrationCorrectionChangedEvent += OnChromaticAberrationCorrectionChanged;
- SvrOverrideSettings.OnVSyncCountChangedEvent += OnVSyncCountChanged;
- SvrOverrideSettings.OnMasterTextureLimitChangedEvent += OnMasterTextureLimitChanged;
- SvrOverrideSettings.OnPerfLevelChangedEvent += OnPerfLevelChanged;
- SvrOverrideSettings.OnFoveateChangedEvent += OnFoveateChanged;
- }
-
- void UnregisterListeners()
- {
- SvrOverrideSettings.OnEyeAntiAliasingChangedEvent -= OnEyeAntiAliasingChanged;
- SvrOverrideSettings.OnEyeDepthChangedEvent -= OnEyeDepthChanged;
- SvrOverrideSettings.OnEyeResolutionScaleFactorChangedEvent -= OnEyeResolutionScaleFactorChanged;
- SvrOverrideSettings.OnOverlayAntiAliasingChangedEvent -= OnOverlayAntiAliasingChanged;
- SvrOverrideSettings.OnOverlayDepthChangedEvent -= OnOverlayDepthChanged;
- SvrOverrideSettings.OnOverlayResolutionScaleFactorChangedEvent -= OnOverlayResolutionScaleFactorChanged;
- SvrOverrideSettings.OnChromaticAberrationCorrectionChangedEvent -= OnChromaticAberrationCorrectionChanged;
- SvrOverrideSettings.OnVSyncCountChangedEvent -= OnVSyncCountChanged;
- SvrOverrideSettings.OnMasterTextureLimitChangedEvent -= OnMasterTextureLimitChanged;
- SvrOverrideSettings.OnPerfLevelChangedEvent -= OnPerfLevelChanged;
- SvrOverrideSettings.OnFoveateChangedEvent -= OnFoveateChanged;
- }
- void OnEyeAntiAliasingChanged(SvrOverrideSettings.eAntiAliasing antiAliasing)
- {
- foreach (SvrEye eye in eyes)
- {
- eye.AntiAliasing = antiAliasing == SvrOverrideSettings.eAntiAliasing.NoOverride ?
- (int)settings.eyeAntiAliasing : (int)antiAliasing;
- }
- }
-
- void OnEyeDepthChanged(SvrOverrideSettings.eDepth depth)
- {
- foreach (SvrEye eye in eyes)
- {
- eye.Depth = depth == SvrOverrideSettings.eDepth.NoOverride ?
- (int)settings.eyeDepth : (int)depth;
- }
- }
-
- void OnEyeResolutionScaleFactorChanged(float scaleFactor)
- {
- foreach (SvrEye eye in eyes)
- {
- eye.ResolutionScaleFactor = scaleFactor <= 0 ? settings.eyeResolutionScaleFactor : scaleFactor;
- }
- }
-
- void OnOverlayAntiAliasingChanged(SvrOverrideSettings.eAntiAliasing antiAliasing)
- {
- foreach (SvrOverlay overlay in overlays)
- {
- overlay.AntiAliasing = antiAliasing == SvrOverrideSettings.eAntiAliasing.NoOverride ?
- (int)settings.overlayAntiAliasing : (int)antiAliasing;
- }
- }
-
- void OnOverlayDepthChanged(SvrOverrideSettings.eDepth depth)
- {
- foreach (SvrOverlay overlay in overlays)
- {
- overlay.Depth = depth == SvrOverrideSettings.eDepth.NoOverride ?
- (int)settings.overlayDepth : (int)depth;
- }
- }
-
- void OnOverlayResolutionScaleFactorChanged(float scaleFactor)
- {
- foreach (SvrOverlay overlay in overlays)
- {
- overlay.ResolutionScaleFactor = scaleFactor <= 0 ? settings.overlayResolutionScaleFactor : scaleFactor;
- }
- }
-
- void OnChromaticAberrationCorrectionChanged(SvrOverrideSettings.eChromaticAberrationCorrection aberrationCorrection)
- {
- if(aberrationCorrection == SvrOverrideSettings.eChromaticAberrationCorrection.kDisable)
- {
- plugin.SetFrameOption(SvrPlugin.FrameOption.kDisableChromaticCorrection);
- }
- else
- {
- plugin.UnsetFrameOption(SvrPlugin.FrameOption.kDisableChromaticCorrection);
- }
- }
-
- void OnVSyncCountChanged(SvrOverrideSettings.eVSyncCount vSyncCount)
- {
- if (vSyncCount == SvrOverrideSettings.eVSyncCount.NoOverride)
- {
- plugin.SetVSyncCount((int)settings.vSyncCount);
- QualitySettings.vSyncCount = (int)settings.vSyncCount;
- }
- else
- {
- plugin.SetVSyncCount((int)vSyncCount);
- QualitySettings.vSyncCount = (int)settings.vSyncCount;
- }
- }
-
- void OnMasterTextureLimitChanged(SvrOverrideSettings.eMasterTextureLimit masterTextureLimit)
- {
- QualitySettings.masterTextureLimit = masterTextureLimit == SvrOverrideSettings.eMasterTextureLimit.NoOverride ?
- (int)settings.masterTextureLimit : (int)masterTextureLimit;
- }
-
- void OnPerfLevelChanged(SvrOverrideSettings.ePerfLevel cpuPerfLevel, SvrOverrideSettings.ePerfLevel gpuPerfLevel)
- {
- int currentCpuPerfLevel = cpuPerfLevel == SvrOverrideSettings.ePerfLevel.NoOverride ?
- (int)settings.cpuPerfLevel : (int)SvrOverrideSettings.CpuPerfLevel;
- int currentGpuPerfLevel = gpuPerfLevel == SvrOverrideSettings.ePerfLevel.NoOverride ?
- (int)settings.gpuPerfLevel : (int)SvrOverrideSettings.GpuPerfLevel;
- plugin.SetPerformanceLevels(currentCpuPerfLevel, currentGpuPerfLevel);
- }
- void OnFoveateChanged(Vector2 gain, float area, float minPixelDensity)
- {
- var point = Vector2.zero;
- var currentGain = gain == Vector2.zero ?
- settings.foveationGain : SvrOverrideSettings.FoveateGain;
- var currentArea = area == 0f ?
- settings.foveationArea : SvrOverrideSettings.FoveateArea;
- var currentMinimum = minPixelDensity == 0f ?
- settings.foveationMinimum : SvrOverrideSettings.FoveateMinimum;
- plugin.SetFoveationParameters(0, 0, point.x, point.y, currentGain.x, currentGain.y, currentArea, currentMinimum);
- }
- /// <summary>
- /// Update this instance.
- /// </summary>
- //---------------------------------------------------------------------------------------------
- void Update()
- {
- SvrEvent frameEvent = new SvrEvent ();
- while (plugin.PollEvent(ref frameEvent))
- {
- Debug.LogFormat("SvrEvent: {0}", frameEvent.eventType.ToString());
- for (int i = 0; i < eventListeners.Count; i++) {
- eventListeners [i].OnSvrEvent (frameEvent);
- }
- }
- }
- /// <summary>
- /// Adds the event listener.
- /// </summary>
- /// <param name="listener">Listener.</param>
- //---------------------------------------------------------------------------------------------
- public void AddEventListener(SvrEventListener listener)
- {
- if (listener != null) {
- eventListeners.Insert (0, listener);
- }
- }
-
- /// <summary>
- /// Start Tracking
- /// </summary>
- /// <returns>Handle to the controller</returns>
- /// <param name="desc">Desc.</param>
- //---------------------------------------------------------------------------------------------
- public int ControllerStartTracking(string desc)
- {
- return plugin.ControllerStartTracking(desc);
- }
-
- /// <summary>
- /// Stop Tracking
- /// </summary>
- /// <param name="handle">Handle.</param>
- //---------------------------------------------------------------------------------------------
- public void ControllerStopTracking(int handle)
- {
- plugin.ControllerStopTracking(handle);
- }
-
- /// <summary>
- /// Get current state
- /// </summary>
- /// <returns>Controller State.</returns>
- /// <param name="handle">Handle.</param>
- //---------------------------------------------------------------------------------------------
- public SvrControllerState ControllerGetState(int handle, int space = 0)
- {
- return plugin.ControllerGetState(handle, space);
- }
- /// <summary>
- /// Send an event to the controller
- /// </summary>
- /// <param name="handle">Handle.</param>
- /// <param name="what">What.</param>
- /// <param name="arg1">Arg1.</param>
- /// <param name="arg2">Arg2.</param>
- //---------------------------------------------------------------------------------------------
- public void ControllerSendMessage(int handle, SvrController.svrControllerMessageType what, int arg1, int arg2)
- {
- plugin.ControllerSendMessage (handle, what, arg1, arg2);
- }
- /// <summary>
- /// Controllers the query.
- /// </summary>
- /// <returns>The query.</returns>
- /// <param name="handle">Handle.</param>
- /// <param name="what">What.</param>
- /// <param name="mem">Mem.</param>
- /// <param name="size">Size.</param>
- //---------------------------------------------------------------------------------------------
- public object ControllerQuery(int handle, SvrController.svrControllerQueryType what)
- {
- return plugin.ControllerQuery (handle, what);
- }
- }
|