source: src/const.py@ 4:bcc93ecb8cb6

Last change on this file since 4:bcc93ecb8cb6 was 4:bcc93ecb8cb6, checked in by István Váradi <ivaradi@…>, 12 years ago

The aircraft model framework is basically implemented

File size: 1.2 KB
Line 
1# Various constants used in the logger
2
3#-------------------------------------------------------------------------------
4
5# Flight simulator type: MS Flight Simulator 2004
6TYPE_MSFS9 = 1
7
8# Flight simulator type: MS Flight Simulator X
9TYPE_MSFSX = 2
10
11# Flight simulator type: X-Plane 9
12TYPE_XPLANE9 = 3
13
14# Flight simulator type: X-Plane 10
15TYPE_XPLANE10 = 4
16
17#-------------------------------------------------------------------------------
18
19# Aircraft type: Boeing 737-600
20AIRCRAFT_B736 = 1
21
22# Aircraft type: Boeing 737-700
23AIRCRAFT_B737 = 2
24
25# Aircraft type: Boeing 737-800
26AIRCRAFT_B738 = 3
27
28# Aircraft type: Dash-8 Q400
29AIRCRAFT_DH8D = 4
30
31# Aircraft type: Boeing 737-300
32AIRCRAFT_B733 = 5
33
34# Aircraft type: Boeing 737-400
35AIRCRAFT_B734 = 6
36
37# Aircraft type: Boeing 737-500
38AIRCRAFT_B735 = 7
39
40# Aircraft type: Boeing 767-200
41AIRCRAFT_B762 = 8
42
43# Aircraft type: Boeing 767-300
44AIRCRAFT_B762 = 9
45
46# Aircraft type: Canadair CRJ-200
47AIRCRAFT_CRJ2 = 10
48
49# Aircraft type: Fokker F-70
50AIRCRAFT_F70 = 11
51
52# Aircraft type: Lisunov Li-3
53AIRCRAFT_DC3 = 12
54
55# Aircraft type: Tupolev Tu-134
56AIRCRAFT_T134 = 13
57
58# Aircraft type: Tupolev Tu-154
59AIRCRAFT_T154 = 14
60
61# Aircraft type: Yakovlev Yak-40
62AIRCRAFT_YK40 = 15
63
Note: See TracBrowser for help on using the repository browser.