mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 02:48:12 +02:00
start no movement mode. using actual keys since avatar speed doesnt work with gtting stuck
This commit is contained in:
parent
8541d4bd41
commit
88ebeaa4cb
3 changed files with 157 additions and 41 deletions
|
@ -2,9 +2,7 @@
|
||||||
"name": "Oculus Touch to Standard",
|
"name": "Oculus Touch to Standard",
|
||||||
"channels": [
|
"channels": [
|
||||||
{ "from": "OculusTouch.A", "to": "Standard.RightPrimaryThumb" },
|
{ "from": "OculusTouch.A", "to": "Standard.RightPrimaryThumb" },
|
||||||
{ "from": "OculusTouch.B", "to": "Standard.RightSecondaryThumb" },
|
{ "from": "OculusTouch.X", "to": "Standard.LeftPrimaryThumb" },
|
||||||
// { "from": "OculusTouch.X", "to": "Standard.LeftPrimaryThumb" },
|
|
||||||
// { "from": "OculusTouch.Y", "to": "Standard.LeftSecondaryThumb" },
|
|
||||||
|
|
||||||
{ "from": "OculusTouch.LY", "filters": "invert", "to": "Standard.LY" },
|
{ "from": "OculusTouch.LY", "filters": "invert", "to": "Standard.LY" },
|
||||||
{ "from": "OculusTouch.LX", "to": "Standard.LX" },
|
{ "from": "OculusTouch.LX", "to": "Standard.LX" },
|
||||||
|
|
|
@ -23,12 +23,12 @@
|
||||||
|
|
||||||
// UTILITIES -------------
|
// UTILITIES -------------
|
||||||
//
|
//
|
||||||
function ignore() { }
|
function ignore() {}
|
||||||
|
|
||||||
// Utility to make it easier to setup and disconnect cleanly.
|
// Utility to make it easier to setup and disconnect cleanly.
|
||||||
function setupHandler(event, handler) {
|
function setupHandler(event, handler) {
|
||||||
event.connect(handler);
|
event.connect(handler);
|
||||||
Script.scriptEnding.connect(function () {
|
Script.scriptEnding.connect(function() {
|
||||||
event.disconnect(handler);
|
event.disconnect(handler);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -36,10 +36,10 @@ function setupHandler(event, handler) {
|
||||||
// If some capability is not available until expiration milliseconds after the last update.
|
// If some capability is not available until expiration milliseconds after the last update.
|
||||||
function TimeLock(expiration) {
|
function TimeLock(expiration) {
|
||||||
var last = 0;
|
var last = 0;
|
||||||
this.update = function (optionalNow) {
|
this.update = function(optionalNow) {
|
||||||
last = optionalNow || Date.now();
|
last = optionalNow || Date.now();
|
||||||
};
|
};
|
||||||
this.expired = function (optionalNow) {
|
this.expired = function(optionalNow) {
|
||||||
return ((optionalNow || Date.now()) - last) > expiration;
|
return ((optionalNow || Date.now()) - last) > expiration;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -52,13 +52,17 @@ function Trigger(label) {
|
||||||
that.label = label;
|
that.label = label;
|
||||||
that.TRIGGER_SMOOTH_RATIO = 0.1; // Time averaging of trigger - 0.0 disables smoothing
|
that.TRIGGER_SMOOTH_RATIO = 0.1; // Time averaging of trigger - 0.0 disables smoothing
|
||||||
that.TRIGGER_OFF_VALUE = 0.10;
|
that.TRIGGER_OFF_VALUE = 0.10;
|
||||||
that.TRIGGER_ON_VALUE = that.TRIGGER_OFF_VALUE + 0.05; // Squeezed just enough to activate search or near grab
|
that.TRIGGER_ON_VALUE = that.TRIGGER_OFF_VALUE + 0.05; // Squeezed just enough to activate search or near grab
|
||||||
that.rawTriggerValue = 0;
|
that.rawTriggerValue = 0;
|
||||||
that.triggerValue = 0; // rolling average of trigger value
|
that.triggerValue = 0; // rolling average of trigger value
|
||||||
that.triggerClicked = false;
|
that.triggerClicked = false;
|
||||||
that.triggerClick = function (value) { that.triggerClicked = value; };
|
that.triggerClick = function(value) {
|
||||||
that.triggerPress = function (value) { that.rawTriggerValue = value; };
|
that.triggerClicked = value;
|
||||||
that.updateSmoothedTrigger = function () { // e.g., call once/update for effect
|
};
|
||||||
|
that.triggerPress = function(value) {
|
||||||
|
that.rawTriggerValue = value;
|
||||||
|
};
|
||||||
|
that.updateSmoothedTrigger = function() { // e.g., call once/update for effect
|
||||||
var triggerValue = that.rawTriggerValue;
|
var triggerValue = that.rawTriggerValue;
|
||||||
// smooth out trigger value
|
// smooth out trigger value
|
||||||
that.triggerValue = (that.triggerValue * that.TRIGGER_SMOOTH_RATIO) +
|
that.triggerValue = (that.triggerValue * that.TRIGGER_SMOOTH_RATIO) +
|
||||||
|
@ -66,19 +70,19 @@ function Trigger(label) {
|
||||||
OffscreenFlags.navigationFocusDisabled = that.triggerValue != 0.0;
|
OffscreenFlags.navigationFocusDisabled = that.triggerValue != 0.0;
|
||||||
};
|
};
|
||||||
// Current smoothed state, without hysteresis. Answering booleans.
|
// Current smoothed state, without hysteresis. Answering booleans.
|
||||||
that.triggerSmoothedClick = function () {
|
that.triggerSmoothedClick = function() {
|
||||||
return that.triggerClicked;
|
return that.triggerClicked;
|
||||||
};
|
};
|
||||||
that.triggerSmoothedSqueezed = function () {
|
that.triggerSmoothedSqueezed = function() {
|
||||||
return that.triggerValue > that.TRIGGER_ON_VALUE;
|
return that.triggerValue > that.TRIGGER_ON_VALUE;
|
||||||
};
|
};
|
||||||
that.triggerSmoothedReleased = function () {
|
that.triggerSmoothedReleased = function() {
|
||||||
return that.triggerValue < that.TRIGGER_OFF_VALUE;
|
return that.triggerValue < that.TRIGGER_OFF_VALUE;
|
||||||
};
|
};
|
||||||
|
|
||||||
// This part is not from handControllerGrab.js
|
// This part is not from handControllerGrab.js
|
||||||
that.state = null; // tri-state: falsey, 'partial', 'full'
|
that.state = null; // tri-state: falsey, 'partial', 'full'
|
||||||
that.update = function () { // update state, called from an update function
|
that.update = function() { // update state, called from an update function
|
||||||
var state = that.state;
|
var state = that.state;
|
||||||
that.updateSmoothedTrigger();
|
that.updateSmoothedTrigger();
|
||||||
|
|
||||||
|
@ -96,10 +100,10 @@ function Trigger(label) {
|
||||||
that.state = state;
|
that.state = state;
|
||||||
};
|
};
|
||||||
// Answer a controller source function (answering either 0.0 or 1.0).
|
// Answer a controller source function (answering either 0.0 or 1.0).
|
||||||
that.partial = function () {
|
that.partial = function() {
|
||||||
return that.state ? 1.0 : 0.0; // either 'partial' or 'full'
|
return that.state ? 1.0 : 0.0; // either 'partial' or 'full'
|
||||||
};
|
};
|
||||||
that.full = function () {
|
that.full = function() {
|
||||||
return (that.state === 'full') ? 1.0 : 0.0;
|
return (that.state === 'full') ? 1.0 : 0.0;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -115,6 +119,7 @@ function updateFieldOfView() {
|
||||||
// SHIMS ----------
|
// SHIMS ----------
|
||||||
//
|
//
|
||||||
var weMovedReticle = false;
|
var weMovedReticle = false;
|
||||||
|
|
||||||
function ignoreMouseActivity() {
|
function ignoreMouseActivity() {
|
||||||
// If we're paused, or if change in cursor position is from this script, not the hardware mouse.
|
// If we're paused, or if change in cursor position is from this script, not the hardware mouse.
|
||||||
if (!Reticle.allowMouseCapture) {
|
if (!Reticle.allowMouseCapture) {
|
||||||
|
@ -132,13 +137,16 @@ function ignoreMouseActivity() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
var MARGIN = 25;
|
var MARGIN = 25;
|
||||||
var reticleMinX = MARGIN, reticleMaxX, reticleMinY = MARGIN, reticleMaxY;
|
var reticleMinX = MARGIN,
|
||||||
|
reticleMaxX, reticleMinY = MARGIN,
|
||||||
|
reticleMaxY;
|
||||||
|
|
||||||
function updateRecommendedArea() {
|
function updateRecommendedArea() {
|
||||||
var dims = Controller.getViewportDimensions();
|
var dims = Controller.getViewportDimensions();
|
||||||
reticleMaxX = dims.x - MARGIN;
|
reticleMaxX = dims.x - MARGIN;
|
||||||
reticleMaxY = dims.y - MARGIN;
|
reticleMaxY = dims.y - MARGIN;
|
||||||
}
|
}
|
||||||
var setReticlePosition = function (point2d) {
|
var setReticlePosition = function(point2d) {
|
||||||
weMovedReticle = true;
|
weMovedReticle = true;
|
||||||
point2d.x = Math.max(reticleMinX, Math.min(point2d.x, reticleMaxX));
|
point2d.x = Math.max(reticleMinX, Math.min(point2d.x, reticleMaxX));
|
||||||
point2d.y = Math.max(reticleMinY, Math.min(point2d.y, reticleMaxY));
|
point2d.y = Math.max(reticleMinY, Math.min(point2d.y, reticleMaxY));
|
||||||
|
@ -154,6 +162,7 @@ function findRayIntersection(pickRay) {
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
function isPointingAtOverlay(optionalHudPosition2d) {
|
function isPointingAtOverlay(optionalHudPosition2d) {
|
||||||
return Reticle.pointingAtSystemOverlay || Overlays.getOverlayAtPoint(optionalHudPosition2d || Reticle.position);
|
return Reticle.pointingAtSystemOverlay || Overlays.getOverlayAtPoint(optionalHudPosition2d || Reticle.position);
|
||||||
}
|
}
|
||||||
|
@ -161,6 +170,7 @@ function isPointingAtOverlay(optionalHudPosition2d) {
|
||||||
// Generalized HUD utilities, with or without HMD:
|
// Generalized HUD utilities, with or without HMD:
|
||||||
// This "var" is for documentation. Do not change the value!
|
// This "var" is for documentation. Do not change the value!
|
||||||
var PLANAR_PERPENDICULAR_HUD_DISTANCE = 1;
|
var PLANAR_PERPENDICULAR_HUD_DISTANCE = 1;
|
||||||
|
|
||||||
function calculateRayUICollisionPoint(position, direction) {
|
function calculateRayUICollisionPoint(position, direction) {
|
||||||
// Answer the 3D intersection of the HUD by the given ray, or falsey if no intersection.
|
// Answer the 3D intersection of the HUD by the given ray, or falsey if no intersection.
|
||||||
if (HMD.active) {
|
if (HMD.active) {
|
||||||
|
@ -180,6 +190,7 @@ function calculateRayUICollisionPoint(position, direction) {
|
||||||
return Vec3.sum(position, Vec3.multiply(scale, direction));
|
return Vec3.sum(position, Vec3.multiply(scale, direction));
|
||||||
}
|
}
|
||||||
var DEGREES_TO_HALF_RADIANS = Math.PI / 360;
|
var DEGREES_TO_HALF_RADIANS = Math.PI / 360;
|
||||||
|
|
||||||
function overlayFromWorldPoint(point) {
|
function overlayFromWorldPoint(point) {
|
||||||
// Answer the 2d pixel-space location in the HUD that covers the given 3D point.
|
// Answer the 2d pixel-space location in the HUD that covers the given 3D point.
|
||||||
// REQUIRES: that the 3d point be on the hud surface!
|
// REQUIRES: that the 3d point be on the hud surface!
|
||||||
|
@ -199,7 +210,10 @@ function overlayFromWorldPoint(point) {
|
||||||
var verticalFraction = 1 - (cameraY / hudHeight + 0.5);
|
var verticalFraction = 1 - (cameraY / hudHeight + 0.5);
|
||||||
var horizontalPixels = size.x * horizontalFraction;
|
var horizontalPixels = size.x * horizontalFraction;
|
||||||
var verticalPixels = size.y * verticalFraction;
|
var verticalPixels = size.y * verticalFraction;
|
||||||
return { x: horizontalPixels, y: verticalPixels };
|
return {
|
||||||
|
x: horizontalPixels,
|
||||||
|
y: verticalPixels
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function activeHudPoint2d(activeHand) { // if controller is valid, update reticle position and answer 2d point. Otherwise falsey.
|
function activeHudPoint2d(activeHand) { // if controller is valid, update reticle position and answer 2d point. Otherwise falsey.
|
||||||
|
@ -209,14 +223,14 @@ function activeHudPoint2d(activeHand) { // if controller is valid, update reticl
|
||||||
return; // Controller is cradled.
|
return; // Controller is cradled.
|
||||||
}
|
}
|
||||||
var controllerPosition = Vec3.sum(Vec3.multiplyQbyV(MyAvatar.orientation, controllerPose.translation),
|
var controllerPosition = Vec3.sum(Vec3.multiplyQbyV(MyAvatar.orientation, controllerPose.translation),
|
||||||
MyAvatar.position);
|
MyAvatar.position);
|
||||||
// This gets point direction right, but if you want general quaternion it would be more complicated:
|
// This gets point direction right, but if you want general quaternion it would be more complicated:
|
||||||
var controllerDirection = Quat.getUp(Quat.multiply(MyAvatar.orientation, controllerPose.rotation));
|
var controllerDirection = Quat.getUp(Quat.multiply(MyAvatar.orientation, controllerPose.rotation));
|
||||||
|
|
||||||
var hudPoint3d = calculateRayUICollisionPoint(controllerPosition, controllerDirection);
|
var hudPoint3d = calculateRayUICollisionPoint(controllerPosition, controllerDirection);
|
||||||
if (!hudPoint3d) {
|
if (!hudPoint3d) {
|
||||||
if (Menu.isOptionChecked("Overlays")) { // With our hud resetting strategy, hudPoint3d should be valid here
|
if (Menu.isOptionChecked("Overlays")) { // With our hud resetting strategy, hudPoint3d should be valid here
|
||||||
print('Controller is parallel to HUD'); // so let us know that our assumptions are wrong.
|
print('Controller is parallel to HUD'); // so let us know that our assumptions are wrong.
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -231,12 +245,17 @@ function activeHudPoint2d(activeHand) { // if controller is valid, update reticl
|
||||||
// MOUSE ACTIVITY --------
|
// MOUSE ACTIVITY --------
|
||||||
//
|
//
|
||||||
var isSeeking = false;
|
var isSeeking = false;
|
||||||
var averageMouseVelocity = 0, lastIntegration = 0, lastMouse;
|
var averageMouseVelocity = 0,
|
||||||
|
lastIntegration = 0,
|
||||||
|
lastMouse;
|
||||||
var WEIGHTING = 1 / 20; // simple moving average over last 20 samples
|
var WEIGHTING = 1 / 20; // simple moving average over last 20 samples
|
||||||
var ONE_MINUS_WEIGHTING = 1 - WEIGHTING;
|
var ONE_MINUS_WEIGHTING = 1 - WEIGHTING;
|
||||||
var AVERAGE_MOUSE_VELOCITY_FOR_SEEK_TO = 20;
|
var AVERAGE_MOUSE_VELOCITY_FOR_SEEK_TO = 20;
|
||||||
|
|
||||||
function isShakingMouse() { // True if the person is waving the mouse around trying to find it.
|
function isShakingMouse() { // True if the person is waving the mouse around trying to find it.
|
||||||
var now = Date.now(), mouse = Reticle.position, isShaking = false;
|
var now = Date.now(),
|
||||||
|
mouse = Reticle.position,
|
||||||
|
isShaking = false;
|
||||||
if (lastIntegration && (lastIntegration !== now)) {
|
if (lastIntegration && (lastIntegration !== now)) {
|
||||||
var velocity = Vec3.length(Vec3.subtract(mouse, lastMouse)) / (now - lastIntegration);
|
var velocity = Vec3.length(Vec3.subtract(mouse, lastMouse)) / (now - lastIntegration);
|
||||||
averageMouseVelocity = (ONE_MINUS_WEIGHTING * averageMouseVelocity) + (WEIGHTING * velocity);
|
averageMouseVelocity = (ONE_MINUS_WEIGHTING * averageMouseVelocity) + (WEIGHTING * velocity);
|
||||||
|
@ -250,6 +269,7 @@ function isShakingMouse() { // True if the person is waving the mouse around try
|
||||||
}
|
}
|
||||||
var NON_LINEAR_DIVISOR = 2;
|
var NON_LINEAR_DIVISOR = 2;
|
||||||
var MINIMUM_SEEK_DISTANCE = 0.1;
|
var MINIMUM_SEEK_DISTANCE = 0.1;
|
||||||
|
|
||||||
function updateSeeking(doNotStartSeeking) {
|
function updateSeeking(doNotStartSeeking) {
|
||||||
if (!doNotStartSeeking && (!Reticle.visible || isShakingMouse())) {
|
if (!doNotStartSeeking && (!Reticle.visible || isShakingMouse())) {
|
||||||
if (!isSeeking) {
|
if (!isSeeking) {
|
||||||
|
@ -268,6 +288,7 @@ function updateSeeking(doNotStartSeeking) {
|
||||||
return; // E.g., if parallel to location in HUD
|
return; // E.g., if parallel to location in HUD
|
||||||
}
|
}
|
||||||
var copy = Reticle.position;
|
var copy = Reticle.position;
|
||||||
|
|
||||||
function updateDimension(axis) {
|
function updateDimension(axis) {
|
||||||
var distanceBetween = lookAt2D[axis] - Reticle.position[axis];
|
var distanceBetween = lookAt2D[axis] - Reticle.position[axis];
|
||||||
var move = distanceBetween / NON_LINEAR_DIVISOR;
|
var move = distanceBetween / NON_LINEAR_DIVISOR;
|
||||||
|
@ -277,7 +298,8 @@ function updateSeeking(doNotStartSeeking) {
|
||||||
copy[axis] += move;
|
copy[axis] += move;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
var okX = !updateDimension('x'), okY = !updateDimension('y'); // Evaluate both. Don't short-circuit.
|
var okX = !updateDimension('x'),
|
||||||
|
okY = !updateDimension('y'); // Evaluate both. Don't short-circuit.
|
||||||
if (okX && okY) {
|
if (okX && okY) {
|
||||||
print('Finished seeking mouse');
|
print('Finished seeking mouse');
|
||||||
isSeeking = false;
|
isSeeking = false;
|
||||||
|
@ -300,16 +322,19 @@ function updateMouseActivity(isClick) {
|
||||||
handControllerLockOut.update(now);
|
handControllerLockOut.update(now);
|
||||||
Reticle.visible = true;
|
Reticle.visible = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function expireMouseCursor(now) {
|
function expireMouseCursor(now) {
|
||||||
if (!isPointingAtOverlay() && mouseCursorActivity.expired(now)) {
|
if (!isPointingAtOverlay() && mouseCursorActivity.expired(now)) {
|
||||||
Reticle.visible = false;
|
Reticle.visible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function hudReticleDistance() { // 3d distance from camera to the reticle position on hud
|
function hudReticleDistance() { // 3d distance from camera to the reticle position on hud
|
||||||
// (The camera is only in the center of the sphere on reset.)
|
// (The camera is only in the center of the sphere on reset.)
|
||||||
var reticlePositionOnHUD = HMD.worldPointFromOverlay(Reticle.position);
|
var reticlePositionOnHUD = HMD.worldPointFromOverlay(Reticle.position);
|
||||||
return Vec3.distance(reticlePositionOnHUD, HMD.position);
|
return Vec3.distance(reticlePositionOnHUD, HMD.position);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMouseMove() {
|
function onMouseMove() {
|
||||||
// Display cursor at correct depth (as in depthReticle.js), and updateMouseActivity.
|
// Display cursor at correct depth (as in depthReticle.js), and updateMouseActivity.
|
||||||
if (ignoreMouseActivity()) {
|
if (ignoreMouseActivity()) {
|
||||||
|
@ -327,6 +352,7 @@ function onMouseMove() {
|
||||||
}
|
}
|
||||||
updateMouseActivity(); // After the above, just in case the depth movement is awkward when becoming visible.
|
updateMouseActivity(); // After the above, just in case the depth movement is awkward when becoming visible.
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMouseClick() {
|
function onMouseClick() {
|
||||||
updateMouseActivity(true);
|
updateMouseActivity(true);
|
||||||
}
|
}
|
||||||
|
@ -345,6 +371,7 @@ var LEFT_HUD_LASER = 1;
|
||||||
var RIGHT_HUD_LASER = 2;
|
var RIGHT_HUD_LASER = 2;
|
||||||
var BOTH_HUD_LASERS = LEFT_HUD_LASER + RIGHT_HUD_LASER;
|
var BOTH_HUD_LASERS = LEFT_HUD_LASER + RIGHT_HUD_LASER;
|
||||||
var activeHudLaser = RIGHT_HUD_LASER;
|
var activeHudLaser = RIGHT_HUD_LASER;
|
||||||
|
|
||||||
function toggleHand() { // unequivocally switch which hand controls mouse position
|
function toggleHand() { // unequivocally switch which hand controls mouse position
|
||||||
if (activeHand === Controller.Standard.RightHand) {
|
if (activeHand === Controller.Standard.RightHand) {
|
||||||
activeHand = Controller.Standard.LeftHand;
|
activeHand = Controller.Standard.LeftHand;
|
||||||
|
@ -357,8 +384,9 @@ function toggleHand() { // unequivocally switch which hand controls mouse positi
|
||||||
}
|
}
|
||||||
clearSystemLaser();
|
clearSystemLaser();
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeToggleAction(hand) { // return a function(0|1) that makes the specified hand control mouse when 1
|
function makeToggleAction(hand) { // return a function(0|1) that makes the specified hand control mouse when 1
|
||||||
return function (on) {
|
return function(on) {
|
||||||
if (on && (activeHand !== hand)) {
|
if (on && (activeHand !== hand)) {
|
||||||
toggleHand();
|
toggleHand();
|
||||||
}
|
}
|
||||||
|
@ -378,7 +406,7 @@ function isPointingAtOverlayStartedNonFullTrigger(trigger) {
|
||||||
// true if isPointingAtOverlay AND we were NOT full triggered when we became so.
|
// true if isPointingAtOverlay AND we were NOT full triggered when we became so.
|
||||||
// The idea is to not count clicks when we're full-triggering and reach the edge of a window.
|
// The idea is to not count clicks when we're full-triggering and reach the edge of a window.
|
||||||
var lockedIn = false;
|
var lockedIn = false;
|
||||||
return function () {
|
return function() {
|
||||||
if (trigger !== activeTrigger) {
|
if (trigger !== activeTrigger) {
|
||||||
return lockedIn = false;
|
return lockedIn = false;
|
||||||
}
|
}
|
||||||
|
@ -398,26 +426,28 @@ clickMapping.from(leftTrigger.full).when(isPointingAtOverlayStartedNonFullTrigge
|
||||||
// clickMapping.from(Controller.Standard.RightSecondaryThumb).peek().to(Controller.Actions.ContextMenu);
|
// clickMapping.from(Controller.Standard.RightSecondaryThumb).peek().to(Controller.Actions.ContextMenu);
|
||||||
// except that we first update the reticle position from the appropriate hand position, before invoking the ContextMenu.
|
// except that we first update the reticle position from the appropriate hand position, before invoking the ContextMenu.
|
||||||
var wantsMenu = 0;
|
var wantsMenu = 0;
|
||||||
clickMapping.from(function () { return wantsMenu; }).to(Controller.Actions.ContextMenu);
|
clickMapping.from(function() {
|
||||||
clickMapping.from(Controller.Standard.RightSecondaryThumb).peek().to(function (clicked) {
|
return wantsMenu;
|
||||||
|
}).to(Controller.Actions.ContextMenu);
|
||||||
|
clickMapping.from(Controller.Standard.RightSecondaryThumb).peek().to(function(clicked) {
|
||||||
if (clicked) {
|
if (clicked) {
|
||||||
activeHudPoint2d(Controller.Standard.RightHand);
|
activeHudPoint2d(Controller.Standard.RightHand);
|
||||||
}
|
}
|
||||||
wantsMenu = clicked;
|
wantsMenu = clicked;
|
||||||
});
|
});
|
||||||
clickMapping.from(Controller.Standard.LeftSecondaryThumb).peek().to(function (clicked) {
|
clickMapping.from(Controller.Standard.LeftSecondaryThumb).peek().to(function(clicked) {
|
||||||
if (clicked) {
|
if (clicked) {
|
||||||
activeHudPoint2d(Controller.Standard.LeftHand);
|
activeHudPoint2d(Controller.Standard.LeftHand);
|
||||||
}
|
}
|
||||||
wantsMenu = clicked;
|
wantsMenu = clicked;
|
||||||
});
|
});
|
||||||
clickMapping.from(Controller.Hardware.Keyboard.RightMouseClicked).peek().to(function () {
|
clickMapping.from(Controller.Hardware.Keyboard.RightMouseClicked).peek().to(function() {
|
||||||
// Allow the reticle depth to be set correctly:
|
// Allow the reticle depth to be set correctly:
|
||||||
// Wait a tick for the context menu to be displayed, and then simulate a (non-hand-controller) mouse move
|
// Wait a tick for the context menu to be displayed, and then simulate a (non-hand-controller) mouse move
|
||||||
// so that the system updates qml state (Reticle.pointingAtSystemOverlay) before it gives us a mouseMove.
|
// so that the system updates qml state (Reticle.pointingAtSystemOverlay) before it gives us a mouseMove.
|
||||||
// We don't want the system code to always do this for us, because, e.g., we do not want to get a mouseMove
|
// We don't want the system code to always do this for us, because, e.g., we do not want to get a mouseMove
|
||||||
// after the Left/RightSecondaryThumb gives us a context menu. Only from the mouse.
|
// after the Left/RightSecondaryThumb gives us a context menu. Only from the mouse.
|
||||||
Script.setTimeout(function () {
|
Script.setTimeout(function() {
|
||||||
Reticle.setPosition(Reticle.position);
|
Reticle.setPosition(Reticle.position);
|
||||||
}, 0);
|
}, 0);
|
||||||
});
|
});
|
||||||
|
@ -429,10 +459,25 @@ clickMapping.enable();
|
||||||
// VISUAL AID -----------
|
// VISUAL AID -----------
|
||||||
// Same properties as handControllerGrab search sphere
|
// Same properties as handControllerGrab search sphere
|
||||||
var LASER_ALPHA = 0.5;
|
var LASER_ALPHA = 0.5;
|
||||||
var LASER_SEARCH_COLOR_XYZW = {x: 10 / 255, y: 10 / 255, z: 255 / 255, w: LASER_ALPHA};
|
var LASER_SEARCH_COLOR_XYZW = {
|
||||||
var LASER_TRIGGER_COLOR_XYZW = {x: 250 / 255, y: 10 / 255, z: 10 / 255, w: LASER_ALPHA};
|
x: 10 / 255,
|
||||||
var SYSTEM_LASER_DIRECTION = {x: 0, y: 0, z: -1};
|
y: 10 / 255,
|
||||||
|
z: 255 / 255,
|
||||||
|
w: LASER_ALPHA
|
||||||
|
};
|
||||||
|
var LASER_TRIGGER_COLOR_XYZW = {
|
||||||
|
x: 250 / 255,
|
||||||
|
y: 10 / 255,
|
||||||
|
z: 10 / 255,
|
||||||
|
w: LASER_ALPHA
|
||||||
|
};
|
||||||
|
var SYSTEM_LASER_DIRECTION = {
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
z: -1
|
||||||
|
};
|
||||||
var systemLaserOn = false;
|
var systemLaserOn = false;
|
||||||
|
|
||||||
function clearSystemLaser() {
|
function clearSystemLaser() {
|
||||||
if (!systemLaserOn) {
|
if (!systemLaserOn) {
|
||||||
return;
|
return;
|
||||||
|
@ -440,8 +485,12 @@ function clearSystemLaser() {
|
||||||
HMD.disableHandLasers(BOTH_HUD_LASERS);
|
HMD.disableHandLasers(BOTH_HUD_LASERS);
|
||||||
systemLaserOn = false;
|
systemLaserOn = false;
|
||||||
weMovedReticle = true;
|
weMovedReticle = true;
|
||||||
Reticle.position = { x: -1, y: -1 };
|
Reticle.position = {
|
||||||
|
x: -1,
|
||||||
|
y: -1
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function setColoredLaser() { // answer trigger state if lasers supported, else falsey.
|
function setColoredLaser() { // answer trigger state if lasers supported, else falsey.
|
||||||
var color = (activeTrigger.state === 'full') ? LASER_TRIGGER_COLOR_XYZW : LASER_SEARCH_COLOR_XYZW;
|
var color = (activeTrigger.state === 'full') ? LASER_TRIGGER_COLOR_XYZW : LASER_SEARCH_COLOR_XYZW;
|
||||||
return HMD.setHandLasers(activeHudLaser, true, color, SYSTEM_LASER_DIRECTION) && activeTrigger.state;
|
return HMD.setHandLasers(activeHudLaser, true, color, SYSTEM_LASER_DIRECTION) && activeTrigger.state;
|
||||||
|
@ -451,6 +500,7 @@ function setColoredLaser() { // answer trigger state if lasers supported, else f
|
||||||
//
|
//
|
||||||
function update() {
|
function update() {
|
||||||
var now = Date.now();
|
var now = Date.now();
|
||||||
|
|
||||||
function off() {
|
function off() {
|
||||||
expireMouseCursor();
|
expireMouseCursor();
|
||||||
clearSystemLaser();
|
clearSystemLaser();
|
||||||
|
@ -504,7 +554,31 @@ function checkSettings() {
|
||||||
checkSettings();
|
checkSettings();
|
||||||
|
|
||||||
var settingsChecker = Script.setInterval(checkSettings, SETTINGS_CHANGE_RECHECK_INTERVAL);
|
var settingsChecker = Script.setInterval(checkSettings, SETTINGS_CHANGE_RECHECK_INTERVAL);
|
||||||
Script.scriptEnding.connect(function () {
|
Script.scriptEnding.connect(function() {
|
||||||
Script.clearInterval(settingsChecker);
|
Script.clearInterval(settingsChecker);
|
||||||
OffscreenFlags.navigationFocusDisabled = false;
|
OffscreenFlags.navigationFocusDisabled = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var isDisabled = false;
|
||||||
|
var handleHandMessages = function(channel, message, sender) {
|
||||||
|
var data;
|
||||||
|
if (sender === MyAvatar.sessionUUID) {
|
||||||
|
if (channel === 'Hifi-Hand-Pointer-Disabler') {
|
||||||
|
if (message === 'both') {
|
||||||
|
isDisabled = 'both';
|
||||||
|
}
|
||||||
|
if (message === 'left') {
|
||||||
|
isDisabled = 'left';
|
||||||
|
}
|
||||||
|
if (message === 'right') {
|
||||||
|
isDisabled = 'right';
|
||||||
|
}
|
||||||
|
if (message === 'none') {
|
||||||
|
isDisabled = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Messages.subscribe('Hifi-Hand-Pointer-Disabler');
|
||||||
|
Messages.messageReceived.connect(handleHandMessages);
|
|
@ -58,6 +58,9 @@ var COLORS_TELEPORT_CANNOT_TELEPORT = {
|
||||||
blue: 141
|
blue: 141
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
var MAX_AVATAR_SPEED = 0.25;
|
||||||
|
|
||||||
function ThumbPad(hand) {
|
function ThumbPad(hand) {
|
||||||
this.hand = hand;
|
this.hand = hand;
|
||||||
var _thisPad = this;
|
var _thisPad = this;
|
||||||
|
@ -265,7 +268,6 @@ function Teleporter() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
teleporter.leftRay();
|
teleporter.leftRay();
|
||||||
//|| leftTrigger.buttonValue === 0
|
|
||||||
if ((leftPad.buttonValue === 0) && inTeleportMode === true) {
|
if ((leftPad.buttonValue === 0) && inTeleportMode === true) {
|
||||||
_this.teleport();
|
_this.teleport();
|
||||||
return;
|
return;
|
||||||
|
@ -276,7 +278,6 @@ function Teleporter() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
teleporter.rightRay();
|
teleporter.rightRay();
|
||||||
//|| rightTrigger.buttonValue === 0
|
|
||||||
if ((rightPad.buttonValue === 0) && inTeleportMode === true) {
|
if ((rightPad.buttonValue === 0) && inTeleportMode === true) {
|
||||||
_this.teleport();
|
_this.teleport();
|
||||||
return;
|
return;
|
||||||
|
@ -589,6 +590,15 @@ function getJointData() {
|
||||||
return allJointData;
|
return allJointData;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function getAvatarSpeed() {
|
||||||
|
return Vec3.length(MyAvatar.velocity)
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasPressedMovementButtonLately() {
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var leftPad = new ThumbPad('left');
|
var leftPad = new ThumbPad('left');
|
||||||
var rightPad = new ThumbPad('right');
|
var rightPad = new ThumbPad('right');
|
||||||
var leftTrigger = new Trigger('left');
|
var leftTrigger = new Trigger('left');
|
||||||
|
@ -599,6 +609,26 @@ var mappingName, teleportMapping;
|
||||||
var activationTimeout = null;
|
var activationTimeout = null;
|
||||||
var TELEPORT_DELAY = 800;
|
var TELEPORT_DELAY = 800;
|
||||||
|
|
||||||
|
var lastMovementPress = new Date();
|
||||||
|
|
||||||
|
function pressedAMovementButton() {
|
||||||
|
print('PRESSED A MOVEMENT BUTTON!!')
|
||||||
|
lastMovementPress = new Date();
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasMovedRecently() {
|
||||||
|
var dif = new Date().getTime() - lastMovementPress.getTime();
|
||||||
|
|
||||||
|
var secondsBetween = dif / 1000;
|
||||||
|
secondsBetween = Math.abs(secondsBetween);
|
||||||
|
print('seconds between: '+secondsBetween)
|
||||||
|
if (secondsBetween < 0.5) {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function registerMappings() {
|
function registerMappings() {
|
||||||
mappingName = 'Hifi-Teleporter-Dev-' + Math.random();
|
mappingName = 'Hifi-Teleporter-Dev-' + Math.random();
|
||||||
teleportMapping = Controller.newMapping(mappingName);
|
teleportMapping = Controller.newMapping(mappingName);
|
||||||
|
@ -608,6 +638,9 @@ function registerMappings() {
|
||||||
teleportMapping.from(Controller.Standard.RightPrimaryThumb).peek().to(rightPad.buttonPress);
|
teleportMapping.from(Controller.Standard.RightPrimaryThumb).peek().to(rightPad.buttonPress);
|
||||||
teleportMapping.from(Controller.Standard.LeftPrimaryThumb).peek().to(leftPad.buttonPress);
|
teleportMapping.from(Controller.Standard.LeftPrimaryThumb).peek().to(leftPad.buttonPress);
|
||||||
|
|
||||||
|
teleportMapping.from(Controller.Standard.LY).peek().to(pressedAMovementButton);
|
||||||
|
teleportMapping.from(Controller.Standard.LX).peek().to(pressedAMovementButton);
|
||||||
|
|
||||||
teleportMapping.from(Controller.Standard.LeftPrimaryThumb)
|
teleportMapping.from(Controller.Standard.LeftPrimaryThumb)
|
||||||
.to(function(value) {
|
.to(function(value) {
|
||||||
if (isDisabled === 'left' || isDisabled === 'both') {
|
if (isDisabled === 'left' || isDisabled === 'both') {
|
||||||
|
@ -619,8 +652,13 @@ function registerMappings() {
|
||||||
if (leftTrigger.down()) {
|
if (leftTrigger.down()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (hasMovedRecently() === true) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// if (getAvatarSpeed() >= MAX_AVATAR_SPEED) {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
activationTimeout = Script.setTimeout(function() {
|
activationTimeout = Script.setTimeout(function() {
|
||||||
|
|
||||||
Script.clearTimeout(activationTimeout);
|
Script.clearTimeout(activationTimeout);
|
||||||
activationTimeout = null;
|
activationTimeout = null;
|
||||||
teleporter.enterTeleportMode('left')
|
teleporter.enterTeleportMode('left')
|
||||||
|
@ -638,6 +676,12 @@ function registerMappings() {
|
||||||
if (rightTrigger.down()) {
|
if (rightTrigger.down()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (hasMovedRecently() === true) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// if (getAvatarSpeed() >= MAX_AVATAR_SPEED) {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
activationTimeout = Script.setTimeout(function() {
|
activationTimeout = Script.setTimeout(function() {
|
||||||
teleporter.enterTeleportMode('right')
|
teleporter.enterTeleportMode('right')
|
||||||
Script.clearTimeout(activationTimeout);
|
Script.clearTimeout(activationTimeout);
|
||||||
|
|
Loading…
Reference in a new issue