|
@@ -8,7 +8,7 @@ public class LandSJRescueMission : Entity
|
|
|
{
|
|
|
public string MissionId; // 任务ID
|
|
|
public bool Success; // 任务是否成功
|
|
|
- public List<AircraftSJ> aircrafts = new List<AircraftSJ>();
|
|
|
+ public List<AircraftLandSJ> aircrafts = new List<AircraftLandSJ>();
|
|
|
|
|
|
public bool IsRunning;
|
|
|
public double SimulationTime;
|
|
@@ -81,7 +81,7 @@ public class LandSJRescueMission : Entity
|
|
|
|
|
|
public void SaveAircraftSJDatas()
|
|
|
{
|
|
|
- foreach (AircraftSJ aircraftEntity in aircrafts)
|
|
|
+ foreach (AircraftLandSJ aircraftEntity in aircrafts)
|
|
|
{
|
|
|
string key = aircraftEntity.AircraftId;
|
|
|
if (!aircraftSJDatas.ContainsKey(key))
|
|
@@ -90,7 +90,7 @@ public class LandSJRescueMission : Entity
|
|
|
}
|
|
|
if (!aircraftSJDatas[key].ContainsKey("识别成功率"))
|
|
|
aircraftSJDatas[key]["识别成功率"] = new List<string>();
|
|
|
- aircraftSJDatas[key]["识别成功率"].Add(aircraftEntity.isseePerson ? "1" : "0");
|
|
|
+ //aircraftSJDatas[key]["识别成功率"].Add(aircraftEntity.isseePerson ? "1" : "0");
|
|
|
if (!aircraftSJDatas[key].ContainsKey("任务准备时间"))
|
|
|
aircraftSJDatas[key]["任务准备时间"] = new List<string>();
|
|
|
aircraftSJDatas[key]["任务准备时间"].Add(aircraftEntity.TaskReadyTime.ToString());
|
|
@@ -102,13 +102,13 @@ public class LandSJRescueMission : Entity
|
|
|
aircraftSJDatas[key]["总飞行时间"].Add(aircraftEntity.TotalTime.ToString());
|
|
|
if (!aircraftSJDatas[key].ContainsKey("人员存活率"))
|
|
|
aircraftSJDatas[key]["人员存活率"] = new List<string>();
|
|
|
- aircraftSJDatas[key]["人员存活率"].Add(aircraftEntity.Success ? "1" : "0");
|
|
|
+ //aircraftSJDatas[key]["人员存活率"].Add(aircraftEntity.Success ? "1" : "0");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public void SaveSJ()
|
|
|
{
|
|
|
- foreach (AircraftSJ aircraftEntity in aircrafts)
|
|
|
+ foreach (AircraftLandSJ aircraftEntity in aircrafts)
|
|
|
{
|
|
|
var staticCapacity = aircraftEntity.GetComponent<SJStaticCapacityComponent>();
|
|
|
|
|
@@ -213,9 +213,9 @@ public class LandSJRescueMission : Entity
|
|
|
|
|
|
|
|
|
[ObjectSystem]
|
|
|
-public class SeaSJRescueMissionUpdateSystem : UpdateSystem<SeaSJRescueMission>
|
|
|
+public class LandSJRescueMissionUpdateSystem : UpdateSystem<LandSJRescueMission>
|
|
|
{
|
|
|
- public override void Update(SeaSJRescueMission self)
|
|
|
+ public override void Update(LandSJRescueMission self)
|
|
|
{
|
|
|
if (!self.IsRunning) return;
|
|
|
|