Эх сурвалжийг харах

海上搜救完善excel导出功能

liyang 7 сар өмнө
parent
commit
39733bfd34

+ 18 - 0
SimulationServer/Component/TaskComponent.cs

@@ -15,10 +15,14 @@ public class TaskComponent : Component
 
     public SJAllTotalTaskPerformanceComponent SJAllTotalTaskPerformance = new SJAllTotalTaskPerformanceComponent();
     public Dictionary<string, Dictionary<string, List<string>>> alltotalReport = new();
+    // <sheet,<指标名,值列表>>
+    public Dictionary<string, Dictionary<string, List<string>>> totalReport = new();
 
     private int currentExecuteCount = 1;
     public int ExecutionContext = 0;
 
+    public int successCount = 0;
+
     public void Start()
     {
         MHRescueMissions?.ForEach(r => r.Reset());
@@ -81,6 +85,17 @@ public class TaskComponent : Component
 
         string totalPath = $"{path}/{"海上搜救任务总体指标报告"}.xls";
         DataTableExtensions.SaveToExcel(totalPath, alltotalReport, true);
+
+
+        string totalPath1 = $"{path}/{"搜救任务总体指标报告"}.xls";
+        DataTableExtensions.SaveToExcel(totalPath1, totalReport);
+    }
+
+    public void SaveTotalMH()
+    {
+        if (!totalReport.ContainsKey("总任务表现")) totalReport["总任务表现"] = new Dictionary<string, List<string>>();
+        if (!totalReport["总任务表现"].ContainsKey("任务成功率")) totalReport["总任务表现"]["任务成功率"] = new List<string>();
+        totalReport["总任务表现"]["任务成功率"].Add((successCount * 1f / ExecutionContext).ToString());
     }
 }
 
@@ -109,8 +124,11 @@ public class TaskComponentUpdateSystem : UpdateSystem<TaskComponent>
             {
                 self.SJAllTotalTaskPerformance.FillData(self.SeaSJRescueMissions);
                 var report = self.SJAllTotalTaskPerformance.GetReport();
+                if (report["总任务表现"]["任务是否成功"] == "1")
+                    self.successCount++;
                 self.SaveSJ(report);
             }
+            self.SaveTotalMH();
             self.ReportAllSJ();
             self.SeaSJRescueMissions.Clear();
         }

+ 20 - 20
SimulationServer/Entity/SeaSJRescueMission.cs

@@ -62,7 +62,7 @@ public class SeaSJRescueMission : Entity
         {
             SaveSJ();
             SaveAircraftSJDatas();
-            SaveTotalMH();
+            //SaveTotalMH();
             ReportSJ();
             //this.StartAsyncMH();
             IsOver = true;
@@ -189,25 +189,25 @@ public class SeaSJRescueMission : Entity
             DataTableExtensions.SaveToExcel(filePath, kv.Value, true);
         }
 
-        foreach (KeyValuePair<string, Dictionary<string, List<string>>> keyValuePair in totalReport)
-        {
-            foreach (KeyValuePair<string, List<string>> kv in keyValuePair.Value)
-            {
-                List<string> values = kv.Value;
-                double sum = 0;
-                foreach (string value in values)
-                {
-                    if (double.TryParse(value, out double num))
-                    {
-                        sum += num;
-                    }
-                }
-                double average = sum / values.Count;
-                values.Add(average.ToString("#0.00"));
-            }
-        }
-        string totalPath = $"{path}/{"搜救任务总体指标报告"}.xls";
-        DataTableExtensions.SaveToExcel(totalPath, totalReport, true);
+        //foreach (KeyValuePair<string, Dictionary<string, List<string>>> keyValuePair in totalReport)
+        //{
+        //    foreach (KeyValuePair<string, List<string>> kv in keyValuePair.Value)
+        //    {
+        //        List<string> values = kv.Value;
+        //        double sum = 0;
+        //        foreach (string value in values)
+        //        {
+        //            if (double.TryParse(value, out double num))
+        //            {
+        //                sum += num;
+        //            }
+        //        }
+        //        double average = sum / values.Count;
+        //        values.Add(average.ToString("#0.00"));
+        //    }
+        //}
+        //string totalPath = $"{path}/{"搜救任务总体指标报告"}.xls";
+        //DataTableExtensions.SaveToExcel(totalPath, totalReport, true);
     }
 }
 

+ 1 - 1
SimulationServer/bin/Debug/net7.0/Missions/editor_config.json

@@ -1,5 +1,5 @@
 {
-    "仿真次数": 100,
+    "仿真次数": 5,
     "想定信息": {
         "想定日期": "2024年6月4日",
         "想定时间": "00时00分00秒"