2017-03-01 13:33:28 +03:00
|
|
|
/* 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/.
|
|
|
|
*
|
|
|
|
* This WebIDL is just for WebVR testing.
|
|
|
|
*/
|
|
|
|
|
2019-06-29 00:19:54 +03:00
|
|
|
[Pref="dom.vr.puppet.enabled",
|
2019-09-27 18:26:14 +03:00
|
|
|
HeaderFile="mozilla/dom/VRServiceTest.h",
|
|
|
|
Exposed=Window]
|
2017-03-01 13:33:28 +03:00
|
|
|
interface VRMockDisplay {
|
2019-06-29 00:19:54 +03:00
|
|
|
void create();
|
|
|
|
attribute boolean capPosition;
|
|
|
|
attribute boolean capOrientation;
|
|
|
|
attribute boolean capPresent;
|
|
|
|
attribute boolean capExternal;
|
|
|
|
attribute boolean capAngularAcceleration;
|
|
|
|
attribute boolean capLinearAcceleration;
|
|
|
|
attribute boolean capStageParameters;
|
|
|
|
attribute boolean capMountDetection;
|
|
|
|
attribute boolean capPositionEmulated;
|
|
|
|
void setEyeFOV(VREye eye,
|
|
|
|
double upDegree, double rightDegree,
|
|
|
|
double downDegree, double leftDegree);
|
|
|
|
void setEyeOffset(VREye eye, double offsetX,
|
|
|
|
double offsetY, double offsetZ);
|
|
|
|
void setEyeResolution(unsigned long renderWidth,
|
|
|
|
unsigned long renderHeight);
|
|
|
|
void setConnected(boolean connected);
|
|
|
|
void setMounted(boolean mounted);
|
|
|
|
void setStageSize(double width, double height);
|
|
|
|
[Throws] void setSittingToStandingTransform(Float32Array sittingToStandingTransform);
|
|
|
|
[Throws] void setPose(Float32Array? position, Float32Array? linearVelocity,
|
|
|
|
Float32Array? linearAcceleration, Float32Array? orientation,
|
|
|
|
Float32Array? angularVelocity, Float32Array? angularAcceleration);
|
2017-03-01 13:33:28 +03:00
|
|
|
};
|
|
|
|
|
2019-06-29 00:19:54 +03:00
|
|
|
[Pref="dom.vr.puppet.enabled",
|
2019-09-27 18:26:14 +03:00
|
|
|
HeaderFile="mozilla/dom/VRServiceTest.h",
|
|
|
|
Exposed=Window]
|
2017-03-01 13:33:28 +03:00
|
|
|
interface VRMockController {
|
2019-06-29 00:19:54 +03:00
|
|
|
void create();
|
|
|
|
void clear();
|
|
|
|
attribute GamepadHand hand;
|
|
|
|
attribute boolean capPosition;
|
|
|
|
attribute boolean capOrientation;
|
|
|
|
attribute boolean capAngularAcceleration;
|
|
|
|
attribute boolean capLinearAcceleration;
|
|
|
|
attribute unsigned long axisCount;
|
|
|
|
attribute unsigned long buttonCount;
|
|
|
|
attribute unsigned long hapticCount;
|
|
|
|
[Throws] void setPose(Float32Array? position, Float32Array? linearVelocity,
|
|
|
|
Float32Array? linearAcceleration, Float32Array? orientation,
|
|
|
|
Float32Array? angularVelocity, Float32Array? angularAcceleration);
|
|
|
|
void setButtonPressed(unsigned long buttonIdx, boolean pressed);
|
|
|
|
void setButtonTouched(unsigned long buttonIdx, boolean touched);
|
|
|
|
void setButtonTrigger(unsigned long buttonIdx, double trigger);
|
|
|
|
void setAxisValue(unsigned long axisIdx, double value);
|
2017-03-01 13:33:28 +03:00
|
|
|
};
|
|
|
|
|
2019-06-29 00:19:54 +03:00
|
|
|
[Pref="dom.vr.puppet.enabled",
|
2019-09-27 18:26:14 +03:00
|
|
|
HeaderFile="mozilla/dom/VRServiceTest.h",
|
|
|
|
Exposed=Window]
|
2017-03-01 13:33:28 +03:00
|
|
|
interface VRServiceTest {
|
2019-06-29 00:19:54 +03:00
|
|
|
VRMockDisplay getVRDisplay();
|
|
|
|
[Throws] VRMockController getVRController(unsigned long controllerIdx);
|
|
|
|
[Throws] Promise<void> run();
|
|
|
|
[Throws] Promise<void> reset();
|
|
|
|
void commit();
|
|
|
|
void end();
|
|
|
|
void clearAll();
|
|
|
|
void timeout(unsigned long duration);
|
|
|
|
void wait(unsigned long duration);
|
|
|
|
void waitSubmit();
|
|
|
|
void waitPresentationStart();
|
|
|
|
void waitPresentationEnd();
|
|
|
|
[Throws]
|
|
|
|
void waitHapticIntensity(unsigned long controllerIdx, unsigned long hapticIdx, double intensity);
|
|
|
|
void captureFrame();
|
|
|
|
void acknowledgeFrame();
|
|
|
|
void rejectFrame();
|
|
|
|
void startTimer();
|
|
|
|
void stopTimer();
|
2017-03-01 13:33:28 +03:00
|
|
|
};
|