cosmetics:
- fix indentation - remove trailing spaces
This commit is contained in:
parent
095efc1fcf
commit
7647b1620b
2 changed files with 41 additions and 41 deletions
|
@ -128,13 +128,13 @@ FGMarkerBeacon::bind ()
|
|||
branch = "/instrumentation/" + name;
|
||||
|
||||
fgTie((branch + "/inner").c_str(), this,
|
||||
&FGMarkerBeacon::get_inner_blink);
|
||||
&FGMarkerBeacon::get_inner_blink);
|
||||
|
||||
fgTie((branch + "/middle").c_str(), this,
|
||||
&FGMarkerBeacon::get_middle_blink);
|
||||
&FGMarkerBeacon::get_middle_blink);
|
||||
|
||||
fgTie((branch + "/outer").c_str(), this,
|
||||
&FGMarkerBeacon::get_outer_blink);
|
||||
&FGMarkerBeacon::get_outer_blink);
|
||||
}
|
||||
|
||||
|
||||
|
@ -159,11 +159,11 @@ FGMarkerBeacon::update(double dt)
|
|||
if ( has_power() && serviceable->getBoolValue()
|
||||
&& !sound_pause->getBoolValue()) {
|
||||
|
||||
// On timeout, scan again
|
||||
_time_before_search_sec -= dt;
|
||||
if ( _time_before_search_sec < 0 ) {
|
||||
search();
|
||||
}
|
||||
// On timeout, scan again
|
||||
_time_before_search_sec -= dt;
|
||||
if ( _time_before_search_sec < 0 ) {
|
||||
search();
|
||||
}
|
||||
// marker beacon blinking
|
||||
bool light_on = ( outer_blink || middle_blink || inner_blink );
|
||||
SGTimeStamp current;
|
||||
|
@ -290,18 +290,18 @@ void FGMarkerBeacon::search()
|
|||
|
||||
if ( b == NULL || !inrange || !has_power() || !serviceable->getBoolValue() )
|
||||
{
|
||||
// cout << "no marker" << endl;
|
||||
globals->get_soundmgr()->stop( "outer-marker" );
|
||||
globals->get_soundmgr()->stop( "middle-marker" );
|
||||
globals->get_soundmgr()->stop( "inner-marker" );
|
||||
// cout << "no marker" << endl;
|
||||
globals->get_soundmgr()->stop( "outer-marker" );
|
||||
globals->get_soundmgr()->stop( "middle-marker" );
|
||||
globals->get_soundmgr()->stop( "inner-marker" );
|
||||
} else {
|
||||
|
||||
string current_sound_name;
|
||||
|
||||
if ( beacon_type == OUTER ) {
|
||||
outer_marker = true;
|
||||
outer_marker = true;
|
||||
current_sound_name = "outer-marker";
|
||||
// cout << "OUTER MARKER" << endl;
|
||||
// cout << "OUTER MARKER" << endl;
|
||||
if ( last_beacon != OUTER ) {
|
||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||
SGSoundSample *sound = beacon.get_outer();
|
||||
|
@ -318,16 +318,16 @@ void FGMarkerBeacon::search()
|
|||
globals->get_soundmgr()->stop( current_sound_name );
|
||||
}
|
||||
} else if ( beacon_type == MIDDLE ) {
|
||||
middle_marker = true;
|
||||
middle_marker = true;
|
||||
current_sound_name = "middle-marker";
|
||||
// cout << "MIDDLE MARKER" << endl;
|
||||
if ( last_beacon != MIDDLE ) {
|
||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||
SGSoundSample *sound = beacon.get_middle();
|
||||
// cout << "MIDDLE MARKER" << endl;
|
||||
if ( last_beacon != MIDDLE ) {
|
||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||
SGSoundSample *sound = beacon.get_middle();
|
||||
if ( sound ) {
|
||||
globals->get_soundmgr()->add( sound, current_sound_name );
|
||||
globals->get_soundmgr()->add( sound, current_sound_name );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ( audio_btn->getBoolValue() ) {
|
||||
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
||||
|
@ -337,16 +337,16 @@ void FGMarkerBeacon::search()
|
|||
globals->get_soundmgr()->stop( current_sound_name );
|
||||
}
|
||||
} else if ( beacon_type == INNER ) {
|
||||
inner_marker = true;
|
||||
inner_marker = true;
|
||||
current_sound_name = "inner-marker";
|
||||
// cout << "INNER MARKER" << endl;
|
||||
if ( last_beacon != INNER ) {
|
||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||
SGSoundSample *sound = beacon.get_inner();
|
||||
// cout << "INNER MARKER" << endl;
|
||||
if ( last_beacon != INNER ) {
|
||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||
SGSoundSample *sound = beacon.get_inner();
|
||||
if ( sound ) {
|
||||
globals->get_soundmgr()->add( sound, current_sound_name );
|
||||
globals->get_soundmgr()->add( sound, current_sound_name );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ( audio_btn->getBoolValue() ) {
|
||||
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
||||
|
|
|
@ -76,10 +76,10 @@ class FGMarkerBeacon : public SGSubsystem
|
|||
public:
|
||||
|
||||
enum fgMkrBeacType {
|
||||
NOBEACON = 0,
|
||||
INNER,
|
||||
MIDDLE,
|
||||
OUTER
|
||||
NOBEACON = 0,
|
||||
INNER,
|
||||
MIDDLE,
|
||||
OUTER
|
||||
};
|
||||
|
||||
FGMarkerBeacon(SGPropertyNode *node);
|
||||
|
|
Loading…
Reference in a new issue