From b27f24e4a9ca91a1a92a2e057361fcfca1d594cd Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Wed, 5 Jun 2024 17:21:41 -0500 Subject: [PATCH 1/3] Initial Commit. Signed-off-by: Armored Dragon --- scripts/system/controllers/mouseLook.js | 240 +++++++----------------- 1 file changed, 65 insertions(+), 175 deletions(-) diff --git a/scripts/system/controllers/mouseLook.js b/scripts/system/controllers/mouseLook.js index 751bda2150..bb777c8f58 100644 --- a/scripts/system/controllers/mouseLook.js +++ b/scripts/system/controllers/mouseLook.js @@ -1,204 +1,95 @@ -/* -mouseLook.js – mouse look switching script -by rampa3 (https://github.com/rampa3) and vegaslon (https://github.com/vegaslon) -*/ -(function() { // BEGIN LOCAL_SCOPE +// +// mouseLook.js +// +// By Armored Dragon (June 6). Refactored from Rampa3 & Vegaslon work +// Copyright 2024 Overte e.V. +// +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// - var away; +(() => { + // States ---- + let mouse_look_active = Settings.getValue("mouselook-active", false); + let mouse_look_enabled = Camera.getMouseLook(); + let hmd_active = HMD.active; + let overlay_active = Desktop.isOverlayWindowFocused(); - var hmd = HMD.active; - - var mouseLookEnabled = Camera.getMouseLook(); - - var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); - - var tabletUp; - - var keysOnOverlay = Desktop.isOverlayWindowFocused(); - - var tempOff = false; - - var altMode = false; + // Resources ---- + let tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); + // Events ---- Camera.mouseLookChanged.connect(onMouseLookChanged); - - function onMouseLookChanged(newMouseLook) { - mouseLookEnabled = newMouseLook; - } - - if (!hmd){ - if (mouseLookEnabled) { - if (!keysOnOverlay) { - if (!tablet.tabletShown){ - Window.displayAnnouncement("Mouse look: ON"); - mouseLookOn(); - } else { - Window.displayAnnouncement("Tablet is up – mouse look temporarily OFF."); - } - } - } - } - Controller.keyPressEvent.connect(onKeyPressEvent); + Desktop.uiFocusChanged.connect(onUiFocusChanged); + HMD.displayModeChanged.connect(onDisplayModeChanged); + MyAvatar.wentActive.connect(onWentActive); + MyAvatar.wentAway.connect(onWentAway); + tablet.tabletShownChanged.connect(onTabletShownChanged); + Script.scriptEnding.connect(onScriptEnding); + + // Program ---- + function onMouseLookChanged(newMouseLook) { + mouse_look_enabled = newMouseLook; + } function onKeyPressEvent(event) { - if (!hmd){ - if(event.isAlt){ - if (keysOnOverlay) return; - if (!mouseLookEnabled) return; - mouseLookOff(); - Window.displayAnnouncement("Mouse look: Temporarily OFF"); - tempOff = true; - altMode = true; - } - if (tempOff && altMode && ['left', 'right', 'up', 'down', 'esc', 'w', 'a', 's', 'd'].includes(event.text.toLowerCase())){ - if (keysOnOverlay) return; - if (!mouseLookEnabled) return; - mouseLookOn(); - tempOff = false; - altMode = false - } - if (event.text.toLowerCase() === 'm') { - if (!keysOnOverlay) { - if (mouseLookEnabled) { - if (!Camera.getCaptureMouse()){ - tempOff = false; - Window.displayAnnouncement("Mouse look: ON"); - mouseLookOn(); - } else { - tempOff = true; - Window.displayAnnouncement("Mouse look: Temporarily OFF"); - mouseLookOff(); - } - } - } + // Toggle using the m key + if (event.text.toLowerCase() === "m") { + if (Camera.captureMouse) { + mouse_look_active = false; + Settings.setValue("mouselook-active", false); + disableMouseLook(); + } else { + mouse_look_active = true; + Settings.setValue("mouselook-active", true); + enableMouseLook(); } } } - tablet.tabletShownChanged.connect(onTabletShownChanged); - function onTabletShownChanged() { - if (!hmd) { - if (mouseLookEnabled) { - if (!tablet.toolbarMode) { - if (!keysOnOverlay) { - if (tablet.tabletShown) { - tabletUp = true; - if (!tempOff) { - if (!away) { - Window.displayAnnouncement("Tablet is up – mouse look temporarily OFF."); - mouseLookOff(); - } - } - } else if (!tablet.tabletShown) { - tabletUp = false; - if (!tempOff) { - if (!away && !keysOnOverlay) { - Window.displayAnnouncement("Tablet hidden – mouse look ON."); - mouseLookOn(); - } - } - } - } - } - } - } + if (tablet.tabletShown) disableMouseLook(); + else enableMouseLook(); } - MyAvatar.wentAway.connect(onWentAway); - function onWentAway() { - if (!hmd) { - if (mouseLookEnabled) { - away = true; - if (!keysOnOverlay) { - if (!tabletUp){ - Window.displayAnnouncement("Away state ON – mouse look temporarily OFF.") - tempOff = false; - mouseLookOff() - } - } - } - } + disableMouseLook(); } - MyAvatar.wentActive.connect(onWentActive); - function onWentActive() { - if (!hmd) { - if (mouseLookEnabled) { - away = false; - if (!keysOnOverlay) { - if (!tabletUp) { - Window.displayAnnouncement("Away state OFF – mouse look ON."); - mouseLookOn(); - } - } - } - } + enableMouseLook(); } - HMD.displayModeChanged.connect(onDisplayModeChanged); - function onDisplayModeChanged() { - if (mouseLookEnabled) { - if (HMD.active) { - hmd = true; - mouseLookOff(); - } else { - hmd = false; - if (!tempOff) { - if (!keysOnOverlay) { - if (!tabletUp) { - mouseLookOn(); - } - } - } - } + hmd_active = HMD.active; + if (hmd_active) disableMouseLook(); + else enableMouseLook(); + } + + function onUiFocusChanged(keyFocus) { + if (keyFocus) { + overlay_active = true; + disableMouseLook(); + } else { + overlay_active = false; + enableMouseLook(); } } - function mouseLookOn() { - if (mouseLookEnabled) - Camera.captureMouse = true; + function enableMouseLook() { + if (hmd_active) return; + if (tablet.tabletShown) return; + if (overlay_active) return; + if (!mouse_look_active) return; // Mouse look disabled via the hotkey + + Camera.captureMouse = true; } - function mouseLookOff() { + function disableMouseLook() { Camera.captureMouse = false; } - - Desktop.uiFocusChanged.connect(onUiFocusChanged); - - function onUiFocusChanged(keyFocus) { - if (!hmd) { - if (mouseLookEnabled) { - if (keyFocus) { - keysOnOverlay = true; - if (Camera.captureMouse) { - mouseLookOff(); - } - } else { - keysOnOverlay = false; - if (!tablet.tabletShown) { - if (!tempOff) { - if (!away) { - mouseLookOn(); - } - } - } - } - } - } - } - - Messages.messageReceived.connect(onMessageReceived); - function onMessageReceived(channel, message, sender, localOnly) { - if (channel === "Hifi-Away-Enable") - if (message === 'enable') mouseLookOn(); - } - - Script.scriptEnding.connect(onScriptEnding); function onScriptEnding() { Camera.captureMouse = false; @@ -211,5 +102,4 @@ by rampa3 (https://github.com/rampa3) and vegaslon (https://github.com/vegaslon) Desktop.uiFocusChanged.disconnect(onUiFocusChanged); Script.scriptEnding.disconnect(onScriptEnding); } - -}()); // END LOCAL_SCOPE +})(); From 8dce22792b4a26ba3cf1a95cfb30f41cb22edf87 Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Sat, 8 Jun 2024 07:50:08 -0500 Subject: [PATCH 2/3] Fixed variable names. Signed-off-by: Armored Dragon --- scripts/system/controllers/mouseLook.js | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/scripts/system/controllers/mouseLook.js b/scripts/system/controllers/mouseLook.js index bb777c8f58..e29a741865 100644 --- a/scripts/system/controllers/mouseLook.js +++ b/scripts/system/controllers/mouseLook.js @@ -11,10 +11,10 @@ (() => { // States ---- - let mouse_look_active = Settings.getValue("mouselook-active", false); - let mouse_look_enabled = Camera.getMouseLook(); - let hmd_active = HMD.active; - let overlay_active = Desktop.isOverlayWindowFocused(); + let mouseLookActive = Settings.getValue("mouselook-active", false); + let mouseLookEnabled = Camera.getMouseLook(); + let hmdActive = HMD.active; + let overlayActive = Desktop.isOverlayWindowFocused(); // Resources ---- let tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); @@ -31,18 +31,18 @@ // Program ---- function onMouseLookChanged(newMouseLook) { - mouse_look_enabled = newMouseLook; + mouseLookEnabled = newMouseLook; } function onKeyPressEvent(event) { // Toggle using the m key if (event.text.toLowerCase() === "m") { if (Camera.captureMouse) { - mouse_look_active = false; + mouseLookActive = false; Settings.setValue("mouselook-active", false); disableMouseLook(); } else { - mouse_look_active = true; + mouseLookActive = true; Settings.setValue("mouselook-active", true); enableMouseLook(); } @@ -63,26 +63,26 @@ } function onDisplayModeChanged() { - hmd_active = HMD.active; - if (hmd_active) disableMouseLook(); + hmdActive = HMD.active; + if (hmdActive) disableMouseLook(); else enableMouseLook(); } function onUiFocusChanged(keyFocus) { if (keyFocus) { - overlay_active = true; + overlayActive = true; disableMouseLook(); } else { - overlay_active = false; + overlayActive = false; enableMouseLook(); } } function enableMouseLook() { - if (hmd_active) return; + if (hmdActive) return; if (tablet.tabletShown) return; - if (overlay_active) return; - if (!mouse_look_active) return; // Mouse look disabled via the hotkey + if (overlayActive) return; + if (!mouseLookActive) return; // Mouse look disabled via the hotkey Camera.captureMouse = true; } From 6e73a0e4f6323598f7e2a42481fc7cfa36b0d4ce Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Sat, 8 Jun 2024 08:07:33 -0500 Subject: [PATCH 3/3] Don't run inspect.js when mouse look is enabled. Signed-off-by: Armored Dragon --- scripts/system/inspect.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/system/inspect.js b/scripts/system/inspect.js index 9aacfd14c2..b14107b3de 100644 --- a/scripts/system/inspect.js +++ b/scripts/system/inspect.js @@ -253,6 +253,9 @@ function keyPressEvent(event) { if (isEditUsingCamera) { return; } + if (Settings.getValue("mouselook-active", false)){ + return; + } alt = true; changed = true; Picks.enablePick(pick);