5.14. BornPlace air forces sectionΒΆ

BornPlaceAirForcesSectionParser is responsible for parsing BornPlaceCountriesN section, where N is sequence number of the homebase. This section defines a list of available airforces for homebase #N.

Each line contains a code name of a single air force.

Section example:

[BornPlaceCountries1]
  de
  ru

Output example:

{
    'home_base_air_forces_1': [
        AirForces.luftwaffe,
        AirForces.vvs_rkka,
    ],
}

The output of the parser is a dict with home_base_air_forces_N item, where N is original homebase number. The value is a list of air forces.