source: src/mlx/fsuipc.py@ 1017:a04761c61c0e

version_0.39_maint
Last change on this file since 1017:a04761c61c0e was 1017:a04761c61c0e, checked in by István Váradi <ivaradi@…>, 4 years ago

The PMDG model handler increases the elevator trim value by 5.0

File size: 86.7 KB
Line 
1
2import fs
3import const
4import util
5import acft
6from watchdog import Watchdog
7
8import threading
9import os
10import time
11import calendar
12import sys
13import codecs
14import math
15
16if os.name == "nt" and "FORCE_PYUIPC_SIM" not in os.environ:
17 import pyuipc
18else:
19 import pyuipc_sim as pyuipc
20
21#------------------------------------------------------------------------------
22
23## @package mlx.fsuipc
24#
25# The module towards FSUIPC.
26#
27# This module implements the simulator interface to FSUIPC.
28#
29# The \ref Handler class is thread handling the FSUIPC requests. It can be
30# given read, periodic read and write, requests, that are executed
31# asynchronously, and a callback function is called with the result. This class
32# is used internally within the module.
33#
34# The \ref Simulator class is the actual interface to the flight simulator, and
35# an instance of it is returned by \ref mlx.fs.createSimulator. This object can
36# be used to connect to the simulator and disconnect from it, to query various
37# data and to start and stop the monitoring of the data.
38#
39# \ref AircraftModel is the base class of the aircraft models. A "model" is a
40# particular implementation of an aircraft, such as the PMDG Boeing 737NG in
41# Flight Simulator 2004. Since each type and each model has its peculiarities
42# (e.g. the different engine and fuel tank configurations), each aircraft type
43# has a generic model, that should work for most of the time. However, certain
44# models may implement various controls, gauges, etc. differently, and such
45# peculiarites can be handled in a specific subclass of \ref
46# AircraftModel. These subclasses should be registered as special ones, and if
47# the simulator detects that the aircraft's model became known or has changed,
48# it will check these special models before resorting to the generic ones.
49#
50# The models are responsible also for querying certain parameters, such as the
51# fuel tank configuration. While ideally it should be specific to a type only,
52# it is possible that the model contains different tanks, in which case some
53# tricks may be needed. See the \ref DC3Model "DC-3 (Li-2)" aircraft as an
54# example.
55
56#------------------------------------------------------------------------------
57
58## The mapping of tank types to FSUIPC offsets
59_tank2offset = { const.FUELTANK_CENTRE : 0x0b74,
60 const.FUELTANK_LEFT : 0x0b7c,
61 const.FUELTANK_RIGHT : 0x0b94,
62 const.FUELTANK_LEFT_AUX : 0x0b84,
63 const.FUELTANK_RIGHT_AUX : 0x0b9c,
64 const.FUELTANK_LEFT_TIP : 0x0b8c,
65 const.FUELTANK_RIGHT_TIP : 0x0ba4,
66 const.FUELTANK_EXTERNAL1 : 0x1254,
67 const.FUELTANK_EXTERNAL2 : 0x125c,
68 const.FUELTANK_CENTRE2 : 0x1244 }
69
70#------------------------------------------------------------------------------
71
72class Handler(threading.Thread):
73 """The thread to handle the FSUIPC requests."""
74 @staticmethod
75 def fsuipc2VS(data):
76 """Convert the given vertical speed data read from FSUIPC into feet/min."""
77 return data*60.0/const.FEETTOMETRES/256.0
78
79 @staticmethod
80 def fsuipc2radioAltitude(data):
81 """Convert the given radio altitude data read from FSUIPC into feet."""
82 return data/const.FEETTOMETRES/65536.0
83
84 @staticmethod
85 def fsuipc2Degrees(data):
86 """Convert the given data into degrees."""
87 return data * 360.0 / 65536.0 / 65536.0
88
89 @staticmethod
90 def fsuipc2PositiveDegrees(data):
91 """Convert the given data into positive degrees."""
92 degrees = Handler.fsuipc2Degrees(data)
93 if degrees<0.0: degrees += 360.0
94 return degrees
95
96 @staticmethod
97 def fsuipc2IAS(data):
98 """Convert the given data into indicated airspeed."""
99 return data / 128.0
100
101 @staticmethod
102 def _callSafe(fun):
103 """Call the given function and swallow any exceptions."""
104 try:
105 return fun()
106 except Exception, e:
107 print >> sys.stderr, util.utf2unicode(str(e))
108 return None
109
110 # The number of times a read is attempted
111 NUM_READATTEMPTS = 3
112
113 # The number of connection attempts
114 NUM_CONNECTATTEMPTS = 3
115
116 # The interval between successive connect attempts
117 CONNECT_INTERVAL = 0.25
118
119 @staticmethod
120 def _performRead(data, callback, extra, validator, unimportant = False):
121 """Perform a read request.
122
123 If there is a validator, that will be called with the return values,
124 and if the values are wrong, the request is retried at most a certain
125 number of times.
126
127 Return True if the request has succeeded, False if validation has
128 failed during all attempts. An exception may also be thrown if there is
129 some lower-level communication problem."""
130 attemptsLeft = Handler.NUM_READATTEMPTS
131 while attemptsLeft>0:
132 exception = None
133 try:
134 values = pyuipc.read(data)
135 except TypeError, e:
136 exception = e
137
138 failed = True
139 if (exception is None or unimportant) and \
140 (validator is None or \
141 Handler._callSafe(lambda: validator(values, extra))):
142 Handler._callSafe(lambda: callback(values, extra))
143 failed = False
144
145 if exception is not None:
146 raise exception
147
148 if failed:
149 attemptsLeft -= 1
150 else:
151 return True
152 return False
153
154 class Request(object):
155 """A simple, one-shot request."""
156 def __init__(self, forWrite, data, callback, extra,
157 validator = None, unimportant = False):
158 """Construct the request."""
159 self._forWrite = forWrite
160 self._data = data
161 self._callback = callback
162 self._extra = extra
163 self._validator = validator
164 self.unimportant = unimportant
165
166 def process(self, time):
167 """Process the request.
168
169 Return True if the request has succeeded, False if data validation
170 has failed for a reading request. An exception may also be thrown
171 if there is some lower-level communication problem."""
172 if self._forWrite:
173 exception = None
174 try:
175 pyuipc.write(self._data)
176 except TypeError, e:
177 exception = e
178
179 if exception is None or self.unimportant:
180 Handler._callSafe(lambda: self._callback(True,
181 self._extra))
182
183 if exception is not None:
184 raise exception
185
186 return True
187 else:
188 return Handler._performRead(self._data, self._callback,
189 self._extra, self._validator,
190 self.unimportant)
191
192 def fail(self):
193 """Handle the failure of this request."""
194 if self._forWrite:
195 Handler._callSafe(lambda: self._callback(False, self._extra))
196 else:
197 Handler._callSafe(lambda: self._callback(None, self._extra))
198
199 class PeriodicRequest(object):
200 """A periodic request."""
201 def __init__(self, id, period, data, callback, extra, validator):
202 """Construct the periodic request."""
203 self._id = id
204 self._period = period
205 self._nextFire = time.time()
206 self._data = data
207 self._preparedData = None
208 self._callback = callback
209 self._extra = extra
210 self._validator = validator
211
212 @property
213 def id(self):
214 """Get the ID of this periodic request."""
215 return self._id
216
217 @property
218 def nextFire(self):
219 """Get the next firing time."""
220 return self._nextFire
221
222 def process(self, time):
223 """Check if this request should be executed, and if so, do so.
224
225 time is the time at which the request is being executed. If this
226 function is called too early, nothing is done, and True is
227 returned.
228
229 Return True if the request has succeeded, False if data validation
230 has failed. An exception may also be thrown if there is some
231 lower-level communication problem."""
232 if time<self._nextFire:
233 return True
234
235 if self._preparedData is None:
236 self._preparedData = pyuipc.prepare_data(self._data)
237 self._data = None
238
239 isOK = Handler._performRead(self._preparedData, self._callback,
240 self._extra, self._validator)
241
242 if isOK:
243 while self._nextFire <= time:
244 self._nextFire += self._period
245
246 return isOK
247
248 def fail(self):
249 """Handle the failure of this request."""
250 pass
251
252 def __cmp__(self, other):
253 """Compare two periodic requests. They are ordered by their next
254 firing times."""
255 return cmp(self._nextFire, other._nextFire)
256
257 def __init__(self, connectionListener,
258 connectAttempts = -1, connectInterval = 0.2):
259 """Construct the handler with the given connection listener."""
260 threading.Thread.__init__(self)
261
262 self._connectionListener = connectionListener
263 self._connectAttempts = connectAttempts
264 self._connectInterval = connectInterval
265
266 self._requestCondition = threading.Condition()
267 self._connectionRequested = False
268 self._connected = False
269
270 self._requests = []
271 self._nextPeriodicID = 1
272 self._periodicRequests = []
273
274 self._watchdogClient = Watchdog.get().addClient(2.0, "fsuipc.Handler")
275
276 self.daemon = True
277
278 def requestRead(self, data, callback, extra = None, validator = None):
279 """Request the reading of some data.
280
281 data is a list of tuples of the following items:
282 - the offset of the data as an integer
283 - the type letter of the data as a string
284
285 callback is a function that receives two pieces of data:
286 - the values retrieved or None on error
287 - the extra parameter
288
289 It will be called in the handler's thread!
290 """
291 with self._requestCondition:
292 self._requests.append(Handler.Request(False, data, callback, extra,
293 validator))
294 self._requestCondition.notify()
295
296 def requestWrite(self, data, callback, extra = None, unimportant = False):
297 """Request the writing of some data.
298
299 data is a list of tuples of the following items:
300 - the offset of the data as an integer
301 - the type letter of the data as a string
302 - the data to write
303
304 callback is a function that receives two pieces of data:
305 - a boolean indicating if writing was successful
306 - the extra data
307 It will be called in the handler's thread!
308 """
309 with self._requestCondition:
310 request = Handler.Request(True, data, callback, extra,
311 unimportant = unimportant)
312 #print "fsuipc.Handler.requestWrite", request
313 self._requests.append(request)
314 self._requestCondition.notify()
315
316 @staticmethod
317 def _readWriteCallback(data, extra):
318 """Callback for the read() and write() calls below."""
319 extra.append(data)
320 with extra[0] as condition:
321 condition.notify()
322
323 def requestPeriodicRead(self, period, data, callback, extra = None,
324 validator = None):
325 """Request a periodic read of data.
326
327 period is a floating point number with the period in seconds.
328
329 This function returns an identifier which can be used to cancel the
330 request."""
331 with self._requestCondition:
332 id = self._nextPeriodicID
333 self._nextPeriodicID += 1
334 request = Handler.PeriodicRequest(id, period, data, callback,
335 extra, validator)
336 self._periodicRequests.append(request)
337 self._requestCondition.notify()
338 return id
339
340 def clearPeriodic(self, id):
341 """Clear the periodic request with the given ID."""
342 with self._requestCondition:
343 for i in range(0, len(self._periodicRequests)):
344 if self._periodicRequests[i].id==id:
345 del self._periodicRequests[i]
346 return True
347 return False
348
349 def connect(self):
350 """Initiate the connection to the flight simulator."""
351 with self._requestCondition:
352 if not self._connectionRequested:
353 self._connectionRequested = True
354 self._requestCondition.notify()
355
356 def disconnect(self):
357 """Disconnect from the flight simulator."""
358 with self._requestCondition:
359 self._requests = []
360 if self._connectionRequested:
361 self._connectionRequested = False
362 self._requestCondition.notify()
363
364 def clearRequests(self):
365 """Clear the outstanding one-shot requests."""
366 with self._requestCondition:
367 self._requests = []
368
369 def run(self):
370 """Perform the operation of the thread."""
371 while True:
372 self._waitConnectionRequest()
373
374 if self._connect()>0:
375 self._handleConnection()
376
377 self._disconnect()
378
379 def _waitConnectionRequest(self):
380 """Wait for a connection request to arrive."""
381 with self._requestCondition:
382 while not self._connectionRequested:
383 self._requestCondition.wait()
384
385 def _connect(self, autoReconnection = False, attempts = 0):
386 """Try to connect to the flight simulator via FSUIPC
387
388 Returns True if the connection has been established, False if it was
389 not due to no longer requested.
390 """
391 while self._connectionRequested:
392 if attempts>=self.NUM_CONNECTATTEMPTS:
393 self._connectionRequested = False
394 if autoReconnection:
395 Handler._callSafe(lambda:
396 self._connectionListener.disconnected())
397 else:
398 Handler._callSafe(lambda:
399 self._connectionListener.connectionFailed())
400 return 0
401
402 try:
403 attempts += 1
404 pyuipc.open(pyuipc.SIM_ANY)
405 description = "(FSUIPC version: 0x%04x, library version: 0x%04x, FS version: %d)" % \
406 (pyuipc.fsuipc_version, pyuipc.lib_version,
407 pyuipc.fs_version)
408 if not autoReconnection:
409 fsType = const.SIM_MSFSX \
410 if (pyuipc.fs_version == pyuipc.SIM_FSX or
411 pyuipc.fs_version == pyuipc.SIM_FSX64) \
412 else const.SIM_P3D \
413 if (pyuipc.fs_version == pyuipc.SIM_P3D or
414 pyuipc.fs_version == pyuipc.SIM_P3D64) \
415 else const.SIM_MSFS9
416
417 Handler._callSafe(lambda:
418 self._connectionListener.connected(fsType,
419 description))
420 self._connected = True
421 return attempts
422 except Exception, e:
423 print "fsuipc.Handler._connect: connection failed: " + \
424 util.utf2unicode(str(e)) + \
425 " (attempts: %d)" % (attempts,)
426 if attempts<self.NUM_CONNECTATTEMPTS:
427 time.sleep(self.CONNECT_INTERVAL)
428
429 def _handleConnection(self):
430 """Handle a living connection."""
431 with self._requestCondition:
432 while self._connectionRequested:
433 self._processRequests()
434 self._waitRequest()
435
436 def _waitRequest(self):
437 """Wait for the time of the next request.
438
439 Returns also, if the connection is no longer requested.
440
441 Should be called with the request condition lock held."""
442 while self._connectionRequested:
443 timeout = None
444 if self._periodicRequests:
445 self._periodicRequests.sort()
446 timeout = self._periodicRequests[0].nextFire - time.time()
447
448 if self._requests or \
449 (timeout is not None and timeout <= 0.0):
450 return
451
452 self._requestCondition.wait(timeout)
453
454 def _disconnect(self):
455 """Disconnect from the flight simulator."""
456 print "fsuipc.Handler._disconnect"
457 if self._connected:
458 pyuipc.close()
459 self._connected = False
460
461 def _processRequest(self, request, time, attempts):
462 """Process the given request.
463
464 If an exception occurs or invalid data is read too many times, we try
465 to reconnect.
466
467 This function returns only if the request has succeeded, or if a
468 connection is no longer requested.
469
470 This function is called with the request lock held, but is relased
471 whole processing the request and reconnecting."""
472 self._requestCondition.release()
473
474 #print "fsuipc.Handler._processRequest", request
475
476 needReconnect = False
477 try:
478 self._watchdogClient.set()
479 try:
480 if not request.process(time):
481 print "fsuipc.Handler._processRequest: FSUIPC returned invalid data too many times, reconnecting"
482 needReconnect = True
483 except TypeError as e:
484 print "fsuipc.Handler._processRequest: type error: " + \
485 util.utf2unicode(str(e)) + \
486 ("." if request.unimportant else
487 (", reconnecting (attempts=%d)." % (attempts,)))
488 needReconnect = not request.unimportant
489 except Exception as e:
490 print "fsuipc.Handler._processRequest: FSUIPC connection failed (" + \
491 util.utf2unicode(str(e)) + \
492 "), reconnecting (attempts=%d)." % (attempts,)
493 needReconnect = True
494
495 if needReconnect:
496 with self._requestCondition:
497 self._requests.insert(0, request)
498 self._disconnect()
499 return self._connect(autoReconnection = True, attempts = attempts)
500 else:
501 return 0
502 finally:
503 self._watchdogClient.clear()
504 self._requestCondition.acquire()
505
506 def _processRequests(self):
507 """Process any pending requests.
508
509 Will be called with the request lock held."""
510 attempts = 0
511 while self._connectionRequested and self._periodicRequests:
512 self._periodicRequests.sort()
513 request = self._periodicRequests[0]
514
515 t = time.time()
516
517 if request.nextFire>t:
518 break
519
520 attempts = self._processRequest(request, t, attempts)
521
522 while self._connectionRequested and self._requests:
523 request = self._requests[0]
524 del self._requests[0]
525
526 attempts = self._processRequest(request, None, attempts)
527
528 return self._connectionRequested
529
530#------------------------------------------------------------------------------
531
532class Simulator(object):
533 """The simulator class representing the interface to the flight simulator
534 via FSUIPC."""
535 # The basic data that should be queried all the time once we are connected
536 timeData = [ (0x0240, "H"), # Year
537 (0x023e, "H"), # Number of day in year
538 (0x023b, "b"), # UTC hour
539 (0x023c, "b"), # UTC minute
540 (0x023a, "b") ] # seconds
541
542 normalData = timeData + \
543 [ (0x3d00, -256), # The name of the current aircraft
544 (0x3c00, -256), # The path of the current AIR file
545 (0x1274, "h") ] # Text display mode
546
547 flareData1 = [ (0x023a, "b"), # Seconds of time
548 (0x31e4, "d"), # Radio altitude
549 (0x02c8, "d") ] # Vertical speed
550
551 flareStartData = [ (0x0e90, "H"), # Ambient wind speed
552 (0x0e92, "H"), # Ambient wind direction
553 (0x0e8a, "H") ] # Visibility
554
555 flareData2 = [ (0x023a, "b"), # Seconds of time
556 (0x0366, "H"), # On the ground
557 (0x02c8, "d"), # Vertical speed
558 (0x030c, "d"), # Touch-down rate
559 (0x02bc, "d"), # IAS
560 (0x0578, "d"), # Pitch
561 (0x057c, "d"), # Bank
562 (0x0580, "d") ] # Heading
563
564 TIME_SYNC_INTERVAL = 3.0
565
566 @staticmethod
567 def _getTimestamp(data):
568 """Convert the given data into a timestamp."""
569 timestamp = calendar.timegm(time.struct_time([data[0],
570 1, 1, 0, 0, 0, -1, 1, 0]))
571 timestamp += data[1] * 24 * 3600
572 timestamp += data[2] * 3600
573 timestamp += data[3] * 60
574 timestamp += data[4]
575
576 return timestamp
577
578 @staticmethod
579 def _appendHotkeyData(data, offset, hotkey):
580 """Append the data for the given hotkey to the given array, that is
581 intended to be passed to requestWrite call on the handler."""
582 data.append((offset + 0, "b", ord(hotkey.key)))
583
584 modifiers = 0
585 if hotkey.ctrl: modifiers |= 0x02
586 if hotkey.shift: modifiers |= 0x01
587 data.append((offset + 1, "b", modifiers))
588
589 data.append((offset + 2, "b", 0))
590
591 data.append((offset + 3, "b", 0))
592
593 def __init__(self, connectionListener, connectAttempts = -1,
594 connectInterval = 0.2):
595 """Construct the simulator.
596
597 The aircraft object passed must provide the following members:
598 - type: one of the AIRCRAFT_XXX constants from const.py
599 - modelChanged(aircraftName, modelName): called when the model handling
600 the aircraft has changed.
601 - handleState(aircraftState): handle the given state.
602 - flareStarted(windSpeed, windDirection, visibility, flareStart,
603 flareStartFS): called when the flare has
604 started. windSpeed is in knots, windDirection is in degrees and
605 visibility is in metres. flareStart and flareStartFS are two time
606 values expressed in seconds that can be used to calculate the flare
607 time.
608 - flareFinished(flareEnd, flareEndFS, tdRate, tdRateCalculatedByFS,
609 ias, pitch, bank, heading): called when the flare has
610 finished, i.e. the aircraft is on the ground. flareEnd and flareEndFS
611 are the two time values corresponding to the touchdown time. tdRate is
612 the touch-down rate, tdRateCalculatedBySim indicates if the data comes
613 from the simulator or was calculated by the adapter. The other data
614 are self-explanatory and expressed in their 'natural' units."""
615 self._fsType = None
616 self._aircraft = None
617
618 self._handler = Handler(self,
619 connectAttempts = connectAttempts,
620 connectInterval = connectInterval)
621 self._connectionListener = connectionListener
622 self._handler.start()
623
624 self._scroll = False
625
626 self._syncTime = False
627 self._nextSyncTime = -1
628
629 self._normalRequestID = None
630
631 self._monitoringRequested = False
632 self._monitoring = False
633
634 self._aircraftName = None
635 self._aircraftModel = None
636
637 self._flareRequestID = None
638 self._flareRates = []
639 self._flareStart = None
640 self._flareStartFS = None
641
642 self._hotkeyLock = threading.Lock()
643 self._hotkeys = None
644 self._hotkeySetID = 0
645 self._hotkeySetGeneration = 0
646 self._hotkeyOffets = None
647 self._hotkeyRequestID = None
648 self._hotkeyCallback = None
649
650 self._latin1decoder = codecs.getdecoder("iso-8859-1")
651 self._fuelCallback = None
652
653 def connect(self, aircraft):
654 """Initiate a connection to the simulator."""
655 self._aircraft = aircraft
656 self._aircraftName = None
657 self._aircraftModel = None
658 self._handler.connect()
659 if self._normalRequestID is None:
660 self._nextSyncTime = -1
661 self._startDefaultNormal()
662
663 def reconnect(self):
664 """Initiate a reconnection to the simulator.
665
666 It does not reset already set up data, just calls connect() on the
667 handler."""
668 self._handler.connect()
669
670 def requestZFW(self, callback):
671 """Send a request for the ZFW."""
672 self._handler.requestRead([(0x3bfc, "d")], self._handleZFW, extra = callback)
673
674 def requestWeights(self, callback):
675 """Request the following weights: DOW, ZFW, payload.
676
677 These values will be passed to the callback function in this order, as
678 separate arguments."""
679 self._handler.requestRead([(0x13fc, "d")], self._handlePayloadCount,
680 extra = callback)
681
682 def requestTime(self, callback):
683 """Request the time from the simulator."""
684 self._handler.requestRead(Simulator.timeData, self._handleTime,
685 extra = callback)
686
687 def startMonitoring(self):
688 """Start the periodic monitoring of the aircraft and pass the resulting
689 state to the aircraft object periodically."""
690 assert not self._monitoringRequested
691 self._monitoringRequested = True
692
693 def stopMonitoring(self):
694 """Stop the periodic monitoring of the aircraft."""
695 assert self._monitoringRequested
696 self._monitoringRequested = False
697
698 def startFlare(self):
699 """Start monitoring the flare time.
700
701 At present it is assumed to be called from the FSUIPC thread, hence no
702 protection."""
703 #self._aircraft.logger.debug("startFlare")
704 if self._flareRequestID is None:
705 self._flareRates = []
706 self._flareRequestID = self._handler.requestPeriodicRead(0.1,
707 Simulator.flareData1,
708 self._handleFlare1)
709
710 def cancelFlare(self):
711 """Cancel monitoring the flare time.
712
713 At present it is assumed to be called from the FSUIPC thread, hence no
714 protection."""
715 if self._flareRequestID is not None:
716 self._handler.clearPeriodic(self._flareRequestID)
717 self._flareRequestID = None
718
719 def sendMessage(self, message, duration = 3,
720 _disconnect = False):
721 """Send a message to the pilot via the simulator.
722
723 duration is the number of seconds to keep the message displayed."""
724
725 print "fsuipc.Simulator.sendMessage:", message
726
727 if self._scroll:
728 if duration==0: duration = -1
729 elif duration == 1: duration = -2
730 else: duration = -duration
731
732 try:
733 message = str(message)
734 except Exception, e:
735 print "fsuipc.Simulator.sendMessage: failed to convert the message to a string:", e
736
737 data = [(0x3380, -1 - len(message), message),
738 (0x32fa, 'h', duration)]
739
740 #if _disconnect:
741 # print "fsuipc.Simulator.sendMessage(disconnect)", message
742
743 self._handler.requestWrite(data, self._handleMessageSent,
744 extra = _disconnect,
745 unimportant = True)
746
747 def getFuel(self, callback):
748 """Get the fuel information for the current model.
749
750 The callback will be called with a list of triplets with the following
751 items:
752 - the fuel tank identifier
753 - the current weight of the fuel in the tank (in kgs)
754 - the current total capacity of the tank (in kgs)."""
755 if self._aircraftModel is None:
756 self._fuelCallback = callback
757 else:
758 self._aircraftModel.getFuel(self._handler, callback)
759
760 def setFuelLevel(self, levels):
761 """Set the fuel level to the given ones.
762
763 levels is an array of two-tuples, where each tuple consists of the
764 following:
765 - the const.FUELTANK_XXX constant denoting the tank that must be set,
766 - the requested level of the fuel as a floating-point value between 0.0
767 and 1.0."""
768 if self._aircraftModel is not None:
769 self._aircraftModel.setFuelLevel(self._handler, levels)
770
771 def enableTimeSync(self):
772 """Enable the time synchronization."""
773 self._nextSyncTime = -1
774 self._syncTime = True
775
776 def disableTimeSync(self):
777 """Enable the time synchronization."""
778 self._syncTime = False
779 self._nextSyncTime = -1
780
781 def listenHotkeys(self, hotkeys, callback):
782 """Start listening to the given hotkeys.
783
784 callback is function expecting two arguments:
785 - the ID of the hotkey set as returned by this function,
786 - the list of the indexes of the hotkeys that were pressed."""
787 with self._hotkeyLock:
788 assert self._hotkeys is None
789
790 self._hotkeys = hotkeys
791 self._hotkeySetID += 1
792 self._hotkeySetGeneration = 0
793 self._hotkeyCallback = callback
794
795 self._handler.requestRead([(0x320c, "u")],
796 self._handleNumHotkeys,
797 (self._hotkeySetID,
798 self._hotkeySetGeneration))
799
800 return self._hotkeySetID
801
802 def clearHotkeys(self):
803 """Clear the current hotkey set.
804
805 Note that it is possible, that the callback function set either
806 previously or after calling this function by listenHotkeys() will be
807 called with data from the previous hotkey set.
808
809 Therefore it is recommended to store the hotkey set ID somewhere and
810 check that in the callback function. Right before calling
811 clearHotkeys(), this stored ID should be cleared so that the check
812 fails for sure."""
813 with self._hotkeyLock:
814 if self._hotkeys is not None:
815 self._hotkeys = None
816 self._hotkeySetID += 1
817 self._hotkeyCallback = None
818 self._clearHotkeyRequest()
819
820 def disconnect(self, closingMessage = None, duration = 3):
821 """Disconnect from the simulator."""
822 assert not self._monitoringRequested
823
824 print "fsuipc.Simulator.disconnect", closingMessage, duration
825
826 self._stopNormal()
827 self.clearHotkeys()
828 if closingMessage is None:
829 self._handler.disconnect()
830 else:
831 self.sendMessage(closingMessage, duration = duration,
832 _disconnect = True)
833
834 def connected(self, fsType, descriptor):
835 """Called when a connection has been established to the flight
836 simulator of the given type."""
837 self._fsType = fsType
838 with self._hotkeyLock:
839 if self._hotkeys is not None:
840 self._hotkeySetGeneration += 1
841
842 self._handler.requestRead([(0x320c, "u")],
843 self._handleNumHotkeys,
844 (self._hotkeySetID,
845 self._hotkeySetGeneration))
846 self._connectionListener.connected(fsType, descriptor)
847
848 def connectionFailed(self):
849 """Called when the connection could not be established."""
850 with self._hotkeyLock:
851 self._clearHotkeyRequest()
852 self._connectionListener.connectionFailed()
853
854 def disconnected(self):
855 """Called when a connection to the flight simulator has been broken."""
856 with self._hotkeyLock:
857 self._clearHotkeyRequest()
858 self._connectionListener.disconnected()
859
860 def _startDefaultNormal(self):
861 """Start the default normal periodic request."""
862 assert self._normalRequestID is None
863 self._normalRequestID = \
864 self._handler.requestPeriodicRead(1.0,
865 Simulator.normalData,
866 self._handleNormal,
867 validator = self._validateNormal)
868
869 def _stopNormal(self):
870 """Stop the normal period request."""
871 assert self._normalRequestID is not None
872 self._handler.clearPeriodic(self._normalRequestID)
873 self._normalRequestID = None
874 self._monitoring = False
875
876 def _validateNormal(self, data, extra):
877 """Validate the normal data."""
878 return data[0]!=0 and data[1]!=0 and len(data[5])>0 and len(data[6])>0
879
880 def _handleNormal(self, data, extra):
881 """Handle the reply to the normal request.
882
883 At the beginning the result consists the data for normalData. When
884 monitoring is started, it contains the result also for the
885 aircraft-specific values.
886 """
887 timestamp = Simulator._getTimestamp(data)
888
889 createdNewModel = self._setAircraftName(timestamp, data[5], data[6])
890 if self._fuelCallback is not None:
891 self._aircraftModel.getFuel(self._handler, self._fuelCallback)
892 self._fuelCallback = None
893
894 self._scroll = data[7]!=0
895
896 if self._monitoringRequested and not self._monitoring:
897 self._stopNormal()
898 self._startMonitoring()
899 elif self._monitoring and not self._monitoringRequested:
900 self._stopNormal()
901 self._startDefaultNormal()
902 elif self._monitoring and self._aircraftModel is not None and \
903 not createdNewModel:
904 aircraftState = self._aircraftModel.getAircraftState(self._aircraft,
905 timestamp, data)
906
907 self._checkTimeSync(aircraftState)
908
909 self._aircraft.handleState(aircraftState)
910
911 def _checkTimeSync(self, aircraftState):
912 """Check if we need to synchronize the FS time."""
913 if not self._syncTime or aircraftState.paused or \
914 self._flareRequestID is not None:
915 self._nextSyncTime = -1
916 return
917
918 now = time.time()
919 seconds = time.gmtime(now).tm_sec
920
921 if seconds>30 and seconds<59:
922 if self._nextSyncTime > (now - 0.49):
923 return
924
925 self._handler.requestWrite([(0x023a, "b", int(seconds))],
926 self._handleTimeSynced)
927
928 #print "Set the seconds to ", seconds
929
930 if self._nextSyncTime<0:
931 self._nextSyncTime = now
932
933 self._nextSyncTime += Simulator.TIME_SYNC_INTERVAL
934 else:
935 self._nextSyncTime = -1
936
937 def _handleTimeSynced(self, success, extra):
938 """Callback for the time sync result."""
939 pass
940
941 def _setAircraftName(self, timestamp, name, airPath):
942 """Set the name of the aicraft and if it is different from the
943 previous, create a new model for it.
944
945 If so, also notifty the aircraft about the change.
946
947 Return if a new model was created."""
948 name = self._latin1decoder(name)[0]
949 airPath = self._latin1decoder(airPath)[0]
950
951 aircraftName = (name, airPath)
952 if aircraftName==self._aircraftName:
953 return False
954
955 print "fsuipc.Simulator: new aircraft name and air file path: %s, %s" % \
956 (name, airPath)
957
958 self._aircraftName = aircraftName
959 needNew = self._aircraftModel is None
960 needNew = needNew or\
961 not self._aircraftModel.doesHandle(self._aircraft, aircraftName)
962 if not needNew:
963 specialModel = AircraftModel.findSpecial(self._aircraft, aircraftName)
964 needNew = specialModel is not None and \
965 specialModel is not self._aircraftModel.__class__
966
967 if needNew:
968 self._setAircraftModel(AircraftModel.create(self._aircraft,
969 aircraftName))
970
971 self._aircraft.modelChanged(timestamp, name, self._aircraftModel.name)
972
973 return needNew
974
975 def _setAircraftModel(self, model):
976 """Set a new aircraft model.
977
978 It will be queried for the data to monitor and the monitoring request
979 will be replaced by a new one."""
980 self._aircraftModel = model
981
982 if self._monitoring:
983 self._stopNormal()
984 self._startMonitoring()
985
986 def _startMonitoring(self):
987 """Start monitoring with the current aircraft model."""
988 data = Simulator.normalData[:]
989 self._aircraftModel.addMonitoringData(data, self._fsType)
990
991 self._normalRequestID = \
992 self._handler.requestPeriodicRead(1.0, data,
993 self._handleNormal,
994 validator = self._validateNormal)
995 self._monitoring = True
996
997 def _addFlareRate(self, data):
998 """Append a flare rate to the list of last rates."""
999 if len(self._flareRates)>=3:
1000 del self._flareRates[0]
1001 self._flareRates.append(Handler.fsuipc2VS(data))
1002
1003 def _handleFlare1(self, data, normal):
1004 """Handle the first stage of flare monitoring."""
1005 #self._aircraft.logger.debug("handleFlare1: " + str(data))
1006 if Handler.fsuipc2radioAltitude(data[1])<=50.0:
1007 self._flareStart = time.time()
1008 self._flareStartFS = data[0]
1009 self._handler.clearPeriodic(self._flareRequestID)
1010 self._flareRequestID = \
1011 self._handler.requestPeriodicRead(0.1,
1012 Simulator.flareData2,
1013 self._handleFlare2)
1014 self._handler.requestRead(Simulator.flareStartData,
1015 self._handleFlareStart)
1016
1017 self._addFlareRate(data[2])
1018
1019 def _handleFlareStart(self, data, extra):
1020 """Handle the data need to notify the aircraft about the starting of
1021 the flare."""
1022 #self._aircraft.logger.debug("handleFlareStart: " + str(data))
1023 if data is not None:
1024 windDirection = data[1]*360.0/65536.0
1025 if windDirection<0.0: windDirection += 360.0
1026 self._aircraft.flareStarted(data[0], windDirection,
1027 data[2]*1609.344/100.0,
1028 self._flareStart, self._flareStartFS)
1029
1030 def _handleFlare2(self, data, normal):
1031 """Handle the first stage of flare monitoring."""
1032 #self._aircraft.logger.debug("handleFlare2: " + str(data))
1033 if data[1]!=0:
1034 flareEnd = time.time()
1035 self._handler.clearPeriodic(self._flareRequestID)
1036 self._flareRequestID = None
1037
1038 flareEndFS = data[0]
1039 if flareEndFS<self._flareStartFS:
1040 flareEndFS += 60
1041
1042 tdRate = Handler.fsuipc2VS(data[3])
1043 tdRateCalculatedByFS = True
1044 if tdRate==0 or tdRate>1000.0 or tdRate<-1000.0:
1045 tdRate = min(self._flareRates)
1046 tdRateCalculatedByFS = False
1047
1048 self._aircraft.flareFinished(flareEnd, flareEndFS,
1049 tdRate, tdRateCalculatedByFS,
1050 Handler.fsuipc2IAS(data[4]),
1051 Handler.fsuipc2Degrees(data[5]),
1052 Handler.fsuipc2Degrees(data[6]),
1053 Handler.fsuipc2PositiveDegrees(data[7]))
1054 else:
1055 self._addFlareRate(data[2])
1056
1057 def _handleZFW(self, data, callback):
1058 """Callback for a ZFW retrieval request."""
1059 zfw = data[0] * const.LBSTOKG / 256.0
1060 callback(zfw)
1061
1062 def _handleTime(self, data, callback):
1063 """Callback for a time retrieval request."""
1064 callback(Simulator._getTimestamp(data))
1065
1066 def _handlePayloadCount(self, data, callback):
1067 """Callback for the payload count retrieval request."""
1068 payloadCount = data[0]
1069 data = [(0x3bfc, "d"), (0x30c0, "f")]
1070 for i in range(0, payloadCount):
1071 data.append((0x1400 + i*48, "f"))
1072
1073 self._handler.requestRead(data, self._handleWeights,
1074 extra = callback)
1075
1076 def _handleWeights(self, data, callback):
1077 """Callback for the weights retrieval request."""
1078 zfw = data[0] * const.LBSTOKG / 256.0
1079 grossWeight = data[1] * const.LBSTOKG
1080 payload = sum(data[2:]) * const.LBSTOKG
1081 dow = zfw - payload
1082 callback(dow, payload, zfw, grossWeight)
1083
1084 def _handleMessageSent(self, success, disconnect):
1085 """Callback for a message sending request."""
1086 #print "fsuipc.Simulator._handleMessageSent", disconnect
1087 if disconnect:
1088 self._handler.disconnect()
1089
1090 def _handleNumHotkeys(self, data, (id, generation)):
1091 """Handle the result of the query of the number of hotkeys"""
1092 with self._hotkeyLock:
1093 if id==self._hotkeySetID and generation==self._hotkeySetGeneration:
1094 numHotkeys = data[0]
1095 print "fsuipc.Simulator._handleNumHotkeys: numHotkeys:", numHotkeys
1096 data = [(0x3210 + i*4, "d") for i in range(0, numHotkeys)]
1097 self._handler.requestRead(data, self._handleHotkeyTable,
1098 (id, generation))
1099
1100 def _setupHotkeys(self, data):
1101 """Setup the hiven hotkeys and return the data to be written.
1102
1103 If there were hotkeys set previously, they are reused as much as
1104 possible. Any of them not reused will be cleared."""
1105 hotkeys = self._hotkeys
1106 numHotkeys = len(hotkeys)
1107
1108 oldHotkeyOffsets = set([] if self._hotkeyOffets is None else
1109 self._hotkeyOffets)
1110
1111 self._hotkeyOffets = []
1112 numOffsets = 0
1113
1114 while oldHotkeyOffsets:
1115 offset = oldHotkeyOffsets.pop()
1116 self._hotkeyOffets.append(offset)
1117 numOffsets += 1
1118
1119 if numOffsets>=numHotkeys:
1120 break
1121
1122 for i in range(0, len(data)):
1123 if numOffsets>=numHotkeys:
1124 break
1125
1126 if data[i]==0:
1127 self._hotkeyOffets.append(0x3210 + i*4)
1128 numOffsets += 1
1129
1130 writeData = []
1131 for i in range(0, numOffsets):
1132 Simulator._appendHotkeyData(writeData,
1133 self._hotkeyOffets[i],
1134 hotkeys[i])
1135
1136 for offset in oldHotkeyOffsets:
1137 writeData.append((offset, "u", long(0)))
1138
1139 return writeData
1140
1141 def _handleHotkeyTable(self, data, (id, generation)):
1142 """Handle the result of the query of the hotkey table."""
1143 with self._hotkeyLock:
1144 if id==self._hotkeySetID and generation==self._hotkeySetGeneration:
1145 writeData = self._setupHotkeys(data)
1146 self._handler.requestWrite(writeData,
1147 self._handleHotkeysWritten,
1148 (id, generation))
1149
1150 def _handleHotkeysWritten(self, success, (id, generation)):
1151 """Handle the result of the hotkeys having been written."""
1152 with self._hotkeyLock:
1153 if success and id==self._hotkeySetID and \
1154 generation==self._hotkeySetGeneration:
1155 data = [(offset + 3, "b") for offset in self._hotkeyOffets]
1156
1157 self._hotkeyRequestID = \
1158 self._handler.requestPeriodicRead(0.5, data,
1159 self._handleHotkeys,
1160 (id, generation))
1161
1162 def _handleHotkeys(self, data, (id, generation)):
1163 """Handle the hotkeys."""
1164 with self._hotkeyLock:
1165 if id!=self._hotkeySetID or generation!=self._hotkeySetGeneration:
1166 return
1167
1168 callback = self._hotkeyCallback
1169 offsets = self._hotkeyOffets
1170
1171 hotkeysPressed = []
1172 for i in range(0, len(data)):
1173 if data[i]!=0:
1174 hotkeysPressed.append(i)
1175
1176 if hotkeysPressed:
1177 data = []
1178 for index in hotkeysPressed:
1179 data.append((offsets[index]+3, "b", int(0)))
1180 self._handler.requestWrite(data, self._handleHotkeysCleared)
1181
1182 callback(id, hotkeysPressed)
1183
1184 def _handleHotkeysCleared(self, sucess, extra):
1185 """Callback for the hotkey-clearing write request."""
1186
1187 def _clearHotkeyRequest(self):
1188 """Clear the hotkey request in the handler if there is any."""
1189 if self._hotkeyRequestID is not None:
1190 self._handler.clearPeriodic(self._hotkeyRequestID)
1191 self._hotkeyRequestID = None
1192
1193#------------------------------------------------------------------------------
1194
1195class AircraftModel(object):
1196 """Base class for the aircraft models.
1197
1198 Aircraft models handle the data arriving from FSUIPC and turn it into an
1199 object describing the aircraft's state."""
1200 monitoringData = [("paused", 0x0264, "H"),
1201 ("latitude", 0x0560, "l"),
1202 ("longitude", 0x0568, "l"),
1203 ("frozen", 0x3364, "H"),
1204 ("replay", 0x0628, "d"),
1205 ("slew", 0x05dc, "H"),
1206 ("overspeed", 0x036d, "b"),
1207 ("stalled", 0x036c, "b"),
1208 ("onTheGround", 0x0366, "H"),
1209 ("zfw", 0x3bfc, "d"),
1210 ("grossWeight", 0x30c0, "f"),
1211 ("heading", 0x0580, "d"),
1212 ("pitch", 0x0578, "d"),
1213 ("bank", 0x057c, "d"),
1214 ("ias", 0x02bc, "d"),
1215 ("mach", 0x11c6, "H"),
1216 ("groundSpeed", 0x02b4, "d"),
1217 ("vs", 0x02c8, "d"),
1218 ("radioAltitude", 0x31e4, "d"),
1219 ("altitude", 0x0570, "l"),
1220 ("gLoad", 0x11ba, "h"),
1221 ("flapsControl", 0x0bdc, "d"),
1222 ("flapsLeft", 0x0be0, "d"),
1223 ("flapsRight", 0x0be4, "d"),
1224 ("flapsAxis", 0x3414, "H"),
1225 ("flapsIncrement", 0x3bfa, "H"),
1226 ("lights", 0x0d0c, "H"),
1227 ("pitot", 0x029c, "b"),
1228 ("parking", 0x0bc8, "H"),
1229 ("gearControl", 0x0be8, "d"),
1230 ("noseGear", 0x0bec, "d"),
1231 ("spoilersArmed", 0x0bcc, "d"),
1232 ("spoilers", 0x0bd0, "d"),
1233 ("altimeter", 0x0330, "H"),
1234 ("qnh", 0x0ec6, "H"),
1235 ("nav1", 0x0350, "H"),
1236 ("nav1_obs", 0x0c4e, "H"),
1237 ("nav2", 0x0352, "H"),
1238 ("nav2_obs", 0x0c5e, "H"),
1239 ("adf1_main", 0x034c, "H"),
1240 ("adf1_ext", 0x0356, "H"),
1241 ("adf2_main", 0x02d4, "H"),
1242 ("adf2_ext", 0x02d6, "H"),
1243 ("squawk", 0x0354, "H"),
1244 ("windSpeed", 0x0e90, "H"),
1245 ("windDirection", 0x0e92, "H"),
1246 ("visibility", 0x0e8a, "H"),
1247 ("cog", 0x2ef8, "f"),
1248 ("xpdrC", 0x7b91, "b"),
1249 ("apMaster", 0x07bc, "d"),
1250 ("apHeadingHold", 0x07c8, "d"),
1251 ("apHeading", 0x07cc, "H"),
1252 ("apAltitudeHold", 0x07d0, "d"),
1253 ("apAltitude", 0x07d4, "u"),
1254 ("elevatorTrim", 0x2ea0, "f"),
1255 ("eng1DeIce", 0x08b2, "H"),
1256 ("eng2DeIce", 0x094a, "H"),
1257 ("propDeIce", 0x337c, "b"),
1258 ("structDeIce", 0x337d, "b")]
1259
1260 specialModels = []
1261
1262 @staticmethod
1263 def registerSpecial(clazz):
1264 """Register the given class as a special model."""
1265 AircraftModel.specialModels.append(clazz)
1266
1267 @staticmethod
1268 def findSpecial(aircraft, aircraftName):
1269 for specialModel in AircraftModel.specialModels:
1270 if specialModel.doesHandle(aircraft, aircraftName):
1271 return specialModel
1272 return None
1273
1274 @staticmethod
1275 def create(aircraft, aircraftName):
1276 """Create the model for the given aircraft name, and notify the
1277 aircraft about it."""
1278 specialModel = AircraftModel.findSpecial(aircraft, aircraftName)
1279 if specialModel is not None:
1280 return specialModel()
1281 if aircraft.type in _genericModels:
1282 return _genericModels[aircraft.type]()
1283 else:
1284 return GenericModel()
1285
1286 @staticmethod
1287 def convertBCD(data, length):
1288 """Convert a data item encoded as BCD into a string of the given number
1289 of digits."""
1290 bcd = ""
1291 for i in range(0, length):
1292 digit = chr(ord('0') + (data&0x0f))
1293 data >>= 4
1294 bcd = digit + bcd
1295 return bcd
1296
1297 @staticmethod
1298 def convertFrequency(data):
1299 """Convert the given frequency data to a string."""
1300 bcd = AircraftModel.convertBCD(data, 4)
1301 return "1" + bcd[0:2] + "." + bcd[2:4]
1302
1303 @staticmethod
1304 def convertADFFrequency(main, ext):
1305 """Convert the given ADF frequency data to a string."""
1306 mainBCD = AircraftModel.convertBCD(main, 4)
1307 extBCD = AircraftModel.convertBCD(ext, 4)
1308
1309 return (extBCD[1] if extBCD[1]!="0" else "") + \
1310 mainBCD[1:] + "." + extBCD[3]
1311
1312 def __init__(self, flapsNotches):
1313 """Construct the aircraft model.
1314
1315 flapsNotches is a list of degrees of flaps that are available on the aircraft."""
1316 self._flapsNotches = flapsNotches
1317 self._xpdrReliable = False
1318 self._flapsSet = -1
1319
1320 @property
1321 def name(self):
1322 """Get the name for this aircraft model."""
1323 return "FSUIPC/Generic"
1324
1325 def doesHandle(self, aircraft, aircraftName):
1326 """Determine if the model handles the given aircraft name.
1327
1328 This default implementation returns False."""
1329 return False
1330
1331 def _addOffsetWithIndexMember(self, dest, offset, type, attrName = None):
1332 """Add the given FSUIPC offset and type to the given array and a member
1333 attribute with the given name."""
1334 dest.append((offset, type))
1335 if attrName is not None:
1336 setattr(self, attrName, len(dest)-1)
1337
1338 def _addDataWithIndexMembers(self, dest, prefix, data):
1339 """Add FSUIPC data to the given array and also corresponding index
1340 member variables with the given prefix.
1341
1342 data is a list of triplets of the following items:
1343 - the name of the data item. The index member variable will have a name
1344 created by prepending the given prefix to this name.
1345 - the FSUIPC offset
1346 - the FSUIPC type
1347
1348 The latter two items will be appended to dest."""
1349 for (name, offset, type) in data:
1350 self._addOffsetWithIndexMember(dest, offset, type, prefix + name)
1351
1352 def addMonitoringData(self, data, fsType):
1353 """Add the model-specific monitoring data to the given array."""
1354 self._addDataWithIndexMembers(data, "_monidx_",
1355 AircraftModel.monitoringData)
1356
1357 def getAircraftState(self, aircraft, timestamp, data):
1358 """Get an aircraft state object for the given monitoring data."""
1359 state = fs.AircraftState()
1360
1361 state.timestamp = timestamp
1362
1363 state.latitude = data[self._monidx_latitude] * \
1364 90.0 / 10001750.0 / 65536.0 / 65536.0
1365
1366 state.longitude = data[self._monidx_longitude] * \
1367 360.0 / 65536.0 / 65536.0 / 65536.0 / 65536.0
1368 if state.longitude>180.0: state.longitude = 360.0 - state.longitude
1369
1370 state.paused = data[self._monidx_paused]!=0 or \
1371 data[self._monidx_frozen]!=0 or \
1372 data[self._monidx_replay]!=0
1373 state.trickMode = data[self._monidx_slew]!=0
1374
1375 state.overspeed = data[self._monidx_overspeed]!=0
1376 state.stalled = data[self._monidx_stalled]!=0
1377 state.onTheGround = data[self._monidx_onTheGround]!=0
1378
1379 state.zfw = data[self._monidx_zfw] * const.LBSTOKG / 256.0
1380 state.grossWeight = data[self._monidx_grossWeight] * const.LBSTOKG
1381
1382 state.heading = Handler.fsuipc2PositiveDegrees(data[self._monidx_heading])
1383
1384 state.pitch = Handler.fsuipc2Degrees(data[self._monidx_pitch])
1385 state.bank = Handler.fsuipc2Degrees(data[self._monidx_bank])
1386
1387 state.ias = Handler.fsuipc2IAS(data[self._monidx_ias])
1388 state.mach = data[self._monidx_mach] / 20480.0
1389 state.groundSpeed = data[self._monidx_groundSpeed]* 3600.0/65536.0/1852.0
1390 state.vs = Handler.fsuipc2VS(data[self._monidx_vs])
1391
1392 state.radioAltitude = \
1393 Handler.fsuipc2radioAltitude(data[self._monidx_radioAltitude])
1394 state.altitude = data[self._monidx_altitude]/const.FEETTOMETRES/65536.0/65536.0
1395
1396 state.gLoad = data[self._monidx_gLoad] / 625.0
1397
1398 numNotchesM1 = len(self._flapsNotches) - 1
1399 flapsIncrement = 16383 / numNotchesM1
1400 flapsControl = data[self._monidx_flapsControl]
1401 flapsIndex = flapsControl / flapsIncrement
1402 if flapsIndex < numNotchesM1:
1403 if (flapsControl - (flapsIndex*flapsIncrement) >
1404 (flapsIndex+1)*flapsIncrement - flapsControl):
1405 flapsIndex += 1
1406 state.flapsSet = self._flapsNotches[flapsIndex]
1407 if state.flapsSet != self._flapsSet:
1408 print "flapsControl: %d, flapsLeft: %d, flapsRight: %d, flapsAxis: %d, flapsIncrement: %d, flapsSet: %d, numNotchesM1: %d" % \
1409 (flapsControl, data[self._monidx_flapsLeft],
1410 data[self._monidx_flapsRight], data[self._monidx_flapsAxis],
1411 data[self._monidx_flapsIncrement], state.flapsSet, numNotchesM1)
1412 self._flapsSet = state.flapsSet
1413
1414 flapsLeft = data[self._monidx_flapsLeft]
1415 state.flaps = self._flapsNotches[-1]*flapsLeft/16383.0
1416
1417 lights = data[self._monidx_lights]
1418
1419 state.navLightsOn = (lights&0x01) != 0
1420 state.antiCollisionLightsOn = (lights&0x02) != 0
1421 state.landingLightsOn = (lights&0x04) != 0
1422 state.strobeLightsOn = (lights&0x10) != 0
1423
1424 state.pitotHeatOn = data[self._monidx_pitot]!=0
1425
1426 state.parking = data[self._monidx_parking]!=0
1427
1428 state.gearControlDown = data[self._monidx_gearControl]==16383
1429 state.gearsDown = data[self._monidx_noseGear]==16383
1430
1431 state.spoilersArmed = data[self._monidx_spoilersArmed]!=0
1432
1433 spoilers = data[self._monidx_spoilers]
1434 if spoilers<=4800:
1435 state.spoilersExtension = 0.0
1436 else:
1437 state.spoilersExtension = (spoilers - 4800) * 100.0 / (16383 - 4800)
1438
1439 state.altimeter = data[self._monidx_altimeter] / 16.0
1440 state.altimeterReliable = True
1441 state.qnh = data[self._monidx_qnh] / 16.0
1442
1443 state.ils = None
1444 state.ils_obs = None
1445 state.ils_manual = False
1446 state.nav1 = AircraftModel.convertFrequency(data[self._monidx_nav1])
1447 state.nav1_obs = data[self._monidx_nav1_obs]
1448 state.nav1_manual = True
1449 state.nav2 = AircraftModel.convertFrequency(data[self._monidx_nav2])
1450 state.nav2_obs = data[self._monidx_nav2_obs]
1451 state.nav2_manual = True
1452 state.adf1 = \
1453 AircraftModel.convertADFFrequency(data[self._monidx_adf1_main],
1454 data[self._monidx_adf1_ext])
1455 state.adf2 = \
1456 AircraftModel.convertADFFrequency(data[self._monidx_adf2_main],
1457 data[self._monidx_adf2_ext])
1458
1459 state.squawk = AircraftModel.convertBCD(data[self._monidx_squawk], 4)
1460
1461 state.windSpeed = data[self._monidx_windSpeed]
1462 state.windDirection = data[self._monidx_windDirection]*360.0/65536.0
1463 if state.windDirection<0.0: state.windDirection += 360.0
1464
1465 state.visibility = data[self._monidx_visibility]*1609.344/100.0
1466
1467 state.cog = data[self._monidx_cog]
1468
1469 if not self._xpdrReliable:
1470 self._xpdrReliable = data[self._monidx_xpdrC]!=0
1471
1472 state.xpdrC = data[self._monidx_xpdrC]!=1 \
1473 if self._xpdrReliable else None
1474 state.autoXPDR = False
1475
1476 state.apMaster = data[self._monidx_apMaster]!=0
1477 state.apHeadingHold = data[self._monidx_apHeadingHold]!=0
1478 state.apHeading = data[self._monidx_apHeading] * 360.0 / 65536.0
1479 state.apAltitudeHold = data[self._monidx_apAltitudeHold]!=0
1480 state.apAltitude = data[self._monidx_apAltitude] / \
1481 const.FEETTOMETRES / 65536.0
1482
1483
1484 state.elevatorTrim = data[self._monidx_elevatorTrim] * 180.0 / math.pi
1485
1486 state.antiIceOn = data[self._monidx_eng1DeIce]!=0 or \
1487 data[self._monidx_eng2DeIce]!=0 or \
1488 data[self._monidx_propDeIce]!=0 or \
1489 data[self._monidx_structDeIce]!=0
1490
1491 return state
1492
1493#------------------------------------------------------------------------------
1494
1495class GenericAircraftModel(AircraftModel):
1496 """A generic aircraft model that can handle the fuel levels, the N1 or RPM
1497 values and some other common parameters in a generic way."""
1498
1499 def __init__(self, flapsNotches, fuelTanks, numEngines, isN1 = True):
1500 """Construct the generic aircraft model with the given data.
1501
1502 flapsNotches is an array of how much degrees the individual flaps
1503 notches mean.
1504
1505 fuelTanks is an array of const.FUELTANK_XXX constants about the
1506 aircraft's fuel tanks. They will be converted to offsets.
1507
1508 numEngines is the number of engines the aircraft has.
1509
1510 isN1 determines if the engines have an N1 value or an RPM value
1511 (e.g. pistons)."""
1512 super(GenericAircraftModel, self).__init__(flapsNotches = flapsNotches)
1513
1514 self._fuelTanks = fuelTanks
1515 self._fuelStartIndex = None
1516 self._numEngines = numEngines
1517 self._engineStartIndex = None
1518 self._isN1 = isN1
1519
1520 def doesHandle(self, aircraft, aircraftName):
1521 """Determine if the model handles the given aircraft name.
1522
1523 This implementation returns True."""
1524 return True
1525
1526 def addMonitoringData(self, data, fsType):
1527 """Add the model-specific monitoring data to the given array."""
1528 super(GenericAircraftModel, self).addMonitoringData(data, fsType)
1529
1530 self._fuelStartIndex = self._addFuelOffsets(data, "_monidx_fuelWeight")
1531
1532 self._engineStartIndex = len(data)
1533 for i in range(0, self._numEngines):
1534 self._addOffsetWithIndexMember(data, 0x088c + i * 0x98, "h") # throttle lever
1535 if self._isN1:
1536 self._addOffsetWithIndexMember(data, 0x2000 + i * 0x100, "f") # N1
1537 else:
1538 self._addOffsetWithIndexMember(data, 0x0898 + i * 0x98, "H") # RPM
1539 self._addOffsetWithIndexMember(data, 0x08c8 + i * 0x98, "H") # RPM scaler
1540
1541 def getAircraftState(self, aircraft, timestamp, data):
1542 """Get the aircraft state.
1543
1544 Get it from the parent, and then add the data about the fuel levels and
1545 the engine parameters."""
1546 state = super(GenericAircraftModel, self).getAircraftState(aircraft,
1547 timestamp,
1548 data)
1549
1550 (state.fuel, state.totalFuel) = \
1551 self._convertFuelData(data, index = self._monidx_fuelWeight)
1552
1553 state.n1 = [] if self._isN1 else None
1554 state.rpm = None if self._isN1 else []
1555 itemsPerEngine = 2 if self._isN1 else 3
1556
1557 state.reverser = []
1558 for i in range(self._engineStartIndex,
1559 self._engineStartIndex +
1560 itemsPerEngine*self._numEngines,
1561 itemsPerEngine):
1562 state.reverser.append(data[i]<0)
1563 if self._isN1:
1564 state.n1.append(data[i+1])
1565 else:
1566 state.rpm.append(data[i+1] * data[i+2]/65536.0)
1567
1568 return state
1569
1570 def getFuel(self, handler, callback):
1571 """Get the fuel information for this model.
1572
1573 See Simulator.getFuel for more information. This
1574 implementation simply queries the fuel tanks given to the
1575 constructor."""
1576 data = []
1577 self._addFuelOffsets(data)
1578
1579 handler.requestRead(data, self._handleFuelRetrieved,
1580 extra = callback)
1581
1582 def setFuelLevel(self, handler, levels):
1583 """Set the fuel level.
1584
1585 See the description of Simulator.setFuelLevel. This
1586 implementation simply sets the fuel tanks as given."""
1587 data = []
1588 for (tank, level) in levels:
1589 offset = _tank2offset[tank]
1590 value = long(level * 128.0 * 65536.0)
1591 data.append( (offset, "u", value) )
1592
1593 handler.requestWrite(data, self._handleFuelWritten)
1594
1595 def _addFuelOffsets(self, data, weightIndexName = None):
1596 """Add the fuel offsets to the given data array.
1597
1598 If weightIndexName is not None, it will be the name of the
1599 fuel weight index.
1600
1601 Returns the index of the first fuel tank's data."""
1602 self._addOffsetWithIndexMember(data, 0x0af4, "H", weightIndexName)
1603
1604 fuelStartIndex = len(data)
1605 for tank in self._fuelTanks:
1606 offset = _tank2offset[tank]
1607 self._addOffsetWithIndexMember(data, offset, "u") # tank level
1608 self._addOffsetWithIndexMember(data, offset+4, "u") # tank capacity
1609
1610 return fuelStartIndex
1611
1612 def _convertFuelData(self, data, index = 0, addCapacities = False):
1613 """Convert the given data into a fuel info list.
1614
1615 The list consists of two or three-tuples of the following
1616 items:
1617 - the fuel tank ID,
1618 - the amount of the fuel in kg,
1619 - if addCapacities is True, the total capacity of the tank."""
1620 fuelWeight = data[index] / 256.0
1621 index += 1
1622
1623 result = []
1624 totalFuel = 0
1625 for fuelTank in self._fuelTanks:
1626 capacity = data[index+1] * fuelWeight * const.LBSTOKG
1627 if capacity>=1.0:
1628 amount = data[index] * capacity / 128.0 / 65536.0
1629
1630 result.append( (fuelTank, amount, capacity) if addCapacities
1631 else (fuelTank, amount))
1632 totalFuel += amount
1633 index += 2
1634
1635 return (result, totalFuel)
1636
1637 def _handleFuelRetrieved(self, data, callback):
1638 """Callback for a fuel retrieval request."""
1639 (fuelData, _totalFuel) = self._convertFuelData(data,
1640 addCapacities = True)
1641 callback(fuelData)
1642
1643 def _handleFuelWritten(self, success, extra):
1644 """Callback for a fuel setting request."""
1645 pass
1646
1647#------------------------------------------------------------------------------
1648
1649class GenericModel(GenericAircraftModel):
1650 """Generic aircraft model for an unknown type."""
1651 def __init__(self):
1652 """Construct the model."""
1653 super(GenericModel, self). \
1654 __init__(flapsNotches = [0, 10, 20, 30],
1655 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_RIGHT],
1656 numEngines = 2)
1657
1658 @property
1659 def name(self):
1660 """Get the name for this aircraft model."""
1661 return "FSUIPC/Generic"
1662
1663#------------------------------------------------------------------------------
1664
1665class B737Model(GenericAircraftModel):
1666 """Generic model for the Boeing 737 Classing and NG aircraft."""
1667 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_CENTRE, const.FUELTANK_RIGHT]
1668
1669 def __init__(self):
1670 """Construct the model."""
1671 super(B737Model, self). \
1672 __init__(flapsNotches = [0, 1, 2, 5, 10, 15, 25, 30, 40],
1673 fuelTanks = B737Model.fuelTanks,
1674 numEngines = 2)
1675
1676 @property
1677 def name(self):
1678 """Get the name for this aircraft model."""
1679 return "FSUIPC/Generic Boeing 737"
1680
1681 # Note: the function below should be enabled if testing the speed-based
1682 # takeoff on Linux
1683 # def getAircraftState(self, aircraft, timestamp, data):
1684 # """Get the aircraft state.
1685
1686 # Get it from the parent, and then check some PMDG-specific stuff."""
1687 # state = super(B737Model, self).getAircraftState(aircraft,
1688 # timestamp,
1689 # data)
1690 # state.strobeLightsOn = None
1691 # state.xpdrC = None
1692
1693 # return state
1694
1695#------------------------------------------------------------------------------
1696
1697class PMDGBoeing737NGModel(B737Model):
1698 """A model handler for the PMDG Boeing 737NG model."""
1699 @staticmethod
1700 def doesHandle(aircraft, (name, airPath)):
1701 """Determine if this model handler handles the aircraft with the given
1702 name."""
1703 return aircraft.type in [const.AIRCRAFT_B736,
1704 const.AIRCRAFT_B737,
1705 const.AIRCRAFT_B738,
1706 const.AIRCRAFT_B738C] and \
1707 (name.find("PMDG")!=-1 or airPath.find("PMDG")!=-1) and \
1708 (name.find("737")!=-1 or airPath.find("737")!=-1) and \
1709 (name.find("600")!=-1 or airPath.find("600")!=-1 or \
1710 name.find("700")!=-1 or airPath.find("700")!=-1 or \
1711 name.find("800")!=-1 or airPath.find("800")!=-1 or \
1712 name.find("900")!=-1 or airPath.find("900")!=-1)
1713
1714 def __init__(self):
1715 """Construct the model."""
1716 super(PMDGBoeing737NGModel, self).__init__()
1717 self._lastGearControl = None
1718 self._lastNoseGear = None
1719
1720 @property
1721 def name(self):
1722 """Get the name for this aircraft model."""
1723 return "FSUIPC/PMDG Boeing 737NG(X)"
1724
1725 def addMonitoringData(self, data, fsType):
1726 """Add the model-specific monitoring data to the given array."""
1727 self._fsType = fsType
1728
1729 super(PMDGBoeing737NGModel, self).addMonitoringData(data, fsType)
1730
1731 if fsType==const.SIM_MSFSX or fsType==const.SIM_P3D:
1732 print "%s detected, adding PMDG 737 NGX-specific offsets" % \
1733 ("FSX" if fsType==const.SIM_MSFSX else "P3D",)
1734 self._addOffsetWithIndexMember(data, 0x6500, "b",
1735 "_pmdgidx_lts_positionsw")
1736 self._addOffsetWithIndexMember(data, 0x6545, "b", "_pmdgidx_cmda")
1737 self._addOffsetWithIndexMember(data, 0x653f, "b", "_pmdgidx_aphdgsel")
1738 self._addOffsetWithIndexMember(data, 0x6543, "b", "_pmdgidx_apalthold")
1739 self._addOffsetWithIndexMember(data, 0x652c, "H", "_pmdgidx_aphdg")
1740 self._addOffsetWithIndexMember(data, 0x652e, "H", "_pmdgidx_apalt")
1741 self._addOffsetWithIndexMember(data, 0x65cd, "b", "_pmdgidx_xpdr")
1742 else:
1743 print "FS9 detected, adding PMDG 737 NG-specific offsets"
1744 self._addOffsetWithIndexMember(data, 0x6202, "b", "_pmdgidx_switches")
1745 self._addOffsetWithIndexMember(data, 0x6216, "b", "_pmdgidx_xpdr")
1746 self._addOffsetWithIndexMember(data, 0x6227, "b", "_pmdgidx_ap")
1747 self._addOffsetWithIndexMember(data, 0x6228, "b", "_pmdgidx_aphdgsel")
1748 self._addOffsetWithIndexMember(data, 0x622a, "b", "_pmdgidx_apalthold")
1749 self._addOffsetWithIndexMember(data, 0x622c, "H", "_pmdgidx_aphdg")
1750 self._addOffsetWithIndexMember(data, 0x622e, "H", "_pmdgidx_apalt")
1751
1752 def getAircraftState(self, aircraft, timestamp, data):
1753 """Get the aircraft state.
1754
1755 Get it from the parent, and then check some PMDG-specific stuff."""
1756 state = super(PMDGBoeing737NGModel, self).getAircraftState(aircraft,
1757 timestamp,
1758 data)
1759 if self._fsType==const.SIM_MSFS9:
1760 if data[self._pmdgidx_switches]&0x01==0x01:
1761 state.altimeter = 1013.25
1762 state.apMaster = data[self._pmdgidx_ap]&0x02==0x02
1763 state.apHeadingHold = data[self._pmdgidx_aphdgsel]==2
1764 apalthold = data[self._pmdgidx_apalthold]
1765 state.apAltitudeHold = apalthold>=3 and apalthold<=6
1766 state.xpdrC = data[self._pmdgidx_xpdr]==4
1767
1768 # Uncomment the following to test the speed-based takeoff
1769 # state.strobeLightsOn = None
1770 # state.xpdrC = None
1771 else:
1772 state.apMaster = data[self._pmdgidx_cmda]!=0
1773 state.apHeadingHold = data[self._pmdgidx_aphdgsel]!=0
1774 state.apAltitudeHold = data[self._pmdgidx_apalthold]!=0
1775
1776 # state.strobeLightsOn = data[self._pmdgidx_lts_positionsw]==0x02
1777 # state.xpdrC = data[self._pmdgidx_xpdr]==4
1778 state.strobeLightsOn = None
1779 state.xpdrC = None
1780
1781 state.apHeading = data[self._pmdgidx_aphdg]
1782 state.apAltitude = data[self._pmdgidx_apalt]
1783 state.elevatorTrim += 5.0
1784
1785 gearControl = data[self._monidx_gearControl]
1786 noseGear = data[self._monidx_noseGear]
1787
1788 if gearControl!=self._lastGearControl or noseGear!=self._lastNoseGear:
1789 print "gearControl:", gearControl, " noseGear:", noseGear
1790 self._lastGearControl = gearControl
1791 self._lastNoseGear = noseGear
1792
1793 return state
1794
1795#------------------------------------------------------------------------------
1796
1797class B767Model(GenericAircraftModel):
1798 """Generic model for the Boeing 767 aircraft."""
1799 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_CENTRE, const.FUELTANK_RIGHT]
1800
1801 def __init__(self):
1802 """Construct the model."""
1803 super(B767Model, self). \
1804 __init__(flapsNotches = [0, 1, 5, 15, 20, 25, 30],
1805 fuelTanks = B767Model.fuelTanks,
1806 numEngines = 2)
1807
1808 @property
1809 def name(self):
1810 """Get the name for this aircraft model."""
1811 return "FSUIPC/Generic Boeing 767"
1812
1813#------------------------------------------------------------------------------
1814
1815class DH8DModel(GenericAircraftModel):
1816 """Generic model for the Bombardier Dash 8-Q400 aircraft."""
1817 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_RIGHT]
1818
1819 def __init__(self):
1820 """Construct the model."""
1821 super(DH8DModel, self). \
1822 __init__(flapsNotches = [0, 5, 10, 15, 35],
1823 fuelTanks = DH8DModel.fuelTanks,
1824 numEngines = 2)
1825
1826 @property
1827 def name(self):
1828 """Get the name for this aircraft model."""
1829 return "FSUIPC/Generic Bombardier Dash 8-Q400"
1830
1831#------------------------------------------------------------------------------
1832
1833class DreamwingsDH8DModel(DH8DModel):
1834 """Model handler for the Dreamwings Dash 8-Q400."""
1835 @staticmethod
1836 def doesHandle(aircraft, (name, airPath)):
1837 """Determine if this model handler handles the aircraft with the given
1838 name."""
1839 return aircraft.type==const.AIRCRAFT_DH8D and \
1840 (name.find("Dreamwings")!=-1 or airPath.find("Dreamwings")!=-1) and \
1841 (name.find("Dash")!=-1 or airPath.find("Dash")!=-1) and \
1842 (name.find("Q400")!=-1 or airPath.find("Q400")!=-1) and \
1843 airPath.find("Dash8Q400")!=-1
1844
1845 @property
1846 def name(self):
1847 """Get the name for this aircraft model."""
1848 return "FSUIPC/Dreamwings Bombardier Dash 8-Q400"
1849
1850 def addMonitoringData(self, data, fsType):
1851 """Add the model-specific monitoring data to the given array."""
1852 super(DreamwingsDH8DModel, self).addMonitoringData(data, fsType)
1853
1854 self._addOffsetWithIndexMember(data, 0x132c, "d", "_dwdh8d_navgps")
1855
1856 def getAircraftState(self, aircraft, timestamp, data):
1857 """Get the aircraft state.
1858
1859 Get it from the parent, and then invert the pitot heat state."""
1860 state = super(DreamwingsDH8DModel, self).getAircraftState(aircraft,
1861 timestamp,
1862 data)
1863 if data[self._dwdh8d_navgps]==1:
1864 state.apHeading = None
1865
1866 return state
1867
1868#------------------------------------------------------------------------------
1869
1870class MajesticDH8DModel(DH8DModel):
1871 """Model handler for the Majestic Dash 8-Q400."""
1872 @staticmethod
1873 def doesHandle(aircraft, (name, airPath)):
1874 """Determine if this model handler handles the aircraft with the given
1875 name."""
1876 return aircraft.type==const.AIRCRAFT_DH8D and \
1877 (name.find("MJC8Q400")!=-1 or \
1878 airPath.lower().find("mjc8q400") or \
1879 airPath.lower().find("mjc8q4.air"))
1880
1881 @property
1882 def name(self):
1883 """Get the name for this aircraft model."""
1884 return "FSUIPC/Majestic Bombardier Dash 8-Q400"
1885
1886 def getAircraftState(self, aircraft, timestamp, data):
1887 """Get the aircraft state.
1888
1889 Get it from the parent, and then clear the anti-collision and landing
1890 lights."""
1891 state = super(MajesticDH8DModel, self).getAircraftState(aircraft,
1892 timestamp,
1893 data)
1894 state.antiCollisionLightsOn = None
1895 state.strobeLightsOn = None
1896 state.pitotHeatOn = None
1897
1898 # G-load seems to be offset by -1.0 (i.e a value of 0 seem to mean
1899 # a G-load of 1.0)
1900 state.gLoad += 1.0
1901
1902 # None of the gear values seem to work correctly
1903 state.gearsDown = state.gearControlDown
1904
1905 # Th N1 values cannot be read either
1906 state.n1 = [None, None]
1907
1908 return state
1909
1910#------------------------------------------------------------------------------
1911
1912class CRJ2Model(GenericAircraftModel):
1913 """Generic model for the Bombardier CRJ-200 aircraft."""
1914 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_CENTRE, const.FUELTANK_RIGHT]
1915
1916 def __init__(self):
1917 """Construct the model."""
1918 super(CRJ2Model, self). \
1919 __init__(flapsNotches = [0, 8, 20, 30, 45],
1920 fuelTanks = CRJ2Model.fuelTanks,
1921 numEngines = 2)
1922
1923 @property
1924 def name(self):
1925 """Get the name for this aircraft model."""
1926 return "FSUIPC/Generic Bombardier CRJ-200"
1927
1928#------------------------------------------------------------------------------
1929
1930class F70Model(GenericAircraftModel):
1931 """Generic model for the Fokker F70 aircraft."""
1932 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_CENTRE, const.FUELTANK_RIGHT]
1933
1934 def __init__(self):
1935 """Construct the model."""
1936 super(F70Model, self). \
1937 __init__(flapsNotches = [0, 8, 15, 25, 42],
1938 fuelTanks = F70Model.fuelTanks,
1939 numEngines = 2)
1940
1941 @property
1942 def name(self):
1943 """Get the name for this aircraft model."""
1944 return "FSUIPC/Generic Fokker 70"
1945
1946#------------------------------------------------------------------------------
1947
1948class DAF70Model(F70Model):
1949 """Model for the Digital Aviation F70 implementation on FS9."""
1950 @staticmethod
1951 def doesHandle(aircraft, (name, airPath)):
1952 """Determine if this model handler handles the aircraft with the given
1953 name."""
1954 return aircraft.type == const.AIRCRAFT_F70 and \
1955 (airPath.endswith("fokker70_2k4_v4.1.air") or
1956 airPath.endswith("fokker70_2k4_v4.3.air") or
1957 airPath.lower().endswith("fokker70_fsx_v4.3.air"))
1958
1959 @property
1960 def name(self):
1961 """Get the name for this aircraft model."""
1962 return "FSUIPC/Digital Aviation Fokker 70"
1963
1964 def getAircraftState(self, aircraft, timestamp, data):
1965 """Get the aircraft state.
1966
1967 Get it from the parent, and then invert the pitot heat state."""
1968 state = super(DAF70Model, self).getAircraftState(aircraft,
1969 timestamp,
1970 data)
1971 state.navLightsOn = None
1972 state.landingLightsOn = None
1973
1974 state.altimeterReliable = False
1975
1976 state.ils = state.nav1
1977 state.ils_obs = state.nav1_obs
1978 state.ils_manual = state.nav1_manual
1979
1980 state.nav1 = state.nav2
1981 state.nav1_obs = state.nav2_obs
1982 state.nav1_manual = aircraft.flight.stage!=const.STAGE_CRUISE
1983
1984 state.nav2 = None
1985 state.nav2_obs = None
1986 state.nav2_manual = False
1987
1988 state.autoXPDR = True
1989
1990 return state
1991
1992#------------------------------------------------------------------------------
1993
1994class DC3Model(GenericAircraftModel):
1995 """Generic model for the Lisunov Li-2 (DC-3) aircraft."""
1996 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_CENTRE,
1997 const.FUELTANK_RIGHT]
1998 # fuelTanks = [const.FUELTANK_LEFT_AUX, const.FUELTANK_LEFT,
1999 # const.FUELTANK_RIGHT, const.FUELTANK_RIGHT_AUX]
2000
2001 def __init__(self):
2002 """Construct the model."""
2003 super(DC3Model, self). \
2004 __init__(flapsNotches = [0, 15, 30, 45],
2005 fuelTanks = DC3Model.fuelTanks,
2006 numEngines = 2, isN1 = False)
2007 self._leftLevel = 0.0
2008 self._rightLevel = 0.0
2009
2010 @property
2011 def name(self):
2012 """Get the name for this aircraft model."""
2013 return "FSUIPC/Generic Lisunov Li-2 (DC-3)"
2014
2015 def _convertFuelData(self, data, index = 0, addCapacities = False):
2016 """Convert the given data into a fuel info list.
2017
2018 It assumes to receive the 3 fuel tanks as seen above (left,
2019 centre and right) and converts it to left aux, left, right,
2020 and right aux. The amount in the left tank goes into left aux,
2021 the amount of the right tank goes into right aux and the
2022 amount of the centre tank goes into the left and right tanks
2023 evenly distributed."""
2024 (rawFuelData, totalFuel) = \
2025 super(DC3Model, self)._convertFuelData(data, index, addCapacities)
2026
2027 centreAmount = rawFuelData[1][1]
2028 if addCapacities:
2029 centreCapacity = rawFuelData[1][2]
2030 self._leftLevel = self._rightLevel = \
2031 centreAmount / centreCapacity / 2.0
2032 fuelData = [(const.FUELTANK_LEFT_AUX,
2033 rawFuelData[0][1], rawFuelData[0][2]),
2034 (const.FUELTANK_LEFT,
2035 centreAmount/2.0, centreCapacity/2.0),
2036 (const.FUELTANK_RIGHT,
2037 centreAmount/2.0, centreCapacity/2.0),
2038 (const.FUELTANK_RIGHT_AUX,
2039 rawFuelData[2][1], rawFuelData[2][2])]
2040 else:
2041 fuelData = [(const.FUELTANK_LEFT_AUX, rawFuelData[0][1]),
2042 (const.FUELTANK_LEFT, centreAmount/2.0),
2043 (const.FUELTANK_RIGHT, centreAmount/2.0),
2044 (const.FUELTANK_RIGHT_AUX, rawFuelData[2][1])]
2045
2046 return (fuelData, totalFuel)
2047
2048 def setFuelLevel(self, handler, levels):
2049 """Set the fuel level.
2050
2051 See the description of Simulator.setFuelLevel. This
2052 implementation assumes to get the four-tank representation,
2053 as returned by getFuel()."""
2054 leftLevel = None
2055 centreLevel = None
2056 rightLevel = None
2057
2058 for (tank, level) in levels:
2059 if tank==const.FUELTANK_LEFT_AUX:
2060 leftLevel = level if leftLevel is None else (leftLevel + level)
2061 elif tank==const.FUELTANK_LEFT:
2062 level /= 2.0
2063 centreLevel = (self._rightLevel + level) \
2064 if centreLevel is None else (centreLevel + level)
2065 self._leftLevel = level
2066 elif tank==const.FUELTANK_RIGHT:
2067 level /= 2.0
2068 centreLevel = (self._leftLevel + level) \
2069 if centreLevel is None else (centreLevel + level)
2070 self._rightLevel = level
2071 elif tank==const.FUELTANK_RIGHT_AUX:
2072 rightLevel = level if rightLevel is None \
2073 else (rightLevel + level)
2074
2075 levels = []
2076 if leftLevel is not None: levels.append((const.FUELTANK_LEFT,
2077 leftLevel))
2078 if centreLevel is not None: levels.append((const.FUELTANK_CENTRE,
2079 centreLevel))
2080 if rightLevel is not None: levels.append((const.FUELTANK_RIGHT,
2081 rightLevel))
2082
2083 super(DC3Model, self).setFuelLevel(handler, levels)
2084
2085#------------------------------------------------------------------------------
2086
2087class T134Model(GenericAircraftModel):
2088 """Generic model for the Tupolev Tu-134 aircraft."""
2089 fuelTanks = [const.FUELTANK_LEFT_TIP, const.FUELTANK_EXTERNAL1,
2090 const.FUELTANK_LEFT_AUX,
2091 const.FUELTANK_CENTRE,
2092 const.FUELTANK_RIGHT_AUX,
2093 const.FUELTANK_EXTERNAL2, const.FUELTANK_RIGHT_TIP]
2094
2095 def __init__(self):
2096 """Construct the model."""
2097 super(T134Model, self). \
2098 __init__(flapsNotches = [0, 10, 20, 30],
2099 fuelTanks = T134Model.fuelTanks,
2100 numEngines = 2)
2101
2102 @property
2103 def name(self):
2104 """Get the name for this aircraft model."""
2105 return "FSUIPC/Generic Tupolev Tu-134"
2106
2107#------------------------------------------------------------------------------
2108
2109class T154Model(GenericAircraftModel):
2110 """Generic model for the Tupolev Tu-134 aircraft."""
2111 fuelTanks = [const.FUELTANK_LEFT_AUX, const.FUELTANK_LEFT,
2112 const.FUELTANK_CENTRE, const.FUELTANK_CENTRE2,
2113 const.FUELTANK_RIGHT, const.FUELTANK_RIGHT_AUX]
2114
2115 def __init__(self):
2116 """Construct the model."""
2117 super(T154Model, self). \
2118 __init__(flapsNotches = [0, 15, 28, 45],
2119 fuelTanks = T154Model.fuelTanks,
2120 numEngines = 3)
2121
2122 @property
2123 def name(self):
2124 """Get the name for this aircraft model."""
2125 return "FSUIPC/Generic Tupolev Tu-154"
2126
2127 def getAircraftState(self, aircraft, timestamp, data):
2128 """Get an aircraft state object for the given monitoring data.
2129
2130 This removes the reverser value for the middle engine."""
2131 state = super(T154Model, self).getAircraftState(aircraft, timestamp, data)
2132 del state.reverser[1]
2133 return state
2134
2135#------------------------------------------------------------------------------
2136
2137class PTT154Model(T154Model):
2138 """Project Tupolev Tu-154."""
2139 @staticmethod
2140 def doesHandle(aircraft, (name, airPath)):
2141 """Determine if this model handler handles the aircraft with the given
2142 name."""
2143 print "PTT154Model.doesHandle", aircraft.type, name, airPath
2144 return aircraft.type==const.AIRCRAFT_T154 and \
2145 (name.find("Tu-154")!=-1 or name.find("Tu154B")!=-1) and \
2146 os.path.basename(airPath).startswith("154b_")
2147
2148 def __init__(self):
2149 """Construct the model."""
2150 super(PTT154Model, self).__init__()
2151 self._fsType = None
2152
2153 @property
2154 def name(self):
2155 """Get the name for this aircraft model."""
2156 return "FSUIPC/Project Tupolev Tu-154"
2157
2158 def addMonitoringData(self, data, fsType):
2159 """Add the model-specific monitoring data to the given array.
2160
2161 It only stores the flight simulator type."""
2162 self._fsType = fsType
2163
2164 super(PTT154Model, self).addMonitoringData(data, fsType)
2165
2166 def getAircraftState(self, aircraft, timestamp, data):
2167 """Get an aircraft state object for the given monitoring data.
2168
2169 This removes the reverser value for the middle engine."""
2170 state = super(PTT154Model, self).getAircraftState(aircraft, timestamp, data)
2171
2172 if self._fsType==const.SIM_MSFSX or self._fsType==const.SIM_P3D:
2173 state.xpdrC = None
2174
2175 return state
2176
2177
2178#------------------------------------------------------------------------------
2179
2180class YK40Model(GenericAircraftModel):
2181 """Generic model for the Yakovlev Yak-40 aircraft."""
2182 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_RIGHT]
2183
2184 def __init__(self):
2185 """Construct the model."""
2186 super(YK40Model, self). \
2187 __init__(flapsNotches = [0, 20, 35],
2188 fuelTanks = YK40Model.fuelTanks,
2189 numEngines = 2)
2190
2191 @property
2192 def name(self):
2193 """Get the name for this aircraft model."""
2194 return "FSUIPC/Generic Yakovlev Yak-40"
2195
2196#------------------------------------------------------------------------------
2197
2198class B462Model(GenericAircraftModel):
2199 """Generic model for the British Aerospace BAe 146-200 aircraft."""
2200 fuelTanks = [const.FUELTANK_LEFT, const.FUELTANK_CENTRE,
2201 const.FUELTANK_RIGHT]
2202
2203 def __init__(self):
2204 """Construct the model."""
2205 super(B462Model, self). \
2206 __init__(flapsNotches = [0, 18, 24, 30, 33],
2207 fuelTanks = B462Model.fuelTanks,
2208 numEngines = 4)
2209
2210 @property
2211 def name(self):
2212 """Get the name for this aircraft model."""
2213 return "FSUIPC/Generic British Aerospace 146"
2214
2215 def getAircraftState(self, aircraft, timestamp, data):
2216 """Get an aircraft state object for the given monitoring data.
2217
2218 This removes the reverser value for the middle engine."""
2219 state = super(B462Model, self).getAircraftState(aircraft, timestamp, data)
2220 state.reverser = []
2221 return state
2222
2223#------------------------------------------------------------------------------
2224
2225_genericModels = { const.AIRCRAFT_B736 : B737Model,
2226 const.AIRCRAFT_B737 : B737Model,
2227 const.AIRCRAFT_B738 : B737Model,
2228 const.AIRCRAFT_B738C : B737Model,
2229 const.AIRCRAFT_B732 : B737Model,
2230 const.AIRCRAFT_B733 : B737Model,
2231 const.AIRCRAFT_B734 : B737Model,
2232 const.AIRCRAFT_B735 : B737Model,
2233 const.AIRCRAFT_DH8D : DH8DModel,
2234 const.AIRCRAFT_B762 : B767Model,
2235 const.AIRCRAFT_B763 : B767Model,
2236 const.AIRCRAFT_CRJ2 : CRJ2Model,
2237 const.AIRCRAFT_F70 : F70Model,
2238 const.AIRCRAFT_DC3 : DC3Model,
2239 const.AIRCRAFT_T134 : T134Model,
2240 const.AIRCRAFT_T154 : T154Model,
2241 const.AIRCRAFT_YK40 : YK40Model,
2242 const.AIRCRAFT_B462 : B462Model }
2243
2244#------------------------------------------------------------------------------
2245
2246AircraftModel.registerSpecial(PMDGBoeing737NGModel)
2247AircraftModel.registerSpecial(DreamwingsDH8DModel)
2248AircraftModel.registerSpecial(MajesticDH8DModel)
2249AircraftModel.registerSpecial(DAF70Model)
2250AircraftModel.registerSpecial(PTT154Model)
2251
2252#------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.