~jtaylor/ubuntu/oneiric/flightgear/fix-749249

« back to all changes in this revision

Viewing changes to src/Instrumentation/marker_beacon.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-11-26 12:31:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051126123123-dhs3dijy6nd257up
Tags: 0.9.8-3ubuntu1
adapt gl/glu dependencies for Xorg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// marker_beacon.hxx -- class to manage the marker beacons
 
2
//
 
3
// Written by Curtis Olson, started April 2000.
 
4
//
 
5
// Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
 
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: marker_beacon.hxx,v 1.1 2004/11/19 23:10:44 curt Exp $
 
22
 
 
23
 
 
24
#ifndef _FG_MARKER_BEACON_HXX
 
25
#define _FG_MARKER_BEACON_HXX
 
26
 
 
27
 
 
28
#include <Main/fg_props.hxx>
 
29
 
 
30
#include <simgear/compiler.h>
 
31
#include <simgear/structure/subsystem_mgr.hxx>
 
32
#include <simgear/math/interpolater.hxx>
 
33
#include <simgear/timing/timestamp.hxx>
 
34
 
 
35
#include <Sound/beacon.hxx>
 
36
#include <Sound/morse.hxx>
 
37
 
 
38
 
 
39
class FGMarkerBeacon : public SGSubsystem
 
40
{
 
41
    FGBeacon beacon;
 
42
    FGMorse morse;
 
43
 
 
44
    SGInterpTable *term_tbl;
 
45
    SGInterpTable *low_tbl;
 
46
    SGInterpTable *high_tbl;
 
47
 
 
48
    // Inputs
 
49
    SGPropertyNode *lon_node;
 
50
    SGPropertyNode *lat_node;
 
51
    SGPropertyNode *alt_node;
 
52
    SGPropertyNode *bus_power;
 
53
    SGPropertyNode *power_btn;
 
54
    SGPropertyNode *audio_btn;
 
55
    SGPropertyNode *serviceable;
 
56
 
 
57
    bool need_update;
 
58
 
 
59
    bool outer_marker;
 
60
    bool middle_marker;
 
61
    bool inner_marker;
 
62
 
 
63
    SGTimeStamp blink;
 
64
    bool outer_blink;
 
65
    bool middle_blink;
 
66
    bool inner_blink;
 
67
 
 
68
    string name;
 
69
    int num;
 
70
 
 
71
    // internal periodic station search timer
 
72
    double _time_before_search_sec;
 
73
 
 
74
public:
 
75
 
 
76
    enum fgMkrBeacType {
 
77
        NOBEACON = 0,
 
78
        INNER,
 
79
        MIDDLE,
 
80
        OUTER   
 
81
    };
 
82
 
 
83
    FGMarkerBeacon(SGPropertyNode *node);
 
84
    ~FGMarkerBeacon();
 
85
 
 
86
    void init ();
 
87
    void bind ();
 
88
    void unbind ();
 
89
    void update (double dt);
 
90
 
 
91
    void search ();
 
92
 
 
93
    // Marker Beacon Accessors
 
94
    inline bool get_inner_blink () const { return inner_blink; }
 
95
    inline bool get_middle_blink () const { return middle_blink; }
 
96
    inline bool get_outer_blink () const { return outer_blink; }
 
97
    inline bool has_power() const {
 
98
        return power_btn->getBoolValue() && (bus_power->getDoubleValue() > 1.0);
 
99
    }
 
100
};
 
101
 
 
102
 
 
103
#endif // _FG_MARKER_BEACON_HXX