/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef GFX_VR_DISPLAY_HOST_H #define GFX_VR_DISPLAY_HOST_H #include "gfxVR.h" #include "nsTArray.h" #include "nsString.h" #include "nsCOMPtr.h" #include "mozilla/RefPtr.h" #include "mozilla/gfx/2D.h" #include "mozilla/Atomics.h" #include "mozilla/EnumeratedArray.h" #include "mozilla/TimeStamp.h" #include "mozilla/TypedEnumBits.h" #include "mozilla/dom/GamepadPoseState.h" #include "mozilla/layers/LayersSurfaces.h" // for SurfaceDescriptor #if defined(XP_WIN) # include #elif defined(XP_MACOSX) class MacIOSurface; #endif namespace mozilla { namespace gfx { class VRThread; class VRLayerParent; class VRDisplayHost { public: NS_INLINE_DECL_THREADSAFE_REFCOUNTING(VRDisplayHost) const VRDisplayInfo& GetDisplayInfo() const { return mDisplayInfo; } void AddLayer(VRLayerParent* aLayer); void RemoveLayer(VRLayerParent* aLayer); virtual void ZeroSensor() = 0; virtual void StartPresentation() = 0; virtual void StopPresentation() = 0; virtual void StartVRNavigation(); virtual void StopVRNavigation(const TimeDuration& aTimeout); void NotifyVSync(); virtual void Run1msTasks(double aDeltaTime); virtual void Run10msTasks(); virtual void Run100msTasks(); void StartFrame(); void SubmitFrame(VRLayerParent* aLayer, const layers::SurfaceDescriptor& aTexture, uint64_t aFrameId, const gfx::Rect& aLeftEyeRect, const gfx::Rect& aRightEyeRect); void CancelCurrentSubmitTask(); bool CheckClearDisplayInfoDirty(); void SetGroupMask(uint32_t aGroupMask); bool GetIsConnected(); class AutoRestoreRenderState { public: explicit AutoRestoreRenderState(VRDisplayHost* aDisplay); ~AutoRestoreRenderState(); bool IsSuccess(); private: RefPtr mDisplay; #if defined(XP_WIN) RefPtr mPrevDeviceContextState; #endif bool mSuccess; }; protected: explicit VRDisplayHost(VRDeviceType aType); virtual ~VRDisplayHost(); // This SubmitFrame() must be overridden by children and block until // the next frame is ready to start and the resources in aTexture can // safely be released. virtual bool SubmitFrame(const layers::SurfaceDescriptor& aTexture, uint64_t aFrameId, const gfx::Rect& aLeftEyeRect, const gfx::Rect& aRightEyeRect) = 0; VRDisplayInfo mDisplayInfo; nsTArray mLayers; // Weak reference to mLayers entries are cleared in // VRLayerParent destructor protected: virtual VRHMDSensorState& GetSensorState() = 0; RefPtr mSubmitThread; private: void SubmitFrameInternal(const layers::SurfaceDescriptor& aTexture, uint64_t aFrameId, const gfx::Rect& aLeftEyeRect, const gfx::Rect& aRightEyeRect); void CheckWatchDog(); VRDisplayInfo mLastUpdateDisplayInfo; mozilla::Monitor mCurrentSubmitTaskMonitor; RefPtr mCurrentSubmitTask; bool mFrameStarted; #if defined(MOZ_WIDGET_ANDROID) protected: uint64_t mLastSubmittedFrameId; uint64_t mLastStartedFrame; #endif // defined(MOZ_WIDGET_ANDROID) #if defined(XP_WIN) protected: bool CreateD3DObjects(); RefPtr mDevice; RefPtr mContext; ID3D11Device1* GetD3DDevice(); ID3D11DeviceContext1* GetD3DDeviceContext(); ID3DDeviceContextState* GetD3DDeviceContextState(); private: RefPtr mDeviceContextState; #endif }; class VRControllerHost { public: NS_INLINE_DECL_THREADSAFE_REFCOUNTING(VRControllerHost) const VRControllerInfo& GetControllerInfo() const; void SetButtonPressed(uint64_t aBit); uint64_t GetButtonPressed(); void SetButtonTouched(uint64_t aBit); uint64_t GetButtonTouched(); void SetPose(const dom::GamepadPoseState& aPose); const dom::GamepadPoseState& GetPose(); dom::GamepadHand GetHand(); void SetVibrateIndex(uint64_t aIndex); uint64_t GetVibrateIndex(); protected: explicit VRControllerHost(VRDeviceType aType, dom::GamepadHand aHand, uint32_t aDisplayID); virtual ~VRControllerHost(); VRControllerInfo mControllerInfo; uint64_t mVibrateIndex; dom::GamepadPoseState mPose; }; } // namespace gfx } // namespace mozilla #endif /* GFX_VR_DISPLAY_HOST_H */