]> git.mxchange.org Git - flightgear.git/blob - src/Sound/beacon.cxx
24424c14a033ce8e4ad68addbaa1f96bcdfd3539
[flightgear.git] / src / Sound / beacon.cxx
1 // beacon.cxx -- Morse code generation class
2 //
3 // Written by Curtis Olson, started March 2001.
4 //
5 // Copyright (C) 2001  Curtis L. Olson - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #include "beacon.hxx"
25
26
27 // constructor
28 FGBeacon::FGBeacon() {
29 }
30
31 // destructor
32 FGBeacon::~FGBeacon() {
33 }
34
35
36 // allocate and initialize sound samples
37 bool FGBeacon::init() {
38     int i;
39     int len;
40     unsigned char *ptr;
41
42     // Make inner marker beacon sound
43     len= (int)(INNER_DIT_LEN / 2.0 );
44     unsigned char inner_dit[INNER_DIT_LEN];
45     make_tone( inner_dit, INNER_FREQ, len, INNER_DIT_LEN,
46                TRANSITION_BYTES );
47
48     ptr = inner_buf;
49     for ( i = 0; i < 6; ++i ) {
50         memcpy( ptr, inner_dit, INNER_DIT_LEN );
51         ptr += INNER_DIT_LEN;
52     }
53
54     inner = new SGSoundSample( inner_buf, INNER_SIZE, BYTES_PER_SECOND );
55     inner->set_reference_dist( 10.0 );
56     inner->set_max_dist( 20.0 );
57
58     // Make middle marker beacon sound
59     len= (int)(MIDDLE_DIT_LEN / 2.0 );
60     unsigned char middle_dit[MIDDLE_DIT_LEN];
61     make_tone( middle_dit, MIDDLE_FREQ, len, MIDDLE_DIT_LEN,
62                TRANSITION_BYTES );
63
64     len= (int)(MIDDLE_DAH_LEN * 3 / 4.0 );
65     unsigned char middle_dah[MIDDLE_DAH_LEN];
66     make_tone( middle_dah, MIDDLE_FREQ, len, MIDDLE_DAH_LEN,
67                TRANSITION_BYTES );
68
69     ptr = middle_buf;
70     memcpy( ptr, middle_dit, MIDDLE_DIT_LEN );
71     ptr += MIDDLE_DIT_LEN;
72     memcpy( ptr, middle_dah, MIDDLE_DAH_LEN );
73
74     middle = new SGSoundSample( middle_buf, MIDDLE_SIZE, BYTES_PER_SECOND );
75     middle->set_reference_dist( 10.0 );
76     middle->set_max_dist( 20.0 );
77
78     // Make outer marker beacon sound
79     len= (int)(OUTER_DAH_LEN * 3.0 / 4.0 );
80     unsigned char outer_dah[OUTER_DAH_LEN];
81     make_tone( outer_dah, OUTER_FREQ, len, OUTER_DAH_LEN,
82                TRANSITION_BYTES );
83     
84     ptr = outer_buf;
85     memcpy( ptr, outer_dah, OUTER_DAH_LEN );
86     ptr += OUTER_DAH_LEN;
87     memcpy( ptr, outer_dah, OUTER_DAH_LEN );
88
89     outer = new SGSoundSample( outer_buf, OUTER_SIZE, BYTES_PER_SECOND );
90     outer->set_reference_dist( 10.0 );
91     outer->set_max_dist( 20.0 );
92
93     return true;
94 }