bool networkVisible;
bool initSucceeded;
SGPropertyNode_ptr trans_num;
- ParkingAssignment *pk;
public:
FGATCManager();
FlightProperties* fdm;
static const int SOM_SIZE = 2;
- static const int DEG_TO_MILLIARCSECS = ( 60.0 * 60.0 * 1000 );
+ static const int DEG_TO_MILLIARCSECS = ( 60 * 60 * 1000 );
// Flight Phases
static const int PHASE_OCEANIC = 4;
static const int MIDDLE_SIZE = (int)(BYTES_PER_SECOND * 60 / 95 );
static const int OUTER_SIZE = BYTES_PER_SECOND;
- static const int INNER_DIT_LEN = (int)(BYTES_PER_SECOND / 6.0);
- static const int MIDDLE_DIT_LEN = (int)(MIDDLE_SIZE / 3.0);
- static const int MIDDLE_DAH_LEN = (int)(MIDDLE_SIZE * 2 / 3.0);
- static const int OUTER_DAH_LEN = (int)(BYTES_PER_SECOND / 2.0);
+ static const int INNER_DIT_LEN = (int)(BYTES_PER_SECOND / 6);
+ static const int MIDDLE_DIT_LEN = (int)(MIDDLE_SIZE / 3);
+ static const int MIDDLE_DAH_LEN = (int)(MIDDLE_SIZE * 2 / 3);
+ static const int OUTER_DAH_LEN = (int)(BYTES_PER_SECOND / 2);
SGSharedPtr<SGSoundSample> inner;
SGSharedPtr<SGSoundSample> middle;
static const int BYTES_PER_SECOND = 22050;
// static const int BEAT_LENGTH = 240; // milleseconds (5 wpm)
static const int BEAT_LENGTH = 92; // milleseconds (13 wpm)
- static const int TRANSITION_BYTES = (int)(0.005 * BYTES_PER_SECOND);
+ static const int TRANSITION_BYTES = BYTES_PER_SECOND/200; // aka (int)(0.005 * BYTES_PER_SECOND);
static const int COUNT_SIZE = BYTES_PER_SECOND * BEAT_LENGTH / 1000;
static const int DIT_SIZE = 2 * COUNT_SIZE; // 2 counts
static const int DAH_SIZE = 4 * COUNT_SIZE; // 4 counts
static const int BYTES_PER_SECOND = 22050;\r
// static const int BEAT_LENGTH = 240; // milleseconds (5 wpm)\r
static const int BEAT_LENGTH = 92; // milleseconds (13 wpm)\r
- static const int TRANSITION_BYTES = (int)(0.005 * BYTES_PER_SECOND);\r
+ static const int TRANSITION_BYTES = BYTES_PER_SECOND/200; // aka (int)(0.005 * BYTES_PER_SECOND);\r
static const int COUNT_SIZE = BYTES_PER_SECOND * BEAT_LENGTH / 1000;\r
static const int DIT_SIZE = 2 * COUNT_SIZE; // 2 counts\r
static const int DAH_SIZE = 4 * COUNT_SIZE; // 4 counts\r