|
@@ -4,6 +4,7 @@ using Model;
|
|
|
using Newtonsoft.Json;
|
|
|
using SimulationServer.Utils;
|
|
|
using SimulationSingleServer.Utils;
|
|
|
+using static Org.BouncyCastle.Math.EC.ECCurve;
|
|
|
using Define = SimulationServer.Utils.Define;
|
|
|
|
|
|
namespace SimulationServer;
|
|
@@ -20,32 +21,32 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
|
// 读取任务配置文件
|
|
|
string ec_path = "Missions/editor_config.json";
|
|
|
string tc_path = "Missions/task_config.json";
|
|
|
-
|
|
|
+
|
|
|
if (!File.Exists(ec_path))
|
|
|
{
|
|
|
Log.Error("editor_config.json文件不存在!");
|
|
|
return UniTask.CompletedTask;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (!File.Exists(tc_path))
|
|
|
- {
|
|
|
+ {
|
|
|
Log.Error("task_config.json文件不存在!");
|
|
|
return UniTask.CompletedTask;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
string ec_str = File.ReadAllText("Missions/editor_config.json");
|
|
|
string tc_str = File.ReadAllText("Missions/task_config.json");
|
|
|
-
|
|
|
+ Console.WriteLine(tc_str);
|
|
|
EditorConfig? editorConfig = JsonConvert.DeserializeObject<EditorConfig>(ec_str);
|
|
|
TaskConfig? taskConfig = JsonConvert.DeserializeObject<TaskConfig>(tc_str);
|
|
|
-
|
|
|
- if(editorConfig == null || taskConfig == null)
|
|
|
+
|
|
|
+ if (editorConfig == null || taskConfig == null)
|
|
|
{
|
|
|
Log.Error("配置文件解析失败!");
|
|
|
return UniTask.CompletedTask;
|
|
|
}
|
|
|
//Weather weather = Util.GetWeather("内蒙古", "根河", DateTime.Now.ToString("2024-05-10"));
|
|
|
- TaskComponent.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('-');
|
|
@@ -56,32 +57,37 @@ public class ServerStartEventHandler : AEvent<ServerStart>
|
|
|
foreach (var mhTask in taskConfig.mHTaskConfigs)
|
|
|
{
|
|
|
Game.EventSystem.Publish(new CreateMHTask
|
|
|
- { EditorConfig = editorConfig, MHTaskConfig = mhTask });
|
|
|
+ { EditorConfig = editorConfig, MHTaskConfig = mhTask });
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// 创建侦察
|
|
|
foreach (var zcTask in taskConfig.zCTask)
|
|
|
{
|
|
|
Game.EventSystem.Publish(new CreateZCTask
|
|
|
- { EditorConfig = editorConfig, ZCTask = zcTask });
|
|
|
+ { EditorConfig = editorConfig, ZCTask = zcTask });
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// 创建巡护
|
|
|
foreach (var xhTask in taskConfig.xHTask)
|
|
|
{
|
|
|
Game.EventSystem.Publish(new CreateXHTask
|
|
|
- { EditorConfig = editorConfig, XHTask = xhTask });
|
|
|
+ { EditorConfig = editorConfig, XHTask = xhTask });
|
|
|
}
|
|
|
-
|
|
|
- // 创建搜救
|
|
|
+ //Console.WriteLine("taskConfig.seaSouJiuTasks.Count:" + taskConfig.seaSouJiuTasks.Count);
|
|
|
+ //创建搜救
|
|
|
foreach (var seaSJTask in taskConfig.seaSouJiuTasks)
|
|
|
{
|
|
|
+ //Console.WriteLine("seaSJTask.missionInformation.MissionName:" + seaSJTask.missionInformation.MissionName);
|
|
|
+ //Console.WriteLine("TargetPointId:" + seaSJTask.TargetPointId);
|
|
|
+ //Console.WriteLine("SearchPayload:" + seaSJTask.SearchPayload);
|
|
|
+ //Console.WriteLine("SearchMode:" + seaSJTask.SearchMode);
|
|
|
+ //Console.WriteLine("RadarTransmitterPower:" + seaSJTask.RadarTransmitterPower);
|
|
|
Game.EventSystem.Publish(new CreateSeaSJTask
|
|
|
- { EditorConfig = editorConfig, SeaSJTask = seaSJTask });
|
|
|
+ { EditorConfig = editorConfig, SeaSJTask = seaSJTask });
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
taskSys.Start();
|
|
|
return UniTask.CompletedTask;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|