|
@@ -195,20 +195,31 @@ export const FlyGLTFClass = {
|
|
|
bottomImage.src = 'public/imgs/warningBackground_conflict.png';
|
|
|
typeInfo = "碰撞检测"
|
|
|
break;
|
|
|
- case "warning_lowbattery":
|
|
|
- backgroundImage.src = 'public/imgs/warningBackground.png';
|
|
|
+ case "electricityWarning":
|
|
|
+ backgroundImage.src = 'public/imgs/warningBackground_lowbattery.png';
|
|
|
typeInfo = "电池电量低"
|
|
|
break;
|
|
|
- case "warning_outofrange":
|
|
|
- backgroundImage.src = 'public/imgs/warningBackground.png';
|
|
|
+ case "routeDeviate":
|
|
|
+ backgroundImage.src = 'public/imgs/warningBackground_outofrange.png';
|
|
|
typeInfo = "偏移航线"
|
|
|
break;
|
|
|
+ case "noFlyZone":
|
|
|
+ backgroundImage.src = 'public/imgs/warningBackground_noFlyZone.png';
|
|
|
+ typeInfo = "禁飞区"
|
|
|
+ break;
|
|
|
+ case "collision":
|
|
|
+ backgroundImage.src = 'public/imgs/warningBackground_noFlyZone.png';
|
|
|
+ typeInfo = "建筑物过近"
|
|
|
+ break;
|
|
|
+ case "clearZone":
|
|
|
+ backgroundImage.src = 'public/imgs/warningBackground_noFlyZone.png';
|
|
|
+ typeInfo = "净空区"
|
|
|
+ break;
|
|
|
default:
|
|
|
backgroundImage.src = 'public/imgs/serviceBackground.png';
|
|
|
typeInfo = "正常"
|
|
|
break;
|
|
|
}
|
|
|
-
|
|
|
|
|
|
if(this.panelInfo.type == "conflict"){
|
|
|
topImage.onload = () => {
|
|
@@ -218,17 +229,16 @@ export const FlyGLTFClass = {
|
|
|
context.fillStyle = 'rgba(0, 0, 0, 0)';
|
|
|
context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+ const topImageHeight = canvas.height * 0.2;
|
|
|
+ context.drawImage(topImage, 0, 0, canvas.width, topImageHeight);
|
|
|
|
|
|
|
|
|
const bottomImageHeight = canvas.height * 0.7;
|
|
|
context.drawImage(bottomImage, 0, canvas.height - bottomImageHeight, canvas.width, bottomImageHeight);
|
|
|
|
|
|
- debugger
|
|
|
const textInfo = [
|
|
|
-
|
|
|
+ { text: '暂停飞行原地等待:' + this.panelInfo.data.waitTime +'秒', color: '#fff', font: 'bold 16px Arial', offsetX:50, offsetY: 20 },
|
|
|
{ text: '距预测撞点前方: ', color: '#fff', font: '20px Verdana', offsetX:70, offsetY: 90 },
|
|
|
{ text: Math.floor(this.panelInfo.data.waitLength * 1) + '米', color: '#ff0000', font: 'bold 22px Courier New', offsetX:120, offsetY: 120 }
|
|
|
];
|
|
@@ -242,6 +252,119 @@ export const FlyGLTFClass = {
|
|
|
texture.needsUpdate = true;
|
|
|
}
|
|
|
}
|
|
|
+ }else if(this.panelInfo.type == "electricityWarning"){
|
|
|
+ backgroundImage.onload = () => {
|
|
|
+
|
|
|
+ context.clearRect(0, 0, canvas.width, canvas.height);
|
|
|
+ context.fillStyle = 'rgba(0, 0, 0, 0)';
|
|
|
+ context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
+
|
|
|
+ context.drawImage(backgroundImage, 0, 0, canvas.width, canvas.height);
|
|
|
+ const textInfo = [
|
|
|
+ { text: '电量预警: ', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 25 },
|
|
|
+ { text: '低电量警告: ', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 70 },
|
|
|
+ { text: this.panelInfo.data.speed, color: '#fff', font: '15px Arial', offsetX:40, offsetY: 90 },
|
|
|
+ { text: this.panelInfo.data.altitude, color: '#fff', font: '15px Arial', offsetX:40, offsetY: 110 },
|
|
|
+ { text: this.panelInfo.data.altitude, color: '#fff', font: '15px Arial', offsetX:80, offsetY: 110 }
|
|
|
+ ];
|
|
|
+
|
|
|
+ textInfo.forEach((line) => {
|
|
|
+ context.fillStyle = line.color;
|
|
|
+ context.font = line.font;
|
|
|
+ context.fillText(line.text, line.offsetX, line.offsetY);
|
|
|
+ });
|
|
|
+
|
|
|
+ texture.needsUpdate = true;
|
|
|
+ };
|
|
|
+ }else if(this.panelInfo.type == "routeDeviate"){
|
|
|
+ backgroundImage.onload = () => {
|
|
|
+
|
|
|
+ context.clearRect(0, 0, canvas.width, canvas.height);
|
|
|
+ context.fillStyle = 'rgba(0, 0, 0, 0)';
|
|
|
+ context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
+
|
|
|
+ context.drawImage(backgroundImage, 0, 0, canvas.width, canvas.height);
|
|
|
+ const textInfo = [
|
|
|
+ { text: '计划偏离: ', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 25 },
|
|
|
+ { text: '偏离距离: '+this.panelInfo.data.speed * 3.6+'米', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 90 },
|
|
|
+ { text: '飞行航线偏离: '+ this.panelInfo.data.altitude, color: '#fff', font: '15px Arial', offsetX:40, offsetY: 110 },
|
|
|
+ { text: '无人机正在偏离计划航线飞行,预警提示请关注', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 130 }
|
|
|
+ ];
|
|
|
+
|
|
|
+ textInfo.forEach((line) => {
|
|
|
+ context.fillStyle = line.color;
|
|
|
+ context.font = line.font;
|
|
|
+ context.fillText(line.text, line.offsetX, line.offsetY);
|
|
|
+ });
|
|
|
+
|
|
|
+ texture.needsUpdate = true;
|
|
|
+ };
|
|
|
+ }else if(this.panelInfo.type == "noFlyZone"){
|
|
|
+ backgroundImage.onload = () => {
|
|
|
+
|
|
|
+ context.clearRect(0, 0, canvas.width, canvas.height);
|
|
|
+ context.fillStyle = 'rgba(0, 0, 0, 0)';
|
|
|
+ context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
+
|
|
|
+
|
|
|
+ context.drawImage(backgroundImage, 0, 0, canvas.width, canvas.height);
|
|
|
+ const textInfo = [
|
|
|
+ { text: '空域闯入-禁飞区', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 25 },
|
|
|
+ { text: '已闯入禁飞区,请及时校正航线', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 90 }
|
|
|
+ ];
|
|
|
+
|
|
|
+ textInfo.forEach((line) => {
|
|
|
+ context.fillStyle = line.color;
|
|
|
+ context.font = line.font;
|
|
|
+ context.fillText(line.text, line.offsetX, line.offsetY);
|
|
|
+ });
|
|
|
+
|
|
|
+ texture.needsUpdate = true;
|
|
|
+ };
|
|
|
+ }else if(this.panelInfo.type == "collision"){
|
|
|
+ backgroundImage.onload = () => {
|
|
|
+
|
|
|
+ context.clearRect(0, 0, canvas.width, canvas.height);
|
|
|
+ context.fillStyle = 'rgba(0, 0, 0, 0)';
|
|
|
+ context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
+
|
|
|
+ context.drawImage(backgroundImage, 0, 0, canvas.width, canvas.height);
|
|
|
+ const textInfo = [
|
|
|
+ { text: '建筑避障: ', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 25 },
|
|
|
+ { text: '当前飞行轨迹距离前方建筑物实时距离: '+this.panelInfo.data.distance+'米', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 90 },
|
|
|
+ { text: '请注意飞行安全', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 110 },
|
|
|
+ ];
|
|
|
+
|
|
|
+ textInfo.forEach((line) => {
|
|
|
+ context.fillStyle = line.color;
|
|
|
+ context.font = line.font;
|
|
|
+ context.fillText(line.text, line.offsetX, line.offsetY);
|
|
|
+ });
|
|
|
+
|
|
|
+ texture.needsUpdate = true;
|
|
|
+ };
|
|
|
+ }else if(this.panelInfo.type == "clearZone"){
|
|
|
+ backgroundImage.onload = () => {
|
|
|
+
|
|
|
+ context.clearRect(0, 0, canvas.width, canvas.height);
|
|
|
+ context.fillStyle = 'rgba(0, 0, 0, 0)';
|
|
|
+ context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
+
|
|
|
+ context.drawImage(backgroundImage, 0, 0, canvas.width, canvas.height);
|
|
|
+ const textInfo = [
|
|
|
+ { text: '空域闯入-净空区', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 25 },
|
|
|
+ { text: '当前飞行轨迹距离前方净空区实时距离: '+this.panelInfo.data.distance+'米', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 90 },
|
|
|
+ { text: '请注意飞行安全', color: '#fff', font: '15px Arial', offsetX:40, offsetY: 110 },
|
|
|
+ ];
|
|
|
+
|
|
|
+ textInfo.forEach((line) => {
|
|
|
+ context.fillStyle = line.color;
|
|
|
+ context.font = line.font;
|
|
|
+ context.fillText(line.text, line.offsetX, line.offsetY);
|
|
|
+ });
|
|
|
+
|
|
|
+ texture.needsUpdate = true;
|
|
|
+ };
|
|
|
}else{
|
|
|
backgroundImage.onload = () => {
|
|
|
|
|
@@ -268,28 +391,12 @@ export const FlyGLTFClass = {
|
|
|
context.font = line.font;
|
|
|
context.fillText(line.text, line.offsetX, line.offsetY);
|
|
|
});
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
texture.needsUpdate = true;
|
|
|
};
|
|
|
}
|
|
|
mesh.up.set(1, 0, 0);
|
|
|
mesh.lookAt(this._camera.position);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
},
|
|
|
|