2017-10-28 02:10:06 +03:00
|
|
|
/* -*- 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
|
2017-03-01 19:04:12 +03:00
|
|
|
* 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_PUPPET_H
|
|
|
|
#define GFX_VR_PUPPET_H
|
|
|
|
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2017-11-22 01:18:16 +03:00
|
|
|
#include "nsRefPtrHashtable.h"
|
2017-03-01 19:04:12 +03:00
|
|
|
|
|
|
|
#include "gfxVR.h"
|
2018-05-08 21:31:28 +03:00
|
|
|
#include "VRDisplayLocal.h"
|
2017-03-01 19:04:12 +03:00
|
|
|
|
2018-08-07 21:20:34 +03:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
#include "CompositorD3D11.h"
|
|
|
|
#endif
|
|
|
|
|
2017-07-04 23:50:40 +03:00
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
class MacIOSurface;
|
|
|
|
#endif
|
2017-03-01 19:04:12 +03:00
|
|
|
namespace mozilla {
|
2018-08-07 21:20:34 +03:00
|
|
|
namespace layers {
|
|
|
|
struct VertexShaderConstants;
|
|
|
|
struct PixelShaderConstants;
|
|
|
|
}
|
2017-03-01 19:04:12 +03:00
|
|
|
namespace gfx {
|
|
|
|
namespace impl {
|
|
|
|
|
2018-05-08 21:31:28 +03:00
|
|
|
class VRDisplayPuppet : public VRDisplayLocal
|
2017-03-01 19:04:12 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void SetDisplayInfo(const VRDisplayInfo& aDisplayInfo);
|
|
|
|
void SetSensorState(const VRHMDSensorState& aSensorState);
|
|
|
|
void ZeroSensor() override;
|
|
|
|
|
|
|
|
protected:
|
2017-05-09 02:01:36 +03:00
|
|
|
virtual VRHMDSensorState GetSensorState() override;
|
2017-03-01 19:04:12 +03:00
|
|
|
virtual void StartPresentation() override;
|
|
|
|
virtual void StopPresentation() override;
|
|
|
|
#if defined(XP_WIN)
|
2017-07-22 03:30:34 +03:00
|
|
|
virtual bool SubmitFrame(ID3D11Texture2D* aSource,
|
2017-03-01 19:04:12 +03:00
|
|
|
const IntSize& aSize,
|
|
|
|
const gfx::Rect& aLeftEyeRect,
|
|
|
|
const gfx::Rect& aRightEyeRect) override;
|
2017-07-04 23:50:40 +03:00
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
virtual bool SubmitFrame(MacIOSurface* aMacIOSurface,
|
2017-03-01 19:04:12 +03:00
|
|
|
const IntSize& aSize,
|
|
|
|
const gfx::Rect& aLeftEyeRect,
|
2017-07-04 23:50:40 +03:00
|
|
|
const gfx::Rect& aRightEyeRect) override;
|
2018-06-05 01:45:04 +03:00
|
|
|
#elif defined(MOZ_WIDGET_ANDROID)
|
|
|
|
virtual bool SubmitFrame(const mozilla::layers::SurfaceTextureDescriptor& aDescriptor,
|
2017-11-01 03:25:40 +03:00
|
|
|
const gfx::Rect& aLeftEyeRect,
|
|
|
|
const gfx::Rect& aRightEyeRect) override;
|
2017-07-04 23:50:40 +03:00
|
|
|
#endif
|
2017-03-01 19:04:12 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit VRDisplayPuppet();
|
2017-10-11 00:42:37 +03:00
|
|
|
void Refresh();
|
2017-03-01 19:04:12 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~VRDisplayPuppet();
|
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
bool mIsPresenting;
|
|
|
|
|
|
|
|
private:
|
2017-05-23 11:55:30 +03:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
bool UpdateConstantBuffers();
|
|
|
|
|
|
|
|
ID3D11VertexShader* mQuadVS;
|
|
|
|
ID3D11PixelShader* mQuadPS;
|
|
|
|
RefPtr<ID3D11SamplerState> mLinearSamplerState;
|
|
|
|
layers::VertexShaderConstants mVSConstants;
|
|
|
|
layers::PixelShaderConstants mPSConstants;
|
|
|
|
RefPtr<ID3D11Buffer> mVSConstantBuffer;
|
|
|
|
RefPtr<ID3D11Buffer> mPSConstantBuffer;
|
|
|
|
RefPtr<ID3D11Buffer> mVertexBuffer;
|
|
|
|
RefPtr<ID3D11InputLayout> mInputLayout;
|
|
|
|
#endif
|
|
|
|
|
2017-03-01 19:04:12 +03:00
|
|
|
VRHMDSensorState mSensorState;
|
|
|
|
};
|
|
|
|
|
|
|
|
class VRControllerPuppet : public VRControllerHost
|
|
|
|
{
|
|
|
|
public:
|
2017-07-14 12:08:15 +03:00
|
|
|
explicit VRControllerPuppet(dom::GamepadHand aHand, uint32_t aDisplayID);
|
2017-03-01 19:04:12 +03:00
|
|
|
void SetButtonPressState(uint32_t aButton, bool aPressed);
|
|
|
|
uint64_t GetButtonPressState();
|
2017-04-06 14:00:20 +03:00
|
|
|
void SetButtonTouchState(uint32_t aButton, bool aTouched);
|
|
|
|
uint64_t GetButtonTouchState();
|
2017-03-01 19:04:12 +03:00
|
|
|
void SetAxisMoveState(uint32_t aAxis, double aValue);
|
|
|
|
double GetAxisMoveState(uint32_t aAxis);
|
|
|
|
void SetPoseMoveState(const dom::GamepadPoseState& aPose);
|
|
|
|
const dom::GamepadPoseState& GetPoseMoveState();
|
|
|
|
float GetAxisMove(uint32_t aAxis);
|
|
|
|
void SetAxisMove(uint32_t aAxis, float aValue);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~VRControllerPuppet();
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint64_t mButtonPressState;
|
2017-04-06 14:00:20 +03:00
|
|
|
uint64_t mButtonTouchState;
|
2017-03-01 19:04:12 +03:00
|
|
|
float mAxisMoveState[3];
|
|
|
|
dom::GamepadPoseState mPoseState;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace impl
|
|
|
|
|
|
|
|
class VRSystemManagerPuppet : public VRSystemManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static already_AddRefed<VRSystemManagerPuppet> Create();
|
2017-11-22 01:18:16 +03:00
|
|
|
uint32_t CreateTestDisplay();
|
|
|
|
void ClearTestDisplays();
|
|
|
|
void SetPuppetDisplayInfo(const uint32_t& aDeviceID,
|
|
|
|
const VRDisplayInfo& aDisplayInfo);
|
|
|
|
void SetPuppetDisplaySensorState(const uint32_t& aDeviceID,
|
|
|
|
const VRHMDSensorState& aSensorState);
|
2017-03-01 19:04:12 +03:00
|
|
|
|
|
|
|
virtual void Destroy() override;
|
2017-03-30 16:35:49 +03:00
|
|
|
virtual void Shutdown() override;
|
2017-10-11 00:42:37 +03:00
|
|
|
virtual void Enumerate() override;
|
|
|
|
virtual void GetHMDs(nsTArray<RefPtr<VRDisplayHost>>& aHMDResult) override;
|
2017-03-22 04:58:06 +03:00
|
|
|
virtual bool GetIsPresenting() override;
|
2017-03-01 19:04:12 +03:00
|
|
|
virtual void HandleInput() override;
|
|
|
|
virtual void GetControllers(nsTArray<RefPtr<VRControllerHost>>&
|
|
|
|
aControllerResult) override;
|
|
|
|
virtual void ScanForControllers() override;
|
|
|
|
virtual void RemoveControllers() override;
|
2017-02-02 09:57:58 +03:00
|
|
|
virtual void VibrateHaptic(uint32_t aControllerIdx,
|
|
|
|
uint32_t aHapticIndex,
|
|
|
|
double aIntensity,
|
|
|
|
double aDuration,
|
2017-11-30 14:37:07 +03:00
|
|
|
const VRManagerPromise& aPromise) override;
|
2017-02-02 09:57:58 +03:00
|
|
|
virtual void StopVibrateHaptic(uint32_t aControllerIdx) override;
|
2017-10-11 00:42:37 +03:00
|
|
|
virtual void NotifyVSync() override;
|
2018-09-26 01:56:10 +03:00
|
|
|
virtual void Run10msTasks() override;
|
2017-03-01 19:04:12 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
VRSystemManagerPuppet();
|
|
|
|
|
|
|
|
private:
|
2017-03-16 10:49:46 +03:00
|
|
|
void HandleButtonPress(uint32_t aControllerIdx,
|
|
|
|
uint32_t aButton,
|
|
|
|
uint64_t aButtonMask,
|
2017-04-06 14:00:20 +03:00
|
|
|
uint64_t aButtonPressed,
|
|
|
|
uint64_t aButtonTouched);
|
2017-03-16 10:49:46 +03:00
|
|
|
void HandleAxisMove(uint32_t aControllerIndex, uint32_t aAxis,
|
|
|
|
float aValue);
|
|
|
|
void HandlePoseTracking(uint32_t aControllerIndex,
|
|
|
|
const dom::GamepadPoseState& aPose,
|
|
|
|
VRControllerHost* aController);
|
2017-03-01 19:04:12 +03:00
|
|
|
|
2017-11-22 01:18:16 +03:00
|
|
|
// Enumerated puppet hardware devices, as seen by Web APIs:
|
|
|
|
nsTArray<RefPtr<impl::VRDisplayPuppet>> mPuppetHMDs;
|
2017-03-01 19:04:12 +03:00
|
|
|
nsTArray<RefPtr<impl::VRControllerPuppet>> mPuppetController;
|
2017-11-22 01:18:16 +03:00
|
|
|
|
|
|
|
// Emulated hardware state, persistent through VRSystemManager::Shutdown():
|
|
|
|
static const uint32_t kMaxPuppetDisplays = 5;
|
|
|
|
uint32_t mPuppetDisplayCount;
|
|
|
|
VRDisplayInfo mPuppetDisplayInfo[kMaxPuppetDisplays];
|
|
|
|
VRHMDSensorState mPuppetDisplaySensorState[kMaxPuppetDisplays];
|
2017-03-01 19:04:12 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2017-11-01 03:25:40 +03:00
|
|
|
#endif /* GFX_VR_PUPPET_H*/
|