mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
279 lines
7.9 KiB
C++
279 lines
7.9 KiB
C++
/* -*- 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 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 VRFieldOfViewReadOnly : public nsWrapperCache
|
|
{
|
|
public:
|
|
VRFieldOfViewReadOnly(nsISupports* aParent,
|
|
double aUpDegrees, double aRightDegrees,
|
|
double aDownDegrees, double aLeftDegrees)
|
|
: mParent(aParent)
|
|
, mUpDegrees(aUpDegrees)
|
|
, mRightDegrees(aRightDegrees)
|
|
, mDownDegrees(aDownDegrees)
|
|
, mLeftDegrees(aLeftDegrees)
|
|
{
|
|
}
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(VRFieldOfViewReadOnly)
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(VRFieldOfViewReadOnly)
|
|
|
|
double UpDegrees() const { return mUpDegrees; }
|
|
double RightDegrees() const { return mRightDegrees; }
|
|
double DownDegrees() const { return mDownDegrees; }
|
|
double LeftDegrees() const { return mLeftDegrees; }
|
|
|
|
nsISupports* GetParentObject() const { return mParent; }
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
virtual ~VRFieldOfViewReadOnly() {}
|
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
double mUpDegrees;
|
|
double mRightDegrees;
|
|
double mDownDegrees;
|
|
double mLeftDegrees;
|
|
};
|
|
|
|
class VRFieldOfView final : public VRFieldOfViewReadOnly
|
|
{
|
|
public:
|
|
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,
|
|
double aDownDegrees = 0.0, double aLeftDegrees = 0.0)
|
|
: VRFieldOfViewReadOnly(aParent,
|
|
aUpDegrees, aRightDegrees, aDownDegrees, aLeftDegrees)
|
|
{}
|
|
|
|
static already_AddRefed<VRFieldOfView>
|
|
Constructor(const GlobalObject& aGlobal, const VRFieldOfViewInit& aParams,
|
|
ErrorResult& aRv);
|
|
|
|
static already_AddRefed<VRFieldOfView>
|
|
Constructor(const GlobalObject& aGlobal,
|
|
double aUpDegrees, double aRightDegrees,
|
|
double aDownDegrees, double aLeftDegrees,
|
|
ErrorResult& aRv);
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
void SetUpDegrees(double aVal) { mUpDegrees = aVal; }
|
|
void SetRightDegrees(double aVal) { mRightDegrees = aVal; }
|
|
void SetDownDegrees(double aVal) { mDownDegrees = aVal; }
|
|
void SetLeftDegrees(double aVal) { mLeftDegrees = aVal; }
|
|
};
|
|
|
|
class VRPositionState final : public nsWrapperCache
|
|
{
|
|
~VRPositionState() {}
|
|
public:
|
|
VRPositionState(nsISupports* aParent, const gfx::VRHMDSensorState& aState);
|
|
|
|
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; }
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
double mTimeStamp;
|
|
gfx::VRHMDSensorState mVRState;
|
|
|
|
RefPtr<DOMPoint> mPosition;
|
|
RefPtr<DOMPoint> mLinearVelocity;
|
|
RefPtr<DOMPoint> mLinearAcceleration;
|
|
|
|
RefPtr<DOMPoint> mOrientation;
|
|
RefPtr<DOMPoint> mAngularVelocity;
|
|
RefPtr<DOMPoint> mAngularAcceleration;
|
|
};
|
|
|
|
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;
|
|
|
|
RefPtr<VRFieldOfView> mMinFOV;
|
|
RefPtr<VRFieldOfView> mMaxFOV;
|
|
RefPtr<VRFieldOfView> mRecFOV;
|
|
RefPtr<DOMPoint> mEyeTranslation;
|
|
RefPtr<VRFieldOfView> mCurFOV;
|
|
RefPtr<DOMRect> mRenderRect;
|
|
};
|
|
|
|
class VRDevice : public nsISupports,
|
|
public nsWrapperCache
|
|
{
|
|
public:
|
|
// create new VRDevice objects for all known underlying gfx::vr devices
|
|
static bool CreateAllKnownVRDevices(nsISupports *aParent, nsTArray<RefPtr<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:
|
|
virtual already_AddRefed<VREyeParameters> GetEyeParameters(VREye aEye) = 0;
|
|
|
|
virtual void SetFieldOfView(const VRFieldOfViewInit& aLeftFOV,
|
|
const VRFieldOfViewInit& aRightFOV,
|
|
double zNear, double zFar) = 0;
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
gfx::VRHMDInfo *GetHMD() { return mHMD.get(); }
|
|
|
|
protected:
|
|
HMDVRDevice(nsISupports* aParent, gfx::VRHMDInfo* aHMD)
|
|
: VRDevice(aParent, VRDevice::HMD)
|
|
, mHMD(aHMD)
|
|
{ }
|
|
|
|
virtual ~HMDVRDevice() { }
|
|
|
|
RefPtr<gfx::VRHMDInfo> mHMD;
|
|
};
|
|
|
|
class PositionSensorVRDevice : public VRDevice
|
|
{
|
|
public:
|
|
virtual already_AddRefed<VRPositionState> GetState() = 0;
|
|
|
|
virtual already_AddRefed<VRPositionState> GetImmediateState() = 0;
|
|
|
|
virtual void ResetSensor() = 0;
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
explicit PositionSensorVRDevice(nsISupports* aParent)
|
|
: VRDevice(aParent, VRDevice::PositionSensor)
|
|
{ }
|
|
|
|
virtual ~PositionSensorVRDevice() { }
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif
|