Ignore:
Timestamp:
09/30/12 07:16:34 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

The in-flight stage messages can be controlled separately

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/const.py

    r308 r315  
    276276MESSAGETYPE_INFORMATION = 2
    277277
     278## Message type: in-flight information
     279MESSAGETYPE_INFLIGHT = 3
     280
    278281## Message type: fault messages
    279 MESSAGETYPE_FAULT = 3
     282MESSAGETYPE_FAULT = 4
    280283
    281284## Message type: NO-GO fault messages
    282 MESSAGETYPE_NOGO = 4
     285MESSAGETYPE_NOGO = 5
    283286
    284287## Message type: gate system messages
    285 MESSAGETYPE_GATE_SYSTEM = 5
     288MESSAGETYPE_GATE_SYSTEM = 6
    286289
    287290## Message type: environment messages
    288291# FIXME: flight plan closed (5 sec)
    289 MESSAGETYPE_ENVIRONMENT = 6
     292MESSAGETYPE_ENVIRONMENT = 7
    290293
    291294## Message type: help messages
    292 MESSAGETYPE_HELP = 7
     295MESSAGETYPE_HELP = 8
    293296
    294297## Message type: visibility messages
    295 MESSAGETYPE_VISIBILITY = 8
     298MESSAGETYPE_VISIBILITY = 9
    296299
    297300#-------------------------------------------------------------------------------
     
    299302messageTypes = [ MESSAGETYPE_LOGGER_ERROR,
    300303                 MESSAGETYPE_INFORMATION,
     304                 MESSAGETYPE_INFLIGHT,
    301305                 MESSAGETYPE_FAULT,
    302306                 MESSAGETYPE_NOGO,
     
    310314_messageTypeStrings = { MESSAGETYPE_LOGGER_ERROR : "loggerError",
    311315                        MESSAGETYPE_INFORMATION : "information",
     316                        MESSAGETYPE_INFLIGHT : "inflight",
    312317                        MESSAGETYPE_FAULT : "fault",
    313318                        MESSAGETYPE_NOGO : "nogo",
Note: See TracChangeset for help on using the changeset viewer.