source: src/mlx/const.py@ 132:92f78dc5b965

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

Added support for enabling/disabling message types

File size: 7.6 KB
Line 
1# Various constants used in the logger
2
3#-------------------------------------------------------------------------------
4
5# The version of the program
6VERSION="0.03"
7
8#-------------------------------------------------------------------------------
9
10# The ratio between lbs and kg
11LBSTOKG=0.4536
12
13# The ratio between kgs and lbs
14KGSTOLB=1/LBSTOKG
15
16# The ratio between feet and metre
17FEETTOMETRES=0.3048
18
19#-------------------------------------------------------------------------------
20
21# Flight simulator type: MS Flight Simulator 2004
22SIM_MSFS9 = 1
23
24# Flight simulator type: MS Flight Simulator X
25SIM_MSFSX = 2
26
27# Flight simulator type: X-Plane 9
28SIM_XPLANE9 = 3
29
30# Flight simulator type: X-Plane 10
31SIM_XPLANE10 = 4
32
33#-------------------------------------------------------------------------------
34
35# Aircraft type: Boeing 737-600
36AIRCRAFT_B736 = 1
37
38# Aircraft type: Boeing 737-700
39AIRCRAFT_B737 = 2
40
41# Aircraft type: Boeing 737-800
42AIRCRAFT_B738 = 3
43
44# Aircraft type: Boeing 737-300
45AIRCRAFT_B733 = 4
46
47# Aircraft type: Boeing 737-400
48AIRCRAFT_B734 = 5
49
50# Aircraft type: Boeing 737-500
51AIRCRAFT_B735 = 6
52
53# Aircraft type: Dash-8 Q400
54AIRCRAFT_DH8D = 7
55
56# Aircraft type: Boeing 767-200
57AIRCRAFT_B762 = 8
58
59# Aircraft type: Boeing 767-300
60AIRCRAFT_B763 = 9
61
62# Aircraft type: Canadair CRJ-200
63AIRCRAFT_CRJ2 = 10
64
65# Aircraft type: Fokker F-70
66AIRCRAFT_F70 = 11
67
68# Aircraft type: Lisunov Li-2
69AIRCRAFT_DC3 = 12
70
71# Aircraft type: Tupolev Tu-134
72AIRCRAFT_T134 = 13
73
74# Aircraft type: Tupolev Tu-154
75AIRCRAFT_T154 = 14
76
77# Aircraft type: Yakovlev Yak-40
78AIRCRAFT_YK40 = 15
79
80#-------------------------------------------------------------------------------
81
82# Flight stage: boarding
83STAGE_BOARDING = 1
84
85# Flight stage: pushback, startup and taxi
86STAGE_PUSHANDTAXI = 2
87
88# Flight stage: takeoff
89STAGE_TAKEOFF = 3
90
91# Flight stage: RTO
92STAGE_RTO = 4
93
94# Flight stage: climb
95STAGE_CLIMB = 5
96
97# Flight stage: cruise
98STAGE_CRUISE = 6
99
100# Flight stage: descent
101STAGE_DESCENT = 7
102
103# Flight stage: landing
104STAGE_LANDING = 8
105
106# Flight stage: taxi after landing
107STAGE_TAXIAFTERLAND = 9
108
109# Flight stage: parking
110STAGE_PARKING = 10
111
112# Flight stage: go-around
113STAGE_GOAROUND = 11
114
115# Flight stage: end
116STAGE_END = 12
117
118#-------------------------------------------------------------------------------
119
120_stageStrings = { STAGE_BOARDING : "boarding",
121 STAGE_PUSHANDTAXI : "pushback and taxi",
122 STAGE_TAKEOFF : "takeoff",
123 STAGE_RTO : "RTO",
124 STAGE_CLIMB : "climb",
125 STAGE_CRUISE : "cruise",
126 STAGE_DESCENT : "descent",
127 STAGE_LANDING : "landing",
128 STAGE_TAXIAFTERLAND : "taxi",
129 STAGE_PARKING : "parking",
130 STAGE_GOAROUND : "go-around",
131 STAGE_END : "end" }
132
133def stage2string(stage):
134 """Convert the given stage to a lower-case string."""
135 return _stageStrings[stage] if stage in _stageStrings else None
136
137#-------------------------------------------------------------------------------
138
139# Plane status: unknown
140PLANE_UNKNOWN = 0
141
142# Plane status: at home, i.e. LHBP
143PLANE_HOME = 1
144
145# Plane status: away
146PLANE_AWAY = 2
147
148# Plane status: parking
149PLANE_PARKING = 3
150
151#-------------------------------------------------------------------------------
152
153# Flight type: scheduled
154FLIGHTTYPE_SCHEDULED = 0
155
156# Flight type: old-timer
157FLIGHTTYPE_OLDTIMER = 1
158
159# Flight type: VIP
160FLIGHTTYPE_VIP = 2
161
162# Flight type: charter
163FLIGHTTYPE_CHARTER = 3
164
165#-------------------------------------------------------------------------------
166
167# Delay code: loading problems
168DELAYCODE_LOADING = 0
169
170# Delay code: VATSIM problem
171DELAYCODE_VATSIM = 1
172
173# Delay code: network problems
174DELAYCODE_NETWORK = 2
175
176# Delay code: controller's fault
177DELAYCODE_CONTROLLER = 3
178
179# Delay code: system crash or freeze
180DELAYCODE_SYSTEM = 4
181
182# Delay code: navigation problem
183DELAYCODE_NAVIGATION = 5
184
185# Delay code: traffic problems
186DELAYCODE_TRAFFIC = 6
187
188# Delay code: apron navigation
189DELAYCODE_APRON = 7
190
191# Delay code: weather problems
192DELAYCODE_WEATHER = 8
193
194# Delay code: personal reasons
195DELAYCODE_PERSONAL = 9
196
197#-------------------------------------------------------------------------------
198
199# Message type: logger error
200MESSAGETYPE_LOGGER_ERROR = 1
201
202# Message type: information
203MESSAGETYPE_INFORMATION = 2
204
205# Message type: fault messages
206MESSAGETYPE_FAULT = 3
207
208# Message type: NO-GO fault messages
209MESSAGETYPE_NOGO = 4
210
211# Message type: gate system messages
212MESSAGETYPE_GATE_SYSTEM = 5
213
214# Message type: environment messages
215MESSAGETYPE_ENVIRONMENT = 6
216
217# Message type: help messages
218MESSAGETYPE_HELP = 7
219
220# Message type: visibility messages
221MESSAGETYPE_VISIBILITY = 8
222
223#-------------------------------------------------------------------------------
224
225messageTypes = [ MESSAGETYPE_LOGGER_ERROR,
226 MESSAGETYPE_INFORMATION,
227 MESSAGETYPE_FAULT,
228 MESSAGETYPE_NOGO,
229 MESSAGETYPE_GATE_SYSTEM,
230 MESSAGETYPE_ENVIRONMENT,
231 MESSAGETYPE_HELP,
232 MESSAGETYPE_VISIBILITY ]
233
234#-------------------------------------------------------------------------------
235
236_messageTypeStrings = { MESSAGETYPE_LOGGER_ERROR : "loggerError",
237 MESSAGETYPE_INFORMATION : "information",
238 MESSAGETYPE_FAULT : "fault",
239 MESSAGETYPE_NOGO : "nogo",
240 MESSAGETYPE_GATE_SYSTEM : "gateSystem",
241 MESSAGETYPE_ENVIRONMENT : "environment",
242 MESSAGETYPE_HELP : "help",
243 MESSAGETYPE_VISIBILITY : "visibility" }
244
245def messageType2string(messageType):
246 """Get the string equivalent of the given message type."""
247 return _messageTypeStrings[messageType] \
248 if messageType in _messageTypeStrings else None
249
250#-------------------------------------------------------------------------------
251
252# Message display level: none
253MESSAGELEVEL_NONE = 0
254
255# Message display level: only message in the simulator
256MESSAGELEVEL_FS = 1
257
258# Message display level: only sound
259MESSAGELEVEL_SOUND = 2
260
261# Message display level: both
262MESSAGELEVEL_BOTH = 3
263
264#-------------------------------------------------------------------------------
265
266messageLevels = [ MESSAGELEVEL_NONE,
267 MESSAGELEVEL_FS,
268 MESSAGELEVEL_SOUND,
269 MESSAGELEVEL_BOTH ]
270
271#-------------------------------------------------------------------------------
272
273_messageLevelStrings = { MESSAGELEVEL_NONE : "none",
274 MESSAGELEVEL_FS : "fs",
275 MESSAGELEVEL_SOUND : "sound",
276 MESSAGELEVEL_BOTH : "both" }
277
278def messageLevel2string(messageLevel):
279 """Get the string equivalent of the given message level."""
280 return _messageLevelStrings[messageLevel] \
281 if messageLevel in _messageLevelStrings else None
282
283def string2messageLevel(str):
284 """Get the message level for the given string."""
285 for (value, s) in _messageLevelStrings.iteritems():
286 if str==s:
287 return value
288 return MESSAGELEVEL_NONE
289
290#-------------------------------------------------------------------------------
291
292# The available gates at LHBP
293lhbpGateNumbers = []
294
295for i in range(1, 7):
296 lhbpGateNumbers.append(str(i))
297
298for i in range(10, 19):
299 lhbpGateNumbers.append(str(i))
300
301for i in range(24, 28):
302 lhbpGateNumbers.append(str(i))
303
304for i in range(31, 39):
305 lhbpGateNumbers.append(str(i))
306
307for i in range(42, 47):
308 lhbpGateNumbers.append(str(i))
309
310for i in range(60, 84):
311 if i!=70 and i!=80:
312 lhbpGateNumbers.append(str(i))
313
314#-------------------------------------------------------------------------------
315
316languages = ["$system", "en_GB", "hu_HU"]
317
Note: See TracBrowser for help on using the repository browser.