mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-22 09:17:56 +01:00
Merge branch 'feature/printerdriver' of https://github.com/Doodle3D/doodle3d-client into feature/printerdriver
# By peteruithoven # Via peteruithoven * 'feature/printerdriver' of https://github.com/Doodle3D/doodle3d-client: Readded print and stop button disabled css hasControl feedback
This commit is contained in:
commit
53e9a7e4a4
@ -422,13 +422,20 @@ top: 0px;
|
||||
height: auto;
|
||||
float: right;
|
||||
}
|
||||
.btnPrint.disabled {
|
||||
opacity: 0.3;
|
||||
|
||||
}
|
||||
.btnStop {
|
||||
margin: 5% 10% 1% 5%;
|
||||
float: right;
|
||||
width: 90%;
|
||||
max-width: 98px;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
.btnStop.disabled {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.btnsSettingsInfo {
|
||||
|
@ -16,6 +16,7 @@ var displayTemp, displayProgress;
|
||||
|
||||
var state;
|
||||
var prevState;
|
||||
var hasControl;
|
||||
|
||||
function initButtonBehavior() {
|
||||
console.log("f:initButtonBehavior");
|
||||
@ -189,7 +190,7 @@ function initButtonBehavior() {
|
||||
function stopPrint() {
|
||||
console.log("f:stopPrint() >> sendPrintCommands = " + sendPrintCommands);
|
||||
if (sendPrintCommands) printer.stop();
|
||||
setState(Printer.STOPPING_STATE);
|
||||
setState(Printer.STOPPING_STATE,printer.hasControl);
|
||||
}
|
||||
|
||||
|
||||
@ -207,7 +208,7 @@ function print(e) {
|
||||
$("#textdump").text("");
|
||||
if (_points.length > 2) {
|
||||
|
||||
setState(Printer.BUFFERING_STATE);
|
||||
setState(Printer.BUFFERING_STATE,printer.hasControl);
|
||||
var gcode = generate_gcode();
|
||||
//startPrint(gencode);
|
||||
|
||||
@ -293,40 +294,35 @@ function previewTwistRight(redrawLess) {
|
||||
|
||||
|
||||
function update() {
|
||||
setState(printer.state);
|
||||
setState(printer.state,printer.hasControl);
|
||||
|
||||
thermometer.update(printer.temperature, printer.targetTemperature);
|
||||
//TODO: update progress
|
||||
}
|
||||
|
||||
function setState(newState) { //TODO add hasControl
|
||||
if(newState == state) return;
|
||||
function setState(newState,newHasControl) { //TODO add hasControl
|
||||
if(newState == state && newHasControl == hasControl) return;
|
||||
|
||||
console.log("setState: ",state," > ",newState);
|
||||
console.log("setState: ",state," > ",newState," ( ",newHasControl,")");
|
||||
setDebugText("State: "+newState);
|
||||
|
||||
// print button
|
||||
switch(newState) {
|
||||
case Printer.IDLE_STATE:
|
||||
var printEnabled = (newState == Printer.IDLE_STATE && newHasControl);
|
||||
if(printEnabled) {
|
||||
btnPrint.removeClass("disabled"); // enable print button
|
||||
btnPrint.unbind('touchstart mousedown');
|
||||
btnPrint.bind('touchstart mousedown',print);
|
||||
break;
|
||||
default:
|
||||
} else {
|
||||
btnPrint.addClass("disabled"); // disable print button
|
||||
btnPrint.unbind('touchstart mousedown');
|
||||
break;
|
||||
}
|
||||
|
||||
// stop button
|
||||
switch(newState) {
|
||||
case Printer.PRINTING_STATE:
|
||||
case Printer.BUFFERING_STATE:
|
||||
var stopEnabled = ((newState == Printer.PRINTING_STATE || newState == Printer.BUFFERING_STATE) && newHasControl);
|
||||
if(stopEnabled) {
|
||||
btnStop.removeClass("disabled");
|
||||
break;
|
||||
default:
|
||||
} else {
|
||||
btnStop.addClass("disabled");
|
||||
break;
|
||||
}
|
||||
|
||||
// thermometer
|
||||
@ -339,6 +335,7 @@ function setState(newState) { //TODO add hasControl
|
||||
thermometer.show();
|
||||
break;
|
||||
}
|
||||
|
||||
// progress indicator
|
||||
switch(newState) {
|
||||
case Printer.PRINTING_STATE:
|
||||
@ -351,4 +348,5 @@ function setState(newState) { //TODO add hasControl
|
||||
|
||||
prevState = state;
|
||||
state = newState;
|
||||
hasControl = newHasControl;
|
||||
}
|
Loading…
Reference in New Issue
Block a user