ZSJYMission.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. using KYFramework;
  2. using NPOI.SS.Formula.PTG;
  3. using SimulationServer.Utils;
  4. namespace SimulationServer;
  5. public class ZSJYMission : Entity
  6. {
  7. public string MissionId; // 任务ID
  8. public bool Success; // 任务是否成功
  9. public List<AircraftZS> aircrafts = new List<AircraftZS>();
  10. public bool IsRunning;
  11. public double SimulationTime;
  12. public Dictionary<string, Dictionary<string, Dictionary<string, List<string>>>> singleReport = new();
  13. public Dictionary<string, Dictionary<string, List<string>>> aircraftSJDatas = new();
  14. public bool IsOver = false;
  15. private int currentExecuteCount = 1;
  16. public int ExecutionContext = 0;
  17. public string date;
  18. public void Start()
  19. {
  20. IsRunning = true;
  21. aircrafts.ForEach(a => a.Start());
  22. Log.Info($"{MissionId} 任务开始!");
  23. }
  24. public void Reset()
  25. {
  26. SimulationTime = 0;
  27. aircrafts?.ForEach(a => a.Reset());
  28. }
  29. public void EndMission()
  30. {
  31. IsRunning = false;
  32. Log.Info($"{MissionId} 任务结束!");
  33. if (currentExecuteCount > ExecutionContext)
  34. {
  35. return;
  36. }
  37. if (currentExecuteCount < ExecutionContext)
  38. {
  39. SaveSJ();
  40. SaveAircraftSJDatas();
  41. }
  42. if (currentExecuteCount == ExecutionContext)
  43. {
  44. SaveSJ();
  45. SaveAircraftSJDatas();
  46. ReportSJ();
  47. IsOver = true;
  48. return;
  49. }
  50. this.Reset();
  51. this.Start();
  52. currentExecuteCount++;
  53. }
  54. public void SaveAircraftSJDatas()
  55. {
  56. foreach (AircraftZS aircraftEntity in aircrafts)
  57. {
  58. string key = aircraftEntity.AircraftId;
  59. if (!aircraftSJDatas.ContainsKey(key))
  60. {
  61. aircraftSJDatas[key] = new Dictionary<string, List<string>>();
  62. }
  63. if (!aircraftSJDatas[key].ContainsKey("识别成功率"))
  64. aircraftSJDatas[key]["识别成功率"] = new List<string>();
  65. aircraftSJDatas[key]["识别成功率"].Add("0");
  66. if (!aircraftSJDatas[key].ContainsKey("任务准备时间"))
  67. aircraftSJDatas[key]["任务准备时间"] = new List<string>();
  68. aircraftSJDatas[key]["任务准备时间"].Add(aircraftEntity.TaskReadyTime.ToString());
  69. if (!aircraftSJDatas[key].ContainsKey("平均搜索时间"))
  70. aircraftSJDatas[key]["平均搜索时间"] = new List<string>();
  71. aircraftSJDatas[key]["平均搜索时间"].Add("0");
  72. if (!aircraftSJDatas[key].ContainsKey("总飞行时间"))
  73. aircraftSJDatas[key]["总飞行时间"] = new List<string>();
  74. aircraftSJDatas[key]["总飞行时间"].Add(aircraftEntity.TotalTime.ToString());
  75. if (!aircraftSJDatas[key].ContainsKey("人员存活率"))
  76. aircraftSJDatas[key]["人员存活率"] = new List<string>();
  77. aircraftSJDatas[key]["人员存活率"].Add(aircraftEntity.Success ? "1" : "0");
  78. }
  79. }
  80. public void SaveSJ()
  81. {
  82. foreach (AircraftZS aircraftEntity in aircrafts)
  83. {
  84. var staticCapacity = aircraftEntity.GetComponent<SJStaticCapacityComponent>();
  85. if (staticCapacity == null) continue;
  86. staticCapacity.FillData4(aircraftEntity.Db);
  87. string key = aircraftEntity.AircraftId;
  88. if (!singleReport.ContainsKey(key))
  89. {
  90. singleReport[key] = new Dictionary<string, Dictionary<string, List<string>>>();
  91. }
  92. Dictionary<string, Dictionary<string, string>> staticReport = staticCapacity.GetReport4();
  93. foreach (var kv in staticReport)
  94. {
  95. if (!singleReport[key].ContainsKey(kv.Key)) singleReport[key][kv.Key] = new Dictionary<string, List<string>>();
  96. foreach (var kv2 in kv.Value)
  97. {
  98. if (!singleReport[key][kv.Key].ContainsKey(kv2.Key)) singleReport[key][kv.Key][kv2.Key] = new List<string>();
  99. singleReport[key][kv.Key][kv2.Key].Add(kv2.Value);
  100. }
  101. }
  102. }
  103. if (currentExecuteCount == ExecutionContext)
  104. {
  105. foreach (var kv in singleReport)
  106. {
  107. foreach (var kv2 in kv.Value)
  108. {
  109. foreach (var kv3 in kv2.Value)
  110. {
  111. var sum = 0f;
  112. foreach (var kv4 in kv3.Value)
  113. {
  114. bool isfloat = float.TryParse(kv4, out float f);
  115. if (isfloat)
  116. sum += float.Parse(kv4);
  117. else
  118. sum = -1f;
  119. }
  120. if (sum != -1f)
  121. kv3.Value.Add((sum / kv3.Value.Count).ToString());
  122. else
  123. kv3.Value.Add("");
  124. }
  125. }
  126. }
  127. }
  128. }
  129. public void ReportSJ()
  130. {
  131. //string data = DateTime.Now.ToString("yyyy-MM-dd");
  132. string path = $"Reports/{date}/{MissionId}";
  133. if (!Directory.Exists(path)) Directory.CreateDirectory(path);
  134. foreach (var kv in singleReport)
  135. {
  136. string filePath = $"{path}/{kv.Key}搜救任务单机指标报告.xls";
  137. DataTableExtensions.SaveToExcel(filePath, kv.Value, true);
  138. }
  139. }
  140. }
  141. [ObjectSystem]
  142. public class ZSJYMissionUpdateSystem : UpdateSystem<ZSJYMission>
  143. {
  144. public override void Update(ZSJYMission self)
  145. {
  146. if (!self.IsRunning) return;
  147. self.aircrafts?.ForEach(a => a.Update(self.SimulationTime));
  148. if (self.aircrafts.All(a => a.IsOver))
  149. {
  150. self.EndMission();
  151. }
  152. }
  153. }