AircraftLandSJ.cs 7.5 KB

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