123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- using KYFramework;
- using Model;
- using MongoDB.Bson;
- using MuShiApp;
- using SimulationCommon;
- using SimulationSingleServer.Utils;
- using Unity.Mathematics;
- using Point = SimulationCommon.Point;
- using Random = System.Random;
- using QuYuSaoMiao;
- namespace SimulationServer;
- public class AircraftLandSJ : AircraftEntity
- {
- public bool IsOver;
-
- // 这些参数不用写在这里
- 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)))";
- double interval = 300;//等高线高度间隔
- int MinLength = 1000;//最小等高线节点数
- double TrueH = 200;//航线真实高度
- int JG = 5;//输出等高线节点间隔
-
-
-
- // 模型的输入(就是上面那些参数)应该在这个任务配置文件中
- public LandSouJiuTask taskContent;
- public EquationHelper helper;
- public GetNCData getNCData;
- public bool isseePerson = false;
-
-
-
- public override void Reset()
- {
- base.Reset();
- IsOver = false;
- SearchTime = 0;
- TotalTime = 0;
- }
- public override void Start()
- {
- Velocitys = new double[5] { 220, 220, 60, 110, 0 }; // 速度
- List<double[]> Poly = new List<double[]>();
-
- List<double[]> route = ContourSearch.ContourSearch1(Poly, interval, MinLength, TrueH, JG, ContourSearch.DemHelper());
-
-
- // route 转成 List<AirRoute>
- List<AirRoute> airRoutes = new List<AirRoute>();
- foreach (var item in route)
- {
- airRoutes.Add(new AirRoute
- {
- AirRouteLatitude = item[1],
- AirRouteLongitude = item[0]
- });
- }
- FlightPlanEditor.airroute = airRoutes.ToArray();
- FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
- // TODO 与王子涵确认这个方法
- FXJHGenerate.LandSouJiu(FlightPlanEditor, ref TurningPoints);
- FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
- getNCData = new GetNCData();
- getNCData.GetData();
- Task.Run(() =>
- {
- bool isseePerson = false;
- double temptime = 0; // 自增时间,每次增加1s
- CurrentLocation currentLocation = new CurrentLocation();
- double probability = 0;
- double finalProbability = 1.0;
- Random random = new Random();
- int fireIndex = -1; // 记录发现火点的位置
- do
- {
- (currentLocation, _) =
- FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
- double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
- currentLocation.CurrentHei);
- double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
- FlightPlanEditor.targetpoint[0].TargetPointLatitude,
- FlightPlanEditor.targetpoint[0].TargetPointHeight);
- var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x, currentLocation.CurrentLat,
- targetPoint.y);
- Log.Info("距离:====================" + distance);
- if (distance < 20)
- {
- //TODO 和学生对接确认, 发现概率算法
- probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
- windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
- }
-
- finalProbability *= (1 - probability);
- Console.WriteLine(
- $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
- double randomValue = random.NextDouble(); // 生成随机数比较概率
- if (randomValue < (1 - finalProbability))
- {
- isseePerson = true;
- this.isseePerson = true;
- fireIndex = currentLocation.Currentsegnum; // 记录当前航路点位置
- IsOver = true;
- }
- else
- {
- isseePerson = false;
- }
- temptime += 10;
- } while (!isseePerson && IsOver == false);
- //Console.WriteLine(
- // $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
- Console.WriteLine(
- $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson},人员是否幸存:{Success}");
- finalProbability = 1 - finalProbability;
- if (fireIndex != -1)
- {
- // 删除目标点位置开始的所有后续航路点
- TurningPoints.RemoveRange(fireIndex + 1, TurningPoints.Count - fireIndex - 1);
- MissionPoint missionPoint = new MissionPoint
- {
- MissionPointLongitude = currentLocation.CurrentLon,
- MissionPointLatitude = currentLocation.CurrentLat,
- MissionPointHeight = currentLocation.CurrentHei
- };
- FXJHGenerate.SeaSouJiu2(FlightPlanEditor, missionPoint, ref TurningPoints);
- //发现的目标坐标,需要其他模型输入
- // TODO 与王子涵确认这个方法
- FXJHGenerate.FromMissionToEnd(FlightPlanEditor, MissionEndPoint, ref TurningPoints);
- }
- FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
- End();
- });
- }
- public override void End()
- {
- for (int i = 0; i < TurningPoints.Count - 2; i++)
- {
- EffMisTime += TurningPoints[i].SegmentFlightTime;
- }
- for (int i = 0; i < TurningPoints.Count - 3; i++)
- {
- SearchTime += TurningPoints[i].SegmentFlightTime; //搜索时间
- }
- for (int i = 0; i < TurningPoints.Count; i++)
- {
- TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间
- }
- TotalFuelConsumption = TurningPoints[0].RemainingFuel -
- TurningPoints[TurningPoints.Count - 1].RemainingFuel;
- }
- }
- [ObjectSystem]
- public class AircraftLandSJAwakeSystem : AwakeSystem<AircraftLandSJ, FlightPlanEditor>
- {
- public override void Awake(AircraftLandSJ self, FlightPlanEditor flightPlanEditor)
- {
- self.FlightPlanEditor = flightPlanEditor;
- self.Awake();
- }
- }
|