|
@@ -12,10 +12,11 @@ public class RescueMission : Entity
|
|
|
public double SimTime;
|
|
|
// 倍速
|
|
|
public double Speed = 1000;
|
|
|
-
|
|
|
+
|
|
|
+ public double InitArea;
|
|
|
//执行次数
|
|
|
public int ExecuteCount = 2;
|
|
|
- private int currentExecuteCount = 0;
|
|
|
+ private int currentExecuteCount = 1;
|
|
|
|
|
|
public string MissionType; // 任务类型
|
|
|
|
|
@@ -39,8 +40,6 @@ public class RescueMission : Entity
|
|
|
Dictionary<string,Dictionary<string,Dictionary<string,List<string>>>> singleReport =
|
|
|
new Dictionary<string, Dictionary<string, Dictionary<string, List<string>>>>();
|
|
|
|
|
|
-
|
|
|
-
|
|
|
// 巡护的 单机能力
|
|
|
// <机型,<sheet,<指标名,值列表>>>
|
|
|
Dictionary<string,Dictionary<string,Dictionary<string,List<string>>>> singleXHReport =
|
|
@@ -57,20 +56,24 @@ public class RescueMission : Entity
|
|
|
public void Start()
|
|
|
{
|
|
|
IsRunning = true;
|
|
|
+ SimTime = 0;
|
|
|
Aircrafts?.ForEach(a => a.Start(FireGround, this));
|
|
|
AircraftWithPersions?.ForEach(a => a.Start(FireGround,this));
|
|
|
-
|
|
|
- Log.Info($"{MissionId} 任务开始!");
|
|
|
-
|
|
|
-
|
|
|
+ aircrafts.Clear();
|
|
|
aircrafts.AddRange(Aircrafts);
|
|
|
aircrafts.AddRange(AircraftWithPersions);
|
|
|
+
|
|
|
+ if (FireGround != null)
|
|
|
+ {
|
|
|
+ FireGround.countArea = new Fire.CountArea() { burnarea = InitArea};
|
|
|
+ }
|
|
|
+ Log.Info($"{MissionId} 任务开始!");
|
|
|
}
|
|
|
|
|
|
public void EndMission()
|
|
|
{
|
|
|
IsRunning = false;
|
|
|
- Log.Info($"任务结束!");
|
|
|
+ Log.Info($"{MissionId} 任务结束!");
|
|
|
// 灭火完成 任务结束
|
|
|
End?.Invoke();
|
|
|
|
|
@@ -82,14 +85,16 @@ public class RescueMission : Entity
|
|
|
else
|
|
|
{
|
|
|
SaveXH();
|
|
|
+ ReportXH();
|
|
|
}
|
|
|
|
|
|
- // // 输出或保存报告
|
|
|
- // if(currentExecuteCount < ExecuteCount)
|
|
|
+ // 输出或保存报告
|
|
|
+ // if(currentExecuteCount <= ExecuteCount)
|
|
|
// {
|
|
|
// if(MissionType == "灭火")
|
|
|
// {
|
|
|
// SaveMH();
|
|
|
+ // Log.Info("保存任务数据");
|
|
|
// }
|
|
|
// else
|
|
|
// {
|
|
@@ -106,7 +111,6 @@ public class RescueMission : Entity
|
|
|
// {
|
|
|
// ReportXH();
|
|
|
// }
|
|
|
- //
|
|
|
// return;
|
|
|
// }
|
|
|
|
|
@@ -143,8 +147,7 @@ public class RescueMission : Entity
|
|
|
{
|
|
|
singleReport[aircraftMh.Name] = new Dictionary<string, Dictionary<string, List<string>>>();
|
|
|
}
|
|
|
-
|
|
|
- // 1次的报告
|
|
|
+
|
|
|
Dictionary<string, Dictionary<string, string>> staticReport = staticCapacity.GetReport();
|
|
|
foreach (var kv in staticReport)
|
|
|
{
|
|
@@ -267,14 +270,17 @@ public class RescueMission : Entity
|
|
|
public void ReportMH()
|
|
|
{
|
|
|
string data = DateTime.Now.ToString("yyyy-MM-dd");
|
|
|
- if(Directory.Exists("Reports/MH")) Directory.CreateDirectory("Reports/MH");
|
|
|
- Directory.CreateDirectory("Reports/MH/" + data);
|
|
|
+
|
|
|
+ string path = $"Reports/MH/{data}/{MissionId}";
|
|
|
+
|
|
|
+ if(!Directory.Exists(path)) Directory.CreateDirectory(path);
|
|
|
+
|
|
|
foreach (var kv in singleReport)
|
|
|
{
|
|
|
- string path = $"Reports/MH/{data}/{kv.Key}灭火任务单机指标报告.xls";
|
|
|
- DataTableExtensions.SaveToExcel(path, kv.Value);
|
|
|
+ string filePath = $"{path}/{kv.Key}灭火任务单机指标报告.xls";
|
|
|
+ DataTableExtensions.SaveToExcel(filePath, kv.Value);
|
|
|
}
|
|
|
- string totalPath = $"Reports/MH/{data}/{"灭火任务总体指标报告"}.xls";
|
|
|
+ string totalPath = $"{path}/{"灭火任务总体指标报告"}.xls";
|
|
|
// TODO 算出 成功率
|
|
|
|
|
|
DataTableExtensions.SaveToExcel(totalPath, totalReport);
|
|
@@ -283,14 +289,14 @@ public class RescueMission : Entity
|
|
|
public void ReportXH()
|
|
|
{
|
|
|
string data = DateTime.Now.ToString("yyyy-MM-dd");
|
|
|
- if(Directory.Exists("Reports/XH")) Directory.CreateDirectory("Reports/XH");
|
|
|
- Directory.CreateDirectory("Reports/XH/" + data);
|
|
|
+ string path = $"Reports/XH/{data}/{MissionId}";
|
|
|
+ if(!Directory.Exists(path)) Directory.CreateDirectory(path);
|
|
|
foreach (var kv in singleReport)
|
|
|
{
|
|
|
- string path = $"Reports/XH/{data}/{kv.Key}巡护任务单机指标报告.xls";
|
|
|
- DataTableExtensions.SaveToExcel(path, kv.Value);
|
|
|
+ string filePath = $"{path}/{kv.Key}巡护任务单机指标报告.xls";
|
|
|
+ DataTableExtensions.SaveToExcel(filePath, kv.Value);
|
|
|
}
|
|
|
- string totalPath = $"Reports/{data}/{"巡护任务总体指标报告"}.xls";
|
|
|
+ string totalPath = $"{path}/{"巡护任务总体指标报告"}.xls";
|
|
|
DataTableExtensions.SaveToExcel(totalPath, totalXhReport);
|
|
|
}
|
|
|
}
|
|
@@ -301,6 +307,7 @@ public class RescueMissionUpdateSystem : UpdateSystem<RescueMission>
|
|
|
public override void Update(RescueMission self)
|
|
|
{
|
|
|
if(!self.IsRunning) return;
|
|
|
+ if(self.FireGround == null) return;
|
|
|
if (self.FireGround.countArea.burnarea <= 0)
|
|
|
{
|
|
|
self.Success = true;
|