|
@@ -31,16 +31,30 @@ public class AircraftXH : Entity
|
|
|
public bool isOver = false;
|
|
|
public double TaskReadyTime;
|
|
|
public bool SyncOver;
|
|
|
+ // 火情入场时间
|
|
|
+ public double FireEnterTime;
|
|
|
|
|
|
public double[] Velocitys = new double[5]{220,220,220,110,0}; // 速度
|
|
|
public double[] FuelConsumptions = new double[5]{2800,2800,2800,1000,132}; // 燃油消耗
|
|
|
- public void Awake()
|
|
|
+
|
|
|
+ public void Start()
|
|
|
{
|
|
|
FXJHGenerate.FromStartToMission(FlightPlanEditor,ref turningPoints);//生成从起点到任务段起点的航路点
|
|
|
|
|
|
- FXJHGenerate.XunHu(FlightPlanEditor,ref turningPoints);//生成巡航航路点
|
|
|
+ FXJHGenerate.MieHuo1(FlightPlanEditor,ref turningPoints);//生成从任务段起点到任务段终点的航路点
|
|
|
FXJHGenerate.FXJHTPDiedai(FlightPlanEditor,ref turningPoints, Velocitys,FuelConsumptions);//生成从任务段终点到结束点的航路点
|
|
|
|
|
|
+ // 火情入场时间
|
|
|
+ foreach (TurningPoint turningPoint in turningPoints)
|
|
|
+ {
|
|
|
+ FireEnterTime += turningPoint.SegmentFlightTime;
|
|
|
+ }
|
|
|
+ FireEnterTime += 1800;
|
|
|
+
|
|
|
+ turningPoints.Clear();
|
|
|
+ FXJHGenerate.FromStartToMission(FlightPlanEditor,ref turningPoints);//生成从起点到任务段起点的航路点
|
|
|
+ FXJHGenerate.XunHu(FlightPlanEditor,ref turningPoints);//生成巡航航路点
|
|
|
+ FXJHGenerate.FXJHTPDiedai(FlightPlanEditor,ref turningPoints, Velocitys,FuelConsumptions);//生成从任务段终点到结束点的航路点
|
|
|
Task.Run(() =>
|
|
|
{
|
|
|
do
|
|
@@ -101,60 +115,7 @@ public class AircraftXH : Entity
|
|
|
}
|
|
|
TotalFuelConsumption = turningPoints[0].RemainingFuel - turningPoints[currentLocation.Currentsegnum + 1].RemainingFuel;
|
|
|
}
|
|
|
- public void Update()
|
|
|
- {
|
|
|
- // if (isOver)
|
|
|
- // {
|
|
|
- // finalProbability = 1 - finalProbability;
|
|
|
- //
|
|
|
- // FXJHGenerate.FromMissionToEnd(FlightPlanEditor, new MissionEndPoint
|
|
|
- // {
|
|
|
- // MissionEndPointLongitude = currentLocation.CurrentLon,
|
|
|
- // MissionEndPointLatitude = currentLocation.CurrentLat,
|
|
|
- // MissionEndPointHeight = currentLocation.CurrentHei
|
|
|
- // }, ref turningPoints);
|
|
|
- //
|
|
|
- // FXJHGenerate.FXJHTPDiedai(FlightPlanEditor,ref turningPoints, Velocitys, FuelConsumptions);
|
|
|
- // End();
|
|
|
- // isOver = false;
|
|
|
- // mission.EndMission();
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // if (!isSeeFire) // 发现火情
|
|
|
- // {
|
|
|
- // var location = FXJHGenerate.GetCurrentLocation(turningPoints, FlightPlanEditor, temptime);
|
|
|
- // currentLocation = location.Item1;
|
|
|
- //
|
|
|
- // double3 aricraftPoint = new double3(currentLocation.CurrentLon,currentLocation.CurrentLat,currentLocation.CurrentHei);
|
|
|
- //
|
|
|
- // double3 targetPoint = new double3(FlightPlanEditor.firepoint[0].FirePointLongitude,FlightPlanEditor.firepoint[0].FirePointLatitude, FlightPlanEditor.firepoint[0].FirePointHeight);
|
|
|
- //
|
|
|
- // probability = helper.getProbability(aricraftPoint,targetPoint,currentLocation.CurrentCourse);
|
|
|
- //
|
|
|
- // finalProbability *= (1 - probability);
|
|
|
- //
|
|
|
- // Console.WriteLine($"巡护任务: {Name} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},最终概率:{1 -finalProbability},是否看到火点:{isSeeFire}");
|
|
|
- // var randomValue = random.NextDouble();
|
|
|
- //
|
|
|
- // if (randomValue < (1 - finalProbability))
|
|
|
- // {
|
|
|
- // isSeeFire = true;
|
|
|
- // isOver = true;
|
|
|
- // Log.Info("发现火情");
|
|
|
- // }
|
|
|
- // else
|
|
|
- // {
|
|
|
- // isSeeFire = false;
|
|
|
- // }
|
|
|
- //
|
|
|
- // if (temptime >= 7200)
|
|
|
- // {
|
|
|
- // isOver = true;
|
|
|
- // }
|
|
|
- //
|
|
|
- // temptime++;
|
|
|
- // }
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
[ObjectSystem]
|
|
@@ -169,6 +130,5 @@ public class AircraftXHAwakeSystem : AwakeSystem<AircraftXH,FlightPlanEditor,str
|
|
|
// 读取数据库
|
|
|
self.Db = Util.GetAircraftDefine(self.FlightPlanEditor.aircraftparameter.AircraftType,self.FlightPlanEditor.aircraftparameter.AircraftSubType,self.FlightPlanEditor.aircraftparameter.AircraftID);
|
|
|
self.helper = new EquationHelper(HttpInterface.baseUrl);
|
|
|
- self.Awake();
|
|
|
}
|
|
|
}
|