AircraftZS.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. using KYFramework;
  2. using Model;
  3. using SimulationServer.Utils;
  4. using Define = SimulationServer.Utils.Define;
  5. namespace SimulationServer;
  6. public class AircraftZS : AircraftEntity
  7. {
  8. public string NextMissionId; // 下一个任务ID
  9. public MissionEndPoint missionEndPoint = new MissionEndPoint();
  10. public int LandingPersonnel; //personCount
  11. public MHRescueMission mhRescueMission;
  12. public int 单次救援人数 = 80; // 任务文件读取
  13. public int 观察盘旋圈数 = 3; //任务文件读取
  14. public int landingPoint = 0;
  15. public List<AirRoute> airRoutes = new List<AirRoute>();
  16. public override void End()
  17. {
  18. }
  19. public override void Reset()
  20. {
  21. base.Reset();
  22. }
  23. public override void Start()
  24. {
  25. FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints);//生成从起点到任务段起点的航路点
  26. missionEndPoint.MissionEndPointLatitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  27. missionEndPoint.MissionEndPointLongitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  28. missionEndPoint.MissionEndPointHeight = FlightPlanEditor.targetpoint[0].TargetPointHeight;
  29. List<double> list = GenerateCircleTrajectory(FlightPlanEditor.targetpoint[0].TargetPointLatitude, FlightPlanEditor.targetpoint[0].TargetPointLongitude, 1, 360);
  30. //airRoutes = list
  31. for (int i = 0; i < 观察盘旋圈数; i++)
  32. {
  33. FXJHGenerate.ZhaoShuiJiuYuan(airRoutes, ref TurningPoints);
  34. }
  35. // FXJHGenerate.InitializeVelocities(FlightPlanEditor, TurningPoints, ref Velocitys);
  36. // FXJHGenerate.InitializeFuelConsumptions(FlightPlanEditor, TurningPoints,ref FuelConsumptions);
  37. FXJHGenerate.FromMissionToEnd(FlightPlanEditor, missionEndPoint, ref TurningPoints);
  38. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions); // 更新了 计算油耗的方法
  39. }
  40. // centerLat centerLon 想定里目标点的经纬度 radiusKm = 1 numPoints = 360 返回的airRoutes //
  41. // 生成圆形轨迹点,并以 double 列表形式返回(按经度-纬度顺序存储)
  42. public static List<double> GenerateCircleTrajectory(double centerLat, double centerLon, double radiusKm, int numPoints)
  43. {
  44. var points = new List<double>();
  45. double earthRadius = 6371.0; // 地球半径,单位:公里
  46. for (int i = 0; i < numPoints; i++)
  47. {
  48. double angle = 2 * Math.PI * i / numPoints; // 当前点的角度(弧度)
  49. // 计算偏移量
  50. double offsetLat = radiusKm / earthRadius; // 纬度的偏移量(弧度)
  51. double offsetLon = offsetLat / Math.Cos(ToRadians(centerLat)); // 经度的偏移量(弧度)
  52. // 计算该角度下的点的经纬度
  53. double newLat = centerLat + ToDegrees(offsetLat * Math.Cos(angle));
  54. double newLon = centerLon + ToDegrees(offsetLon * Math.Sin(angle));
  55. // 按经度在前,纬度在后顺序存储
  56. points.Add(newLon);
  57. points.Add(newLat);
  58. }
  59. return points;
  60. }
  61. // 弧度转换为角度
  62. static double ToDegrees(double radians)
  63. {
  64. return radians * 180.0 / Math.PI;
  65. }
  66. // 角度转换为弧度
  67. static double ToRadians(double degrees)
  68. {
  69. return degrees * Math.PI / 180.0;
  70. }
  71. //private double GetDistance(double lon1, double lon2, double lat1, double lat2)
  72. //{
  73. // double R = 6371; // 地球的半径(公里)
  74. // double dLat = (lat2 - lat1) * Math.PI / 180.0;
  75. // double dLon = (lon2 - lon1) * Math.PI / 180.0;
  76. // double a = Math.Sin(dLat / 2) * Math.Sin(dLat / 2) +
  77. // Math.Cos(lat1 * Math.PI / 180.0) * Math.Cos(lat2 * Math.PI / 180.0) *
  78. // Math.Sin(dLon / 2) * Math.Sin(dLon / 2);
  79. // double c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
  80. // double distance = R * c;
  81. // return distance;
  82. //}
  83. public override void Update(double time)
  84. {
  85. }
  86. }
  87. [ObjectSystem]
  88. public class AircraftZSAwakeSystem : AwakeSystem<AircraftZS, FlightPlanEditor>
  89. {
  90. public override void Awake(AircraftZS self, FlightPlanEditor flightPlanEditor)
  91. {
  92. self.FlightPlanEditor = flightPlanEditor;
  93. self.Awake();
  94. self.Reset();
  95. }
  96. }