Browse Source

Input class basic mouse events functional. Wheel not handled.

dev-tmpl
Bryan Miller 6 years ago
parent
commit
7c3595bac9
2 changed files with 139 additions and 6 deletions
  1. +9
    -1
      app/js/main.js
  2. +130
    -5
      app/js/ui/Input.js

+ 9
- 1
app/js/main.js View File



function handle_keyevent(e){ function handle_keyevent(e){
console.log(e); console.log(e);
};
}

function handle_mouseevent(e){
console.log(e);
}


function TitlePainter(pal){ function TitlePainter(pal){
var elist = document.querySelectorAll(".color-NES-random"); var elist = document.querySelectorAll(".color-NES-random");
input.listen("keydown", handle_keyevent); input.listen("keydown", handle_keyevent);
input.listen("keyup", handle_keyevent); input.listen("keyup", handle_keyevent);
input.listen("keypress", handle_keyevent); input.listen("keypress", handle_keyevent);

input.listen("mousemove", handle_mouseevent);
input.listen("mousedown", handle_mouseevent);
input.listen("mouseup", handle_mouseevent);
} }





+ 130
- 5
app/js/ui/Input.js View File

import {EventCaller} from "/app/js/common/EventCaller.js"; import {EventCaller} from "/app/js/common/EventCaller.js";
import Utils from "/app/js/common/Utils.js";


// Keycode list based on... // Keycode list based on...
// https://keycode.info/ // https://keycode.info/


// TODO: Reeval this idea. // TODO: Reeval this idea.
const KEYPRESS_DELAY = 350; // Time in milliseconds. NOTE: May make this a variable in future. const KEYPRESS_DELAY = 350; // Time in milliseconds. NOTE: May make this a variable in future.
const MOUSECLICK_DELAY = 350; // Time in milliseconds.


function AssignCodeName(code, name){ function AssignCodeName(code, name){
name = name.toLowerCase(); name = name.toLowerCase();
constructor(){ constructor(){
this.__emitter = new EventCaller(); this.__emitter = new EventCaller();
this.__preventDefaults = false; this.__preventDefaults = false;
// Internet Explorer... that fudged up p.o.s. has to make mouse button detection difficult
// with different button values from ALL other browsers. So... if Input has this value set to
// true, then mouseup and mousedown events will base it's detection of IE button values, instead
// of the real values.
this.__ieMouseMode = false;
// If set, this is the element that the mouse will focus on and adjust it's position against.
this.__mouseTarget = null;
this.__mousePosition = null;
this.__mouseLastButton = -1;
this.__mouseLastButtonAction = "";
this.__mouseButtons = [];


this.enableKeyboardInput = (function(){ this.enableKeyboardInput = (function(){
var handle_keydown = (function(e){ var handle_keydown = (function(e){
}).apply(this); }).apply(this);


this.enableMouseInput = (function(){ this.enableMouseInput = (function(){
var mousePosition = (function(e){
var pos = {
lastX: (this.__mousePosition !== null) ? this.__mousePosition.x : null,
lastY: (this.__mousePosition !== null) ? this.__mousePosition.y : null,
x: e.clientX,
y: e.clientY,
inbounds: true
}
if (this.__mouseTarget !== null){
var rect = this.__mouseTarget.getBoundingClientRect();
pos.x -= rect.left;
pos.y -= rect.top;
pos.inbounds = (pos.x >= 0 && pos.x < rect.right && pos.y >= 0 && pos.y < rect.bottom);
}
return pos;
}).bind(this);

var buttonID = (function(e){
var btn = e.button;
if ((this.__ieMouseMode && btn === 1) || (!this.__ieMouseMode && btn === 0)){
btn = 0;
} else if ((this.__ieMouseMode && e.button === 4) || (!this.__ieMouseMode && e.button === 1)){
btn = 1;
}
return btn;
}).bind(this);

var addMouseButton = (function(btn){
if (this.__mouseButtons.findIndex(b=>b[0]===btn) < 0){
this.__mouseButtons.push([btn, Math.floor(Date.now())]);
return true;
}
return false;
}).bind(this);

var removeMouseButton = (function(btn){
var idx = this.__mouseButtons.findIndex(b=>b[0]===btn);
var diff = -1;
if (idx >= 0){
diff = Math.floor(Date.now()) - this.__mouseButtons[idx][1];
this.__mouseButtons.splice(idx, 1);
}
return diff;
}).bind(this);

var handle_mousemove = (function(e){ var handle_mousemove = (function(e){
// TODO: Finish me!
if (this.__preventDefaults)
e.preventDefault();
var pos = mousePosition(e);
if (pos.inbounds){
this.__mousePosition = pos;
this.__emitter.emit("mousemove", {
source: this,
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,
y: pos.y,
button: this.__mouseLastButton,
action: "mousemove"
});
}
}).bind(this); }).bind(this);


var handle_mousedown = (function(e){
// TODO: Finish me!
var handle_mousedown = (function(e){
var button = buttonID(e);
var pos = mousePosition(e);
if (pos.inbounds){
if (this.__preventDefaults)
e.preventDefault();
if (addMouseButton(button)){
this.__mousePosition = pos;
this.__mouseLastButton = button;
this.__mouseLastButtonAction = "mousedown";
this.__emitter.emit("mousedown", {
source: this,
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,
y: pos.y,
button: button,
action: "mousedown"
});
}
}
}).bind(this); }).bind(this);


var handle_mouseup = (function(e){ var handle_mouseup = (function(e){
// TODO: Finish me!
if (this.__preventDefaults)
e.preventDefault();
var button = buttonID(e);
var pos = mousePosition(e);
// NOTE: I still want to check for button removal, even before testing if an event should
// fire, so that I don't have any phantom buttons listed as "pressed" in the mouseButtons list.
var diff = removeMouseButton(button);
if (pos.inbounds && diff >= 0){
this.__mousePosition = pos;
this.__mouseLastButton = button;
this.__mouseLastButtonAction = "mouseup";
this.__emitter.emit("mouseup", {
source: this,
lastX: pos.lastX,
lastY: pos.lastY,
x: pos.x,
y: pos.y,
button: button,
action: "mouseup"
});
}
}).bind(this); }).bind(this);


var handle_mousewheel = (function(e){ var handle_mousewheel = (function(e){
if (this.__preventDefaults)
e.preventDefault();
// TODO: Finish me! // TODO: Finish me!
}).bind(this); }).bind(this);


}).apply(this); }).apply(this);


this.enableKeyboardInput(); this.enableKeyboardInput();
this.enableMouseInput();
} }


get lastkey(){ get lastkey(){
this.__preventDefaults = (p === true); this.__preventDefaults = (p === true);
} }


get ieMouseMode(){return this.__ieMouseMode;}
set ieMouseMode(m){this.__ieMouseMode = (m === true);}

get mouseTargetElement(){return this.__mouseTarget;}
set mouseTargetElement(el){
if (el === null || Utils.isElement(el)){
this.__mouseTarget = el;
} else {
throw new TypeError("Expected Mouse Target Element to be null or an HTMLElement object.");
}
}

isKeyDown(key){ isKeyDown(key){
if (typeof(key) === 'string'){ if (typeof(key) === 'string'){
key = KeyNameToCode(key); key = KeyNameToCode(key);

Loading…
Cancel
Save