|
@@ -1,9 +1,10 @@
|
|
using Cysharp.Threading.Tasks;
|
|
using Cysharp.Threading.Tasks;
|
|
using KYFramework;
|
|
using KYFramework;
|
|
using Model;
|
|
using Model;
|
|
-using MongoDB.Bson;
|
|
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json;
|
|
using SimulationServer.Utils;
|
|
using SimulationServer.Utils;
|
|
|
|
+using SimulationSingleServer.Utils;
|
|
|
|
+using Define = SimulationServer.Utils.Define;
|
|
|
|
|
|
namespace SimulationServer;
|
|
namespace SimulationServer;
|
|
|
|
|
|
@@ -14,6 +15,8 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
{
|
|
{
|
|
Log.Info("服务器启动完成!");
|
|
Log.Info("服务器启动完成!");
|
|
var taskSys = Game.Scene.GetComponent<TaskComponent>();
|
|
var taskSys = Game.Scene.GetComponent<TaskComponent>();
|
|
|
|
+
|
|
|
|
+ HttpInterface.serverIp = File.ReadAllText("dbIp.txt");
|
|
// 读取任务配置文件
|
|
// 读取任务配置文件
|
|
string ec_path = "Missions/editor_config.json";
|
|
string ec_path = "Missions/editor_config.json";
|
|
string tc_path = "Missions/task_config.json";
|
|
string tc_path = "Missions/task_config.json";
|
|
@@ -24,7 +27,7 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
}
|
|
}
|
|
|
|
|
|
if (!File.Exists(tc_path))
|
|
if (!File.Exists(tc_path))
|
|
- {
|
|
|
|
|
|
+ {
|
|
Log.Error("task_config.json文件不存在!");
|
|
Log.Error("task_config.json文件不存在!");
|
|
return UniTask.CompletedTask;
|
|
return UniTask.CompletedTask;
|
|
}
|
|
}
|
|
@@ -39,22 +42,26 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
Log.Error("配置文件解析失败!");
|
|
Log.Error("配置文件解析失败!");
|
|
return UniTask.CompletedTask;
|
|
return UniTask.CompletedTask;
|
|
}
|
|
}
|
|
-
|
|
|
|
//Weather weather = Util.GetWeather("内蒙古", "根河", DateTime.Now.ToString("2024-05-10"));
|
|
//Weather weather = Util.GetWeather("内蒙古", "根河", DateTime.Now.ToString("2024-05-10"));
|
|
- Weather weather = new Weather();
|
|
|
|
-
|
|
|
|
|
|
+ TaskComponent.Weather = new Weather();
|
|
|
|
+ var temp = TaskComponent.Weather.day_temp.Replace("°C", "");
|
|
|
|
+ Define.TEMPERATURE = double.Parse(temp);
|
|
|
|
+ var wind_temp = TaskComponent.Weather.day_wind_comp.Replace("级", "").Split('-');
|
|
|
|
+ Define.WIND = double.Parse(wind_temp[0]);
|
|
|
|
+
|
|
|
|
+
|
|
foreach (MHTaskConfig mHTaskConfig in taskConfig.mHTaskConfigs)
|
|
foreach (MHTaskConfig mHTaskConfig in taskConfig.mHTaskConfigs)
|
|
{
|
|
{
|
|
- RescueMission mission = ComponentFactory.Create<RescueMission>();
|
|
|
|
|
|
+ MHRescueMission mission = ComponentFactory.Create<MHRescueMission>();
|
|
|
|
|
|
mission.AddComponent<TotalTaskPerformanceComponent>();
|
|
mission.AddComponent<TotalTaskPerformanceComponent>();
|
|
mission.AddComponent<TotalEconomicalComponent>();
|
|
mission.AddComponent<TotalEconomicalComponent>();
|
|
mission.AddComponent<EquipmentComponent>();
|
|
mission.AddComponent<EquipmentComponent>();
|
|
- taskSys.RescueMissions.Add(mission);
|
|
|
|
|
|
+
|
|
|
|
+ taskSys.MHRescueMissions.Add(mission);
|
|
mission.MissionId = $"灭火任务 {mHTaskConfig.TotalMHId}";
|
|
mission.MissionId = $"灭火任务 {mHTaskConfig.TotalMHId}";
|
|
- mission.MissionType = "灭火";
|
|
|
|
Log.Info($"创建任务 : {mHTaskConfig.TotalMHId}");
|
|
Log.Info($"创建任务 : {mHTaskConfig.TotalMHId}");
|
|
- double slope = Util.GetSlope(editorConfig.firePoints[mHTaskConfig.FirePointId - 1].FirePointLongitude,
|
|
|
|
|
|
+ mission.slope = Util.GetSlope(editorConfig.firePoints[mHTaskConfig.FirePointId - 1].FirePointLongitude,
|
|
editorConfig.firePoints[mHTaskConfig.FirePointId - 1].FirePointLatitude, 30);
|
|
editorConfig.firePoints[mHTaskConfig.FirePointId - 1].FirePointLatitude, 30);
|
|
FireGround fireGround = ComponentFactory.Create<FireGround>();
|
|
FireGround fireGround = ComponentFactory.Create<FireGround>();
|
|
mission.FireGround = fireGround;
|
|
mission.FireGround = fireGround;
|
|
@@ -85,12 +92,12 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
AircraftMH aircraft = ComponentFactory.Create<AircraftMH, FlightPlanEditor>( flightPlanEditor);
|
|
AircraftMH aircraft = ComponentFactory.Create<AircraftMH, FlightPlanEditor>( flightPlanEditor);
|
|
aircraft.Name = mhTask.missionInformation.AircraftInfos[i];
|
|
aircraft.Name = mhTask.missionInformation.AircraftInfos[i];
|
|
aircraft.NextMissionId = mhTask.NextTaskId;
|
|
aircraft.NextMissionId = mhTask.NextTaskId;
|
|
|
|
+ aircraft.fireGround = fireGround;
|
|
|
|
+ aircraft.mhRescueMission = mission;
|
|
mission.Aircrafts.Add(aircraft);
|
|
mission.Aircrafts.Add(aircraft);
|
|
aircraft.aircraftparameter = flightPlanEditor.aircraftparameter;
|
|
aircraft.aircraftparameter = flightPlanEditor.aircraftparameter;
|
|
aircraft.Airport = flightPlanEditor.originbase.BaseName;
|
|
aircraft.Airport = flightPlanEditor.originbase.BaseName;
|
|
- aircraft.Weather = weather;
|
|
|
|
aircraft.TaskName = mhTask.missionInformation.MissionName;
|
|
aircraft.TaskName = mhTask.missionInformation.MissionName;
|
|
- aircraft.slope = slope;
|
|
|
|
mission.End += aircraft.End;
|
|
mission.End += aircraft.End;
|
|
aircraft.AddComponent<StaticCapacityComponent>();
|
|
aircraft.AddComponent<StaticCapacityComponent>();
|
|
aircraft.AddComponent<TaskPerformanceComponent>();
|
|
aircraft.AddComponent<TaskPerformanceComponent>();
|
|
@@ -119,14 +126,14 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
flightPlanEditor.cityweather = editorConfig.cityWeather;
|
|
flightPlanEditor.cityweather = editorConfig.cityWeather;
|
|
|
|
|
|
AircraftMHWithPersion aircraftWithPerson = ComponentFactory.Create<AircraftMHWithPersion, FlightPlanEditor>( flightPlanEditor);
|
|
AircraftMHWithPersion aircraftWithPerson = ComponentFactory.Create<AircraftMHWithPersion, FlightPlanEditor>( flightPlanEditor);
|
|
- aircraftWithPerson.Weather = weather;
|
|
|
|
mission.End += aircraftWithPerson.End;
|
|
mission.End += aircraftWithPerson.End;
|
|
|
|
+ aircraftWithPerson.fireGround = fireGround;
|
|
|
|
+ aircraftWithPerson.mhRescueMission = mission;
|
|
aircraftWithPerson.GroundPersonnel = (int)dmmhTask.GroundPersonnel;
|
|
aircraftWithPerson.GroundPersonnel = (int)dmmhTask.GroundPersonnel;
|
|
aircraftWithPerson.LandingPersonnel = (int)dmmhTask.LandingPersonnel;
|
|
aircraftWithPerson.LandingPersonnel = (int)dmmhTask.LandingPersonnel;
|
|
aircraftWithPerson.NextMissionId = dmmhTask.NextTaskId;
|
|
aircraftWithPerson.NextMissionId = dmmhTask.NextTaskId;
|
|
aircraftWithPerson.TaskName = dmmhTask.missionInformation.MissionName;
|
|
aircraftWithPerson.TaskName = dmmhTask.missionInformation.MissionName;
|
|
mission.AircraftWithPersions.Add(aircraftWithPerson);
|
|
mission.AircraftWithPersions.Add(aircraftWithPerson);
|
|
-
|
|
|
|
Log.Info($"创建机型 : {flightPlanEditor.aircraftparameter.AircraftID}");
|
|
Log.Info($"创建机型 : {flightPlanEditor.aircraftparameter.AircraftID}");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -158,92 +165,93 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- foreach (ZCTask zcTask in taskConfig.zCTask)
|
|
|
|
- {
|
|
|
|
- RescueMission mission = ComponentFactory.Create<RescueMission>();
|
|
|
|
- taskSys.RescueMissions.Add(mission);
|
|
|
|
- //mission.MissionId = zcTask.TotalZCId;
|
|
|
|
- mission.MissionId = $"侦擦任务 {zcTask.missionInformation.MissionId}";
|
|
|
|
- FireGround fireGround = ComponentFactory.Create<FireGround>();
|
|
|
|
- fireGround.countArea.burnarea = editorConfig.firePoints[zcTask.FirePointId - 1].InitialArea;
|
|
|
|
- fireGround.FirePoint = new DVector
|
|
|
|
- {
|
|
|
|
- Latitude = editorConfig.firePoints[zcTask.FirePointId - 1].FirePointLatitude,
|
|
|
|
- Longitude = editorConfig.firePoints[zcTask.FirePointId - 1].FirePointLongitude,
|
|
|
|
- Altitude = editorConfig.firePoints[zcTask.FirePointId - 1].FirePointHeight
|
|
|
|
- };
|
|
|
|
- mission.InitArea = editorConfig.firePoints[zcTask.FirePointId - 1].InitialArea;
|
|
|
|
- if(zcTask.missionInformation.AircraftInfos == null) continue;
|
|
|
|
- for (int i = 0; i < zcTask.missionInformation.AircraftInfos.Length; i++)
|
|
|
|
- {
|
|
|
|
- FlightPlanEditor? flightPlanEditor = new FlightPlanEditor();
|
|
|
|
-
|
|
|
|
- flightPlanEditor.aircraftparameter =
|
|
|
|
- editorConfig.aircraftParameters.Find(
|
|
|
|
- a => a.AircraftID == zcTask.missionInformation.AircraftInfos[i]);
|
|
|
|
- flightPlanEditor.firepoint = new FirePoint[1];
|
|
|
|
- flightPlanEditor.firepoint[0] = editorConfig.firePoints[zcTask.FirePointId - 1];
|
|
|
|
- flightPlanEditor.missionpoint = zcTask.MissionPoints[0];
|
|
|
|
- flightPlanEditor.originbase =
|
|
|
|
- editorConfig.bases.Find(b => b.BaseId == flightPlanEditor.aircraftparameter.AirportId);
|
|
|
|
- flightPlanEditor.climbsegment = editorConfig.climbSegment;
|
|
|
|
- flightPlanEditor.descentsegment = editorConfig.descentSegment;
|
|
|
|
- flightPlanEditor.cruisesegment = editorConfig.cruiseSegment;
|
|
|
|
- flightPlanEditor.cityweather = editorConfig.cityWeather;
|
|
|
|
|
|
+ // foreach (ZCTask zcTask in taskConfig.zCTask)
|
|
|
|
+ // {
|
|
|
|
+ // MHRescueMission mission = ComponentFactory.Create<MHRescueMission>();
|
|
|
|
+ // taskSys.RescueMissions.Add(mission);
|
|
|
|
+ // //mission.MissionId = zcTask.TotalZCId;
|
|
|
|
+ // mission.MissionId = $"侦擦任务 {zcTask.missionInformation.MissionId}";
|
|
|
|
+ // FireGround fireGround = ComponentFactory.Create<FireGround>();
|
|
|
|
+ // fireGround.countArea.burnarea = editorConfig.firePoints[zcTask.FirePointId - 1].InitialArea;
|
|
|
|
+ // fireGround.FirePoint = new DVector
|
|
|
|
+ // {
|
|
|
|
+ // Latitude = editorConfig.firePoints[zcTask.FirePointId - 1].FirePointLatitude,
|
|
|
|
+ // Longitude = editorConfig.firePoints[zcTask.FirePointId - 1].FirePointLongitude,
|
|
|
|
+ // Altitude = editorConfig.firePoints[zcTask.FirePointId - 1].FirePointHeight
|
|
|
|
+ // };
|
|
|
|
+ // mission.InitArea = editorConfig.firePoints[zcTask.FirePointId - 1].InitialArea;
|
|
|
|
+ // if(zcTask.missionInformation.AircraftInfos == null) continue;
|
|
|
|
+ // for (int i = 0; i < zcTask.missionInformation.AircraftInfos.Length; i++)
|
|
|
|
+ // {
|
|
|
|
+ // FlightPlanEditor? flightPlanEditor = new FlightPlanEditor();
|
|
|
|
+ //
|
|
|
|
+ // flightPlanEditor.aircraftparameter =
|
|
|
|
+ // editorConfig.aircraftParameters.Find(
|
|
|
|
+ // a => a.AircraftID == zcTask.missionInformation.AircraftInfos[i]);
|
|
|
|
+ // flightPlanEditor.firepoint = new FirePoint[1];
|
|
|
|
+ // flightPlanEditor.firepoint[0] = editorConfig.firePoints[zcTask.FirePointId - 1];
|
|
|
|
+ // flightPlanEditor.missionpoint = zcTask.MissionPoints[0];
|
|
|
|
+ // flightPlanEditor.originbase =
|
|
|
|
+ // editorConfig.bases.Find(b => b.BaseId == flightPlanEditor.aircraftparameter.AirportId);
|
|
|
|
+ // flightPlanEditor.climbsegment = editorConfig.climbSegment;
|
|
|
|
+ // flightPlanEditor.descentsegment = editorConfig.descentSegment;
|
|
|
|
+ // flightPlanEditor.cruisesegment = editorConfig.cruiseSegment;
|
|
|
|
+ // flightPlanEditor.cityweather = editorConfig.cityWeather;
|
|
|
|
+ //
|
|
|
|
+ // AircraftZC aircraft = ComponentFactory.Create<AircraftZC, FlightPlanEditor,ZCTask>( flightPlanEditor, zcTask);
|
|
|
|
+ // //aircraft.Name = zcTask.missionInformation.AircraftInfos[i];
|
|
|
|
+ // //aircraft.NextMissionId = zcTask.NextTaskId;
|
|
|
|
+ // mission.End += aircraft.End;
|
|
|
|
+ // mission.AircraftZCs.Add(aircraft);
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
|
|
- AircraftZC aircraft = ComponentFactory.Create<AircraftZC, FlightPlanEditor,ZCTask>( flightPlanEditor, zcTask);
|
|
|
|
- //aircraft.Name = zcTask.missionInformation.AircraftInfos[i];
|
|
|
|
- //aircraft.NextMissionId = zcTask.NextTaskId;
|
|
|
|
- mission.End += aircraft.End;
|
|
|
|
- mission.AircraftZCs.Add(aircraft);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- foreach (XHTask xhTask in taskConfig.xHTask)
|
|
|
|
- {
|
|
|
|
- if(xhTask.MissionPoints == null) continue;
|
|
|
|
- RescueMission mission = ComponentFactory.Create<RescueMission>();
|
|
|
|
- mission.AddComponent<XHEconomicalComponent>();
|
|
|
|
- mission.AddComponent<XHTotalTaskPerformanceComponent>();
|
|
|
|
- mission.MissionId = $"巡护任务 {xhTask.missionInformation.MissionId}";
|
|
|
|
- taskSys.RescueMissions.Add(mission);
|
|
|
|
- FireGround fireGround = ComponentFactory.Create<FireGround>();
|
|
|
|
- mission.FireGround = fireGround;
|
|
|
|
- mission.InitArea = editorConfig.firePoints[xhTask.FirePointId - 1].InitialArea;
|
|
|
|
- fireGround.FirePoint = new DVector
|
|
|
|
- {
|
|
|
|
- Latitude = editorConfig.firePoints[xhTask.FirePointId - 1].FirePointLatitude,
|
|
|
|
- Longitude = editorConfig.firePoints[xhTask.FirePointId - 1].FirePointLongitude,
|
|
|
|
- Altitude = editorConfig.firePoints[xhTask.FirePointId - 1].FirePointHeight
|
|
|
|
- };
|
|
|
|
- if(xhTask.missionInformation.AircraftInfos == null) continue;
|
|
|
|
- for (int i = 0; i < xhTask.missionInformation.AircraftInfos.Length; i++)
|
|
|
|
- {
|
|
|
|
-
|
|
|
|
- FlightPlanEditor? flightPlanEditor = new FlightPlanEditor();
|
|
|
|
- flightPlanEditor.aircraftparameter = editorConfig.aircraftParameters.Find(a =>
|
|
|
|
- a.AircraftID == xhTask.missionInformation.AircraftInfos[i]);
|
|
|
|
- flightPlanEditor.firepoint = new FirePoint[1];
|
|
|
|
- flightPlanEditor.firepoint[0] = editorConfig.firePoints[xhTask.FirePointId - 1];
|
|
|
|
- flightPlanEditor.missionpoint = xhTask.MissionPoints[0];
|
|
|
|
- flightPlanEditor.originbase =
|
|
|
|
- editorConfig.bases.Find(b => b.BaseId == flightPlanEditor.aircraftparameter.AirportId);
|
|
|
|
- flightPlanEditor.climbsegment = editorConfig.climbSegment;
|
|
|
|
- flightPlanEditor.descentsegment = editorConfig.descentSegment;
|
|
|
|
- flightPlanEditor.cruisesegment = editorConfig.cruiseSegment;
|
|
|
|
- flightPlanEditor.cityweather = editorConfig.cityWeather;
|
|
|
|
-
|
|
|
|
- AircraftXH aircraft = ComponentFactory.Create<AircraftXH, FlightPlanEditor>( flightPlanEditor);
|
|
|
|
- //aircraft.Name = zcTask.missionInformation.AircraftInfos[i];
|
|
|
|
- //aircraft.NextMissionId = zcTask.NextTaskId;
|
|
|
|
- mission.AircraftXHs.Add(aircraft);
|
|
|
|
- mission.End += aircraft.End;
|
|
|
|
- aircraft.Weather = weather;
|
|
|
|
- aircraft.AddComponent<XHStaticCapacityComponent>();
|
|
|
|
- aircraft.AddComponent<XHEconomicalComponent>();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ // foreach (XHTask xhTask in taskConfig.xHTask)
|
|
|
|
+ // {
|
|
|
|
+ // XHRescueMission mission = ComponentFactory.Create<XHRescueMission>();
|
|
|
|
+ // mission.AddComponent<XHEconomicalComponent>();
|
|
|
|
+ // mission.AddComponent<XHTotalTaskPerformanceComponent>();
|
|
|
|
+ // mission.AddComponent<EquipmentComponent>();
|
|
|
|
+ //
|
|
|
|
+ // mission.MissionId = $"巡护任务 {xhTask.missionInformation.MissionId}";
|
|
|
|
+ // taskSys.XHRescueMissions.Add(mission);
|
|
|
|
+ // FireGround fireGround = ComponentFactory.Create<FireGround>();
|
|
|
|
+ // mission.FireGround = fireGround;
|
|
|
|
+ // fireGround.FirePoint = new DVector
|
|
|
|
+ // {
|
|
|
|
+ // Latitude = editorConfig.firePoints[xhTask.FirePointId - 1].FirePointLatitude,
|
|
|
|
+ // Longitude = editorConfig.firePoints[xhTask.FirePointId - 1].FirePointLongitude,
|
|
|
|
+ // Altitude = editorConfig.firePoints[xhTask.FirePointId - 1].FirePointHeight
|
|
|
|
+ // };
|
|
|
|
+ // if(xhTask.missionInformation.AircraftInfos == null) continue;
|
|
|
|
+ // for (int i = 0; i < xhTask.missionInformation.AircraftInfos.Length; i++)
|
|
|
|
+ // {
|
|
|
|
+ //
|
|
|
|
+ // FlightPlanEditor? flightPlanEditor = new FlightPlanEditor();
|
|
|
|
+ // flightPlanEditor.aircraftparameter = editorConfig.aircraftParameters.Find(a =>
|
|
|
|
+ // a.AircraftID == xhTask.missionInformation.AircraftInfos[i]);
|
|
|
|
+ // flightPlanEditor.firepoint = new FirePoint[1];
|
|
|
|
+ // flightPlanEditor.firepoint[0] = editorConfig.firePoints[xhTask.FirePointId - 1];
|
|
|
|
+ // flightPlanEditor.airroute = xhTask.airroute;
|
|
|
|
+ // //flightPlanEditor.missionpoint = xhTask.MissionPoints[0];
|
|
|
|
+ // flightPlanEditor.originbase =
|
|
|
|
+ // editorConfig.bases.Find(b => b.BaseId == flightPlanEditor.aircraftparameter.AirportId);
|
|
|
|
+ // flightPlanEditor.climbsegment = editorConfig.climbSegment;
|
|
|
|
+ // flightPlanEditor.descentsegment = editorConfig.descentSegment;
|
|
|
|
+ // flightPlanEditor.cruisesegment = editorConfig.cruiseSegment;
|
|
|
|
+ // flightPlanEditor.cityweather = editorConfig.cityWeather;
|
|
|
|
+ //
|
|
|
|
+ // AircraftXH aircraft = ComponentFactory.Create<AircraftXH, FlightPlanEditor>( flightPlanEditor);
|
|
|
|
+ // //aircraft.Name = zcTask.missionInformation.AircraftInfos[i];
|
|
|
|
+ // //aircraft.NextMissionId = zcTask.NextTaskId;
|
|
|
|
+ // mission.AircraftXHs.Add(aircraft);
|
|
|
|
+ // mission.End += aircraft.End;
|
|
|
|
+ // aircraft.AddComponent<XHStaticCapacityComponent>();
|
|
|
|
+ // aircraft.AddComponent<XHEconomicalComponent>();
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
taskSys.Start();
|
|
taskSys.Start();
|
|
return UniTask.CompletedTask;
|
|
return UniTask.CompletedTask;
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|