mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Add escort mission planning to the UI.
This commit is contained in:
parent
9e96aee89f
commit
e0725ff139
@ -89,6 +89,7 @@ class Package:
|
|||||||
FlightType.CAP,
|
FlightType.CAP,
|
||||||
FlightType.BARCAP,
|
FlightType.BARCAP,
|
||||||
FlightType.EWAR,
|
FlightType.EWAR,
|
||||||
|
FlightType.ESCORT,
|
||||||
]
|
]
|
||||||
for task in task_priorities:
|
for task in task_priorities:
|
||||||
if flight_counts[task]:
|
if flight_counts[task]:
|
||||||
|
|||||||
@ -18,11 +18,11 @@ class QFlightTypeComboBox(QComboBox):
|
|||||||
"""Combo box for selecting a flight task type."""
|
"""Combo box for selecting a flight task type."""
|
||||||
|
|
||||||
COMMON_ENEMY_MISSIONS = [
|
COMMON_ENEMY_MISSIONS = [
|
||||||
|
FlightType.ESCORT,
|
||||||
FlightType.TARCAP,
|
FlightType.TARCAP,
|
||||||
FlightType.SEAD,
|
FlightType.SEAD,
|
||||||
FlightType.DEAD,
|
FlightType.DEAD,
|
||||||
# TODO: FlightType.ELINT,
|
# TODO: FlightType.ELINT,
|
||||||
# TODO: FlightType.ESCORT,
|
|
||||||
# TODO: FlightType.EWAR,
|
# TODO: FlightType.EWAR,
|
||||||
# TODO: FlightType.RECON,
|
# TODO: FlightType.RECON,
|
||||||
]
|
]
|
||||||
@ -42,9 +42,9 @@ class QFlightTypeComboBox(QComboBox):
|
|||||||
]
|
]
|
||||||
|
|
||||||
ENEMY_CARRIER_MISSIONS = [
|
ENEMY_CARRIER_MISSIONS = [
|
||||||
|
FlightType.ESCORT,
|
||||||
FlightType.TARCAP,
|
FlightType.TARCAP,
|
||||||
# TODO: FlightType.ANTISHIP
|
# TODO: FlightType.ANTISHIP
|
||||||
# TODO: FlightType.ESCORT,
|
|
||||||
]
|
]
|
||||||
|
|
||||||
ENEMY_AIRBASE_MISSIONS = [
|
ENEMY_AIRBASE_MISSIONS = [
|
||||||
|
|||||||
@ -57,6 +57,7 @@ class QFlightWaypointTab(QFrame):
|
|||||||
recreate_types = [
|
recreate_types = [
|
||||||
FlightType.CAS,
|
FlightType.CAS,
|
||||||
FlightType.CAP,
|
FlightType.CAP,
|
||||||
|
FlightType.ESCORT,
|
||||||
FlightType.SEAD,
|
FlightType.SEAD,
|
||||||
FlightType.STRIKE
|
FlightType.STRIKE
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user