FlightPlanEditor.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using Newtonsoft.Json;
  2. namespace Model;
  3. public class FlightPlanEditor
  4. {
  5. [JsonProperty("飞机参数")]
  6. public AircraftParameter aircraftparameter;
  7. public CityWeather cityweather;
  8. [JsonProperty("基地参数")]
  9. public Base originbase;
  10. [JsonProperty("巡护航线参数")]
  11. public AirRoute[] airroute = new AirRoute[1];
  12. [JsonProperty("任务点")]
  13. public MissionPoint missionpoint = new MissionPoint();
  14. [JsonProperty("火点")]
  15. public FirePoint[] firepoint = new FirePoint[1];
  16. public static FlightPlanEditor Create(AircraftParameter aircraftparameter, CityWeather cityweather, Base originbase, AirRoute[] airroute, MissionPoint missionpoint, FirePoint[] firepoint)
  17. {
  18. FlightPlanEditor flightPlanEditor = new FlightPlanEditor();
  19. flightPlanEditor.aircraftparameter = aircraftparameter;
  20. flightPlanEditor.cityweather = cityweather;
  21. flightPlanEditor.originbase = originbase;
  22. flightPlanEditor.airroute = airroute;
  23. flightPlanEditor.missionpoint = missionpoint;
  24. flightPlanEditor.firepoint = firepoint;
  25. return flightPlanEditor;
  26. }
  27. public static FlightPlanEditor Create(AircraftParameter aircraftparameter, CityWeather cityweather, Base originbase, MissionPoint missionpoint, FirePoint[] firepoint)
  28. {
  29. FlightPlanEditor flightPlanEditor = new FlightPlanEditor();
  30. flightPlanEditor.aircraftparameter = aircraftparameter;
  31. flightPlanEditor.cityweather = cityweather;
  32. flightPlanEditor.originbase = originbase;
  33. flightPlanEditor.missionpoint = missionpoint;
  34. flightPlanEditor.firepoint = firepoint;
  35. return flightPlanEditor;
  36. }
  37. }