2017-03-01 19:04:12 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* 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_PUPPET_H
|
|
|
|
#define GFX_VR_PUPPET_H
|
|
|
|
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
|
|
|
|
#include "gfxVR.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
namespace impl {
|
|
|
|
|
|
|
|
class VRDisplayPuppet : public VRDisplayHost
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void SetDisplayInfo(const VRDisplayInfo& aDisplayInfo);
|
|
|
|
virtual void NotifyVSync() override;
|
|
|
|
virtual VRHMDSensorState GetSensorState() override;
|
|
|
|
void SetSensorState(const VRHMDSensorState& aSensorState);
|
|
|
|
void ZeroSensor() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void StartPresentation() override;
|
|
|
|
virtual void StopPresentation() override;
|
|
|
|
#if defined(XP_WIN)
|
|
|
|
virtual void SubmitFrame(mozilla::layers::TextureSourceD3D11* aSource,
|
|
|
|
const IntSize& aSize,
|
|
|
|
const VRHMDSensorState& aSensorState,
|
|
|
|
const gfx::Rect& aLeftEyeRect,
|
|
|
|
const gfx::Rect& aRightEyeRect) override;
|
|
|
|
#else
|
|
|
|
virtual void SubmitFrame(mozilla::layers::TextureSourceOGL* aSource,
|
|
|
|
const IntSize& aSize,
|
|
|
|
const VRHMDSensorState& aSensorState,
|
|
|
|
const gfx::Rect& aLeftEyeRect,
|
|
|
|
const gfx::Rect& aRightEyeRect);
|
|
|
|
#endif // XP_WIN
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit VRDisplayPuppet();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~VRDisplayPuppet();
|
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
VRHMDSensorState GetSensorState(double timeOffset);
|
|
|
|
|
|
|
|
bool mIsPresenting;
|
|
|
|
|
|
|
|
private:
|
|
|
|
VRHMDSensorState mSensorState;
|
|
|
|
};
|
|
|
|
|
|
|
|
class VRControllerPuppet : public VRControllerHost
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit VRControllerPuppet(dom::GamepadHand aHand);
|
|
|
|
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];
|
|
|
|
float mAxisMove[3];
|
|
|
|
dom::GamepadPoseState mPoseState;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace impl
|
|
|
|
|
|
|
|
class VRSystemManagerPuppet : public VRSystemManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static already_AddRefed<VRSystemManagerPuppet> Create();
|
|
|
|
|
|
|
|
virtual void Destroy() override;
|
2017-03-30 16:35:49 +03:00
|
|
|
virtual void Shutdown() override;
|
2017-03-01 19:04:12 +03:00
|
|
|
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,
|
|
|
|
uint32_t aPromiseID) override;
|
|
|
|
virtual void StopVibrateHaptic(uint32_t aControllerIdx) 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
|
|
|
|
|
|
|
// there can only be one
|
|
|
|
RefPtr<impl::VRDisplayPuppet> mPuppetHMD;
|
|
|
|
nsTArray<RefPtr<impl::VRControllerPuppet>> mPuppetController;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* GFX_VR_PUPPET_H*/
|