1
0
Fork 0

when searching for the runway best matching a target heading, also consider

the runway length/width/surface material, so that fgfs doesn't drop one on
the ridiculous grass stripe parallel to the grown up concrete runway
(LOWL, LOXZ, ...). The weighting factors are for now made configurable,
so that they are easier to adjust. This can later be made static.
(will soon get forward ported to fg/osg)
This commit is contained in:
mfranz 2007-10-04 17:11:19 +00:00
parent 5986ddc6d6
commit d20db83c86

View file

@ -216,63 +216,78 @@ bool FGRunwayList::search( const string& aptid, const int tgt_hdg,
// Return the runway number of the runway closest to a given heading // Return the runway number of the runway closest to a given heading
string FGRunwayList::search( const string& aptid, const int tgt_hdg ) { #include <Main/fg_props.hxx> // FIXME remove
FGRunway r; string FGRunwayList::search( const string& aptid, const int hdg ) {
FGRunway tmp_r; //SG_LOG(SG_GENERAL, SG_DEBUG, "searching runway for " << aptid
string rn; // << " with target heading " << hdg);
double found_dir = 0.0;
if ( !search( aptid, &tmp_r ) ) { FGRunway r;
SG_LOG( SG_GENERAL, SG_ALERT, if (!search(aptid, &r)) {
"Failed to find " << aptid << " in database." ); SG_LOG(SG_GENERAL, SG_ALERT, "Failed to find "
<< aptid << " in database.");
return "NN"; return "NN";
} }
double diff; double LENWGT = fgGetDouble("/tmp/runway-search/length", 0.01);
double min_diff = 360.0; double WIDWGT = fgGetDouble("/tmp/runway-search/width", 0.01);
double SURFWGT = fgGetDouble("/tmp/runway-search/surface", 10);
double DEVWGT = fgGetDouble("/tmp/runway-search/deviation", 1);
while ( tmp_r._id == aptid ) { FGRunway best;
// forward direction double max = 0.0;
diff = tgt_hdg - tmp_r._heading; bool reversed = false;
while ( diff < -180.0 ) { diff += 360.0; }
while ( diff > 180.0 ) { diff -= 360.0; } while (r._id == aptid) {
diff = fabs(diff); if (r._type != "runway")
// SG_LOG( SG_GENERAL, SG_INFO, continue;
// "Runway " << tmp_r._rwy_no << " heading = "
// << tmp_r._heading << " diff = " << diff ); int surface = 0;
if ((diff < min_diff) && (tmp_r._type == "runway")) { if (r._surface_code == 1 || r._surface_code == 2) // asphalt & concrete
min_diff = diff; surface = 2;
r = tmp_r; else if (r._surface_code == 12 || r._surface_code == 5) // dry lakebed & gravel
found_dir = 0; surface = 1;
double quality, bad, diff;
double good = LENWGT * r._length + WIDWGT * r._width + SURFWGT * surface;
// this side
diff = hdg - r._heading;
while (diff < -180)
diff += 360;
while (diff >= 180)
diff -= 360;
bad = DEVWGT * fabs(diff) + 1e-20;
quality = good / bad;
//SG_LOG(SG_GENERAL, SG_DEBUG, " runway " << r._rwy_no << " -> " << quality);
if (quality > max) {
max = quality;
best = r;
reversed = false;
} }
// reverse direction // other side
diff = tgt_hdg - tmp_r._heading - 180.0; diff = hdg - r._heading - 180;
while ( diff < -180.0 ) { diff += 360.0; } while (diff < -180)
while ( diff > 180.0 ) { diff -= 360.0; } diff += 360;
diff = fabs(diff); while (diff >= 180)
// SG_LOG( SG_GENERAL, SG_INFO, diff -= 360;
// "Runway -" << tmp_r._rwy_no << " heading = " << bad = DEVWGT * fabs(diff) + 1e-20;
// tmp_r._heading + 180.0 <<
// " diff = " << diff ); quality = good / bad;
if ((diff < min_diff) && (tmp_r._type == "runway")) { //SG_LOG(SG_GENERAL, SG_DEBUG, " runway " << GetReverseRunwayNo(r._rwy_no)
min_diff = diff; // << " -> " << quality);
r = tmp_r; if (quality > max) {
found_dir = 180.0; max = quality;
best = r;
reversed = true;
} }
if (!next( &tmp_r )) if (!next(&r))
break; break;
} }
// SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << r._rwy_no return reversed ? GetReverseRunwayNo(best._rwy_no) : best._rwy_no;
// << " + " << found_dir );
rn = r._rwy_no;
if ( found_dir == 180 ) {
rn = GetReverseRunwayNo(rn);
}
return rn;
} }