|
@@ -111,20 +111,29 @@ public class AircraftLandSJ : AircraftEntity
|
|
FXJHGenerate.LandSouJiu(FlightPlanEditor, ref TurningPoints);
|
|
FXJHGenerate.LandSouJiu(FlightPlanEditor, ref TurningPoints);
|
|
|
|
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
-
|
|
|
|
|
|
+
|
|
double time = 0; // 第一次 搜寻结束
|
|
double time = 0; // 第一次 搜寻结束
|
|
for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
{
|
|
{
|
|
- time += TurningPoints[i].SegmentFlightTime;
|
|
|
|
|
|
+ time += TurningPoints[i].SegmentFlightTime;
|
|
}
|
|
}
|
|
|
|
|
|
double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
|
|
double3 targetPoint = new double3(FlightPlanEditor.targetpoint[0].TargetPointLongitude,
|
|
FlightPlanEditor.targetpoint[0].TargetPointLatitude,
|
|
FlightPlanEditor.targetpoint[0].TargetPointLatitude,
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
|
|
|
|
- string cityName = helper.getCityName(targetPoint.x,targetPoint.y);
|
|
|
|
|
|
+ string cityName = helper.getCityName(targetPoint.x, targetPoint.y);
|
|
//var visibility = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
//var visibility = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
- var visibility = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
|
|
|
+ string year = taskContent.missionInformation.StartDate.Split("年")[0];
|
|
|
|
+ string month = taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[0];
|
|
|
|
+ if (Convert.ToInt32(month) < 10) month = "0" + month;
|
|
|
|
+ string day = taskContent.missionInformation.StartDate.Split("年")[1].Split("月")[1].Split("日")[0];
|
|
|
|
+ if (Convert.ToInt32(day) < 10) day = "0" + day;
|
|
|
|
+ //string hour = taskContent.missionInformation.StartTime.Split("时")[0];
|
|
|
|
+ string date = year + "-" + month + "-" + day;// + " " + hour;
|
|
|
|
+ //Console.Write(date);
|
|
|
|
+ //Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
|
+ var visibility = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, date); //DateTime.Now.ToString("yyyy-MM-dd HH")
|
|
|
|
|
|
getNCData = new GetNCData();
|
|
getNCData = new GetNCData();
|
|
getNCData.GetData();
|
|
getNCData.GetData();
|
|
@@ -140,20 +149,20 @@ public class AircraftLandSJ : AircraftEntity
|
|
//IsOver = true;
|
|
//IsOver = true;
|
|
do
|
|
do
|
|
{
|
|
{
|
|
-
|
|
|
|
|
|
+
|
|
if (!isseePerson && temptime >= time)
|
|
if (!isseePerson && temptime >= time)
|
|
{
|
|
{
|
|
FXJHGenerate.LandSouJiu(FlightPlanEditor, ref TurningPoints);
|
|
FXJHGenerate.LandSouJiu(FlightPlanEditor, ref TurningPoints);
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor, ref TurningPoints, Velocitys, FuelConsumptions);
|
|
-
|
|
|
|
|
|
+
|
|
time = 0;
|
|
time = 0;
|
|
for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
for (int i = 0; i < TurningPoints.Count - 2; i++)
|
|
{
|
|
{
|
|
- time += TurningPoints[i].SegmentFlightTime;
|
|
|
|
|
|
+ time += TurningPoints[i].SegmentFlightTime;
|
|
}
|
|
}
|
|
- Log.Info($"+++++++++++搜寻结束 TurningPoints Count: { TurningPoints.Count } 下次结束的时间 { time }++++++++++++++++");
|
|
|
|
|
|
+ Log.Info($"+++++++++++搜寻结束 TurningPoints Count: {TurningPoints.Count} 下次结束的时间 {time}++++++++++++++++");
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
(currentLocation, _) =
|
|
(currentLocation, _) =
|
|
FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
|
|
FXJHGenerate.GetAllCurrentLocation(TurningPoints, temptime); // 获取飞机当前位置
|
|
double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
|
|
double3 aricraftPoint = new double3(currentLocation.CurrentLon, currentLocation.CurrentLat,
|
|
@@ -165,26 +174,26 @@ public class AircraftLandSJ : AircraftEntity
|
|
Log.Info("距离:====================" + distance);
|
|
Log.Info("距离:====================" + distance);
|
|
|
|
|
|
probability =
|
|
probability =
|
|
- helper.GetMushiLandProbability(aricraftPoint, visibility, FlightPlanEditor.targetpoint[0]);
|
|
|
|
|
|
+ helper.GetMushiLandProbability(aricraftPoint, visibility, FlightPlanEditor.targetpoint[0]);
|
|
//finalProbability *= (1 - probability);
|
|
//finalProbability *= (1 - probability);
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
if (probability > 0.8)
|
|
if (probability > 0.8)
|
|
{
|
|
{
|
|
probability -= 0.5f;
|
|
probability -= 0.5f;
|
|
|
|
|
|
probability *= random.NextDouble();
|
|
probability *= random.NextDouble();
|
|
- double random1 = random.NextInt64(8000,9200); // 生成随机数比较概率 调整概率使任务成功率降低 至 5%(0.05) 第一个参数越低概率越低 // 1000
|
|
|
|
|
|
+ double random1 = random.NextInt64(8000, 9200); // 生成随机数比较概率 调整概率使任务成功率降低 至 5%(0.05) 第一个参数越低概率越低 // 1000
|
|
random1 /= 10000;
|
|
random1 /= 10000;
|
|
probability += (0.5 * random1);
|
|
probability += (0.5 * random1);
|
|
}
|
|
}
|
|
-
|
|
|
|
- double randomValue = random.NextInt64(9006,10000); // 生成随机数比较概率 调整概率使任务成功率降低 至 5%(0.05) 第一个参数越高概率越低
|
|
|
|
- randomValue /= 10000;
|
|
|
|
-
|
|
|
|
- Log.Info(
|
|
|
|
- $"陆上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到遇险人员:{isseePerson}");
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ double randomValue = random.NextInt64(9006, 10000); // 生成随机数比较概率 调整概率使任务成功率降低 至 5%(0.05) 第一个参数越高概率越低
|
|
|
|
+ randomValue /= 10000;
|
|
|
|
+
|
|
|
|
+ Log.Info(
|
|
|
|
+ $"陆上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到遇险人员:{isseePerson}");
|
|
|
|
+
|
|
if (randomValue < probability) // 1 - finalProbability
|
|
if (randomValue < probability) // 1 - finalProbability
|
|
{
|
|
{
|
|
isseePerson = true;
|
|
isseePerson = true;
|
|
@@ -199,7 +208,7 @@ public class AircraftLandSJ : AircraftEntity
|
|
}
|
|
}
|
|
|
|
|
|
temptime += 10;
|
|
temptime += 10;
|
|
- if(temptime >= taskContent.missionInformation.TaskEndConditions.TaskTime)
|
|
|
|
|
|
+ if (temptime >= taskContent.missionInformation.TaskEndConditions.TaskTime)
|
|
{
|
|
{
|
|
IsOver = true;
|
|
IsOver = true;
|
|
isseePerson = false;
|
|
isseePerson = false;
|