2002-09-26 16:19:06 +00:00
|
|
|
// marker_beacon.cxx -- class to manage the marker beacons
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt
|
2002-09-26 16:19:06 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-09-26 16:19:06 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h> // snprintf
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
#include <simgear/math/sg_random.h>
|
2008-12-25 23:11:43 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2002-09-26 16:19:06 +00:00
|
|
|
|
|
|
|
#include <Aircraft/aircraft.hxx>
|
2004-05-28 05:24:54 +00:00
|
|
|
#include <Navaids/navlist.hxx>
|
2002-09-26 16:19:06 +00:00
|
|
|
|
|
|
|
#include "marker_beacon.hxx"
|
|
|
|
|
|
|
|
#include <string>
|
2008-07-27 16:25:13 +00:00
|
|
|
using std::string;
|
2002-09-26 16:19:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Constructor
|
2004-11-19 23:10:44 +00:00
|
|
|
FGMarkerBeacon::FGMarkerBeacon(SGPropertyNode *node) :
|
2006-06-24 07:43:09 +00:00
|
|
|
audio_vol(NULL),
|
2002-09-26 16:19:06 +00:00
|
|
|
need_update(true),
|
|
|
|
outer_blink(false),
|
|
|
|
middle_blink(false),
|
2004-11-19 23:10:44 +00:00
|
|
|
inner_blink(false),
|
|
|
|
name("marker-beacon"),
|
2005-01-03 00:16:16 +00:00
|
|
|
num(0),
|
|
|
|
_time_before_search_sec(0.0)
|
2002-09-26 16:19:06 +00:00
|
|
|
{
|
|
|
|
SGPath path( globals->get_fg_root() );
|
|
|
|
SGPath term = path;
|
|
|
|
term.append( "Navaids/range.term" );
|
|
|
|
SGPath low = path;
|
|
|
|
low.append( "Navaids/range.low" );
|
|
|
|
SGPath high = path;
|
|
|
|
high.append( "Navaids/range.high" );
|
|
|
|
|
|
|
|
term_tbl = new SGInterpTable( term.str() );
|
|
|
|
low_tbl = new SGInterpTable( low.str() );
|
|
|
|
high_tbl = new SGInterpTable( high.str() );
|
2002-12-16 06:09:05 +00:00
|
|
|
|
2009-01-11 23:31:51 +00:00
|
|
|
for ( int i = 0; i < node->nChildren(); ++i ) {
|
2004-11-19 23:10:44 +00:00
|
|
|
SGPropertyNode *child = node->getChild(i);
|
|
|
|
string cname = child->getName();
|
|
|
|
string cval = child->getStringValue();
|
|
|
|
if ( cname == "name" ) {
|
|
|
|
name = cval;
|
|
|
|
} else if ( cname == "number" ) {
|
|
|
|
num = child->getIntValue();
|
|
|
|
} else {
|
2006-06-24 07:48:05 +00:00
|
|
|
SG_LOG( SG_INSTR, SG_WARN,
|
2004-11-19 23:10:44 +00:00
|
|
|
"Error in marker beacon config logic" );
|
|
|
|
if ( name.length() ) {
|
|
|
|
SG_LOG( SG_INSTR, SG_WARN, "Section = " << name );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destructor
|
2006-06-24 07:48:05 +00:00
|
|
|
FGMarkerBeacon::~FGMarkerBeacon()
|
2002-09-26 16:19:06 +00:00
|
|
|
{
|
|
|
|
delete term_tbl;
|
|
|
|
delete low_tbl;
|
|
|
|
delete high_tbl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FGMarkerBeacon::init ()
|
|
|
|
{
|
2004-11-19 23:10:44 +00:00
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name;
|
|
|
|
|
|
|
|
SGPropertyNode *node = fgGetNode(branch.c_str(), num, true );
|
|
|
|
// Inputs
|
2005-05-12 18:30:59 +00:00
|
|
|
sound_pause = fgGetNode("/sim/sound/pause", false);
|
2004-11-19 23:10:44 +00:00
|
|
|
lon_node = fgGetNode("/position/longitude-deg", true);
|
|
|
|
lat_node = fgGetNode("/position/latitude-deg", true);
|
|
|
|
alt_node = fgGetNode("/position/altitude-ft", true);
|
2004-12-05 01:04:32 +00:00
|
|
|
bus_power = fgGetNode("/systems/electrical/outputs/nav[0]", true);
|
2004-11-19 23:10:44 +00:00
|
|
|
power_btn = node->getChild("power-btn", 0, true);
|
|
|
|
audio_btn = node->getChild("audio-btn", 0, true);
|
2006-06-24 07:43:09 +00:00
|
|
|
audio_vol = node->getChild("volume", 0, true);
|
2004-11-19 23:10:44 +00:00
|
|
|
serviceable = node->getChild("serviceable", 0, true);
|
|
|
|
|
2009-01-11 23:31:51 +00:00
|
|
|
if (power_btn->getType() == SGPropertyNode::NONE)
|
|
|
|
power_btn->setBoolValue( true );
|
|
|
|
if (audio_btn->getType() == SGPropertyNode::NONE)
|
|
|
|
audio_btn->setBoolValue( true );
|
|
|
|
if (serviceable->getType() == SGPropertyNode::NONE)
|
|
|
|
serviceable->setBoolValue( true );
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2002-09-26 16:19:06 +00:00
|
|
|
morse.init();
|
|
|
|
beacon.init();
|
|
|
|
blink.stamp();
|
2006-03-18 07:16:18 +00:00
|
|
|
|
|
|
|
outer_marker = middle_marker = inner_marker = false;
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FGMarkerBeacon::bind ()
|
|
|
|
{
|
2004-11-19 23:10:44 +00:00
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name;
|
2002-09-26 16:19:06 +00:00
|
|
|
|
2004-11-19 23:10:44 +00:00
|
|
|
fgTie((branch + "/inner").c_str(), this,
|
2006-06-24 07:48:05 +00:00
|
|
|
&FGMarkerBeacon::get_inner_blink);
|
2002-09-26 16:19:06 +00:00
|
|
|
|
2004-11-19 23:10:44 +00:00
|
|
|
fgTie((branch + "/middle").c_str(), this,
|
2006-06-24 07:48:05 +00:00
|
|
|
&FGMarkerBeacon::get_middle_blink);
|
2002-09-26 16:19:06 +00:00
|
|
|
|
2004-11-19 23:10:44 +00:00
|
|
|
fgTie((branch + "/outer").c_str(), this,
|
2006-06-24 07:48:05 +00:00
|
|
|
&FGMarkerBeacon::get_outer_blink);
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FGMarkerBeacon::unbind ()
|
|
|
|
{
|
2004-11-19 23:10:44 +00:00
|
|
|
string branch;
|
|
|
|
branch = "/instrumentation/" + name;
|
|
|
|
|
|
|
|
fgUntie((branch + "/inner").c_str());
|
|
|
|
fgUntie((branch + "/middle").c_str());
|
|
|
|
fgUntie((branch + "/outer").c_str());
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update the various nav values based on position and valid tuned in navs
|
2006-06-24 07:48:05 +00:00
|
|
|
void
|
|
|
|
FGMarkerBeacon::update(double dt)
|
2002-09-26 16:19:06 +00:00
|
|
|
{
|
|
|
|
need_update = false;
|
|
|
|
|
2008-10-30 20:42:21 +00:00
|
|
|
// On timeout, scan again, this needs to run every iteration no
|
|
|
|
// matter what the power or serviceable state. If power is turned
|
|
|
|
// off or the unit becomes unserviceable while a beacon sound is
|
|
|
|
// playing, the search() routine still needs to be called so the
|
|
|
|
// sound effect can be properly disabled.
|
|
|
|
|
|
|
|
_time_before_search_sec -= dt;
|
|
|
|
if ( _time_before_search_sec < 0 ) {
|
2009-01-11 23:31:51 +00:00
|
|
|
search();
|
2008-10-30 20:42:21 +00:00
|
|
|
}
|
|
|
|
|
2005-05-12 18:30:59 +00:00
|
|
|
if ( has_power() && serviceable->getBoolValue()
|
|
|
|
&& !sound_pause->getBoolValue()) {
|
2004-11-19 23:10:44 +00:00
|
|
|
|
2002-12-16 06:09:05 +00:00
|
|
|
// marker beacon blinking
|
|
|
|
bool light_on = ( outer_blink || middle_blink || inner_blink );
|
2009-03-12 18:34:57 +00:00
|
|
|
SGTimeStamp current = SGTimeStamp::now();
|
2002-12-16 06:09:05 +00:00
|
|
|
|
2009-03-12 18:34:57 +00:00
|
|
|
if ( light_on && blink + SGTimeStamp::fromUSec(400000) < current ) {
|
2002-12-16 06:09:05 +00:00
|
|
|
light_on = false;
|
2009-03-12 18:34:57 +00:00
|
|
|
blink = current;
|
|
|
|
} else if ( !light_on && blink + SGTimeStamp::fromUSec(100000) < current ) {
|
2002-12-16 06:09:05 +00:00
|
|
|
light_on = true;
|
2009-03-12 18:34:57 +00:00
|
|
|
blink = current;
|
2002-12-16 06:09:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( outer_marker ) {
|
|
|
|
outer_blink = light_on;
|
|
|
|
} else {
|
|
|
|
outer_blink = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( middle_marker ) {
|
|
|
|
middle_blink = light_on;
|
|
|
|
} else {
|
|
|
|
middle_blink = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( inner_marker ) {
|
|
|
|
inner_blink = light_on;
|
|
|
|
} else {
|
|
|
|
inner_blink = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// cout << outer_blink << " " << middle_blink << " "
|
|
|
|
// << inner_blink << endl;
|
2002-09-26 16:19:06 +00:00
|
|
|
} else {
|
2002-12-16 06:09:05 +00:00
|
|
|
inner_blink = middle_blink = outer_blink = false;
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-15 19:16:21 +00:00
|
|
|
static bool check_beacon_range( const SGGeod& pos,
|
2008-12-25 23:11:43 +00:00
|
|
|
FGPositioned *b )
|
2004-05-28 05:24:54 +00:00
|
|
|
{
|
2008-12-25 23:11:43 +00:00
|
|
|
double d = distSqr(b->cart(), SGVec3d::fromGeod(pos));
|
2006-06-24 07:48:05 +00:00
|
|
|
// cout << " distance = " << d << " ("
|
|
|
|
// << FG_ILS_DEFAULT_RANGE * SG_NM_TO_METER
|
2004-05-28 05:24:54 +00:00
|
|
|
// * FG_ILS_DEFAULT_RANGE * SG_NM_TO_METER
|
|
|
|
// << ")" << endl;
|
2006-06-24 07:48:05 +00:00
|
|
|
|
2008-12-25 23:11:43 +00:00
|
|
|
//std::cout << " range = " << sqrt(d) << std::endl;
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
// cout << "elev = " << elev * SG_METER_TO_FEET
|
|
|
|
// << " current->get_elev() = " << current->get_elev() << endl;
|
2006-06-15 19:16:21 +00:00
|
|
|
double elev_ft = pos.getElevationFt();
|
2008-12-25 23:11:43 +00:00
|
|
|
double delev = elev_ft - b->elevation();
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
// max range is the area under r = 2.4 * alt or r^2 = 4000^2 - alt^2
|
|
|
|
// whichever is smaller. The intersection point is 1538 ...
|
|
|
|
double maxrange2; // feet^2
|
|
|
|
if ( delev < 1538.0 ) {
|
|
|
|
maxrange2 = 2.4 * 2.4 * delev * delev;
|
|
|
|
} else if ( delev < 4000.0 ) {
|
|
|
|
maxrange2 = 4000 * 4000 - delev * delev;
|
|
|
|
} else {
|
|
|
|
maxrange2 = 0.0;
|
|
|
|
}
|
|
|
|
maxrange2 *= SG_FEET_TO_METER * SG_FEET_TO_METER; // convert to meter^2
|
2008-12-25 23:11:43 +00:00
|
|
|
//std::cout << "delev = " << delev << " maxrange = " << sqrt(maxrange2) << std::endl;
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
// match up to twice the published range so we can model
|
|
|
|
// reduced signal strength
|
|
|
|
if ( d < maxrange2 ) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-25 23:11:43 +00:00
|
|
|
class BeaconFilter : public FGPositioned::Filter
|
|
|
|
{
|
2009-01-11 23:31:51 +00:00
|
|
|
public:
|
2009-01-08 21:11:53 +00:00
|
|
|
virtual FGPositioned::Type minType() const {
|
|
|
|
return FGPositioned::OM;
|
2008-12-25 23:11:43 +00:00
|
|
|
}
|
2009-01-08 21:11:53 +00:00
|
|
|
|
|
|
|
virtual FGPositioned::Type maxType() const {
|
|
|
|
return FGPositioned::IM;
|
|
|
|
}
|
|
|
|
|
2008-12-25 23:11:43 +00:00
|
|
|
};
|
|
|
|
|
2002-09-26 16:19:06 +00:00
|
|
|
// Update current nav/adf radio stations based on current postition
|
2006-06-24 07:48:05 +00:00
|
|
|
void FGMarkerBeacon::search()
|
2002-09-26 16:19:06 +00:00
|
|
|
{
|
2004-11-19 23:10:44 +00:00
|
|
|
// reset search time
|
|
|
|
_time_before_search_sec = 1.0;
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
static fgMkrBeacType last_beacon = NOBEACON;
|
2002-09-26 16:19:06 +00:00
|
|
|
|
2006-06-15 19:16:21 +00:00
|
|
|
SGGeod pos = SGGeod::fromDegFt(lon_node->getDoubleValue(),
|
|
|
|
lat_node->getDoubleValue(),
|
|
|
|
alt_node->getDoubleValue());
|
2002-09-26 16:19:06 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Beacons.
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-12-25 23:11:43 +00:00
|
|
|
// get closest marker beacon - within a 1nm cutoff
|
|
|
|
BeaconFilter filter;
|
|
|
|
FGPositionedRef b = FGPositioned::findClosest(pos, 1.0, &filter);
|
2009-01-11 23:31:51 +00:00
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
fgMkrBeacType beacon_type = NOBEACON;
|
|
|
|
bool inrange = false;
|
|
|
|
if ( b != NULL ) {
|
2008-09-12 08:46:15 +00:00
|
|
|
if ( b->type() == FGPositioned::OM ) {
|
2004-05-28 05:24:54 +00:00
|
|
|
beacon_type = OUTER;
|
2008-09-12 08:46:15 +00:00
|
|
|
} else if ( b->type() == FGPositioned::MM ) {
|
2004-05-28 05:24:54 +00:00
|
|
|
beacon_type = MIDDLE;
|
2008-09-12 08:46:15 +00:00
|
|
|
} else if ( b->type() == FGPositioned::IM ) {
|
2004-05-28 05:24:54 +00:00
|
|
|
beacon_type = INNER;
|
|
|
|
}
|
2008-12-25 23:11:43 +00:00
|
|
|
inrange = check_beacon_range( pos, b.ptr() );
|
2004-05-28 05:24:54 +00:00
|
|
|
}
|
2002-09-26 16:19:06 +00:00
|
|
|
|
|
|
|
outer_marker = middle_marker = inner_marker = false;
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
if ( b == NULL || !inrange || !has_power() || !serviceable->getBoolValue() )
|
2002-12-16 06:09:05 +00:00
|
|
|
{
|
2006-06-24 07:48:05 +00:00
|
|
|
// cout << "no marker" << endl;
|
|
|
|
globals->get_soundmgr()->stop( "outer-marker" );
|
|
|
|
globals->get_soundmgr()->stop( "middle-marker" );
|
|
|
|
globals->get_soundmgr()->stop( "inner-marker" );
|
2006-06-24 07:43:09 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
string current_sound_name;
|
|
|
|
|
|
|
|
if ( beacon_type == OUTER ) {
|
2006-06-24 07:48:05 +00:00
|
|
|
outer_marker = true;
|
2006-06-24 07:43:09 +00:00
|
|
|
current_sound_name = "outer-marker";
|
2006-06-24 07:48:05 +00:00
|
|
|
// cout << "OUTER MARKER" << endl;
|
2006-06-24 07:43:09 +00:00
|
|
|
if ( last_beacon != OUTER ) {
|
|
|
|
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
|
|
|
SGSoundSample *sound = beacon.get_outer();
|
|
|
|
if ( sound ) {
|
|
|
|
globals->get_soundmgr()->add( sound, current_sound_name );
|
|
|
|
}
|
2006-02-12 19:57:57 +00:00
|
|
|
}
|
2002-12-16 06:09:05 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
if ( audio_btn->getBoolValue() ) {
|
|
|
|
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
|
|
|
globals->get_soundmgr()->play_looped( current_sound_name );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
globals->get_soundmgr()->stop( current_sound_name );
|
2003-03-29 03:18:17 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
} else if ( beacon_type == MIDDLE ) {
|
2006-06-24 07:48:05 +00:00
|
|
|
middle_marker = true;
|
2006-06-24 07:43:09 +00:00
|
|
|
current_sound_name = "middle-marker";
|
2006-06-24 07:48:05 +00:00
|
|
|
// cout << "MIDDLE MARKER" << endl;
|
|
|
|
if ( last_beacon != MIDDLE ) {
|
|
|
|
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
|
|
|
SGSoundSample *sound = beacon.get_middle();
|
2006-06-24 07:43:09 +00:00
|
|
|
if ( sound ) {
|
2006-06-24 07:48:05 +00:00
|
|
|
globals->get_soundmgr()->add( sound, current_sound_name );
|
2006-06-24 07:43:09 +00:00
|
|
|
}
|
2006-06-24 07:48:05 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
}
|
|
|
|
if ( audio_btn->getBoolValue() ) {
|
|
|
|
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
|
|
|
globals->get_soundmgr()->play_looped( current_sound_name );
|
2006-02-12 19:57:57 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
} else {
|
|
|
|
globals->get_soundmgr()->stop( current_sound_name );
|
2003-03-29 03:18:17 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
} else if ( beacon_type == INNER ) {
|
2006-06-24 07:48:05 +00:00
|
|
|
inner_marker = true;
|
2006-06-24 07:43:09 +00:00
|
|
|
current_sound_name = "inner-marker";
|
2006-06-24 07:48:05 +00:00
|
|
|
// cout << "INNER MARKER" << endl;
|
|
|
|
if ( last_beacon != INNER ) {
|
|
|
|
if ( ! globals->get_soundmgr()->exists( current_sound_name ) ) {
|
|
|
|
SGSoundSample *sound = beacon.get_inner();
|
2006-06-24 07:43:09 +00:00
|
|
|
if ( sound ) {
|
2006-06-24 07:48:05 +00:00
|
|
|
globals->get_soundmgr()->add( sound, current_sound_name );
|
2006-06-24 07:43:09 +00:00
|
|
|
}
|
2006-06-24 07:48:05 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
}
|
|
|
|
if ( audio_btn->getBoolValue() ) {
|
|
|
|
if ( !globals->get_soundmgr()->is_playing(current_sound_name) ) {
|
|
|
|
globals->get_soundmgr()->play_looped( current_sound_name );
|
2006-02-12 19:57:57 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
} else {
|
|
|
|
globals->get_soundmgr()->stop( current_sound_name );
|
2003-03-29 03:18:17 +00:00
|
|
|
}
|
2002-12-16 06:09:05 +00:00
|
|
|
}
|
2006-06-24 07:43:09 +00:00
|
|
|
// cout << "VOLUME " << audio_vol->getDoubleValue() << endl;
|
|
|
|
SGSoundSample * mkr = globals->get_soundmgr()->find( current_sound_name );
|
|
|
|
if (mkr)
|
|
|
|
mkr->set_volume( audio_vol->getDoubleValue() );
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
if ( inrange ) {
|
|
|
|
last_beacon = beacon_type;
|
|
|
|
} else {
|
|
|
|
last_beacon = NOBEACON;
|
|
|
|
}
|
2002-09-26 16:19:06 +00:00
|
|
|
}
|