BlueMapWeb/src/controls/map/keyboard/KeyMoveControls.js

155 lines
4.9 KiB
JavaScript

/*
* This file is part of BlueMap, licensed under the MIT License (MIT).
*
* Copyright (c) Blue (Lukas Rieger) <https://bluecolored.de>
* 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, Vector2} from "three";
import {VEC2_ZERO} from "../../../util/Utils";
import {KeyCombination} from "../../KeyCombination";
export class KeyMoveControls {
static KEYS = {
LEFT: [
new KeyCombination("ArrowLeft"),
new KeyCombination("KeyA")
],
UP: [
new KeyCombination("ArrowUp"),
new KeyCombination("KeyW")
],
RIGHT: [
new KeyCombination("ArrowRight"),
new KeyCombination("KeyD")
],
DOWN: [
new KeyCombination("ArrowDown"),
new KeyCombination("KeyS")
],
}
static temp_v2 = new Vector2();
/**
* @param target {EventTarget}
* @param speed {number}
* @param stiffness {number}
*/
constructor(target, speed, stiffness) {
this.target = target;
this.manager = null;
this.deltaPosition = new Vector2();
this.up = false;
this.down = false;
this.left = false;
this.right = 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);
}
stop() {
window.removeEventListener("keydown", this.onKeyDown);
window.removeEventListener("keyup", this.onKeyUp);
}
/**
* @param delta {number}
* @param map {Map}
*/
update(delta, map) {
if (this.up) this.deltaPosition.y -= 1;
if (this.down) this.deltaPosition.y += 1;
if (this.left) this.deltaPosition.x -= 1;
if (this.right) this.deltaPosition.x += 1;
if (this.deltaPosition.x === 0 && this.deltaPosition.y === 0) return;
let smoothing = this.stiffness / (16.666 / delta);
smoothing = MathUtils.clamp(smoothing, 0, 1);
let rotatedDelta = KeyMoveControls.temp_v2.copy(this.deltaPosition);
rotatedDelta.rotateAround(VEC2_ZERO, this.manager.rotation);
this.manager.position.x += rotatedDelta.x * smoothing * this.manager.distance * this.speed * delta * 0.06;
this.manager.position.z += rotatedDelta.y * smoothing * this.manager.distance * this.speed * delta * 0.06;
this.deltaPosition.multiplyScalar(1 - smoothing);
if (this.deltaPosition.lengthSq() < 0.0001) {
this.deltaPosition.set(0, 0);
}
}
/**
* @param evt {KeyboardEvent}
*/
onKeyDown = evt => {
if (KeyCombination.oneDown(evt, ...KeyMoveControls.KEYS.UP)){
this.up = true;
evt.preventDefault();
}
if (KeyCombination.oneDown(evt, ...KeyMoveControls.KEYS.DOWN)){
this.down = true;
evt.preventDefault();
}
if (KeyCombination.oneDown(evt, ...KeyMoveControls.KEYS.LEFT)){
this.left = true;
evt.preventDefault();
}
if (KeyCombination.oneDown(evt, ...KeyMoveControls.KEYS.RIGHT)){
this.right = true;
evt.preventDefault();
}
}
/**
* @param evt {KeyboardEvent}
*/
onKeyUp = evt => {
if (KeyCombination.oneUp(evt, ...KeyMoveControls.KEYS.UP)){
this.up = false;
}
if (KeyCombination.oneUp(evt, ...KeyMoveControls.KEYS.DOWN)){
this.down = false;
}
if (KeyCombination.oneUp(evt, ...KeyMoveControls.KEYS.LEFT)){
this.left = false;
}
if (KeyCombination.oneUp(evt, ...KeyMoveControls.KEYS.RIGHT)){
this.right = false;
}
}
}