Fix unused private vars.
Xcode is warning about these, they're a mixture of copy-pasted code, evolved use (e.g. using a property node to store state), and so on.
This commit is contained in:
parent
eb53970768
commit
6acf1c12fc
11 changed files with 14 additions and 24 deletions
|
@ -76,11 +76,9 @@ private:
|
||||||
SGGeod _tgtpos;
|
SGGeod _tgtpos;
|
||||||
|
|
||||||
bool _solid; // if true ground is solid for FDMs
|
bool _solid; // if true ground is solid for FDMs
|
||||||
double _load_resistance; // ground load resistanc N/m^2
|
|
||||||
double _frictionFactor; // dimensionless modifier for Coefficient of Friction
|
|
||||||
double _tgtrange, _tgtbrg;
|
double _tgtrange, _tgtbrg;
|
||||||
double _ht_agl_ft;
|
double _ht_agl_ft;
|
||||||
double _relbrg, _truebrg;
|
double _relbrg;
|
||||||
double _parent_speed, _parent_hdg;
|
double _parent_speed, _parent_hdg;
|
||||||
double _interval;
|
double _interval;
|
||||||
|
|
||||||
|
|
|
@ -122,7 +122,6 @@ private:
|
||||||
double user_yaw;
|
double user_yaw;
|
||||||
double user_roll;
|
double user_roll;
|
||||||
double user_speed;
|
double user_speed;
|
||||||
double user_agl;
|
|
||||||
double wind_from_east;
|
double wind_from_east;
|
||||||
double wind_from_north;
|
double wind_from_north;
|
||||||
|
|
||||||
|
|
|
@ -223,7 +223,7 @@ void FGAtmoCache::check_model() {
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
FGAltimeter::FGAltimeter() : kset(atmodel::ISA::P0), kft(0)
|
FGAltimeter::FGAltimeter()
|
||||||
{
|
{
|
||||||
cache();
|
cache();
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,9 +136,6 @@ public:
|
||||||
|
|
||||||
|
|
||||||
class FGAltimeter : public FGAtmoCache {
|
class FGAltimeter : public FGAtmoCache {
|
||||||
double kset;
|
|
||||||
double kft;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FGAltimeter();
|
FGAltimeter();
|
||||||
double reading_ft(const double p_inHg,
|
double reading_ft(const double p_inHg,
|
||||||
|
|
|
@ -343,7 +343,7 @@ void HIDElement::generateEvent(FGMacOSXInputDevice *device, double dt, int modif
|
||||||
}
|
}
|
||||||
|
|
||||||
AxisElement::AxisElement(CFDictionaryRef element, long page, long usage) :
|
AxisElement::AxisElement(CFDictionaryRef element, long page, long usage) :
|
||||||
HIDElement(element, page, usage), dead_band(0.00), saturate(1.0)
|
HIDElement(element, page, usage), dead_band(0.00)
|
||||||
{
|
{
|
||||||
min = GetHIDElementLongValue(element, kIOHIDElementMinKey);
|
min = GetHIDElementLongValue(element, kIOHIDElementMinKey);
|
||||||
max = GetHIDElementLongValue(element, kIOHIDElementMaxKey);
|
max = GetHIDElementLongValue(element, kIOHIDElementMaxKey);
|
||||||
|
|
|
@ -119,7 +119,6 @@ private:
|
||||||
long min;
|
long min;
|
||||||
long max;
|
long max;
|
||||||
float dead_band;
|
float dead_band;
|
||||||
float saturate;
|
|
||||||
long center;
|
long center;
|
||||||
bool isRelative;
|
bool isRelative;
|
||||||
bool isWrapping;
|
bool isWrapping;
|
||||||
|
|
|
@ -181,9 +181,7 @@ private:
|
||||||
Format _mode;
|
Format _mode;
|
||||||
std::string _format;
|
std::string _format;
|
||||||
int _halign; // HUDText alignment
|
int _halign; // HUDText alignment
|
||||||
int _blink;
|
|
||||||
bool _box;
|
bool _box;
|
||||||
float _text_y;
|
|
||||||
float _pointer_width;
|
float _pointer_width;
|
||||||
float _pointer_length;
|
float _pointer_length;
|
||||||
|
|
||||||
|
|
|
@ -41,9 +41,6 @@ public:
|
||||||
virtual void update (double dt);
|
virtual void update (double dt);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
double _last_pos;
|
|
||||||
|
|
||||||
std::string _name;
|
std::string _name;
|
||||||
int _num;
|
int _num;
|
||||||
|
|
||||||
|
|
|
@ -93,14 +93,12 @@ private:
|
||||||
SGVec3d _transmitter;
|
SGVec3d _transmitter;
|
||||||
SGGeod _transmitter_pos;
|
SGGeod _transmitter_pos;
|
||||||
double _transmitter_range_nm;
|
double _transmitter_range_nm;
|
||||||
double _transmitter_bearing_deg;
|
|
||||||
double _transmitter_bias;
|
double _transmitter_bias;
|
||||||
std::string _transmitter_name;
|
std::string _transmitter_name;
|
||||||
std::string _transmitter_ident;
|
std::string _transmitter_ident;
|
||||||
|
|
||||||
SGGeod _mobilePos;
|
SGGeod _mobilePos;
|
||||||
double _mobile_range_nm;
|
double _mobile_range_nm;
|
||||||
double _mobile_bearing_deg;
|
|
||||||
double _mobile_bias;
|
double _mobile_bias;
|
||||||
std::string _mobile_name;
|
std::string _mobile_name;
|
||||||
std::string _mobile_ident;
|
std::string _mobile_ident;
|
||||||
|
|
|
@ -112,11 +112,6 @@ using std::string;
|
||||||
# include <Include/no_version.h>
|
# include <Include/no_version.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <Main/fg_props.hxx>
|
|
||||||
#include <Main/globals.hxx>
|
|
||||||
#include "instrument_mgr.hxx"
|
|
||||||
#include "tcas.hxx"
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// debug switches /////////////////////////////////////////////////////////////
|
// debug switches /////////////////////////////////////////////////////////////
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -127,6 +122,11 @@ using std::string;
|
||||||
//#define FEATURE_TCAS_DEBUG_ADV_GENERATOR
|
//#define FEATURE_TCAS_DEBUG_ADV_GENERATOR
|
||||||
//#define FEATURE_TCAS_DEBUG_PROPERTIES
|
//#define FEATURE_TCAS_DEBUG_PROPERTIES
|
||||||
|
|
||||||
|
#include <Main/fg_props.hxx>
|
||||||
|
#include <Main/globals.hxx>
|
||||||
|
#include "instrument_mgr.hxx"
|
||||||
|
#include "tcas.hxx"
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// constants //////////////////////////////////////////////////////////////////
|
// constants //////////////////////////////////////////////////////////////////
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -532,9 +532,11 @@ TCAS::AdvisoryCoordinator::update(int mode)
|
||||||
|
|
||||||
TCAS::ThreatDetector::ThreatDetector(TCAS* _tcas) :
|
TCAS::ThreatDetector::ThreatDetector(TCAS* _tcas) :
|
||||||
tcas(_tcas),
|
tcas(_tcas),
|
||||||
checkCount(0),
|
|
||||||
pAlarmThresholds(&sensitivityLevels[0])
|
pAlarmThresholds(&sensitivityLevels[0])
|
||||||
{
|
{
|
||||||
|
#ifdef FEATURE_TCAS_DEBUG_THREAT_DETECTOR
|
||||||
|
checkCount = 0;
|
||||||
|
#endif
|
||||||
self.radarAltFt = 0.0;
|
self.radarAltFt = 0.0;
|
||||||
unitTest();
|
unitTest();
|
||||||
}
|
}
|
||||||
|
|
|
@ -342,7 +342,9 @@ class TCAS : public SGSubsystem
|
||||||
static const SensitivityLevel sensitivityLevels[];
|
static const SensitivityLevel sensitivityLevels[];
|
||||||
|
|
||||||
TCAS* tcas;
|
TCAS* tcas;
|
||||||
|
#ifdef FEATURE_TCAS_DEBUG_THREAT_DETECTOR
|
||||||
int checkCount;
|
int checkCount;
|
||||||
|
#endif // of FEATURE_TCAS_DEBUG_THREAT_DETECTOR
|
||||||
|
|
||||||
SGPropertyNode_ptr nodeLat;
|
SGPropertyNode_ptr nodeLat;
|
||||||
SGPropertyNode_ptr nodeLon;
|
SGPropertyNode_ptr nodeLon;
|
||||||
|
|
Loading…
Reference in a new issue