mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 21:12:40 +02:00
Add capture trigger in HMD right thumbstick
This adds the possibility to click on the Thumbstick of the right controller to capture picture and gif, for HMD only.
This commit is contained in:
parent
2be3011d28
commit
2e0f0ef7ea
1 changed files with 75 additions and 4 deletions
|
@ -1,8 +1,9 @@
|
||||||
//
|
//
|
||||||
// snapshot.js
|
// snapshot.js
|
||||||
//
|
//
|
||||||
// Created by David Kelly on 1 August 2016
|
// Created by David Kelly on August 1st, 2016
|
||||||
// Copyright 2016 High Fidelity, Inc
|
// Copyright 2016 High Fidelity, Inc.
|
||||||
|
// Copyright 2024 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0
|
// Distributed under the Apache License, Version 2.0
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
@ -373,6 +374,7 @@ function fillImageDataFromPrevious() {
|
||||||
errorPath: Script.resourcesPath() + 'snapshot/img/no-image.jpg'
|
errorPath: Script.resourcesPath() + 'snapshot/img/no-image.jpg'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
setTakePhotoControllerMappingStatus(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function snapshotUploaded(isError, reply) {
|
function snapshotUploaded(isError, reply) {
|
||||||
|
@ -474,6 +476,8 @@ function takeSnapshot() {
|
||||||
volume: 1.0
|
volume: 1.0
|
||||||
});
|
});
|
||||||
HMD.closeTablet();
|
HMD.closeTablet();
|
||||||
|
setTakePhotoControllerMappingStatus(false);
|
||||||
|
|
||||||
var DOUBLE_RENDER_TIME_TO_MS = 2000; // If rendering is bogged down, allow double the render time to close the tablet.
|
var DOUBLE_RENDER_TIME_TO_MS = 2000; // If rendering is bogged down, allow double the render time to close the tablet.
|
||||||
Script.setTimeout(function () {
|
Script.setTimeout(function () {
|
||||||
Window.takeSnapshot(false, includeAnimated, 1.91);
|
Window.takeSnapshot(false, includeAnimated, 1.91);
|
||||||
|
@ -530,7 +534,11 @@ function stillSnapshotTaken(pathStillSnapshot, notify) {
|
||||||
Settings.setValue("previousStillSnapPath", pathStillSnapshot);
|
Settings.setValue("previousStillSnapPath", pathStillSnapshot);
|
||||||
|
|
||||||
HMD.openTablet();
|
HMD.openTablet();
|
||||||
|
var includeAnimated = Settings.getValue("alsoTakeAnimatedSnapshot", true);
|
||||||
|
if (!includeAnimated) {
|
||||||
|
setTakePhotoControllerMappingStatus(true);
|
||||||
|
}
|
||||||
|
|
||||||
isDomainOpen(snapshotDomainID, function (canShare) {
|
isDomainOpen(snapshotDomainID, function (canShare) {
|
||||||
snapshotOptions = {
|
snapshotOptions = {
|
||||||
containsGif: false,
|
containsGif: false,
|
||||||
|
@ -614,6 +622,7 @@ function processingGifCompleted(pathAnimatedSnapshot) {
|
||||||
image_data: imageData
|
image_data: imageData
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
setTakePhotoControllerMappingStatus(true);
|
||||||
}
|
}
|
||||||
function maybeDeleteSnapshotStories() {
|
function maybeDeleteSnapshotStories() {
|
||||||
storyIDsToMaybeDelete.forEach(function (element, idx, array) {
|
storyIDsToMaybeDelete.forEach(function (element, idx, array) {
|
||||||
|
@ -703,20 +712,81 @@ function processRezPermissionChange(canRez) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setTakePhotoControllerMappingStatus(status) {
|
||||||
|
if (!takePhotoControllerMapping) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (status) {
|
||||||
|
takePhotoControllerMapping.enable();
|
||||||
|
} else {
|
||||||
|
takePhotoControllerMapping.disable();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var takePhotoControllerMapping;
|
||||||
|
var takePhotoControllerMappingName = 'Hifi-SnapshotApp-Mapping-TakePhoto';
|
||||||
|
function registerTakePhotoControllerMapping() {
|
||||||
|
takePhotoControllerMapping = Controller.newMapping(takePhotoControllerMappingName);
|
||||||
|
if (controllerType === "OculusTouch") {
|
||||||
|
takePhotoControllerMapping.from(Controller.Standard.RS).to(function (value) {
|
||||||
|
if (value === 1.0) {
|
||||||
|
takeSnapshot();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
});
|
||||||
|
} else if (controllerType === "Vive") {
|
||||||
|
takePhotoControllerMapping.from(Controller.Standard.RightPrimaryThumb).to(function (value) {
|
||||||
|
if (value === 1.0) {
|
||||||
|
takeSnapshot();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var controllerType = "Other";
|
||||||
|
function registerButtonMappings() {
|
||||||
|
var VRDevices = Controller.getDeviceNames().toString();
|
||||||
|
if (VRDevices) {
|
||||||
|
if (VRDevices.indexOf("Vive") !== -1) {
|
||||||
|
controllerType = "Vive";
|
||||||
|
} else if (VRDevices.indexOf("OculusTouch") !== -1) {
|
||||||
|
controllerType = "OculusTouch";
|
||||||
|
} else {
|
||||||
|
return; // Neither Vive nor Touch detected
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!takePhotoControllerMapping) {
|
||||||
|
registerTakePhotoControllerMapping();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function onHMDChanged(isHMDMode) {
|
||||||
|
registerButtonMappings();
|
||||||
|
}
|
||||||
|
|
||||||
|
function onClosingWindow () {
|
||||||
|
setTakePhotoControllerMappingStatus(false);
|
||||||
|
}
|
||||||
|
|
||||||
function startup() {
|
function startup() {
|
||||||
ui = new AppUi({
|
ui = new AppUi({
|
||||||
buttonName: "SNAP",
|
buttonName: "SNAP",
|
||||||
sortOrder: 5,
|
sortOrder: 5,
|
||||||
home: Script.resolvePath("html/SnapshotReview.html"),
|
home: Script.resolvePath("html/SnapshotReview.html"),
|
||||||
onOpened: fillImageDataFromPrevious,
|
onOpened: fillImageDataFromPrevious,
|
||||||
onMessage: onMessage
|
onMessage: onMessage,
|
||||||
|
onClosed: onClosingWindow
|
||||||
});
|
});
|
||||||
|
|
||||||
|
HMD.displayModeChanged.connect(onHMDChanged);
|
||||||
Entities.canRezChanged.connect(updatePrintPermissions);
|
Entities.canRezChanged.connect(updatePrintPermissions);
|
||||||
Entities.canRezTmpChanged.connect(updatePrintPermissions);
|
Entities.canRezTmpChanged.connect(updatePrintPermissions);
|
||||||
GlobalServices.myUsernameChanged.connect(onUsernameChanged);
|
GlobalServices.myUsernameChanged.connect(onUsernameChanged);
|
||||||
Snapshot.snapshotLocationSet.connect(snapshotLocationSet);
|
Snapshot.snapshotLocationSet.connect(snapshotLocationSet);
|
||||||
Window.snapshotShared.connect(snapshotUploaded);
|
Window.snapshotShared.connect(snapshotUploaded);
|
||||||
|
registerButtonMappings();
|
||||||
}
|
}
|
||||||
startup();
|
startup();
|
||||||
|
|
||||||
|
@ -726,6 +796,7 @@ function shutdown() {
|
||||||
GlobalServices.myUsernameChanged.disconnect(onUsernameChanged);
|
GlobalServices.myUsernameChanged.disconnect(onUsernameChanged);
|
||||||
Entities.canRezChanged.disconnect(updatePrintPermissions);
|
Entities.canRezChanged.disconnect(updatePrintPermissions);
|
||||||
Entities.canRezTmpChanged.disconnect(updatePrintPermissions);
|
Entities.canRezTmpChanged.disconnect(updatePrintPermissions);
|
||||||
|
HMD.displayModeChanged.disconnect(onHMDChanged);
|
||||||
}
|
}
|
||||||
Script.scriptEnding.connect(shutdown);
|
Script.scriptEnding.connect(shutdown);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue