AircraftLandSJ.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. using KYFramework;
  2. using Model;
  3. using MongoDB.Bson;
  4. using MuShiApp;
  5. using SimulationCommon;
  6. using SimulationSingleServer.Utils;
  7. using Unity.Mathematics;
  8. using Point = SimulationCommon.Point;
  9. using Random = System.Random;
  10. using QuYuSaoMiao;
  11. namespace SimulationServer;
  12. public class AircraftLandSJ : AircraftEntity
  13. {
  14. public bool IsOver;
  15. public LandSouJiuTask taskContent;
  16. public EquationHelper helper;
  17. public GetNCData getNCData;
  18. public bool isseePerson = false;
  19. public override void Reset()
  20. {
  21. base.Reset();
  22. IsOver = false;
  23. SearchTime = 0;
  24. TotalTime = 0;
  25. }
  26. public override void Start()
  27. {
  28. Velocitys = new double[5] { 220, 220, 60, 110, 0 }; // 速度
  29. // TODO 这些参数应该在任务配置文件中, 与王子涵确认
  30. List<double[]> route = ContourSearch.ContourSearch1(taskContent.Poly, taskContent.interval,
  31. taskContent.MinLength, taskContent.TrueH, taskContent.JG, ContourSearch.DemHelper());
  32. // route 转成 List<AirRoute>
  33. List<AirRoute> airRoutes = new List<AirRoute>();
  34. foreach (var item in route)
  35. {
  36. airRoutes.Add(new AirRoute
  37. {
  38. AirRouteLatitude = item[1],
  39. AirRouteLongitude = item[0],
  40. AirRouteHeight = item[2]
  41. });
  42. }
  43. FlightPlanEditor.airroute = airRoutes.ToArray();
  44. FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
  45. // TODO 与王子涵确认这个方法
  46. FXJHGenerate.LandSouJiu(FlightPlanEditor, ref TurningPoints);
  47. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  48. getNCData = new GetNCData();
  49. getNCData.GetData();
  50. Task.Run(() =>
  51. {
  52. bool isseePerson = false;
  53. double temptime = 0; // 自增时间,每次增加1s
  54. CurrentLocation currentLocation = new CurrentLocation();
  55. double probability = 0;
  56. double finalProbability = 1.0;
  57. Random random = new Random();
  58. int fireIndex = -1; // 记录发现火点的位置
  59. do
  60. {
  61. (currentLocation, _) =
  62. FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
  63. double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
  64. currentLocation.CurrentHei);
  65. double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
  66. FlightPlanEditor.targetpoint[0].TargetPointLatitude,
  67. FlightPlanEditor.targetpoint[0].TargetPointHeight);
  68. var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x,
  69. currentLocation.CurrentLat,
  70. targetPoint.y);
  71. Log.Info("距离:====================" + distance);
  72. if (distance < 20)
  73. {
  74. //TODO 和学生对接确认, 发现概率算法
  75. probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
  76. windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
  77. }
  78. finalProbability *= (1 - probability);
  79. Console.WriteLine(
  80. $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
  81. double randomValue = random.NextDouble(); // 生成随机数比较概率
  82. if (randomValue < (1 - finalProbability))
  83. {
  84. isseePerson = true;
  85. this.isseePerson = true;
  86. fireIndex = currentLocation.Currentsegnum; // 记录当前航路点位置
  87. IsOver = true;
  88. }
  89. else
  90. {
  91. isseePerson = false;
  92. }
  93. temptime += 10;
  94. } while (!isseePerson && IsOver == false);
  95. //Console.WriteLine(
  96. // $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
  97. Console.WriteLine(
  98. $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson},人员是否幸存:{Success}");
  99. finalProbability = 1 - finalProbability;
  100. if (fireIndex != -1)
  101. {
  102. // 删除目标点位置开始的所有后续航路点
  103. TurningPoints.RemoveRange(fireIndex + 1, TurningPoints.Count - fireIndex - 1);
  104. MissionPoint missionPoint = new MissionPoint
  105. {
  106. MissionPointLongitude = currentLocation.CurrentLon,
  107. MissionPointLatitude = currentLocation.CurrentLat,
  108. MissionPointHeight = currentLocation.CurrentHei
  109. };
  110. FXJHGenerate.SeaSouJiu2(FlightPlanEditor, missionPoint, ref TurningPoints);
  111. //发现的目标坐标,需要其他模型输入
  112. // TODO 与王子涵确认这个方法
  113. FXJHGenerate.FromMissionToEnd(FlightPlanEditor, MissionEndPoint, ref TurningPoints);
  114. }
  115. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  116. End();
  117. });
  118. }
  119. public override void End()
  120. {
  121. for (int i = 0; i < TurningPoints.Count - 2; i++)
  122. {
  123. EffMisTime += TurningPoints[i].SegmentFlightTime;
  124. }
  125. for (int i = 0; i < TurningPoints.Count - 3; i++)
  126. {
  127. SearchTime += TurningPoints[i].SegmentFlightTime; //搜索时间
  128. }
  129. for (int i = 0; i < TurningPoints.Count; i++)
  130. {
  131. TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间
  132. }
  133. TotalFuelConsumption = TurningPoints[0].RemainingFuel -
  134. TurningPoints[TurningPoints.Count - 1].RemainingFuel;
  135. }
  136. }
  137. [ObjectSystem]
  138. public class AircraftLandSJAwakeSystem : AwakeSystem<AircraftLandSJ, FlightPlanEditor>
  139. {
  140. public override void Awake(AircraftLandSJ self, FlightPlanEditor flightPlanEditor)
  141. {
  142. self.FlightPlanEditor = flightPlanEditor;
  143. self.Awake();
  144. }
  145. }