OpenBuilds-CONTROL/app/js/keyboard.js

592 wiersze
24 KiB
JavaScript
Czysty Zwykły widok Historia

2019-04-18 14:23:51 +00:00
var keyboardShortcuts = false;
2019-05-07 17:26:26 +00:00
2019-04-16 18:17:42 +00:00
$(document).ready(function() {
2019-05-01 18:44:44 +00:00
2019-04-16 18:17:42 +00:00
if (localStorage.getItem('keyboardShortcuts')) {
keyboardShortcuts = JSON.parse(localStorage.getItem('keyboardShortcuts'));
2020-04-14 14:18:25 +00:00
// fix incorrect key naming bug from an old version
2019-12-30 19:56:20 +00:00
if (keyboardShortcuts.xP == "arrowright") {
keyboardShortcuts.xP == "right"
}
2020-04-14 14:18:25 +00:00
// add new key defaults to existing allocations
if (!keyboardShortcuts.incJogMode) {
keyboardShortcuts.incJogMode = "/"
}
if (!keyboardShortcuts.conJogMode) {
keyboardShortcuts.conJogMode = "*"
}
if (!keyboardShortcuts.gotozeroxyz) {
keyboardShortcuts.gotozeroxyz = "del"
}
2019-04-16 18:17:42 +00:00
} else {
keyboardShortcuts = {
2019-05-24 12:11:46 +00:00
xP: "right", //X+
2019-04-16 18:17:42 +00:00
xM: "left", //X-
yP: "up", //Y+
yM: "down", //Y-
zP: "pageup", //Z+
zM: "pagedown", //Z-
2019-04-17 18:56:22 +00:00
stepP: "+", // Increase Step Size
stepM: "-", // Decrease Step Size
estop: "esc", // Abort / Emergency
playpause: "space", // Start, Pause, Resume
unlockAlarm: "end", // Clear Alarm
home: "home", // Home All
2020-04-14 14:18:25 +00:00
setzeroxyz: "insert", // Set ZERO XYZ
gotozeroxyz: "del", // go to zero xyz
incJogMode: "/", // Incremental Jog Mode
conJogMode: "*" // Continuous Jog Mode
2019-04-16 18:17:42 +00:00
}
}
bindKeys()
2019-04-18 14:23:51 +00:00
2019-04-16 18:17:42 +00:00
});
2019-04-18 14:23:51 +00:00
2019-04-16 18:17:42 +00:00
function bindKeys() {
// Clear all current binds
$(document).unbind('keydown');
2019-04-18 17:25:23 +00:00
// console.log("Refreshing Keybindings")
2019-04-16 18:17:42 +00:00
// Bind for Electron Devtools
document.addEventListener('keydown', function(evt) {
2020-03-30 15:26:11 +00:00
if (evt.which === 116) {
// F5 - reload interface
2020-04-17 21:07:39 +00:00
evt.preventDefault();
2019-04-16 18:17:42 +00:00
location.reload();
2020-03-30 15:26:11 +00:00
} else if (evt.which === 117) {
// F6 - switch to serial console and focus on Console Input
2020-04-17 21:07:39 +00:00
evt.preventDefault();
2020-03-30 15:26:11 +00:00
$("#controlTab").click();
$("#consoletab").click();
$("#command").focus();
} else if (evt.which === 112) {
// F1 - troubleshooting
2020-04-17 21:07:39 +00:00
evt.preventDefault();
2020-03-30 15:26:11 +00:00
$("#troubleshootingTab").click();
2019-04-16 18:17:42 +00:00
}
});
2020-04-14 17:57:56 +00:00
// Bind for Macro keys
2020-04-15 07:02:35 +00:00
if (buttonsarray && buttonsarray.length > 0) {
2020-04-14 17:57:56 +00:00
for (i = 0; i < buttonsarray.length; i++) {
2020-04-15 07:02:35 +00:00
if (buttonsarray[i].macrokeyboardshortcut && buttonsarray[i].macrokeyboardshortcut.length) {
2020-04-14 17:57:56 +00:00
$(document).bind('keydown', buttonsarray[i].macrokeyboardshortcut, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-14 17:57:56 +00:00
console.log(e)
var newVal = "";
if (e.altKey) {
newVal += 'alt+'
}
if (e.ctrlKey) {
newVal += 'ctrl+'
}
if (e.shiftKey) {
newVal += 'shift+'
}
newVal += e.key
var macro = searchMacro("macrokeyboardshortcut", newVal, buttonsarray)
console.log(macro)
2020-04-17 21:07:39 +00:00
if (macro.codetype == "gcode") {
sendGcode(macro.gcode); // TODO change to runMacro with JS
} else if (macro.codetype == "javascript") {
executeJS(macro.javascript)
}
2020-04-14 17:57:56 +00:00
});
}
}
}
2019-04-16 18:17:42 +00:00
// Bind for Jog and Control Buttons
2020-04-15 07:02:35 +00:00
if (keyboardShortcuts) {
if (keyboardShortcuts.xM.length) {
$(document).bind('keydown', keyboardShortcuts.xM, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
if (!event.originalEvent.repeat) {
var direction = "X-";
var distance = 1000;
2020-01-14 13:41:35 +00:00
2020-04-15 07:02:35 +00:00
if (Object.keys(grblParams).length > 0) {
if (parseInt(grblParams.$20) == 1) {
// Soft Limits is enabled so lets calculate maximum move distance
var mindistance = parseInt(grblParams.$130)
var maxdistance = 0; // Grbl all negative coordinates
// Negative move:
distance = (mindistance + (parseInt(laststatus.machine.position.offset.x) + parseInt(laststatus.machine.position.work.x))) - 1
}
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
var feed = $('#jograte').val();
socket.emit('runCommand', "$J=G91 G21 " + direction + distance + " F" + feed + "\n");
continuousJogRunning = true;
$('#xM').click();
rippleEffect($('#xMprobe'), "#e21b1b")
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
} else {
2019-04-18 14:23:51 +00:00
$('#xM').click();
}
2020-04-15 07:02:35 +00:00
});
$(document).bind('keyup', keyboardShortcuts.xM, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
cancelJog()
}
});
}
if (keyboardShortcuts.xP.length) {
$(document).bind('keydown', keyboardShortcuts.xP, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
if (!event.originalEvent.repeat) {
var direction = "X";
var distance = 1000;
if (Object.keys(grblParams).length > 0) {
if (parseInt(grblParams.$20) == 1) {
// Soft Limits is enabled so lets calculate maximum move distance
var mindistance = parseInt(grblParams.$130)
var maxdistance = 0; // Grbl all negative coordinates
// Positive move:
distance = (maxdistance - (parseInt(laststatus.machine.position.offset.x) + parseInt(laststatus.machine.position.work.x))) - 1
}
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
var feed = $('#jograte').val();
socket.emit('runCommand', "$J=G91 G21 " + direction + distance + " F" + feed + "\n");
continuousJogRunning = true;
$('#xP').click();
rippleEffect($('#xPprobe'), "#e21b1b")
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
} else {
2019-04-18 14:23:51 +00:00
$('#xP').click();
}
2020-04-15 07:02:35 +00:00
});
$(document).bind('keyup', keyboardShortcuts.xP, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
cancelJog()
}
});
}
if (keyboardShortcuts.yM.length) {
$(document).bind('keydown', keyboardShortcuts.yM, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
if (!event.originalEvent.repeat) {
var direction = "Y-";
var distance = 1000;
2020-01-14 13:41:35 +00:00
2020-04-15 07:02:35 +00:00
if (Object.keys(grblParams).length > 0) {
if (parseInt(grblParams.$20) == 1) {
// Soft Limits is enabled so lets calculate maximum move distance
var mindistance = parseInt(grblParams.$131)
var maxdistance = 0; // Grbl all negative coordinates
// Negative move:
distance = (mindistance + (parseInt(laststatus.machine.position.offset.y) + parseInt(laststatus.machine.position.work.y))) - 1
}
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
var feed = $('#jograte').val();
socket.emit('runCommand', "$J=G91 G21 " + direction + distance + " F" + feed + "\n");
continuousJogRunning = true;
$('#yM').click();
rippleEffect($('#yMprobe'), "#5de21b")
}
} else {
2019-04-18 14:23:51 +00:00
$('#yM').click();
}
2020-04-15 07:02:35 +00:00
});
$(document).bind('keyup', keyboardShortcuts.yM, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
cancelJog()
}
});
}
if (keyboardShortcuts.yP.length) {
$(document).bind('keydown', keyboardShortcuts.yP, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
if (!event.originalEvent.repeat) {
var direction = "Y";
var distance = 1000;
2020-01-14 13:41:35 +00:00
2020-04-15 07:02:35 +00:00
if (Object.keys(grblParams).length > 0) {
if (parseInt(grblParams.$20) == 1) {
// Soft Limits is enabled so lets calculate maximum move distance
var mindistance = parseInt(grblParams.$131)
var maxdistance = 0; // Grbl all negative coordinates
// Positive move:
distance = (maxdistance - (parseInt(laststatus.machine.position.offset.y) + parseInt(laststatus.machine.position.work.y))) - 1
}
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
var feed = $('#jograte').val();
socket.emit('runCommand', "$J=G91 G21 " + direction + distance + " F" + feed + "\n");
continuousJogRunning = true;
$('#yP').click();
rippleEffect($('#yPprobe'), "#5de21b")
}
} else {
2019-04-18 14:23:51 +00:00
$('#yP').click();
}
2020-04-15 07:02:35 +00:00
});
$(document).bind('keyup', keyboardShortcuts.yP, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
cancelJog()
}
});
}
if (keyboardShortcuts.zM.length) {
$(document).bind('keydown', keyboardShortcuts.zM, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
if (!event.originalEvent.repeat) {
var direction = "Z-";
var distance = 1000;
2020-01-14 13:41:35 +00:00
2020-04-15 07:02:35 +00:00
if (Object.keys(grblParams).length > 0) {
if (parseInt(grblParams.$20) == 1) {
// Soft Limits is enabled so lets calculate maximum move distance
var mindistance = parseInt(grblParams.$132)
var maxdistance = 0; // Grbl all negative coordinates
// Negative move:
distance = (mindistance + (parseInt(laststatus.machine.position.offset.z) + parseInt(laststatus.machine.position.work.z))) - 1
}
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
var feed = $('#jograte').val();
socket.emit('runCommand', "$J=G91 G21 " + direction + distance + " F" + feed + "\n");
continuousJogRunning = true;
$('#zM').click();
rippleEffect($('#zMprobe'), "#1ba1e2")
}
} else {
2019-04-18 14:23:51 +00:00
$('#zM').click();
}
2020-04-15 07:02:35 +00:00
});
$(document).bind('keyup', keyboardShortcuts.zM, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
cancelJog()
}
});
}
if (keyboardShortcuts.zP.length) {
$(document).bind('keydown', keyboardShortcuts.zP, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
if (!event.originalEvent.repeat) {
var direction = "Z";
var distance = 1000;
2020-01-14 13:41:35 +00:00
2020-04-15 07:02:35 +00:00
if (Object.keys(grblParams).length > 0) {
if (parseInt(grblParams.$20) == 1) {
// Soft Limits is enabled so lets calculate maximum move distance
var mindistance = parseInt(grblParams.$132)
var maxdistance = 0; // Grbl all negative coordinates
// Positive move:
distance = (maxdistance - (parseInt(laststatus.machine.position.offset.z) + parseInt(laststatus.machine.position.work.z))) - 1
}
2020-01-14 13:41:35 +00:00
}
2020-04-15 07:02:35 +00:00
var feed = $('#jograte').val();
socket.emit('runCommand', "$J=G91 G21 " + direction + distance + " F" + feed + "\n");
continuousJogRunning = true;
$('#zP').click();
rippleEffect($('#zPprobe'), "#1ba1e2")
}
} else {
2019-04-18 14:23:51 +00:00
$('#zP').click();
}
2020-04-15 07:02:35 +00:00
});
$(document).bind('keyup', keyboardShortcuts.zP, function(event) {
2020-04-17 21:07:39 +00:00
event.preventDefault();
2020-04-15 07:02:35 +00:00
if (allowContinuousJog) {
cancelJog()
}
});
}
if (keyboardShortcuts.stepM.length) {
$(document).bind('keydown', keyboardShortcuts.stepM, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
$('#jogTypeContinuous').prop('checked', false)
allowContinuousJog = false;
$('.distbtn').show();
changeStepSize(-1)
});
}
if (keyboardShortcuts.stepP.length) {
$(document).bind('keydown', keyboardShortcuts.stepP, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
$('#jogTypeContinuous').prop('checked', false)
allowContinuousJog = false;
$('.distbtn').show();
changeStepSize(1)
});
}
if (keyboardShortcuts.estop.length) {
$(document).bind('keydown', keyboardShortcuts.estop, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
socket.emit('stop', false)
});
}
if (keyboardShortcuts.playpause.length) {
$(document).bind('keydown', keyboardShortcuts.playpause, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
if (laststatus.comms.connectionStatus == 1 || laststatus.comms.connectionStatus == 2) {
socket.emit('runJob', {
data: editor.getValue(),
isJob: true,
fileName: ""
});
} else if (laststatus.comms.connectionStatus == 3) {
socket.emit('pause', true);
} else if (laststatus.comms.connectionStatus == 4) {
socket.emit('resume', true);
}
});
}
if (keyboardShortcuts.unlockAlarm.length) {
$(document).bind('keydown', keyboardShortcuts.unlockAlarm, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
Metro.dialog.close($('.closeAlarmBtn').parent().parent());
socket.emit('clearAlarm', 2);
});
}
if (keyboardShortcuts.home.length) {
$(document).bind('keydown', keyboardShortcuts.home, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
home();
});
}
if (keyboardShortcuts.setzeroxyz.length) {
$(document).bind('keydown', keyboardShortcuts.setzeroxyz, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
sendGcode('G10 P1 L20 X0 Y0 Z0')
});
}
2019-05-06 14:31:13 +00:00
2020-04-15 07:02:35 +00:00
if (keyboardShortcuts.gotozeroxyz.length) {
$(document).bind('keydown', keyboardShortcuts.gotozeroxyz, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
sendGcode('G21 G90');
sendGcode('G0 Z5');
sendGcode('G0 X0 Y0');
sendGcode('G0 Z0');
});
}
2020-04-14 14:18:25 +00:00
2020-04-15 07:02:35 +00:00
if (keyboardShortcuts.incJogMode.length) {
$(document).bind('keydown', keyboardShortcuts.incJogMode, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
$('#jogTypeContinuous').prop('checked', false)
allowContinuousJog = false;
$('.distbtn').show();
});
}
2020-04-14 14:18:25 +00:00
2020-04-15 07:02:35 +00:00
if (keyboardShortcuts.conJogMode.length) {
$(document).bind('keydown', keyboardShortcuts.conJogMode, function(e) {
2020-04-17 21:07:39 +00:00
e.preventDefault();
2020-04-15 07:02:35 +00:00
$('#jogTypeContinuous').prop('checked', true)
allowContinuousJog = true;
$('.distbtn').hide()
});
}
localStorage.setItem('keyboardShortcuts', JSON.stringify(keyboardShortcuts));
2020-04-14 14:18:25 +00:00
}
2019-04-16 18:17:42 +00:00
}
function keyboardShortcutsEditor() {
var template = `
2019-04-17 18:56:22 +00:00
<div class="p-0 m-0" style="overflow-y: auto; height: calc(100vh - 430px);">
<form id="keyboardAssignmentForm">
<div class="row mb-1 ml-1 mr-1">
<div class="cell-sm-12">
<span class="text-small">Click below to assign a new Keyboard Shortcut / combination to a function. Ctrl, Alt and Shift can be added to create combinations.</span>
</div>
</div>
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-stop fg-openbuilds fa-fw"></i> Stop / Abort</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="stopnewKey" value="` + keyboardShortcuts.estop + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#stopnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
</div>
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-play fg-openbuilds fa-fw"></i> Run / <i class="fas fa-pause fg-openbuilds fa-fw"></i> Pause</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="playPausenewKey" value="` + keyboardShortcuts.playpause + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#playPausenewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
</div>
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-crosshairs fg-openbuilds fa-fw"></i> Setzero XYZ</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="setzeroxyznewKey" value="` + keyboardShortcuts.setzeroxyz + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#setzeroxyznewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
</div>
2020-04-14 14:18:25 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-chart-line fg-openbuilds fa-fw"></i> Goto XYZ Zero</label>
<div class="cell-sm-6">
2020-04-18 20:12:11 +00:00
<input type="text" class="keyboardshortcutinput" readonly id="gotozeroxyznewKey" value="` + keyboardShortcuts.gotozeroxyz + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#gotozeroxyznewKey').addClass('alert').addClass('newKeyAssignment')">
2020-04-14 14:18:25 +00:00
</div>
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-bell fg-openbuilds fa-fw"></i> Unlock Alarm</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="unlocknewKey" value="` + keyboardShortcuts.unlockAlarm + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#unlocknewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-home fg-openbuilds fa-fw"></i> Home</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="homenewKey" value="` + keyboardShortcuts.home + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#homenewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-arrow-left fg-red fa-fw"></i> Jog X-</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="xMnewKey" value="` + keyboardShortcuts.xM + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#xMnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-arrow-right fg-red fa-fw"></i> Jog X+</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="xPnewKey" value="` + keyboardShortcuts.xP + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#xPnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-arrow-down fg-green fa-fw"></i> Jog Y-</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="yMnewKey" value="` + keyboardShortcuts.yM + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#yMnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-arrow-up fg-green fa-fw"></i> Jog Y+</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="yPnewKey" value="` + keyboardShortcuts.yP + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#yPnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-arrow-down fg-blue fa-fw"></i>Jog Z-</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="zMnewKey" value="` + keyboardShortcuts.zM + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#zMnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-arrow-up fg-blue fa-fw"></i> Jog Z+</label>
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="zPnewKey" value="` + keyboardShortcuts.zP + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#zPnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
2019-05-01 18:44:44 +00:00
<label class="cell-sm-6"><i class="fas fa-minus fg-openbuilds fa-fw"></i> Decrease Step Size<br><span class="text-small">For Incremental Jogging</span></label>
2019-04-17 18:56:22 +00:00
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="stepMnewKey" value="` + keyboardShortcuts.stepM + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#stepMnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2019-04-17 18:56:22 +00:00
<div class="row mb-1 ml-1 mr-1">
2019-05-01 18:44:44 +00:00
<label class="cell-sm-6"><i class="fas fa-plus fg-openbuilds fa-fw"></i> Increase Step Size<br><span class="text-small">For Incremental Jogging</span></label>
2019-04-17 18:56:22 +00:00
<div class="cell-sm-6">
<input type="text" class="keyboardshortcutinput" readonly id="stepPnewKey" value="` + keyboardShortcuts.stepP + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#stepPnewKey').addClass('alert').addClass('newKeyAssignment')">
</div>
2019-04-16 18:17:42 +00:00
</div>
2020-03-30 15:26:11 +00:00
2020-04-14 14:18:25 +00:00
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-step-forward fg-openbuilds fa-fw"></i> Incremental Jog Mode<br></label>
<div class="cell-sm-6">
2020-04-18 20:12:11 +00:00
<input type="text" class="keyboardshortcutinput" readonly id="incJogModeKey" value="` + keyboardShortcuts.incJogMode + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#incJogModeKey').addClass('alert').addClass('newKeyAssignment')">
2020-04-14 14:18:25 +00:00
</div>
</div>
<div class="row mb-1 ml-1 mr-1">
<label class="cell-sm-6"><i class="fas fa-running fg-openbuilds fa-fw"></i> Continuous Jog Mode<br></label>
<div class="cell-sm-6">
2020-04-18 20:12:11 +00:00
<input type="text" class="keyboardshortcutinput" readonly id="conJogModeKey" value="` + keyboardShortcuts.conJogMode + `" onclick="$('.keyboardshortcutinput').removeClass('alert').removeClass('newKeyAssignment'); $('#conJogModeKey').addClass('alert').addClass('newKeyAssignment')">
2020-04-14 14:18:25 +00:00
</div>
</div>
2019-04-17 18:56:22 +00:00
</form>
2020-03-30 15:26:11 +00:00
2019-04-17 18:56:22 +00:00
</div>`
2019-04-16 18:17:42 +00:00
Metro.dialog.create({
2019-05-24 12:25:23 +00:00
title: "<i class='far fa-keyboard fa-fw'></i> Customize Keyboard Shortcuts",
2019-04-16 18:17:42 +00:00
content: template,
width: 600,
2019-05-08 19:06:34 +00:00
clsDialog: 'dark',
2019-04-16 18:17:42 +00:00
actions: [{
caption: "Save and apply",
cls: "js-dialog-close success",
onclick: function() {
// do something
keyboardShortcuts.xP = $('#xPnewKey').val()
keyboardShortcuts.xM = $('#xMnewKey').val()
keyboardShortcuts.yP = $('#yPnewKey').val()
keyboardShortcuts.yM = $('#yMnewKey').val()
keyboardShortcuts.zP = $('#zPnewKey').val()
keyboardShortcuts.zM = $('#zMnewKey').val()
keyboardShortcuts.stepP = $('#stepPnewKey').val()
keyboardShortcuts.stepM = $('#stepMnewKey').val()
keyboardShortcuts.estop = $('#stopnewKey').val()
2019-04-17 18:56:22 +00:00
keyboardShortcuts.playpause = $('#playPausenewKey').val()
keyboardShortcuts.unlockAlarm = $('#unlocknewKey').val()
keyboardShortcuts.home = $('#homenewKey').val()
keyboardShortcuts.setzeroxyz = $('#setzeroxyznewKey').val()
2020-04-14 14:18:25 +00:00
keyboardShortcuts.incJogMode = $("#incJogModeKey").val()
keyboardShortcuts.conJogMode = $("#conJogModeKey").val()
keyboardShortcuts.gotozeroxyz = $("#gotozeroxyznewKey").val()
2019-04-16 18:17:42 +00:00
bindKeys()
}
},
{
caption: "Cancel",
cls: "js-dialog-close",
onclick: function() {
// do nothing
}
}
]
});
$('#keyboardAssignmentForm').bind('keydown', null, function(e) {
2019-04-17 18:56:22 +00:00
e.preventDefault();
2019-04-16 18:17:42 +00:00
console.log(e)
var newVal = "";
if (e.altKey) {
newVal += 'alt+'
}
if (e.ctrlKey) {
newVal += 'ctrl+'
}
if (e.shiftKey) {
newVal += 'shift+'
}
if (e.key.toLowerCase() != 'alt' && e.key.toLowerCase() != 'control' && e.key.toLowerCase() != 'shift') {
// Handle MetroUI naming non-standards of some keys
if (e.keyCode == 32) {
newVal += 'space';
} else if (e.key.toLowerCase() == 'escape') {
newVal += 'esc';
} else if (e.key.toLowerCase() == 'arrowleft') {
newVal += 'left';
} else if (e.key.toLowerCase() == 'arrowright') {
newVal += 'right';
} else if (e.key.toLowerCase() == 'arrowup') {
newVal += 'up';
} else if (e.key.toLowerCase() == 'arrowdown') {
newVal += 'down';
} else {
newVal += e.key.toLowerCase();
}
$('.newKeyAssignment').val(newVal)
}
});
2019-12-30 19:56:20 +00:00
}