修改三维驾驶列车位置初始化

This commit is contained in:
sunzhenyu 2021-08-12 10:01:40 +08:00
parent 230de24156
commit 7ba34c4f3f
3 changed files with 21 additions and 4 deletions

View File

@ -107,6 +107,18 @@ export function Jl3dDrivingNew(mixers,updatemmi,sound,translation,routegroup,dri
DeviceDestroy(data.body);
return;
}
if(data.type == "Simulation_Reset"){
if(data.body == true ){
restartTrain();
}
}
}
function restartTrain(){
for(let i=0;i<trainlisttest.otherTrainmodels.length;i++){
trainlisttest.otherTrainmodels[i].position.x = -99999;
}
}
//切换车辆修改列车属性
function changeNowTrain(data){
@ -314,6 +326,7 @@ export function Jl3dDrivingNew(mixers,updatemmi,sound,translation,routegroup,dri
}
}
function tdtUpdate(data){
tdt.updateTdt(data.body);

View File

@ -339,7 +339,7 @@ export default {
// updateDriveValue(this.trainnum);
// }
updatedoorlight(newdata);
console.log(newdata.v);
// console.log(newdata.v);
updatetmsstatus(newdata);
if(this.$refs.mmiui){

View File

@ -687,8 +687,9 @@ function timedCount() {
function callback(Response) {
data = JSON.parse(Response.body);
//
// console.log(data);
// console.log(data.type);
if(data.type == "Train_Position"){
postMessage(data);
return;
@ -731,9 +732,12 @@ function timedCount() {
if(data.type == "Device_Load_Destroy_3D"){
postMessage(data);
}
if(data.type == "Simulation_Reset"){
postMessage(data);
}
}
}