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;
|
branch = "/instrumentation/" + name;
|
||||||
|
|
||||||
fgTie((branch + "/inner").c_str(), this,
|
fgTie((branch + "/inner").c_str(), this,
|
||||||
&FGMarkerBeacon::get_inner_blink);
|
&FGMarkerBeacon::get_inner_blink);
|
||||||
|
|
||||||
fgTie((branch + "/middle").c_str(), this,
|
fgTie((branch + "/middle").c_str(), this,
|
||||||
&FGMarkerBeacon::get_middle_blink);
|
&FGMarkerBeacon::get_middle_blink);
|
||||||
|
|
||||||
fgTie((branch + "/outer").c_str(), this,
|
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()
|
if ( has_power() && serviceable->getBoolValue()
|
||||||
&& !sound_pause->getBoolValue()) {
|
&& !sound_pause->getBoolValue()) {
|
||||||
|
|
||||||
// On timeout, scan again
|
// On timeout, scan again
|
||||||
_time_before_search_sec -= dt;
|
_time_before_search_sec -= dt;
|
||||||
if ( _time_before_search_sec < 0 ) {
|
if ( _time_before_search_sec < 0 ) {
|
||||||
search();
|
search();
|
||||||
}
|
}
|
||||||
// marker beacon blinking
|
// marker beacon blinking
|
||||||
bool light_on = ( outer_blink || middle_blink || inner_blink );
|
bool light_on = ( outer_blink || middle_blink || inner_blink );
|
||||||
SGTimeStamp current;
|
SGTimeStamp current;
|
||||||
|
@ -290,18 +290,18 @@ void FGMarkerBeacon::search()
|
||||||
|
|
||||||
if ( b == NULL || !inrange || !has_power() || !serviceable->getBoolValue() )
|
if ( b == NULL || !inrange || !has_power() || !serviceable->getBoolValue() )
|
||||||
{
|
{
|
||||||
// cout << "no marker" << endl;
|
// cout << "no marker" << endl;
|
||||||
globals->get_soundmgr()->stop( "outer-marker" );
|
globals->get_soundmgr()->stop( "outer-marker" );
|
||||||
globals->get_soundmgr()->stop( "middle-marker" );
|
globals->get_soundmgr()->stop( "middle-marker" );
|
||||||
globals->get_soundmgr()->stop( "inner-marker" );
|
globals->get_soundmgr()->stop( "inner-marker" );
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
string current_sound_name;
|
string current_sound_name;
|
||||||
|
|
||||||
if ( beacon_type == OUTER ) {
|
if ( beacon_type == OUTER ) {
|
||||||
outer_marker = true;
|
outer_marker = true;
|
||||||
current_sound_name = "outer-marker";
|
current_sound_name = "outer-marker";
|
||||||
// cout << "OUTER MARKER" << endl;
|
// cout << "OUTER MARKER" << endl;
|
||||||
if ( last_beacon != OUTER ) {
|
if ( last_beacon != OUTER ) {
|
||||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||||
SGSoundSample *sound = beacon.get_outer();
|
SGSoundSample *sound = beacon.get_outer();
|
||||||
|
@ -318,16 +318,16 @@ void FGMarkerBeacon::search()
|
||||||
globals->get_soundmgr()->stop( current_sound_name );
|
globals->get_soundmgr()->stop( current_sound_name );
|
||||||
}
|
}
|
||||||
} else if ( beacon_type == MIDDLE ) {
|
} else if ( beacon_type == MIDDLE ) {
|
||||||
middle_marker = true;
|
middle_marker = true;
|
||||||
current_sound_name = "middle-marker";
|
current_sound_name = "middle-marker";
|
||||||
// cout << "MIDDLE MARKER" << endl;
|
// cout << "MIDDLE MARKER" << endl;
|
||||||
if ( last_beacon != MIDDLE ) {
|
if ( last_beacon != MIDDLE ) {
|
||||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||||
SGSoundSample *sound = beacon.get_middle();
|
SGSoundSample *sound = beacon.get_middle();
|
||||||
if ( sound ) {
|
if ( sound ) {
|
||||||
globals->get_soundmgr()->add( sound, current_sound_name );
|
globals->get_soundmgr()->add( sound, current_sound_name );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( audio_btn->getBoolValue() ) {
|
if ( audio_btn->getBoolValue() ) {
|
||||||
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
||||||
|
@ -337,16 +337,16 @@ void FGMarkerBeacon::search()
|
||||||
globals->get_soundmgr()->stop( current_sound_name );
|
globals->get_soundmgr()->stop( current_sound_name );
|
||||||
}
|
}
|
||||||
} else if ( beacon_type == INNER ) {
|
} else if ( beacon_type == INNER ) {
|
||||||
inner_marker = true;
|
inner_marker = true;
|
||||||
current_sound_name = "inner-marker";
|
current_sound_name = "inner-marker";
|
||||||
// cout << "INNER MARKER" << endl;
|
// cout << "INNER MARKER" << endl;
|
||||||
if ( last_beacon != INNER ) {
|
if ( last_beacon != INNER ) {
|
||||||
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
||||||
SGSoundSample *sound = beacon.get_inner();
|
SGSoundSample *sound = beacon.get_inner();
|
||||||
if ( sound ) {
|
if ( sound ) {
|
||||||
globals->get_soundmgr()->add( sound, current_sound_name );
|
globals->get_soundmgr()->add( sound, current_sound_name );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( audio_btn->getBoolValue() ) {
|
if ( audio_btn->getBoolValue() ) {
|
||||||
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
||||||
|
|
|
@ -76,10 +76,10 @@ class FGMarkerBeacon : public SGSubsystem
|
||||||
public:
|
public:
|
||||||
|
|
||||||
enum fgMkrBeacType {
|
enum fgMkrBeacType {
|
||||||
NOBEACON = 0,
|
NOBEACON = 0,
|
||||||
INNER,
|
INNER,
|
||||||
MIDDLE,
|
MIDDLE,
|
||||||
OUTER
|
OUTER
|
||||||
};
|
};
|
||||||
|
|
||||||
FGMarkerBeacon(SGPropertyNode *node);
|
FGMarkerBeacon(SGPropertyNode *node);
|
||||||
|
|
Loading…
Add table
Reference in a new issue