Access regiments of IL-2 Forgotten Battles flight simulator.
Project description
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file il2fb-regiments-1.0.1.tar.gz
.
File metadata
- Download URL: il2fb-regiments-1.0.1.tar.gz
- Upload date:
- Size: 98.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d370508ba66e3cce8f0690905874e9cce55a3324c675e949648e570819132e6 |
|
MD5 | 490d1b2f7570c59bc4e72914d5134518 |
|
BLAKE2b-256 | 32849c752ca8de47bc6bf18e240e1029c8d5b8332f1f00c42048bbcd03c4339e |