2014-07-09 19:24:49 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* 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 mozilla_dom_VRDevice_h_
|
|
|
|
#define mozilla_dom_VRDevice_h_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
|
|
|
#include "mozilla/dom/VRDeviceBinding.h"
|
|
|
|
#include "mozilla/dom/DOMPoint.h"
|
|
|
|
#include "mozilla/dom/DOMRect.h"
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
|
|
|
#include "gfxVR.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class Element;
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
class VRFieldOfViewReadOnly : public nsWrapperCache
|
2014-07-09 19:24:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-04-01 20:02:20 +00:00
|
|
|
VRFieldOfViewReadOnly(nsISupports* aParent,
|
|
|
|
double aUpDegrees, double aRightDegrees,
|
2014-07-09 19:24:49 +00:00
|
|
|
double aDownDegrees, double aLeftDegrees)
|
2015-04-01 20:02:20 +00:00
|
|
|
: mParent(aParent)
|
|
|
|
, mUpDegrees(aUpDegrees)
|
2014-07-09 19:24:49 +00:00
|
|
|
, mRightDegrees(aRightDegrees)
|
|
|
|
, mDownDegrees(aDownDegrees)
|
|
|
|
, mLeftDegrees(aLeftDegrees)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(VRFieldOfViewReadOnly)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(VRFieldOfViewReadOnly)
|
|
|
|
|
2014-07-09 19:24:49 +00:00
|
|
|
double UpDegrees() const { return mUpDegrees; }
|
|
|
|
double RightDegrees() const { return mRightDegrees; }
|
|
|
|
double DownDegrees() const { return mDownDegrees; }
|
|
|
|
double LeftDegrees() const { return mLeftDegrees; }
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
nsISupports* GetParentObject() const { return mParent; }
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
2014-07-09 19:24:49 +00:00
|
|
|
protected:
|
2015-04-01 20:02:20 +00:00
|
|
|
virtual ~VRFieldOfViewReadOnly() {}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
|
2014-07-09 19:24:49 +00:00
|
|
|
double mUpDegrees;
|
|
|
|
double mRightDegrees;
|
|
|
|
double mDownDegrees;
|
|
|
|
double mLeftDegrees;
|
|
|
|
};
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class VRFieldOfView final : public VRFieldOfViewReadOnly
|
2014-07-09 19:24:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-04-01 20:02:20 +00:00
|
|
|
VRFieldOfView(nsISupports* aParent, const gfx::VRFieldOfView& aSrc)
|
|
|
|
: VRFieldOfViewReadOnly(aParent,
|
|
|
|
aSrc.upDegrees, aSrc.rightDegrees,
|
|
|
|
aSrc.downDegrees, aSrc.leftDegrees)
|
|
|
|
{}
|
|
|
|
|
|
|
|
explicit VRFieldOfView(nsISupports* aParent,
|
|
|
|
double aUpDegrees = 0.0, double aRightDegrees = 0.0,
|
2014-07-09 19:24:49 +00:00
|
|
|
double aDownDegrees = 0.0, double aLeftDegrees = 0.0)
|
2015-04-01 20:02:20 +00:00
|
|
|
: VRFieldOfViewReadOnly(aParent,
|
|
|
|
aUpDegrees, aRightDegrees, aDownDegrees, aLeftDegrees)
|
2014-07-09 19:24:49 +00:00
|
|
|
{}
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
static already_AddRefed<VRFieldOfView>
|
2014-07-09 19:24:49 +00:00
|
|
|
Constructor(const GlobalObject& aGlobal, const VRFieldOfViewInit& aParams,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
static already_AddRefed<VRFieldOfView>
|
2014-07-09 19:24:49 +00:00
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
double aUpDegrees, double aRightDegrees,
|
|
|
|
double aDownDegrees, double aLeftDegrees,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
|
|
|
void SetUpDegrees(double aVal) { mUpDegrees = aVal; }
|
|
|
|
void SetRightDegrees(double aVal) { mRightDegrees = aVal; }
|
|
|
|
void SetDownDegrees(double aVal) { mDownDegrees = aVal; }
|
|
|
|
void SetLeftDegrees(double aVal) { mLeftDegrees = aVal; }
|
|
|
|
};
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class VRPositionState final : public nsWrapperCache
|
2014-07-09 19:24:49 +00:00
|
|
|
{
|
|
|
|
~VRPositionState() {}
|
|
|
|
public:
|
2015-04-01 20:02:20 +00:00
|
|
|
VRPositionState(nsISupports* aParent, const gfx::VRHMDSensorState& aState);
|
2014-07-09 19:24:49 +00:00
|
|
|
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(VRPositionState)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(VRPositionState)
|
|
|
|
|
|
|
|
double TimeStamp() const { return mTimeStamp; }
|
|
|
|
|
|
|
|
bool HasPosition() const { return mPosition != nullptr; }
|
|
|
|
DOMPoint* GetPosition() const { return mPosition; }
|
|
|
|
|
|
|
|
bool HasOrientation() const { return mOrientation != nullptr; }
|
|
|
|
DOMPoint* GetOrientation() const { return mOrientation; }
|
|
|
|
|
|
|
|
// these are created lazily
|
|
|
|
DOMPoint* GetLinearVelocity();
|
|
|
|
DOMPoint* GetLinearAcceleration();
|
|
|
|
DOMPoint* GetAngularVelocity();
|
|
|
|
DOMPoint* GetAngularAcceleration();
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() const { return mParent; }
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
|
|
|
|
double mTimeStamp;
|
|
|
|
gfx::VRHMDSensorState mVRState;
|
|
|
|
|
|
|
|
nsRefPtr<DOMPoint> mPosition;
|
|
|
|
nsRefPtr<DOMPoint> mLinearVelocity;
|
|
|
|
nsRefPtr<DOMPoint> mLinearAcceleration;
|
|
|
|
|
|
|
|
nsRefPtr<DOMPoint> mOrientation;
|
|
|
|
nsRefPtr<DOMPoint> mAngularVelocity;
|
|
|
|
nsRefPtr<DOMPoint> mAngularAcceleration;
|
|
|
|
};
|
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
class VREyeParameters final : public nsWrapperCache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VREyeParameters(nsISupports* aParent,
|
|
|
|
const gfx::VRFieldOfView& aMinFOV,
|
|
|
|
const gfx::VRFieldOfView& aMaxFOV,
|
|
|
|
const gfx::VRFieldOfView& aRecFOV,
|
|
|
|
const gfx::Point3D& aEyeTranslation,
|
|
|
|
const gfx::VRFieldOfView& aCurFOV,
|
|
|
|
const gfx::IntRect& aRenderRect);
|
|
|
|
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(VREyeParameters)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(VREyeParameters)
|
|
|
|
|
|
|
|
VRFieldOfView* MinimumFieldOfView();
|
|
|
|
VRFieldOfView* MaximumFieldOfView();
|
|
|
|
VRFieldOfView* RecommendedFieldOfView();
|
|
|
|
DOMPoint* EyeTranslation();
|
|
|
|
|
|
|
|
VRFieldOfView* CurrentFieldOfView();
|
|
|
|
DOMRect* RenderRect();
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() const { return mParent; }
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
|
|
~VREyeParameters() {}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
|
|
|
|
nsRefPtr<VRFieldOfView> mMinFOV;
|
|
|
|
nsRefPtr<VRFieldOfView> mMaxFOV;
|
|
|
|
nsRefPtr<VRFieldOfView> mRecFOV;
|
|
|
|
nsRefPtr<DOMPoint> mEyeTranslation;
|
|
|
|
nsRefPtr<VRFieldOfView> mCurFOV;
|
|
|
|
nsRefPtr<DOMRect> mRenderRect;
|
|
|
|
};
|
|
|
|
|
2014-07-09 19:24:49 +00:00
|
|
|
class VRDevice : public nsISupports,
|
|
|
|
public nsWrapperCache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// create new VRDevice objects for all known underlying gfx::vr devices
|
|
|
|
static bool CreateAllKnownVRDevices(nsISupports *aParent, nsTArray<nsRefPtr<VRDevice>>& aDevices);
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(VRDevice)
|
|
|
|
|
|
|
|
void GetHardwareUnitId(nsAString& aHWID) const { aHWID = mHWID; }
|
|
|
|
void GetDeviceId(nsAString& aDeviceId) const { aDeviceId = mDeviceId; }
|
|
|
|
void GetDeviceName(nsAString& aDeviceName) const { aDeviceName = mDeviceName; }
|
|
|
|
|
|
|
|
bool IsValid() { return mValid; }
|
|
|
|
|
|
|
|
virtual void Shutdown() { }
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() const
|
|
|
|
{
|
|
|
|
return mParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum VRDeviceType {
|
|
|
|
HMD,
|
|
|
|
PositionSensor
|
|
|
|
};
|
|
|
|
|
|
|
|
VRDeviceType GetType() const { return mType; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
VRDevice(nsISupports* aParent, VRDeviceType aType)
|
|
|
|
: mParent(aParent)
|
|
|
|
, mType(aType)
|
|
|
|
, mValid(false)
|
|
|
|
{
|
|
|
|
mHWID.AssignLiteral("uknown");
|
|
|
|
mDeviceId.AssignLiteral("unknown");
|
|
|
|
mDeviceName.AssignLiteral("unknown");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~VRDevice() {
|
|
|
|
Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
nsString mHWID;
|
|
|
|
nsString mDeviceId;
|
|
|
|
nsString mDeviceName;
|
|
|
|
|
|
|
|
VRDeviceType mType;
|
|
|
|
|
|
|
|
bool mValid;
|
|
|
|
};
|
|
|
|
|
|
|
|
class HMDVRDevice : public VRDevice
|
|
|
|
{
|
|
|
|
public:
|
2015-04-01 20:02:20 +00:00
|
|
|
virtual already_AddRefed<VREyeParameters> GetEyeParameters(VREye aEye) = 0;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
|
|
|
virtual void SetFieldOfView(const VRFieldOfViewInit& aLeftFOV,
|
|
|
|
const VRFieldOfViewInit& aRightFOV,
|
|
|
|
double zNear, double zFar) = 0;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
|
|
|
gfx::VRHMDInfo *GetHMD() { return mHMD.get(); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
HMDVRDevice(nsISupports* aParent, gfx::VRHMDInfo* aHMD)
|
|
|
|
: VRDevice(aParent, VRDevice::HMD)
|
|
|
|
, mHMD(aHMD)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual ~HMDVRDevice() { }
|
|
|
|
|
|
|
|
nsRefPtr<gfx::VRHMDInfo> mHMD;
|
|
|
|
};
|
|
|
|
|
|
|
|
class PositionSensorVRDevice : public VRDevice
|
|
|
|
{
|
|
|
|
public:
|
2015-04-01 20:02:20 +00:00
|
|
|
virtual already_AddRefed<VRPositionState> GetState() = 0;
|
|
|
|
|
|
|
|
virtual already_AddRefed<VRPositionState> GetImmediateState() = 0;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
2015-04-01 20:02:20 +00:00
|
|
|
virtual void ResetSensor() = 0;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-07-09 19:24:49 +00:00
|
|
|
|
|
|
|
protected:
|
2014-12-10 22:49:09 +00:00
|
|
|
explicit PositionSensorVRDevice(nsISupports* aParent)
|
2014-07-09 19:24:49 +00:00
|
|
|
: VRDevice(aParent, VRDevice::PositionSensor)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual ~PositionSensorVRDevice() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|