TaskComponent.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. using KYFramework;
  2. using SimulationServer.Utils;
  3. namespace SimulationServer;
  4. public class TaskComponent : Component
  5. {
  6. public static Weather Weather;
  7. public static int Speed = 100;
  8. // 救援任务列表
  9. public List<MHRescueMission> MHRescueMissions;
  10. public List<XHRescueMission> XHRescueMissions;
  11. public List<ZCRescueMission> ZCRescueMissions;
  12. public List<SeaSJRescueMission> SeaSJRescueMissions;
  13. public List<LandSJRescueMission> LandSJRescueMissions;
  14. public SJAllTotalTaskPerformanceComponent SSJAllTotalTaskPerformance = new SJAllTotalTaskPerformanceComponent();
  15. public Dictionary<string, Dictionary<string, List<string>>> alltotalReportSea = new();
  16. public Dictionary<string, Dictionary<string, List<string>>> alltotalReportLand = new();
  17. // <sheet,<指标名,值列表>>
  18. public Dictionary<string, Dictionary<string, List<string>>> totalReportSea = new();
  19. public Dictionary<string, Dictionary<string, List<string>>> totalReportLand = new();
  20. private int currentSeaExecuteCount = 1;
  21. private int currentLandExecuteCount = 1;
  22. public int ExecutionContext = 0;
  23. public int seaSuccessCount = 0;
  24. public int landSuccessCount = 0;
  25. public void Start()
  26. {
  27. MHRescueMissions?.ForEach(r => r.Reset());
  28. XHRescueMissions?.ForEach(r => r.Reset());
  29. MHRescueMissions?.ForEach(r => r.Start());
  30. XHRescueMissions?.ForEach(r => r.Start());
  31. ZCRescueMissions?.ForEach(r => r.Start());
  32. SeaSJRescueMissions?.ForEach(r => r.Start());
  33. LandSJRescueMissions?.ForEach(r => r.Start());
  34. }
  35. public void SaveSeaSJ(Dictionary<string, Dictionary<string, string>> totalReport)
  36. {
  37. //把totalReport保存到alltotalReport
  38. foreach (var kv in totalReport)
  39. {
  40. if (!alltotalReportSea.ContainsKey(kv.Key)) alltotalReportSea[kv.Key] = new Dictionary<string, List<string>>();
  41. foreach (var kv2 in kv.Value)
  42. {
  43. if (!alltotalReportSea[kv.Key].ContainsKey(kv2.Key)) alltotalReportSea[kv.Key][kv2.Key] = new List<string>();
  44. alltotalReportSea[kv.Key][kv2.Key].Add(kv2.Value);
  45. }
  46. }
  47. if (currentSeaExecuteCount == ExecutionContext)
  48. {
  49. // 求一个平均值放到最后一位
  50. foreach (var kv in alltotalReportSea)
  51. {
  52. foreach (var kv2 in kv.Value)
  53. {
  54. var sum = 0f;
  55. foreach (var value in kv2.Value)
  56. {
  57. bool isfloat = float.TryParse(value, out float f);
  58. if (isfloat)
  59. sum += float.Parse(value);
  60. else
  61. sum = -1f;
  62. }
  63. if (sum != -1f)
  64. kv2.Value.Add((sum / kv2.Value.Count).ToString());
  65. else
  66. kv2.Value.Add("");
  67. }
  68. }
  69. }
  70. currentSeaExecuteCount++;
  71. }
  72. public void SaveLandSJ(Dictionary<string, Dictionary<string, string>> totalReport)
  73. {
  74. //把totalReport保存到alltotalReport
  75. foreach (var kv in totalReport)
  76. {
  77. if (!alltotalReportLand.ContainsKey(kv.Key)) alltotalReportLand[kv.Key] = new Dictionary<string, List<string>>();
  78. foreach (var kv2 in kv.Value)
  79. {
  80. if (!alltotalReportLand[kv.Key].ContainsKey(kv2.Key)) alltotalReportLand[kv.Key][kv2.Key] = new List<string>();
  81. alltotalReportLand[kv.Key][kv2.Key].Add(kv2.Value);
  82. }
  83. }
  84. if (currentLandExecuteCount == ExecutionContext)
  85. {
  86. // 求一个平均值放到最后一位
  87. foreach (var kv in alltotalReportLand)
  88. {
  89. foreach (var kv2 in kv.Value)
  90. {
  91. var sum = 0f;
  92. foreach (var value in kv2.Value)
  93. {
  94. bool isfloat = float.TryParse(value, out float f);
  95. if (isfloat)
  96. sum += float.Parse(value);
  97. else
  98. sum = -1f;
  99. }
  100. if (sum != -1f)
  101. kv2.Value.Add((sum / kv2.Value.Count).ToString());
  102. else
  103. kv2.Value.Add("");
  104. }
  105. }
  106. }
  107. currentLandExecuteCount++;
  108. }
  109. public void ReportAllSJSea()
  110. {
  111. string data = DateTime.Now.ToString("yyyy-MM-dd");
  112. string path = $"Reports/SSJ/{data}";
  113. if (!Directory.Exists(path)) Directory.CreateDirectory(path);
  114. string totalPath = $"{path}/{"海上搜救任务总体指标报告"}.xls";
  115. DataTableExtensions.SaveToExcel(totalPath, alltotalReportSea, true);
  116. string totalPath1 = $"{path}/{"搜救任务总体指标报告"}.xls";
  117. DataTableExtensions.SaveToExcel(totalPath1, totalReportSea);
  118. }
  119. public void ReportAllSJLand()
  120. {
  121. string data = DateTime.Now.ToString("yyyy-MM-dd");
  122. string path = $"Reports/LSX/{data}";
  123. if (!Directory.Exists(path)) Directory.CreateDirectory(path);
  124. string totalPath = $"{path}/{"陆上搜寻任务总体指标报告"}.xls";
  125. DataTableExtensions.SaveToExcel(totalPath, alltotalReportLand, true);
  126. string totalPath1 = $"{path}/{"搜救任务总体指标报告"}.xls";
  127. DataTableExtensions.SaveToExcel(totalPath1, totalReportLand);
  128. }
  129. public void SaveTotalMHSea()
  130. {
  131. if (!totalReportSea.ContainsKey("总任务表现")) totalReportSea["总任务表现"] = new Dictionary<string, List<string>>();
  132. if (!totalReportSea["总任务表现"].ContainsKey("任务成功率")) totalReportSea["总任务表现"]["任务成功率"] = new List<string>();
  133. totalReportSea["总任务表现"]["任务成功率"].Add((seaSuccessCount * 1f / ExecutionContext).ToString());
  134. }
  135. public void SaveTotalMHLand()
  136. {
  137. if (!totalReportLand.ContainsKey("总任务表现")) totalReportLand["总任务表现"] = new Dictionary<string, List<string>>();
  138. if (!totalReportLand["总任务表现"].ContainsKey("任务成功率")) totalReportLand["总任务表现"]["任务成功率"] = new List<string>();
  139. totalReportLand["总任务表现"]["任务成功率"].Add((landSuccessCount * 1f / ExecutionContext).ToString());
  140. }
  141. }
  142. [ObjectSystem]
  143. public class TaskComponentAwakeSystem : AwakeSystem<TaskComponent>
  144. {
  145. public override void Awake(TaskComponent self)
  146. {
  147. self.MHRescueMissions = new List<MHRescueMission>();
  148. self.ZCRescueMissions = new List<ZCRescueMission>();
  149. self.XHRescueMissions = new List<XHRescueMission>();
  150. self.SeaSJRescueMissions = new List<SeaSJRescueMission>();
  151. self.LandSJRescueMissions = new List<LandSJRescueMission>();
  152. }
  153. }
  154. [ObjectSystem]
  155. public class TaskComponentUpdateSystem : UpdateSystem<TaskComponent>
  156. {
  157. public override void Update(TaskComponent self)
  158. {
  159. if (self.SeaSJRescueMissions.Count > 0)
  160. {
  161. if (self.SeaSJRescueMissions.All(m => m.IsOver))
  162. {
  163. for (int i = 0; i < self.ExecutionContext; i++)
  164. {
  165. self.SSJAllTotalTaskPerformance.FillData(self.SeaSJRescueMissions);
  166. var report = self.SSJAllTotalTaskPerformance.GetReport();
  167. if (report["总任务表现"]["任务是否成功"] == "1")
  168. self.seaSuccessCount++;
  169. self.SaveSeaSJ(report);
  170. }
  171. self.SaveTotalMHSea();
  172. self.ReportAllSJSea();
  173. self.SeaSJRescueMissions.Clear();
  174. }
  175. }
  176. if (self.LandSJRescueMissions.Count > 0)
  177. {
  178. if (self.LandSJRescueMissions.All(m => m.IsOver))
  179. {
  180. for (int i = 0; i < self.ExecutionContext; i++)
  181. {
  182. self.SSJAllTotalTaskPerformance.FillData1(self.LandSJRescueMissions);
  183. var report = self.SSJAllTotalTaskPerformance.GetReport1();
  184. if (report["总任务表现"]["任务是否成功"] == "1")
  185. self.landSuccessCount++;
  186. self.SaveLandSJ(report);
  187. }
  188. self.SaveTotalMHLand();
  189. self.ReportAllSJLand();
  190. self.LandSJRescueMissions.Clear();
  191. }
  192. }
  193. }
  194. }