|
@@ -18,8 +18,6 @@ public class MHRescueMission : Entity
|
|
public bool Success; // 任务是否成功
|
|
public bool Success; // 任务是否成功
|
|
public double SimTime;
|
|
public double SimTime;
|
|
public double InitArea;
|
|
public double InitArea;
|
|
- private int currentExecuteCount = 1;
|
|
|
|
- public int ExecutionContext = 0;
|
|
|
|
// 火场点
|
|
// 火场点
|
|
public FireGround FireGround;
|
|
public FireGround FireGround;
|
|
public double slope;
|
|
public double slope;
|
|
@@ -71,30 +69,6 @@ public class MHRescueMission : Entity
|
|
|
|
|
|
var readyTime = aircrafts.First().TaskReadyTime;
|
|
var readyTime = aircrafts.First().TaskReadyTime;
|
|
Task.Delay(TimeSpan.FromSeconds(readyTime)).ContinueWith(t => this.StartAsyncMH());
|
|
Task.Delay(TimeSpan.FromSeconds(readyTime)).ContinueWith(t => this.StartAsyncMH());
|
|
-
|
|
|
|
-
|
|
|
|
- // if (currentExecuteCount > ExecutionContext)
|
|
|
|
- // {
|
|
|
|
- // return;
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // if (currentExecuteCount < ExecutionContext)
|
|
|
|
- // {
|
|
|
|
- // SaveTotalMH();
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // if(currentExecuteCount == ExecutionContext)
|
|
|
|
- // {
|
|
|
|
- // SaveMH();
|
|
|
|
- // SaveTotalMH();
|
|
|
|
- // ReportMH();
|
|
|
|
- // this.StartAsyncMH();
|
|
|
|
- // return;
|
|
|
|
- // }
|
|
|
|
-
|
|
|
|
- // this.Reset();
|
|
|
|
- // this.Start();
|
|
|
|
- // currentExecuteCount++;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|