AircraftSJ.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. using KYFramework;
  2. using Model;
  3. using MongoDB.Bson;
  4. using MuShiApp;
  5. using Org.BouncyCastle.Asn1.Pkcs;
  6. using SimulationCommon;
  7. using SimulationSingleServer.Utils;
  8. using Unity.Mathematics;
  9. using Point = SimulationCommon.Point;
  10. using Random = System.Random;
  11. namespace SimulationServer;
  12. public class AircraftSJ : AircraftEntity
  13. {
  14. public bool IsOver;
  15. private MissionEndPoint MissionEndPoint;
  16. private CurrentLocation currentLocation;
  17. private double temptime = 0;
  18. private double probability = 0;
  19. private double finalProbability = 1.0;
  20. public bool isseePerson = false;
  21. private int fireIndex = -1; // 记录发现火点的位置
  22. public EquationHelper helper;
  23. public SeaSouJiuTask taskContent;
  24. public bool Success = false; //本目标搜救是否成功
  25. public GetNCData getNCData;
  26. public double resulttime;
  27. public SearchMissionPayload searchMissionPayload;
  28. //private bool isbool;
  29. //private bool isbool2;
  30. //Text_readNC text_ReadNC;
  31. public SearchMissionMode SearchMode;
  32. int Days;
  33. int Hour;
  34. public int targetCount;
  35. public bool isEndWhile;
  36. public int sbCount;
  37. public override void Reset()
  38. {
  39. base.Reset();
  40. IsOver = false;
  41. isseePerson = false;
  42. Success = false;
  43. SearchTime = 0;
  44. TotalTime = 0;
  45. resulttime = 0;
  46. isEndWhile = false;
  47. targetCount = 0;
  48. sbCount = 0;
  49. }
  50. public override void Start()
  51. {
  52. if (FlightPlanEditor.targetpoint[0].TargetType.Type == "落水人员")
  53. {
  54. targetCount = FlightPlanEditor.targetpoint[0].TargetType.Count;
  55. sbCount = targetCount;
  56. }
  57. else
  58. sbCount = 1;
  59. int Year = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[0]);
  60. int Month = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0]);
  61. int Day = Convert.ToInt32(taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0]);
  62. Hour = Convert.ToInt32(taskContent.missionInformation.StartTime.Split("时")[0]);
  63. Days = GetDaysInYear(Year, Month, Day);
  64. //Console.WriteLine("Day:" + Days);
  65. Velocitys = new double[5] { 220, 220, 60, 110, 0 }; // 速度
  66. //TODO 计算 AirRoute[]
  67. double[] initialPosition =
  68. {
  69. FlightPlanEditor.targetpoint[0].TargetPointLatitude, FlightPlanEditor.targetpoint[0].TargetPointLongitude
  70. };
  71. double dt = 1;
  72. double totalTime = 24.0;
  73. //if (!isbool2)
  74. //{
  75. Text_readNC text_ReadNC = new Text_readNC();
  76. text_ReadNC.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  77. text_ReadNC.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  78. //text_ReadNC = new Text_readNC();
  79. text_ReadNC.GetNCData();
  80. text_ReadNC.GetWaveHighData();
  81. //isbool2 = true;
  82. //}
  83. var nCread = text_ReadNC.windNCread;
  84. //漂移轨迹
  85. List<double[]> trajectory = SeaSJ.CalculateDriftTrajectory(nCread, initialPosition, dt, totalTime, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, text_ReadNC.times1, text_ReadNC.latitudes1, text_ReadNC.longitudes1, text_ReadNC.times2, text_ReadNC.latitudes2, text_ReadNC.longitudes2, text_ReadNC.times3, text_ReadNC.latitudes3, text_ReadNC.longitudes3, Days, Hour, text_ReadNC.initlatitudes, text_ReadNC.initlongitudes);
  86. // 生成任务终点
  87. MissionEndPoint = new MissionEndPoint
  88. {
  89. MissionEndPointLongitude = trajectory[^1][1],
  90. MissionEndPointLatitude = trajectory[^1][0],
  91. MissionEndPointHeight = 0
  92. };
  93. var temp = SeaSJ.getminEnclosingRect(trajectory); //
  94. // temp 转成 List<Point>
  95. List<Point> points = new List<Point>();
  96. foreach (var item in temp)
  97. {
  98. points.Add(new Point(item[0], item[1]));
  99. }
  100. //foreach (var item in points)
  101. //{
  102. // Console.WriteLine("item:" + item.lat + "-" + item.lon);
  103. //}
  104. Point basePoint = new Point(FlightPlanEditor.originbase.BaseLatitude,
  105. FlightPlanEditor.originbase.BaseLongitude);
  106. List<Point> waypoints = new List<Point>();
  107. //*******
  108. if (SearchMode.SearchMode == "平行线搜索")
  109. {
  110. waypoints = ParallellineSearch.parallellineSearch(basePoint, points, SearchMode.SearchWidth);
  111. }
  112. if (SearchMode.SearchMode == "扇形搜索")
  113. {
  114. // 求 points 的中心点
  115. var startPoint1 = new Point
  116. {
  117. lat = points[0].lat / 2 + points[1].lat / 2,
  118. lon = points[0].lon / 2 + points[1].lon / 2
  119. };
  120. var startPoint2 = new Point
  121. {
  122. lat = points[2].lat / 2 + points[3].lat / 2,
  123. lon = points[2].lon / 2 + points[3].lon / 2
  124. };
  125. var centerPoint = new Point
  126. {
  127. lat = startPoint1.lat / 2 + startPoint2.lat / 2,
  128. lon = startPoint1.lon / 2 + startPoint2.lon / 2
  129. };
  130. waypoints = SectorSearch.sectorSearch(centerPoint, 30, SearchMode.SearchWidth);
  131. }
  132. if (SearchMode.SearchMode == "扩展矩形搜索")
  133. {
  134. // 求 points 的中心点
  135. var startPoint1 = new Point
  136. {
  137. lat = points[0].lat / 2 + points[1].lat / 2,
  138. lon = points[0].lon / 2 + points[1].lon / 2
  139. };
  140. //Console.WriteLine("startPoint1:" + startPoint1.lat + "-" + startPoint1.lon);
  141. var startPoint2 = new Point
  142. {
  143. lat = points[2].lat / 2 + points[3].lat / 2,
  144. lon = points[2].lon / 2 + points[3].lon / 2
  145. };
  146. //Console.WriteLine("startPoint2:" + startPoint2.lat + "-" + startPoint2.lon);
  147. var centerPoint = new Point
  148. {
  149. lat = startPoint1.lat / 2 + startPoint2.lat / 2,
  150. lon = startPoint1.lon / 2 + startPoint2.lon / 2
  151. };
  152. //Console.WriteLine("centerPoint:" + centerPoint.lat + "-" + centerPoint.lon);
  153. // 以 centerPoint 为中心,生成正方形区域
  154. var lonD = Math.Abs(points[0].lon - points[1].lon);
  155. var latD1 = Math.Abs(points[1].lat - points[2].lat);
  156. var max = Math.Max(lonD, latD1);
  157. //Console.WriteLine("max:" + max);
  158. // 以 distance 为边长 以 centerPoint 为中心点的正方形
  159. var temp0 = new Point(centerPoint.lat + max / 2, centerPoint.lon - max / 2);
  160. var temp1 = new Point(centerPoint.lat + max / 2, centerPoint.lon + max / 2);
  161. var temp2 = new Point(centerPoint.lat - max / 2, centerPoint.lon + max / 2);
  162. var temp3 = new Point(centerPoint.lat - max / 2, centerPoint.lon - max / 2);
  163. //Console.WriteLine("temp0:" + temp0.lat + "-" + temp0.lon);
  164. //Console.WriteLine("temp1:" + temp1.lat + "-" + temp1.lon);
  165. //Console.WriteLine("temp2:" + temp2.lat + "-" + temp2.lon);
  166. //Console.WriteLine("temp3:" + temp3.lat + "-" + temp3.lon);
  167. //Console.WriteLine("SearchWidth:" + SearchMode.SearchWidth);
  168. waypoints = TZFX.GenerateWaypoints(temp0, temp1, temp2, temp3, max, SearchMode.SearchWidth);
  169. }
  170. //foreach (var item in waypoints)
  171. //{
  172. // Console.WriteLine("item.lat :" + item.lat + "-" + "item.lon:" + item.lon);
  173. //}
  174. // List<Point> 转成 List<AirRoute>
  175. List<AirRoute> airRoutes = new List<AirRoute>();
  176. foreach (var item in waypoints)
  177. {
  178. airRoutes.Add(new AirRoute
  179. {
  180. AirRouteLatitude = item.lat,
  181. AirRouteLongitude = item.lon
  182. });
  183. }
  184. FlightPlanEditor.airroute = airRoutes.ToArray();
  185. MissionPoint missionPoint = new MissionPoint();
  186. missionPoint.MissionPointLatitude = waypoints[0].lat;
  187. missionPoint.MissionPointLongitude = waypoints[0].lon;
  188. FlightPlanEditor.missionpoint = missionPoint;
  189. FXJHGenerate.FromStartToMission(FlightPlanEditor, ref TurningPoints); //生成从起点到任务段起点的航路点
  190. FXJHGenerate.SeaSouJiu(FlightPlanEditor, ref TurningPoints);
  191. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  192. double time = 0; // 第一次 搜寻结束
  193. for (int i = 0; i < TurningPoints.Count - 2; i++)
  194. {
  195. time += TurningPoints[i].SegmentFlightTime;
  196. }
  197. double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
  198. FlightPlanEditor.targetpoint[0].TargetPointLatitude,
  199. FlightPlanEditor.targetpoint[0].TargetPointHeight);
  200. string cityName = helper.getCityName(targetPoint.x, targetPoint.y);
  201. //var vis = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
  202. string year = taskContent.missionInformation.StartDate.Split("年")[0];
  203. string month = taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0];
  204. if (Convert.ToInt32(month) < 10) month = "0" + month;
  205. string day = taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0];
  206. if (Convert.ToInt32(day) < 10) day = "0" + day;
  207. //string hour = taskContent.missionInformation.StartTime.Split("时")[0];
  208. string date = year + "-" + month + "-" + day;// + " " + hour;
  209. //Console.Write(date);
  210. //Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH"));
  211. var vis = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, date); //DateTime.Now.ToString("yyyy-MM-dd HH")
  212. //if (!isbool)
  213. //{
  214. getNCData = new GetNCData();
  215. getNCData.initlatitudes = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
  216. getNCData.initlongitudes = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
  217. getNCData.GetData();
  218. //isbool = true;
  219. //}
  220. Task.Run(() =>
  221. {
  222. bool isseePerson = false; // 输出表格平均救助时间没看到人是0看到人调用下面get_result_time_rope方法 //人员存活率需要重新算读取Editor搜救目标点初始坐标人数 //任务准备时间取值所有任务最小
  223. double temptime = 0; // 自增时间,每次增加1s
  224. CurrentLocation currentLocation = new CurrentLocation();
  225. double probability = 0;
  226. double finalProbability = 1.0;
  227. Random random = new Random();
  228. int fireIndex = -1; // 记录发现火点的位置
  229. double windSpeed = 0;
  230. do
  231. {
  232. if (!isseePerson && temptime >= time)
  233. {
  234. FXJHGenerate.SeaSouJiu(FlightPlanEditor, ref TurningPoints);
  235. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  236. time = 0;
  237. for (int i = 0; i < TurningPoints.Count - 2; i++)
  238. {
  239. time += TurningPoints[i].SegmentFlightTime;
  240. }
  241. Log.Info($"+++++++++++搜寻结束 TurningPoints Count: {TurningPoints.Count} 下次结束的时间 {time}++++++++++++++++");
  242. }
  243. (currentLocation, _) =
  244. FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
  245. double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
  246. currentLocation.CurrentHei);
  247. double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
  248. FlightPlanEditor.targetpoint[0].TargetPointLatitude,
  249. FlightPlanEditor.targetpoint[0].TargetPointHeight);
  250. var wind = SeaSJ.GetWindVelocityFromAPI(nCread, currentLocation.CurrentLat, currentLocation.CurrentLon,
  251. temptime, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, text_ReadNC.times1, text_ReadNC.latitudes1, text_ReadNC.longitudes1, Days, Hour);
  252. windSpeed = Math.Sqrt(wind[0] * wind[0] + wind[1] * wind[1]);
  253. var waveHigh = SeaSJ.GetWaveHeightFromAPI(nCread, currentLocation.CurrentLon,
  254. currentLocation.CurrentLat, temptime, text_ReadNC.times4, text_ReadNC.latitudes4, text_ReadNC.longitudes4, Days, Hour);
  255. var distance = Utils.Util.GetDistance(currentLocation.CurrentLon, targetPoint.x,
  256. currentLocation.CurrentLat,
  257. targetPoint.y);
  258. //Console.WriteLine("targetPoint:" + targetPoint.x + "-" + targetPoint.y + "-" + targetPoint.z);
  259. Log.Info("距离:====================" + distance);
  260. //Console.WriteLine("searchMissionPayload.SearchPayload:" + searchMissionPayload.SearchPayload);
  261. if (searchMissionPayload.SearchPayload == "雷达搜索")
  262. {
  263. // Pd0 = 0.5 / Pf0 = Math.Pow(10,-6) / Pf = Math.Pow(10,-6) / R0 = 23645 / sigma0 = 5000 / sigma = Editor雷达截面面积 // R 单位m
  264. probability = helper.GetRadarPossibility(0.5, Math.Pow(10, -6), Math.Pow(10, -6), 23645, aricraftPoint, FlightPlanEditor.targetpoint[0], FlightPlanEditor.targetpoint[0].TargetType.RadarArea, 5000, vis);
  265. }
  266. else if (searchMissionPayload.SearchPayload == "目视搜索")
  267. {
  268. probability = helper.GetMushiSeaProbability(aricraftPoint, vis, waveHigh, FlightPlanEditor.targetpoint[0]);
  269. }
  270. else if (searchMissionPayload.SearchPayload == "光电(红外)搜索")
  271. {
  272. // Lt = 探测目标亮度 Editor / At = 探测目标面积 Editor / τa = 1 / Lb = 3 / A0 = 1 / D0 = 0.075 / Dstar = 3 / τo = 0.8 / Ad = 0.0073728 / Δf = 0.125 / δ = 0.5 / Pf0 = Math.Pow(10, -6);
  273. probability = helper.GetInfraredDetectionProbability(FlightPlanEditor.targetpoint[0].TargetType.TargetBrightness, FlightPlanEditor.targetpoint[0].TargetType.TargetArea, 1, 3, 1, aricraftPoint, FlightPlanEditor.targetpoint[0], 0.075, 3, 0.8, 0073728, 0.125, 0.5, Math.Pow(10, -6));
  274. }
  275. // probability = helper.getProbability(aricraftPoint, targetPoint,pb, currentLocation.CurrentCourse,
  276. // windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
  277. //finalProbability *= (1 - probability);
  278. // 到搜寻航路点的最后一个点 (?)
  279. Log.Info(
  280. $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到目标:{isseePerson}");
  281. double randomValue = random.NextInt64(9006, 10000); // 生成随机数比较概率 //0.05 第一个参数越高概率越低 / 8985 0.212 100 / 9000 0.16 100 / 8995 0.14 100 / 8997 0.12 100 / 8999 0.18 100 / 9006 0.11 100 / 9010 0.12 100 / 9030 0.03 100 / 9026 0.07 0.04 100 / 9028 0.03 100 / 9027 0.04 100 / 9025 0.05 100 /
  282. //9025 0.02 100 / 9015 0.02 100 / 9020 0.04 100 / 9022 0.05 100 / 9022 0.04 100 / 9022 0 100 /9018 0.01 100 / 9021 0.01 100 / 9023 0.03 100 / 9000 0.08 100 / 9006
  283. randomValue /= 10000;
  284. //randomValue = 0.8;
  285. if (randomValue < probability) // 1 - finalProbability
  286. {
  287. isseePerson = true;
  288. this.isseePerson = true;
  289. fireIndex = currentLocation.Currentsegnum; // 记录当前航路点位置
  290. //IsOver = true;
  291. isEndWhile = true;
  292. }
  293. else
  294. {
  295. isseePerson = false;
  296. }
  297. if (temptime >= taskContent.missionInformation.TaskEndConditions.TaskTime)
  298. {
  299. //IsOver = true;
  300. isEndWhile = true;
  301. isseePerson = false;
  302. fireIndex = currentLocation.Currentsegnum;
  303. }
  304. temptime += 10;
  305. } while (!isseePerson && !isEndWhile); //IsOver == false
  306. //finalProbability = 1 - finalProbability;
  307. if (fireIndex != -1)
  308. {
  309. // 删除目标点位置开始的所有后续航路点
  310. TurningPoints.RemoveRange(fireIndex + 1, TurningPoints.Count - fireIndex - 1);
  311. MissionPoint missionPoint = new MissionPoint
  312. {
  313. MissionPointLongitude = currentLocation.CurrentLon,
  314. MissionPointLatitude = currentLocation.CurrentLat,
  315. MissionPointHeight = currentLocation.CurrentHei
  316. };
  317. FXJHGenerate.SeaSouJiu2(FlightPlanEditor, missionPoint, ref TurningPoints);
  318. //发现的目标坐标,需要其他模型输入
  319. FXJHGenerate.FromMissionToEnd(FlightPlanEditor, MissionEndPoint, ref TurningPoints);
  320. }
  321. if (isseePerson)
  322. {
  323. double seeTime = 0;
  324. if (FlightPlanEditor.targetpoint[0].TargetType.Type == "落水人员")
  325. {
  326. for (int i = 0; i < TurningPoints.Count - 1; i++)
  327. {
  328. seeTime += TurningPoints[i].SegmentFlightTime;
  329. }
  330. //time = TotalTime; //time——搜索时间,单位:秒;数据测试用
  331. double latitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude; //落水人员纬度;数据测试用
  332. double longitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude; //落水人员经度,数据测试用
  333. double survivalTime = SurvivalTimeModel.SurvivalTime(getNCData.tempreadNC, latitude, longitude, time, text_ReadNC.times, text_ReadNC.latitudes, text_ReadNC.longitudes, Days, Hour); //幸存时间
  334. // SHJParameter.person_number = Eidtor里读取 SHJParameter.windspeed Nc/Editor目标气象信息读取时间先取任务初始时间
  335. resulttime = get_result_time_rope(30, FlightPlanEditor.targetpoint[0].TargetType.Count, windSpeed, vis, 0.75, 1.38).time; //调运时间
  336. Console.WriteLine("resulttime:" + resulttime);
  337. if (survivalTime * 3600 > seeTime)
  338. {
  339. Success = true;
  340. }
  341. //Log.Info("TotalTime:" + TotalTime);
  342. //Log.Info("幸存时间:" + survivalTime);
  343. }
  344. }
  345. //Console.WriteLine(
  346. // $"海上任务1:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseePerson}");
  347. Log.Info(
  348. $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到目标:{isseePerson},人员是否幸存:{Success}");
  349. FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
  350. End();
  351. });
  352. }
  353. public static handling_result get_result_time_rope(double H, int person_number, double windspeed, double vis, double upspeed, double downspeed)
  354. {
  355. handling_result result = new handling_result();
  356. if (windspeed < 8 && vis > 3)
  357. {
  358. result.time = (person_number * H) / downspeed + (person_number * H) / upspeed;
  359. result.success = true;
  360. }
  361. else
  362. {
  363. result.success = false;
  364. }
  365. return result;
  366. }
  367. public static int GetDaysInYear(int year, int month, int day)
  368. {
  369. int[] daysInMonths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  370. if (IsLeapYear(year))
  371. {
  372. daysInMonths[1] = 29;
  373. }
  374. int days = day;
  375. for (int i = 0; i < month - 1; i++)
  376. {
  377. days += daysInMonths[i];
  378. }
  379. return days;
  380. }
  381. public static bool IsLeapYear(int year)
  382. {
  383. return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
  384. }
  385. public override void End()
  386. {
  387. for (int i = 0; i < TurningPoints.Count - 2; i++)
  388. {
  389. EffMisTime += TurningPoints[i].SegmentFlightTime;
  390. }
  391. for (int i = 0; i < TurningPoints.Count - 3; i++)
  392. {
  393. SearchTime += TurningPoints[i].SegmentFlightTime; //搜索时间
  394. }
  395. for (int i = 0; i < TurningPoints.Count; i++)
  396. {
  397. TotalTime += TurningPoints[i].SegmentFlightTime; // 总时间
  398. }
  399. TotalFuelConsumption = TurningPoints[0].RemainingFuel -
  400. TurningPoints[TurningPoints.Count - 1].RemainingFuel;
  401. //GetNCData getNCData = new GetNCData();
  402. ////getNCData.GetData();
  403. IsOver = true;
  404. }
  405. }
  406. [ObjectSystem]
  407. public class AircraftSJAwakeSystem : AwakeSystem<AircraftSJ, FlightPlanEditor>
  408. {
  409. public override void Awake(AircraftSJ self, FlightPlanEditor flightPlanEditor)
  410. {
  411. self.FlightPlanEditor = flightPlanEditor;
  412. self.helper = new EquationHelper(HttpInterface.baseUrl);
  413. self.Awake();
  414. }
  415. }