Skip to main content

Access regiments of IL-2 Forgotten Battles flight simulator.

Project description

Version of PyPI package Number of downloads of PyPI package Supported versions of Python Package license

unix_build Build status of the master branch on Windows Test coverage

This is a Python library for accessing regiments of IL-2 Forgotten Battles flight simulator.

Information about regiments was extracted directry from SFS archive named files.sfs.

Data in il2fb/regiments/data directory contains the following files:

Filename

Original path

regShort_en.properties

files.sfs/i18n/regShort.properties

regShort_ru.properties

files.sfs/i18n/regShort_ru.properties

regInfo_en.properties

files.sfs/i18n/regInfo.properties

regInfo_ru.properties

files.sfs/i18n/regInfo_ru.properties

regiments.ini

files.sfs/PaintSchemes/regiments.ini

NOTE:

regShort.properties was renamed to regShort_en.properties. regInfo.properties was renamed to regInfo_en.properties. These names must be retained for localization sanity!

Do not edit or resave the contents of files in this directory manually! Instead, extract files from SFS archive and replace current ones with them.

Usage

from il2fb.regiments import Regiments

regiment = Regiments.get_by_code_name("USN_VT_9B")

print(regiment.code_name)
# USN_VT_9B

print(regiment.air_force.verbose_name)
# USN

print(regiment.verbose_name)
# VT-9 USS Essex CV-9

print(regiment.help_text)
# US Navy Torpedo Squadron 9 USS Essex CV-9

Human-readable messages are sensitive to current language:

from verboselib import use_language
from il2fb.regiments import Regiments

regiment = Regiments.get_by_code_name("890DBAP")

print(regiment.verbose_name)
# 890th "Bryansk" AP DD

print(regiment.help_text)
# 890th "Bryansk" AP DD

use_language('ru')

print(regiment.verbose_name)
# 890-й Брянский АП ДД

print(regiment.help_text)
# 890-й Брянский Авиационный Полк Дальнего Действия

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

il2fb-regiments-1.0.1.tar.gz (98.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page