/* * This file is part of BlueMap, licensed under the MIT License (MIT). * * Copyright (c) Blue (Lukas Rieger) * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ import {MathUtils} from "three"; import {KeyCombination} from "../../KeyCombination"; export class KeyZoomControls { static KEYS = { IN: [ new KeyCombination("NumpadAdd"), new KeyCombination("Insert"), ], OUT: [ new KeyCombination("NumpadSubtract"), new KeyCombination("Home"), ], } /** * @param target {EventTarget} * @param speed {number} * @param stiffness {number} */ constructor(target, speed, stiffness) { this.target = target; this.manager = null; this.deltaZoom = 0; this.in = false; this.out = false; this.speed = speed; this.stiffness = stiffness; } /** * @param manager {ControlsManager} */ start(manager) { this.manager = manager; window.addEventListener("keydown", this.onKeyDown); window.addEventListener("keyup", this.onKeyUp); window.addEventListener("blur", this.onStop) } stop() { window.removeEventListener("keydown", this.onKeyDown); window.removeEventListener("keyup", this.onKeyUp); window.removeEventListener("blur", this.onStop) } /** * @param delta {number} * @param map {Map} */ update(delta, map) { if (this.in) this.deltaZoom -= 1; if (this.out) this.deltaZoom += 1; if (this.deltaZoom === 0) return; let smoothing = this.stiffness / (16.666 / delta); smoothing = MathUtils.clamp(smoothing, 0, 1); this.manager.distance *= Math.pow(1.5, this.deltaZoom * smoothing * this.speed * delta * 0.06); this.deltaZoom *= 1 - smoothing; if (Math.abs(this.deltaZoom) < 0.0001) { this.deltaZoom = 0; } } /** * @param evt {KeyboardEvent} */ onKeyDown = evt => { if (KeyCombination.oneDown(evt, ...KeyZoomControls.KEYS.IN)){ this.in = true; evt.preventDefault(); } if (KeyCombination.oneDown(evt, ...KeyZoomControls.KEYS.OUT)){ this.out = true; evt.preventDefault(); } } /** * @param evt {KeyboardEvent} */ onKeyUp = evt => { if (KeyCombination.oneUp(evt, ...KeyZoomControls.KEYS.IN)){ this.in = false; } if (KeyCombination.oneUp(evt, ...KeyZoomControls.KEYS.OUT)){ this.out = false; } } onStop = evt => { this.in = false; this.out = false; } }