Merge commit 'b846e33' into next

This commit is contained in:
James Turner
2010-06-17 21:40:09 +01:00
4 changed files with 53 additions and 13 deletions

View File

@@ -50,7 +50,7 @@ void SGMagVar::update( double lon, double lat, double alt_m, double jd ) {
void SGMagVar::update( const SGGeod& geod, double jd ) {
update(geod.getLongitudeDeg(), geod.getLatitudeDeg(),
update(geod.getLongitudeRad(), geod.getLatitudeRad(),
geod.getElevationM(), jd);
}
@@ -62,3 +62,10 @@ double sgGetMagVar( double lon, double lat, double alt_m, double jd ) {
double field[6];
return calc_magvar( lat, lon, alt_m / 1000.0, (long)jd, field );
}
double sgGetMagVar( const SGGeod& pos, double jd )
{
return sgGetMagVar(pos.getLongitudeRad(), pos.getLatitudeRad(),
pos.getElevationM(), jd);
}

View File

@@ -103,5 +103,9 @@ public:
*/
double sgGetMagVar( double lon, double lat, double alt_m, double jd );
/**
* overload version of the above to take a SGGeod
*/
double sgGetMagVar( const SGGeod& pos, double jd );
#endif // _MAGVAR_HXX

View File

@@ -104,7 +104,9 @@ void SGSubsystem::stamp(const string& name)
// Implementation of SGSubsystemGroup.
////////////////////////////////////////////////////////////////////////
SGSubsystemGroup::SGSubsystemGroup ()
SGSubsystemGroup::SGSubsystemGroup () :
_fixedUpdateTime(-1.0),
_updateTimeRemainder(0.0)
{
}
@@ -157,18 +159,31 @@ SGSubsystemGroup::unbind ()
void
SGSubsystemGroup::update (double delta_time_sec)
{
for (unsigned int i = 0; i < _members.size(); i++)
{
SGTimeStamp timeStamp = SGTimeStamp::now();
_members[i]->update(delta_time_sec); // indirect call
timeStamp = timeStamp - SGTimeStamp::now();
double b = timeStamp.toUSecs();
_members[i]->updateExecutionTime(b);
double threshold = _members[i]->getTimeWarningThreshold();
if (( b > threshold ) && (b > 10000)) {
_members[i]->printTimingInformation(b);
}
int loopCount = 1;
// if dt == 0.0, we are paused, so we need to run one iteration
// of our members; if we have a fixed update time, we compute a
// loop count, and locally adjust dt
if ((delta_time_sec > 0.0) && (_fixedUpdateTime > 0.0)) {
double localDelta = delta_time_sec + _updateTimeRemainder;
loopCount = SGMiscd::roundToInt(localDelta / _fixedUpdateTime);
_updateTimeRemainder = delta_time_sec - (loopCount * _fixedUpdateTime);
delta_time_sec = _fixedUpdateTime;
}
while (loopCount-- > 0) {
for (unsigned int i = 0; i < _members.size(); i++)
{
SGTimeStamp timeStamp = SGTimeStamp::now();
_members[i]->update(delta_time_sec); // indirect call
timeStamp = timeStamp - SGTimeStamp::now();
double b = timeStamp.toUSecs();
_members[i]->updateExecutionTime(b);
double threshold = _members[i]->getTimeWarningThreshold();
if (( b > threshold ) && (b > 10000)) {
_members[i]->printTimingInformation(b);
}
}
} // of multiple update loop
}
void
@@ -233,6 +248,12 @@ SGSubsystemGroup::remove_subsystem (const string &name)
}
}
void
SGSubsystemGroup::set_fixed_update_time(double dt)
{
_fixedUpdateTime = dt;
}
void
SGSubsystemGroup::Member::printTimingStatistics ()
{

View File

@@ -317,6 +317,10 @@ public:
void collectDebugTiming(bool collect);
/**
*
*/
void set_fixed_update_time(double fixed_dt);
private:
class Member {
@@ -345,6 +349,9 @@ private:
Member * get_member (const string &name, bool create = false);
vector<Member *> _members;
double _fixedUpdateTime;
double _updateTimeRemainder;
};
@@ -376,6 +383,7 @@ public:
enum GroupType {
INIT = 0,
GENERAL,
FDM, ///< flight model, autopilot, instruments that run coupled
MAX_GROUPS
};