AircraftLandSJ.cs 7.1 KB

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