diff --git a/sd-card/html/edit_alignment.html b/sd-card/html/edit_alignment.html
index fe89abc4..5a2356eb 100644
--- a/sd-card/html/edit_alignment.html
+++ b/sd-card/html/edit_alignment.html
@@ -55,6 +55,29 @@
width: 660px;
padding: 5px;
}
+
+ #overlay {
+ position: fixed;
+ display: none;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background-color: rgba(0,0,0,0.8);
+ z-index: 2;
+ }
+
+ #overlaytext{
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ font-size: 150%;
+ color: white;
+ transform: translate(-50%,-50%);
+ -ms-transform: translate(-50%,-50%);
+ }
@@ -62,6 +85,9 @@
+
+
Device is busy with digitalization round. Waiting until it completes...
+
Alignment Marker
@@ -183,10 +209,42 @@ function EnhanceContrast(){
refInfo[aktindex]["dy"] = document.getElementById("refdy").value;
enhanceCon = true;
- if (MakeContrastImageZW(refInfo[aktindex], enhanceCon, domainname)) {
- UpdateReference();
- document.getElementById("enhancecontrast").disabled = true;
+
+ document.getElementById("overlay").style.display = "block";
+ document.getElementById("overlaytext").innerHTML = "Enhancing Image Contrast...";
+
+ function sleep(ms) {
+ return new Promise(resolve => setTimeout(resolve, ms));
}
+
+ async function task() {
+ while (true) {
+ var ret = MakeContrastImageZW(refInfo[aktindex], enhanceCon, domainname);
+ if (ret) {
+ UpdateReference();
+ //document.getElementById("enhancecontrast").disabled = true;
+ document.getElementById("overlay").style.display = "none";
+ return;
+ }
+ else {
+ // Get status
+ var xhttp = new XMLHttpRequest();
+ try {
+ xhttp.open("GET", domainname + "/statusflow", false);
+ xhttp.send();
+ }
+ catch (error){}
+
+ document.getElementById("overlaytext").innerHTML = "Device is busy, waiting until the Digitalization Round got completed (this can take several minutes)...
Current step: " + xhttp.responseText;
+ console.log("Device is busy, waiting 5s then checking again...");
+ await sleep(5000);
+ }
+ }
+ }
+
+ setTimeout(function() { // Delay so the overlay gets shown
+ task();
+ }, 1);
}
function UpdateReference(){
@@ -304,12 +362,44 @@ function dataURLtoBlob(dataurl) {
refInfo[aktindex]["x"] = document.getElementById("refx").value;
refInfo[aktindex]["y"] = document.getElementById("refy").value;
refInfo[aktindex]["dx"] = document.getElementById("refdx").value;
- refInfo[aktindex]["dy"] = document.getElementById("refdy").value;
- if (MakeRefZW(refInfo[aktindex], domainname)) {
- UpdateReference();
- document.getElementById("enhancecontrast").disabled = false;
- document.getElementById("savemarker").disabled = false;
+ refInfo[aktindex]["dy"] = document.getElementById("refdy").value;
+
+ document.getElementById("overlay").style.display = "block";
+ document.getElementById("overlaytext").innerHTML = "Updating marker...";
+
+ function sleep(ms) {
+ return new Promise(resolve => setTimeout(resolve, ms));
}
+
+ async function task() {
+ while (true) {
+ var ret = MakeRefZW(refInfo[aktindex], domainname);
+ if (ret) {
+ UpdateReference();
+ document.getElementById("enhancecontrast").disabled = false;
+ document.getElementById("savemarker").disabled = false;
+ document.getElementById("overlay").style.display = "none";
+ return;
+ }
+ else {
+ // Get status
+ var xhttp = new XMLHttpRequest();
+ try {
+ xhttp.open("GET", domainname + "/statusflow", false);
+ xhttp.send();
+ }
+ catch (error){}
+
+ document.getElementById("overlaytext").innerHTML = "Device is busy, waiting until the Digitalization Round got completed (this can take several minutes)...
Current step: " + xhttp.responseText;
+ console.log("Device is busy, waiting 5s then checking again...");
+ await sleep(5000);
+ }
+ }
+ }
+
+ setTimeout(function() { // Delay so the overlay gets shown
+ task();
+ }, 1);
}
function drawGrid(){
diff --git a/sd-card/html/readconfigcommon.js b/sd-card/html/readconfigcommon.js
index 4871bc17..d7864587 100644
--- a/sd-card/html/readconfigcommon.js
+++ b/sd-card/html/readconfigcommon.js
@@ -259,17 +259,13 @@ function MakeContrastImageZW(zw, _enhance, _domainname){
xhttp.open("GET", url, false);
xhttp.send();
}
- catch (error)
- {
-// firework.launch('Deleting Config.ini failed!', 'danger', 30000);
- }
+ catch (error){}
if (xhttp.responseText == "CutImage Done") {
firework.launch('Image Contrast got enhanced', 'success', 5000);
return true;
}
else {
- firework.launch("Device is busy, please try again when the Digitalization Round got completed!", 'warning', 10000);
return false;
}
}
@@ -284,10 +280,7 @@ function MakeRefZW(zw, _domainname){
xhttp.open("GET", url, false);
xhttp.send();
}
- catch (error)
- {
-// firework.launch('Deleting Config.ini failed!', 'danger', 30000);
- }
+ catch (error){}
if (xhttp.responseText == "CutImage Done") {
_filetarget2 = zw["name"].replace("/config/", "/img_tmp/");
@@ -297,7 +290,6 @@ function MakeRefZW(zw, _domainname){
return true;
}
else {
- firework.launch("Device is busy, please try again when the Digitalization Round got completed!", 'warning', 10000);
return false;
}
}