mirror of
https://github.com/s00500/ESPUI.git
synced 2024-11-25 19:20:54 +00:00
Merge
This commit is contained in:
commit
2feab51c67
170
data/js/controls.js
vendored
170
data/js/controls.js
vendored
@ -60,6 +60,8 @@ const UPDATE_SEPARATOR = 119;
|
|||||||
const UI_TIME = 20;
|
const UI_TIME = 20;
|
||||||
const UPDATE_TIME = 120;
|
const UPDATE_TIME = 120;
|
||||||
|
|
||||||
|
const UI_FRAGMENT = 21;
|
||||||
|
|
||||||
const UP = 0;
|
const UP = 0;
|
||||||
const DOWN = 1;
|
const DOWN = 1;
|
||||||
const LEFT = 2;
|
const LEFT = 2;
|
||||||
@ -77,6 +79,8 @@ const C_ALIZARIN = 6;
|
|||||||
const C_DARK = 7;
|
const C_DARK = 7;
|
||||||
const C_NONE = 255;
|
const C_NONE = 255;
|
||||||
|
|
||||||
|
var controlAssemblyArray = new Object();
|
||||||
|
var FragmentAssemblyTimer = new Object();
|
||||||
var graphData = new Array();
|
var graphData = new Array();
|
||||||
var hasAccel = false;
|
var hasAccel = false;
|
||||||
var sliderContinuous = false;
|
var sliderContinuous = false;
|
||||||
@ -190,6 +194,12 @@ function restart() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function conStatusError() {
|
function conStatusError() {
|
||||||
|
FragmentAssemblyTimer.forEach(element => {
|
||||||
|
clearInterval(element);
|
||||||
|
});
|
||||||
|
FragmentAssemblyTimer = new Object();
|
||||||
|
controlAssemblyArray = new Object();
|
||||||
|
|
||||||
if (true === websockConnected) {
|
if (true === websockConnected) {
|
||||||
websockConnected = false;
|
websockConnected = false;
|
||||||
websock.close();
|
websock.close();
|
||||||
@ -210,17 +220,20 @@ function handleVisibilityChange() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function start() {
|
function start() {
|
||||||
|
let location = window.location.hostname;
|
||||||
|
let port = window.location.port;
|
||||||
|
// let location = "192.168.10.229";
|
||||||
|
// let port = "";
|
||||||
|
|
||||||
document.addEventListener("visibilitychange", handleVisibilityChange, false);
|
document.addEventListener("visibilitychange", handleVisibilityChange, false);
|
||||||
if (
|
if (
|
||||||
window.location.port != "" ||
|
port != "" ||
|
||||||
window.location.port != 80 ||
|
port != 80 ||
|
||||||
window.location.port != 443
|
port != 443
|
||||||
) {
|
) {
|
||||||
websock = new WebSocket(
|
websock = new WebSocket( "ws://" + location + ":" + port + "/ws" );
|
||||||
"ws://" + window.location.hostname + ":" + window.location.port + "/ws"
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
websock = new WebSocket("ws://" + window.location.hostname + "/ws");
|
websock = new WebSocket("ws://" + location + "/ws");
|
||||||
}
|
}
|
||||||
|
|
||||||
// is the timer running?
|
// is the timer running?
|
||||||
@ -241,33 +254,54 @@ function start() {
|
|||||||
$("#conStatus").addClass("color-green");
|
$("#conStatus").addClass("color-green");
|
||||||
$("#conStatus").text("Connected");
|
$("#conStatus").text("Connected");
|
||||||
websockConnected = true;
|
websockConnected = true;
|
||||||
|
FragmentAssemblyTimer.forEach(element => {
|
||||||
|
clearInterval(element);
|
||||||
|
});
|
||||||
|
FragmentAssemblyTimer = new Object();
|
||||||
|
controlAssemblyArray = new Object();
|
||||||
};
|
};
|
||||||
|
|
||||||
websock.onclose = function (evt) {
|
websock.onclose = function (evt) {
|
||||||
|
// console.log("Close evt: '" + evt + "'");
|
||||||
|
// console.log("Close reason: '" + evt.reason + "'");
|
||||||
|
// console.log("Close code: '" + evt.code + "'");
|
||||||
console.log("websock close");
|
console.log("websock close");
|
||||||
conStatusError();
|
conStatusError();
|
||||||
|
FragmentAssemblyTimer.forEach(element => {
|
||||||
|
clearInterval(element);
|
||||||
|
});
|
||||||
|
FragmentAssemblyTimer = new Object();
|
||||||
|
controlAssemblyArray = new Object();
|
||||||
};
|
};
|
||||||
|
|
||||||
websock.onerror = function (evt) {
|
websock.onerror = function (evt) {
|
||||||
console.log("websock Error");
|
console.log("websock Error");
|
||||||
console.log(evt);
|
// console.log("Error evt: '" + evt + "'");
|
||||||
|
// console.log("Error data: '" + evt.data + "'");
|
||||||
|
|
||||||
restart();
|
restart();
|
||||||
|
FragmentAssemblyTimer.forEach(element => {
|
||||||
|
clearInterval(element);
|
||||||
|
});
|
||||||
|
FragmentAssemblyTimer = new Object();
|
||||||
|
controlAssemblyArray = new Object();
|
||||||
};
|
};
|
||||||
|
|
||||||
var handleEvent = function (evt) {
|
var handleEvent = function (evt) {
|
||||||
console.log(evt);
|
// console.log("handleEvent:Data evt: '" + evt + "'");
|
||||||
|
// console.log("handleEvent:Data data: '" + evt.data + "'");
|
||||||
try {
|
try {
|
||||||
var data = JSON.parse(evt.data);
|
var data = JSON.parse(evt.data);
|
||||||
}
|
}
|
||||||
catch (Event) {
|
catch (Event) {
|
||||||
console.error(Event);
|
console.error(Event);
|
||||||
// start the update over again
|
// console.info("start the update over again");
|
||||||
websock.send("uiok:" + 0);
|
websock.send("uiok:" + 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var e = document.body;
|
var e = document.body;
|
||||||
var center = "";
|
var center = "";
|
||||||
|
// console.info("data.type: '" + data.type + "'");
|
||||||
|
|
||||||
switch (data.type) {
|
switch (data.type) {
|
||||||
case UI_INITIAL_GUI:
|
case UI_INITIAL_GUI:
|
||||||
@ -279,7 +313,9 @@ function start() {
|
|||||||
if (data.sliderContinuous) {
|
if (data.sliderContinuous) {
|
||||||
sliderContinuous = data.sliderContinuous;
|
sliderContinuous = data.sliderContinuous;
|
||||||
}
|
}
|
||||||
|
// console.info("UI_INITIAL_GUI:data record: '" + data + "'");
|
||||||
data.controls.forEach(element => {
|
data.controls.forEach(element => {
|
||||||
|
// console.info("element: '" + JSON.stringify(element) + "'");
|
||||||
var fauxEvent = {
|
var fauxEvent = {
|
||||||
data: JSON.stringify(element),
|
data: JSON.stringify(element),
|
||||||
};
|
};
|
||||||
@ -295,7 +331,9 @@ function start() {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case UI_EXTEND_GUI:
|
case UI_EXTEND_GUI:
|
||||||
|
// console.info("UI_EXTEND_GUI data record: '" + data + "'");
|
||||||
data.controls.forEach(element => {
|
data.controls.forEach(element => {
|
||||||
|
// console.info("UI_EXTEND_GUI:element: '" + JSON.stringify(element) + "'");
|
||||||
var fauxEvent = {
|
var fauxEvent = {
|
||||||
data: JSON.stringify(element),
|
data: JSON.stringify(element),
|
||||||
};
|
};
|
||||||
@ -601,6 +639,88 @@ function start() {
|
|||||||
websock.send("time:" + rv + ":" + data.id);
|
websock.send("time:" + rv + ":" + data.id);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case UI_FRAGMENT:
|
||||||
|
let FragmentLen = data.length;
|
||||||
|
let FragementOffset = data.offset;
|
||||||
|
let NextFragmentOffset = FragementOffset + FragmentLen;
|
||||||
|
let Total = data.total;
|
||||||
|
let Arrived = (FragmentLen + FragementOffset);
|
||||||
|
let FragmentFinal = Total === Arrived;
|
||||||
|
// console.info("UI_FRAGMENT:FragmentLen '" + FragmentLen + "'");
|
||||||
|
// console.info("UI_FRAGMENT:FragementOffset '" + FragementOffset + "'");
|
||||||
|
// console.info("UI_FRAGMENT:NextFragmentOffset '" + NextFragmentOffset + "'");
|
||||||
|
// console.info("UI_FRAGMENT:Total '" + Total + "'");
|
||||||
|
// console.info("UI_FRAGMENT:Arrived '" + Arrived + "'");
|
||||||
|
// console.info("UI_FRAGMENT:FragmentFinal '" + FragmentFinal + "'");
|
||||||
|
|
||||||
|
if (!data.hasOwnProperty('control'))
|
||||||
|
{
|
||||||
|
console.error("UI_FRAGMENT:Missing control record, skipping control");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
let control = data.control;
|
||||||
|
StopFragmentAssemblyTimer(data.control.id);
|
||||||
|
|
||||||
|
// is this the first fragment?
|
||||||
|
if(0 === FragementOffset)
|
||||||
|
{
|
||||||
|
// console.info("Found first fragment");
|
||||||
|
controlAssemblyArray[control.id] = data;
|
||||||
|
// console.info("Value: " + controlAssemblyArray[control.id].control.value);
|
||||||
|
controlAssemblyArray[control.id].offset = NextFragmentOffset;
|
||||||
|
StartFragmentAssemblyTimer(control.id);
|
||||||
|
let TotalRequest = JSON.stringify({ 'id' : control.id, 'offset' : NextFragmentOffset });
|
||||||
|
websock.send("uifragmentok:" + 0 + ": " + TotalRequest + ":");
|
||||||
|
// console.info("asked for fragment 2");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// not first fragment. are we assembling this control?
|
||||||
|
if("undefined" === typeof controlAssemblyArray[control.id])
|
||||||
|
{
|
||||||
|
// it looks like we missed the first fragment. Start the control over
|
||||||
|
console.error("Missing first fragment for control: " + control.id);
|
||||||
|
StartFragmentAssemblyTimer(control.id);
|
||||||
|
let TotalRequest = JSON.stringify({ 'id' : control.id, 'offset' : 0 });
|
||||||
|
websock.send("uifragmentok:" + 0 + ": " + TotalRequest + ":");
|
||||||
|
// console.info("asked for fragment 1");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// is this the expected next fragment
|
||||||
|
if(FragementOffset !== controlAssemblyArray[control.id].offset)
|
||||||
|
{
|
||||||
|
console.error("Wrong next fragment. Expected: " + controlAssemblyArray[control.id].offset + " Got: " + FragementOffset);
|
||||||
|
StartFragmentAssemblyTimer(control.id);
|
||||||
|
let TotalRequest = JSON.stringify({ 'id' : control.id, 'offset' : controlAssemblyArray[control.id].length + controlAssemblyArray[control.id].offset });
|
||||||
|
websock.send("uifragmentok:" + 0 + ": " + TotalRequest + ":");
|
||||||
|
// console.info("asked for the expected fragment");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// console.info("Add to existing fragment");
|
||||||
|
controlAssemblyArray[control.id].control.value += control.value;
|
||||||
|
controlAssemblyArray[control.id].offset = NextFragmentOffset;
|
||||||
|
// console.info("Value: " + controlAssemblyArray[control.id].control.value);
|
||||||
|
|
||||||
|
if(true === FragmentFinal)
|
||||||
|
{
|
||||||
|
var fauxEvent = {
|
||||||
|
data: JSON.stringify(controlAssemblyArray[control.id].control),
|
||||||
|
};
|
||||||
|
handleEvent(fauxEvent);
|
||||||
|
controlAssemblyArray[control.id] = null;
|
||||||
|
// console.info("Found last fragment");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// console.info("Ask for next fragment.");
|
||||||
|
StartFragmentAssemblyTimer(control.id);
|
||||||
|
let TotalRequest = JSON.stringify({ 'id' : control.id, 'offset' : NextFragmentOffset});
|
||||||
|
websock.send("uifragmentok:" + 0 + ": " + TotalRequest + ":");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
console.error("Unknown type or event");
|
console.error("Unknown type or event");
|
||||||
break;
|
break;
|
||||||
@ -650,6 +770,36 @@ function start() {
|
|||||||
websock.onmessage = handleEvent;
|
websock.onmessage = handleEvent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function StartFragmentAssemblyTimer(Id)
|
||||||
|
{
|
||||||
|
StopFragmentAssemblyTimer(Id);
|
||||||
|
FragmentAssemblyTimer[Id] = setInterval(function(_Id)
|
||||||
|
{
|
||||||
|
// does the fragment assembly still exist?
|
||||||
|
if("undefined" !== typeof controlAssemblyArray[_Id])
|
||||||
|
{
|
||||||
|
if(null !== controlAssemblyArray[_Id])
|
||||||
|
{
|
||||||
|
// we have a valid control that is being assembled
|
||||||
|
// ask for the next part
|
||||||
|
let TotalRequest = JSON.stringify({ 'id' : controlAssemblyArray[_Id].control.id, 'offset' : controlAssemblyArray[_Id].offset});
|
||||||
|
websock.send("uifragmentok:" + 0 + ": " + TotalRequest + ":");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 1000, Id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function StopFragmentAssemblyTimer(Id)
|
||||||
|
{
|
||||||
|
if("undefined" !== typeof FragmentAssemblyTimer[Id])
|
||||||
|
{
|
||||||
|
if(FragmentAssemblyTimer[Id])
|
||||||
|
{
|
||||||
|
clearInterval(FragmentAssemblyTimer[Id]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function sliderchange(number) {
|
function sliderchange(number) {
|
||||||
var val = $("#sl" + number).val();
|
var val = $("#sl" + number).val();
|
||||||
websock.send("slvalue:" + val + ":" + number);
|
websock.send("slvalue:" + val + ":" + number);
|
||||||
|
31
data/js/controls.min.js
vendored
31
data/js/controls.min.js
vendored
@ -1,14 +1,14 @@
|
|||||||
const UI_INITIAL_GUI=200;const UI_RELOAD=201;const UPDATE_OFFSET=100;const UI_EXTEND_GUI=210;const UI_TITEL=0;const UI_PAD=1;const UPDATE_PAD=101;const UI_CPAD=2;const UPDATE_CPAD=102;const UI_BUTTON=3;const UPDATE_BUTTON=103;const UI_LABEL=4;const UPDATE_LABEL=104;const UI_SWITCHER=5;const UPDATE_SWITCHER=105;const UI_SLIDER=6;const UPDATE_SLIDER=106;const UI_NUMBER=7;const UPDATE_NUMBER=107;const UI_TEXT_INPUT=8;const UPDATE_TEXT_INPUT=108;const UI_GRAPH=9;const ADD_GRAPH_POINT=10;const CLEAR_GRAPH=109;const UI_TAB=11;const UPDATE_TAB=111;const UI_SELECT=12;const UPDATE_SELECT=112;const UI_OPTION=13;const UPDATE_OPTION=113;const UI_MIN=14;const UPDATE_MIN=114;const UI_MAX=15;const UPDATE_MAX=115;const UI_STEP=16;const UPDATE_STEP=116;const UI_GAUGE=17;const UPDATE_GAUGE=117;const UI_ACCEL=18;const UPDATE_ACCEL=118;const UI_SEPARATOR=19;const UPDATE_SEPARATOR=119;const UI_TIME=20;const UPDATE_TIME=120;const UP=0;const DOWN=1;const LEFT=2;const RIGHT=3;const CENTER=4;const C_TURQUOISE=0;const C_EMERALD=1;const C_PETERRIVER=2;const C_WETASPHALT=3;const C_SUNFLOWER=4;const C_CARROT=5;const C_ALIZARIN=6;const C_DARK=7;const C_NONE=255;var graphData=new Array();var hasAccel=false;var sliderContinuous=false;function colorClass(colorId){colorId=Number(colorId);switch(colorId){case C_TURQUOISE:return"turquoise";case C_EMERALD:return"emerald";case C_PETERRIVER:return"peterriver";case C_WETASPHALT:return"wetasphalt";case C_SUNFLOWER:return"sunflower";case C_CARROT:return"carrot";case C_ALIZARIN:return"alizarin";case C_DARK:case C_NONE:return"dark";default:return"";}}
|
const UI_INITIAL_GUI=200;const UI_RELOAD=201;const UPDATE_OFFSET=100;const UI_EXTEND_GUI=210;const UI_TITEL=0;const UI_PAD=1;const UPDATE_PAD=101;const UI_CPAD=2;const UPDATE_CPAD=102;const UI_BUTTON=3;const UPDATE_BUTTON=103;const UI_LABEL=4;const UPDATE_LABEL=104;const UI_SWITCHER=5;const UPDATE_SWITCHER=105;const UI_SLIDER=6;const UPDATE_SLIDER=106;const UI_NUMBER=7;const UPDATE_NUMBER=107;const UI_TEXT_INPUT=8;const UPDATE_TEXT_INPUT=108;const UI_GRAPH=9;const ADD_GRAPH_POINT=10;const CLEAR_GRAPH=109;const UI_TAB=11;const UPDATE_TAB=111;const UI_SELECT=12;const UPDATE_SELECT=112;const UI_OPTION=13;const UPDATE_OPTION=113;const UI_MIN=14;const UPDATE_MIN=114;const UI_MAX=15;const UPDATE_MAX=115;const UI_STEP=16;const UPDATE_STEP=116;const UI_GAUGE=17;const UPDATE_GAUGE=117;const UI_ACCEL=18;const UPDATE_ACCEL=118;const UI_SEPARATOR=19;const UPDATE_SEPARATOR=119;const UI_TIME=20;const UPDATE_TIME=120;const UI_FRAGMENT=21;const UP=0;const DOWN=1;const LEFT=2;const RIGHT=3;const CENTER=4;const C_TURQUOISE=0;const C_EMERALD=1;const C_PETERRIVER=2;const C_WETASPHALT=3;const C_SUNFLOWER=4;const C_CARROT=5;const C_ALIZARIN=6;const C_DARK=7;const C_NONE=255;var controlAssemblyArray=new Object();var FragmentAssemblyTimer=new Object();var graphData=new Array();var hasAccel=false;var sliderContinuous=false;function colorClass(colorId){colorId=Number(colorId);switch(colorId){case C_TURQUOISE:return"turquoise";case C_EMERALD:return"emerald";case C_PETERRIVER:return"peterriver";case C_WETASPHALT:return"wetasphalt";case C_SUNFLOWER:return"sunflower";case C_CARROT:return"carrot";case C_ALIZARIN:return"alizarin";case C_DARK:case C_NONE:return"dark";default:return"";}}
|
||||||
var websock;var websockConnected=false;var WebSocketTimer=null;function requestOrientationPermission(){}
|
var websock;var websockConnected=false;var WebSocketTimer=null;function requestOrientationPermission(){}
|
||||||
function saveGraphData(){localStorage.setItem("espuigraphs",JSON.stringify(graphData));}
|
function saveGraphData(){localStorage.setItem("espuigraphs",JSON.stringify(graphData));}
|
||||||
function restoreGraphData(id){var savedData=localStorage.getItem("espuigraphs",graphData);if(savedData!=null){savedData=JSON.parse(savedData);let idData=savedData[id];return Array.isArray(idData)?idData:[];}
|
function restoreGraphData(id){var savedData=localStorage.getItem("espuigraphs",graphData);if(savedData!=null){savedData=JSON.parse(savedData);let idData=savedData[id];return Array.isArray(idData)?idData:[];}
|
||||||
return[];}
|
return[];}
|
||||||
function restart(){$(document).add("*").off();$("#row").html("");conStatusError();start();}
|
function restart(){$(document).add("*").off();$("#row").html("");conStatusError();start();}
|
||||||
function conStatusError(){if(true===websockConnected){websockConnected=false;websock.close();$("#conStatus").removeClass("color-green");$("#conStatus").addClass("color-red");$("#conStatus").html("Error / No Connection ↻");$("#conStatus").off();$("#conStatus").on({click:restart,});}}
|
function conStatusError(){FragmentAssemblyTimer.forEach(element=>{clearInterval(element);});FragmentAssemblyTimer=new Object();controlAssemblyArray=new Object();if(true===websockConnected){websockConnected=false;websock.close();$("#conStatus").removeClass("color-green");$("#conStatus").addClass("color-red");$("#conStatus").html("Error / No Connection ↻");$("#conStatus").off();$("#conStatus").on({click:restart,});}}
|
||||||
function handleVisibilityChange(){if(!websockConnected&&!document.hidden){restart();}}
|
function handleVisibilityChange(){if(!websockConnected&&!document.hidden){restart();}}
|
||||||
function start(){document.addEventListener("visibilitychange",handleVisibilityChange,false);if(window.location.port!=""||window.location.port!=80||window.location.port!=443){websock=new WebSocket("ws://"+window.location.hostname+":"+window.location.port+"/ws");}else{websock=new WebSocket("ws://"+window.location.hostname+"/ws");}
|
function start(){let location=window.location.hostname;let port=window.location.port;document.addEventListener("visibilitychange",handleVisibilityChange,false);if(port!=""||port!=80||port!=443){websock=new WebSocket("ws://"+location+":"+port+"/ws");}else{websock=new WebSocket("ws://"+location+"/ws");}
|
||||||
if(null===WebSocketTimer){WebSocketTimer=setInterval(function(){if(websock.readyState===3){restart();}},5000);}
|
if(null===WebSocketTimer){WebSocketTimer=setInterval(function(){if(websock.readyState===3){restart();}},5000);}
|
||||||
websock.onopen=function(evt){console.log("websock open");$("#conStatus").addClass("color-green");$("#conStatus").text("Connected");websockConnected=true;};websock.onclose=function(evt){console.log("websock close");conStatusError();};websock.onerror=function(evt){console.log("websock Error");console.log(evt);restart();};var handleEvent=function(evt){console.log(evt);try{var data=JSON.parse(evt.data);}
|
websock.onopen=function(evt){console.log("websock open");$("#conStatus").addClass("color-green");$("#conStatus").text("Connected");websockConnected=true;FragmentAssemblyTimer.forEach(element=>{clearInterval(element);});FragmentAssemblyTimer=new Object();controlAssemblyArray=new Object();};websock.onclose=function(evt){console.log("websock close");conStatusError();FragmentAssemblyTimer.forEach(element=>{clearInterval(element);});FragmentAssemblyTimer=new Object();controlAssemblyArray=new Object();};websock.onerror=function(evt){console.log("websock Error");restart();FragmentAssemblyTimer.forEach(element=>{clearInterval(element);});FragmentAssemblyTimer=new Object();controlAssemblyArray=new Object();};var handleEvent=function(evt){try{var data=JSON.parse(evt.data);}
|
||||||
catch(Event){console.error(Event);websock.send("uiok:"+0);return;}
|
catch(Event){console.error(Event);websock.send("uiok:"+0);return;}
|
||||||
var e=document.body;var center="";switch(data.type){case UI_INITIAL_GUI:$("#row").html("");$("#tabsnav").html("");$("#tabscontent").html("");if(data.sliderContinuous){sliderContinuous=data.sliderContinuous;}
|
var e=document.body;var center="";switch(data.type){case UI_INITIAL_GUI:$("#row").html("");$("#tabsnav").html("");$("#tabscontent").html("");if(data.sliderContinuous){sliderContinuous=data.sliderContinuous;}
|
||||||
data.controls.forEach(element=>{var fauxEvent={data:JSON.stringify(element),};handleEvent(fauxEvent);});if(data.totalcontrols>(data.controls.length-1)){websock.send("uiok:"+(data.controls.length-1));}
|
data.controls.forEach(element=>{var fauxEvent={data:JSON.stringify(element),};handleEvent(fauxEvent);});if(data.totalcontrols>(data.controls.length-1)){websock.send("uiok:"+(data.controls.length-1));}
|
||||||
@ -43,7 +43,19 @@ if(data.hasOwnProperty('inputType')){$("#text"+data.id).attr("type",data.inputTy
|
|||||||
break;case UPDATE_SELECT:$("#select"+data.id).val(data.value);if(data.hasOwnProperty('elementStyle')){$("#select"+data.id).attr("style",data.elementStyle);}
|
break;case UPDATE_SELECT:$("#select"+data.id).val(data.value);if(data.hasOwnProperty('elementStyle')){$("#select"+data.id).attr("style",data.elementStyle);}
|
||||||
break;case UPDATE_BUTTON:$("#btn"+data.id).val(data.value);$("#btn"+data.id).text(data.value);if(data.hasOwnProperty('elementStyle')){$("#btn"+data.id).attr("style",data.elementStyle);}
|
break;case UPDATE_BUTTON:$("#btn"+data.id).val(data.value);$("#btn"+data.id).text(data.value);if(data.hasOwnProperty('elementStyle')){$("#btn"+data.id).attr("style",data.elementStyle);}
|
||||||
break;case UPDATE_PAD:case UPDATE_CPAD:break;case UPDATE_GAUGE:$("#gauge"+data.id).val(data.value);if(data.hasOwnProperty('elementStyle')){$("#gauge"+data.id).attr("style",data.elementStyle);}
|
break;case UPDATE_PAD:case UPDATE_CPAD:break;case UPDATE_GAUGE:$("#gauge"+data.id).val(data.value);if(data.hasOwnProperty('elementStyle')){$("#gauge"+data.id).attr("style",data.elementStyle);}
|
||||||
break;case UPDATE_ACCEL:break;case UPDATE_TIME:var rv=new Date().toISOString();websock.send("time:"+rv+":"+data.id);break;default:console.error("Unknown type or event");break;}
|
break;case UPDATE_ACCEL:break;case UPDATE_TIME:var rv=new Date().toISOString();websock.send("time:"+rv+":"+data.id);break;case UI_FRAGMENT:let FragmentLen=data.length;let FragementOffset=data.offset;let NextFragmentOffset=FragementOffset+FragmentLen;let Total=data.total;let Arrived=(FragmentLen+FragementOffset);let FragmentFinal=Total===Arrived;if(!data.hasOwnProperty('control'))
|
||||||
|
{console.error("UI_FRAGMENT:Missing control record, skipping control");break;}
|
||||||
|
let control=data.control;StopFragmentAssemblyTimer(data.control.id);if(0===FragementOffset)
|
||||||
|
{controlAssemblyArray[control.id]=data;controlAssemblyArray[control.id].offset=NextFragmentOffset;StartFragmentAssemblyTimer(control.id);let TotalRequest=JSON.stringify({'id':control.id,'offset':NextFragmentOffset});websock.send("uifragmentok:"+0+": "+TotalRequest+":");break;}
|
||||||
|
if("undefined"===typeof controlAssemblyArray[control.id])
|
||||||
|
{console.error("Missing first fragment for control: "+control.id);StartFragmentAssemblyTimer(control.id);let TotalRequest=JSON.stringify({'id':control.id,'offset':0});websock.send("uifragmentok:"+0+": "+TotalRequest+":");break;}
|
||||||
|
if(FragementOffset!==controlAssemblyArray[control.id].offset)
|
||||||
|
{console.error("Wrong next fragment. Expected: "+controlAssemblyArray[control.id].offset+" Got: "+FragementOffset);StartFragmentAssemblyTimer(control.id);let TotalRequest=JSON.stringify({'id':control.id,'offset':controlAssemblyArray[control.id].length+controlAssemblyArray[control.id].offset});websock.send("uifragmentok:"+0+": "+TotalRequest+":");break;}
|
||||||
|
controlAssemblyArray[control.id].control.value+=control.value;controlAssemblyArray[control.id].offset=NextFragmentOffset;if(true===FragmentFinal)
|
||||||
|
{var fauxEvent={data:JSON.stringify(controlAssemblyArray[control.id].control),};handleEvent(fauxEvent);controlAssemblyArray[control.id]=null;}
|
||||||
|
else
|
||||||
|
{StartFragmentAssemblyTimer(control.id);let TotalRequest=JSON.stringify({'id':control.id,'offset':NextFragmentOffset});websock.send("uifragmentok:"+0+": "+TotalRequest+":");}
|
||||||
|
break;default:console.error("Unknown type or event");break;}
|
||||||
if(data.type>=UI_TITEL&&data.type<UPDATE_OFFSET){processEnabled(data);}
|
if(data.type>=UI_TITEL&&data.type<UPDATE_OFFSET){processEnabled(data);}
|
||||||
if(data.type>=UPDATE_OFFSET&&data.type<UI_INITIAL_GUI){var element=$("#id"+data.id);if(data.hasOwnProperty('panelStyle')){$("#id"+data.id).attr("style",data.panelStyle);}
|
if(data.type>=UPDATE_OFFSET&&data.type<UI_INITIAL_GUI){var element=$("#id"+data.id);if(data.hasOwnProperty('panelStyle')){$("#id"+data.id).attr("style",data.panelStyle);}
|
||||||
if(data.hasOwnProperty('visible')){if(data['visible'])
|
if(data.hasOwnProperty('visible')){if(data['visible'])
|
||||||
@ -52,6 +64,15 @@ $("#id"+data.id).hide();}
|
|||||||
if(data.type==UPDATE_SLIDER){element.removeClass("slider-turquoise slider-emerald slider-peterriver slider-wetasphalt slider-sunflower slider-carrot slider-alizarin");element.addClass("slider-"+colorClass(data.color));}else{element.removeClass("turquoise emerald peterriver wetasphalt sunflower carrot alizarin");element.addClass(colorClass(data.color));}
|
if(data.type==UPDATE_SLIDER){element.removeClass("slider-turquoise slider-emerald slider-peterriver slider-wetasphalt slider-sunflower slider-carrot slider-alizarin");element.addClass("slider-"+colorClass(data.color));}else{element.removeClass("turquoise emerald peterriver wetasphalt sunflower carrot alizarin");element.addClass(colorClass(data.color));}
|
||||||
processEnabled(data);}
|
processEnabled(data);}
|
||||||
$(".range-slider__range").each(function(){$(this)[0].value=$(this).attr("value");$(this).next().html($(this).attr("value"));});};websock.onmessage=handleEvent;}
|
$(".range-slider__range").each(function(){$(this)[0].value=$(this).attr("value");$(this).next().html($(this).attr("value"));});};websock.onmessage=handleEvent;}
|
||||||
|
function StartFragmentAssemblyTimer(Id)
|
||||||
|
{StopFragmentAssemblyTimer(Id);FragmentAssemblyTimer[Id]=setInterval(function(_Id)
|
||||||
|
{if("undefined"!==typeof controlAssemblyArray[_Id])
|
||||||
|
{if(null!==controlAssemblyArray[_Id])
|
||||||
|
{let TotalRequest=JSON.stringify({'id':controlAssemblyArray[_Id].control.id,'offset':controlAssemblyArray[_Id].offset});websock.send("uifragmentok:"+0+": "+TotalRequest+":");}}},1000,Id);}
|
||||||
|
function StopFragmentAssemblyTimer(Id)
|
||||||
|
{if("undefined"!==typeof FragmentAssemblyTimer[Id])
|
||||||
|
{if(FragmentAssemblyTimer[Id])
|
||||||
|
{clearInterval(FragmentAssemblyTimer[Id]);}}}
|
||||||
function sliderchange(number){var val=$("#sl"+number).val();websock.send("slvalue:"+val+":"+number);$(".range-slider__range").each(function(){$(this).attr("value",$(this)[0].value);});}
|
function sliderchange(number){var val=$("#sl"+number).val();websock.send("slvalue:"+val+":"+number);$(".range-slider__range").each(function(){$(this).attr("value",$(this)[0].value);});}
|
||||||
function numberchange(number){var val=$("#num"+number).val();websock.send("nvalue:"+val+":"+number);}
|
function numberchange(number){var val=$("#num"+number).val();websock.send("nvalue:"+val+":"+number);}
|
||||||
function textchange(number){var val=$("#text"+number).val();websock.send("tvalue:"+val+":"+number);}
|
function textchange(number){var val=$("#text"+number).val();websock.send("tvalue:"+val+":"+number);}
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user