AircraftMH.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. using KYFramework;
  2. using Model;
  3. using SimulationServer.Utils;
  4. using Define = SimulationServer.Utils.Define;
  5. namespace SimulationServer;
  6. public class AircraftMH : Entity ,IAircraft
  7. {
  8. public string TaskName;
  9. public AircraftParameter aircraftparameter;
  10. public string Name; // 飞机名称
  11. public string Type = "中型直升机"; // 飞机类型
  12. public double SprinklerArea = 1500; // 飞机速度
  13. public string NextMissionId; // 下一个任务ID
  14. public AircraftDB Db;
  15. public FlightPlanEditor? FlightPlanEditor; // 飞行计划编辑器
  16. public FireGround fireGround;
  17. public MHRescueMission mhRescueMission;
  18. public TurningPoint[] turningPoints = new TurningPoint[2000];
  19. private int PointNumberIcon = 0;
  20. public double T { get; set; } // 飞机开始飞到火场 需要多少时间
  21. private int waterInterval = 4; // 洒水间隔
  22. public int waterTimes = 1; // 洒水次数
  23. public double ReadyTime;
  24. public double EnterTime; // 单机入场时间
  25. public double EffMisTime;// 单机有效任务时长
  26. public string Airport;
  27. public double FirstTime = 0; // 单机入场时间
  28. public double TaskResponseTime; //任务响应时间
  29. public double TotalFuelConsumption;
  30. //任务重置
  31. public void Reset()
  32. {
  33. T = 0;
  34. EffMisTime = 0;
  35. FirstTime = 0;
  36. PointNumberIcon = 0;
  37. waterTimes = 1;
  38. TotalFuelConsumption = 0;
  39. TaskResponseTime = 0;
  40. waterInterval = 4;
  41. turningPoints = new TurningPoint[2000];
  42. for (int i = 0; i < turningPoints.Length; i++)
  43. {
  44. turningPoints[i] = new TurningPoint();
  45. }
  46. }
  47. // 任务开始
  48. public void Start()
  49. {
  50. turningPoints = FXJHGenerate.FromStartToMission(FlightPlanEditor,turningPoints);//生成从起点到任务段起点的航路点
  51. // 计算出第一次洒水的时间
  52. turningPoints = FXJHGenerate.MieHuo1(FlightPlanEditor, turningPoints, PointNumberIcon);
  53. turningPoints = FXJHGenerate.FXJHTPDiedai(FlightPlanEditor,turningPoints, PointNumberIcon*3+2);
  54. if (waterInterval == 4)
  55. {
  56. for (int i = 0; i < waterInterval; i++)
  57. {
  58. T += turningPoints[i].SegmentFlightTime;
  59. }
  60. TaskResponseTime = T;
  61. }
  62. if (FirstTime == 0) FirstTime = T;
  63. }
  64. // 任务结束
  65. public void End()
  66. {
  67. for(int i=0;i<5;i++)
  68. {
  69. EnterTime += turningPoints[i].SegmentFlightTime;
  70. }
  71. for(int i=1;i<=(PointNumberIcon/4);i++)
  72. {
  73. EffMisTime += turningPoints[i * 4 + 1].SegmentFlightTime;
  74. }
  75. TotalFuelConsumption = turningPoints[0].RemainingFuel - turningPoints[PointNumberIcon + 3].RemainingFuel;
  76. }
  77. // 更新
  78. public void Update(double time)
  79. {
  80. if (fireGround.countArea.burnarea > 0) // 灭火完成
  81. {
  82. if (time > T)
  83. {
  84. // 开始洒水
  85. fireGround.countArea = Fire.burnCalculate(Define.WIND, mhRescueMission.slope, T, fireGround.countArea.burnarea, T, mhRescueMission.tn , fireGround.countArea.burnarea);
  86. var currentArea = Fire.SprinklerArea(Type, SprinklerArea) ; // 本次有效洒水面积
  87. // Log.Info("fireGround.countArea.burnarea: " + _fireGround.countArea.burnarea);
  88. // Log.Info("currentArea: " + currentArea);
  89. fireGround.countArea.burnarea -= currentArea;
  90. mhRescueMission.area += currentArea; // 有效洒水面积
  91. //Log.Info($"任务 {TaskName } {Name} 洒水{waterTimes} 次 本次有效洒水面积 {currentArea} 用时 {T} area {mhRescueMission.area} burnarea {fireGround.countArea.burnarea}");
  92. mhRescueMission.tn = T;
  93. PointNumberIcon += 2;
  94. waterTimes++;
  95. // 计算出下一次洒水的时间
  96. turningPoints = FXJHGenerate.MieHuo1(FlightPlanEditor, turningPoints, PointNumberIcon);
  97. turningPoints = FXJHGenerate.FXJHTPDiedai(FlightPlanEditor,turningPoints, PointNumberIcon + 2);
  98. for (int i = waterInterval - 2; i < waterInterval; i++)
  99. {
  100. T += turningPoints[i].SegmentFlightTime;
  101. }
  102. waterInterval += 2;
  103. }
  104. }
  105. }
  106. }
  107. [ObjectSystem]
  108. public class AircraftAwakeSystem : AwakeSystem<AircraftMH,FlightPlanEditor>
  109. {
  110. public override void Awake(AircraftMH self, FlightPlanEditor flightPlanEditor)
  111. {
  112. self.FlightPlanEditor = flightPlanEditor;
  113. // 读取数据库
  114. self.Db = Util.GetAircraftDefine(self.FlightPlanEditor.aircraftparameter.AircraftType,self.FlightPlanEditor.aircraftparameter.AircraftSubType,self.FlightPlanEditor.aircraftparameter.AircraftID);
  115. if (self.Db != null)
  116. {
  117. self.Type = self.Db?.fConcreateType.ToString();
  118. self.SprinklerArea = (double)self.Db.fpsmj;
  119. self.SprinklerArea = (double)self.Db?.fpsmj;
  120. }
  121. self.Reset();
  122. }
  123. }