piskel/js/KeyManager.js

59 lines
1 KiB
JavaScript
Raw Normal View History

(function () {
var ns = $.namespace("pskl");
ns.KeyManager = function () {
2012-09-12 19:32:18 +00:00
$(document.body).keydown($.proxy(this.onKeyUp_, this));
};
/**
* @private
*/
ns.KeyManager.prototype.KeyboardActions_ = {
"ctrl" : {
"z" : Events.UNDO,
"y" : Events.REDO,
"x" : Events.CUT,
"c" : Events.COPY,
"v" : Events.PASTE
}
};
/**
* @private
*/
ns.KeyManager.prototype.CharCodeToKeyCodeMap_ = {
90 : "z",
89 : "y",
88 : "x",
67 : "c",
86 : "v"
};
/**
* @private
*/
ns.KeyManager.prototype.onKeyUp_ = function(evt) {
2012-09-12 19:32:18 +00:00
var isMac = false;
if (navigator.appVersion.indexOf("Mac")!=-1) {
// Welcome in mac world where vowels are consons and meta used instead of ctrl:
2012-09-12 19:32:18 +00:00
isMac = true;
}
if (isMac ? evt.metaKey : evt.ctrlKey) {
// Get key pressed:
var letter = this.CharCodeToKeyCodeMap_[evt.which];
if(letter) {
var eventToTrigger = this.KeyboardActions_.ctrl[letter];
if(eventToTrigger) {
$.publish(eventToTrigger);
2012-09-16 11:11:26 +00:00
evt.preventDefault();
return false;
}
2012-09-14 18:12:21 +00:00
}
}
};
2012-09-15 00:24:06 +00:00
})();