|
@@ -25,8 +25,18 @@ public class AircraftSJ : AircraftEntity
|
|
|
public SeaSouJiuTask taskContent;
|
|
|
public bool Success = true;
|
|
|
|
|
|
+ public override void Reset()
|
|
|
+ {
|
|
|
+ base.Reset();
|
|
|
+ IsOver = false;
|
|
|
+ isseefire = false;
|
|
|
+ Success = true;
|
|
|
+ }
|
|
|
+
|
|
|
public override void Start()
|
|
|
{
|
|
|
+ Velocitys = new double[5] {220, 220, 60, 110, 0};
|
|
|
+
|
|
|
|
|
|
double[] initialPosition =
|
|
|
{
|
|
@@ -71,19 +81,60 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
if (taskContent.SearchMode == "扇形搜索")
|
|
|
{
|
|
|
- waypoints = SectorSearch.PerformSearch(taskContent.SearchWidth);
|
|
|
+
|
|
|
+ var startPoint1 = new Point
|
|
|
+ {
|
|
|
+ lat = points[0].lat/2 + points[1].lat/2,
|
|
|
+ lon = points[0].lon/2 + points[1].lon/2
|
|
|
+ };
|
|
|
+ var startPoint2 = new Point
|
|
|
+ {
|
|
|
+ lat = points[2].lat/2 + points[3].lat/2,
|
|
|
+ lon = points[2].lon/2 + points[3].lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+ var centerPoint = new Point
|
|
|
+ {
|
|
|
+ lat = startPoint1.lat/2 + startPoint2.lat/2,
|
|
|
+ lon = startPoint1.lon/2 + startPoint2.lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
+ waypoints = SectorSearch.sectorSearch(centerPoint, 30, taskContent.SearchWidth);
|
|
|
}
|
|
|
|
|
|
if (taskContent.SearchMode == "扩展矩形搜索")
|
|
|
{
|
|
|
- waypoints = TZFX.GenerateWaypoints(points[0], points[1], points[2], points[3], 20, taskContent.SearchWidth);
|
|
|
+
|
|
|
+ var startPoint1 = new Point
|
|
|
+ {
|
|
|
+ lat = points[0].lat/2 + points[1].lat/2,
|
|
|
+ lon = points[0].lon/2 + points[1].lon/2
|
|
|
+ };
|
|
|
+ var startPoint2 = new Point
|
|
|
+ {
|
|
|
+ lat = points[2].lat/2 + points[3].lat/2,
|
|
|
+ lon = points[2].lon/2 + points[3].lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+ var centerPoint = new Point
|
|
|
+ {
|
|
|
+ lat = startPoint1.lat/2 + startPoint2.lat/2,
|
|
|
+ lon = startPoint1.lon/2 + startPoint2.lon/2
|
|
|
+ };
|
|
|
+
|
|
|
+ var lonD = Math.Abs(points[0].lon - points[1].lon);
|
|
|
+ var latD1 = Math.Abs(points[1].lat - points[2].lat);
|
|
|
+ var max = Math.Max(lonD, latD1);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ var temp0 = new Point(centerPoint.lat + max/2, centerPoint.lon - max/2);
|
|
|
+ var temp1 = new Point(centerPoint.lat + max/2, centerPoint.lon + max/2);
|
|
|
+ var temp2 = new Point(centerPoint.lat - max/2, centerPoint.lon + max/2);
|
|
|
+ var temp3 = new Point(centerPoint.lat - max/2, centerPoint.lon - max/2);
|
|
|
+ waypoints = TZFX.GenerateWaypoints(temp0, temp1, temp2, temp3, max, taskContent.SearchWidth);
|
|
|
}
|
|
|
- Log.Info("===========================");
|
|
|
- Log.Info( FlightPlanEditor.targetpoint[0].ToJson());
|
|
|
- Log.Info("===========================");
|
|
|
- Log.Info(points.ToJson());
|
|
|
- Log.Info("===========================");
|
|
|
- Log.Info(waypoints.ToJson());
|
|
|
|
|
|
List<AirRoute> airRoutes = new List<AirRoute>();
|
|
|
foreach (var item in waypoints)
|
|
@@ -94,11 +145,6 @@ public class AircraftSJ : AircraftEntity
|
|
|
AirRouteLongitude = item.lon
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
FlightPlanEditor.airroute = airRoutes.ToArray();
|
|
|
|
|
@@ -127,7 +173,7 @@ public class AircraftSJ : AircraftEntity
|
|
|
do
|
|
|
{
|
|
|
(currentLocation, _) =
|
|
|
- FXJHGenerate.GetCurrentLocation(TurningPoints, FlightPlanEditor, temptime);
|
|
|
+ FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime);
|
|
|
double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
|
|
|
currentLocation.CurrentHei);
|
|
|
|
|
@@ -153,24 +199,6 @@ public class AircraftSJ : AircraftEntity
|
|
|
probability = helper.getProbability(aricraftPoint, targetPoint, currentLocation.CurrentCourse,
|
|
|
windSpeed, waveHigh, "落水人员", "海上");
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
finalProbability *= (1 - probability);
|
|
|
|
|
@@ -189,11 +217,10 @@ public class AircraftSJ : AircraftEntity
|
|
|
isseefire = false;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- temptime += 1;
|
|
|
+ temptime += 10;
|
|
|
} while (!isseefire && IsOver == false);
|
|
|
-
|
|
|
+ Console.WriteLine(
|
|
|
+ $"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 - finalProbability},是否看到落水人员:{isseefire}");
|
|
|
finalProbability = 1 - finalProbability;
|
|
|
|
|
|
if (fireIndex != -1)
|
|
@@ -241,26 +268,27 @@ public class AircraftSJ : AircraftEntity
|
|
|
|
|
|
TotalFuelConsumption = TurningPoints[0].RemainingFuel -
|
|
|
TurningPoints[TurningPoints.Count - 1].RemainingFuel;
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ GetNCData getNCData = new GetNCData();
|
|
|
+ getNCData.GetData();
|
|
|
+
|
|
|
+ double time = TotalTime;
|
|
|
+
|
|
|
+ double latitude = FlightPlanEditor.targetpoint[0].TargetPointLatitude;
|
|
|
+ double longitude = FlightPlanEditor.targetpoint[0].TargetPointLongitude;
|
|
|
+
|
|
|
+ double survivalTime = SurvivalTimeModel.SurvivalTime(getNCData.tempreadNC, latitude, longitude, time);
|
|
|
+
|
|
|
+ if (survivalTime * 3600 > time)
|
|
|
+ {
|
|
|
+ Success = true;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Success = false;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|