Browse Source

修改洒水时间判断逻辑

zansimple 8 months ago
parent
commit
7b620c717b

+ 0 - 26
SimulationServer/Entity/MHRescueMission.cs

@@ -18,8 +18,6 @@ public class MHRescueMission : Entity
     public bool Success; // 任务是否成功
     public bool Success; // 任务是否成功
     public double SimTime;
     public double SimTime;
     public double InitArea;
     public double InitArea;
-    private int currentExecuteCount = 1;
-    public int ExecutionContext = 0;
     // 火场点
     // 火场点
     public FireGround FireGround;
     public FireGround FireGround;
     public double slope;
     public double slope;
@@ -71,30 +69,6 @@ public class MHRescueMission : Entity
 
 
         var readyTime = aircrafts.First().TaskReadyTime;
         var readyTime = aircrafts.First().TaskReadyTime;
         Task.Delay(TimeSpan.FromSeconds(readyTime)).ContinueWith(t => this.StartAsyncMH());
         Task.Delay(TimeSpan.FromSeconds(readyTime)).ContinueWith(t => this.StartAsyncMH());
-        
-
-        // if (currentExecuteCount > ExecutionContext)
-        // {
-        //     return;
-        // }
-        //
-        // if (currentExecuteCount < ExecutionContext)
-        // {
-        //     SaveTotalMH();
-        // }
-        //
-        // if(currentExecuteCount == ExecutionContext)
-        // {
-        //     SaveMH();
-        //     SaveTotalMH();
-        //     ReportMH();
-        //     this.StartAsyncMH();
-        //     return;
-        // }
-        
-        // this.Reset();
-        // this.Start();
-        // currentExecuteCount++;
     }
     }
 
 
     
     

+ 1 - 1
SimulationServer/Entity/MHRescueMissionSystem.cs

@@ -23,7 +23,7 @@ public static class MHRescueMissionSystem
             {
             {
                 Fire.FireGrid fireGrid = aircraftMh.FireGrids.First();
                 Fire.FireGrid fireGrid = aircraftMh.FireGrids.First();
                 // 发送火焰数据
                 // 发送火焰数据
-                if (Math.Abs(self.SimulationTime - fireGrid.Time) < 5)
+                if (self.SimulationTime > fireGrid.Time)
                 {
                 {
                     //洒水了
                     //洒水了
                     S2C_FireSpread fireSpread = new S2C_FireSpread();
                     S2C_FireSpread fireSpread = new S2C_FireSpread();