From: fredb Date: Sat, 11 Feb 2006 14:43:48 +0000 (+0000) Subject: Portability fix - use SimGear when available X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=852c98aadd719ee00f12d4890a971182e0fe5606;p=flightgear.git Portability fix - use SimGear when available --- diff --git a/src/MultiPlayer/mpplayer.cxx b/src/MultiPlayer/mpplayer.cxx index 60210cc73..0ea86cad3 100644 --- a/src/MultiPlayer/mpplayer.cxx +++ b/src/MultiPlayer/mpplayer.cxx @@ -46,6 +46,8 @@ * ******************************************************************/ +#include + #include "mpplayer.hxx" #include @@ -192,15 +194,13 @@ MPPlayer::Close(void) bool MPPlayer::CheckTime(int time, int timeusec) { double curOffset; - - // set the offset - struct timeval tv; int toff, utoff; - gettimeofday(&tv, NULL); + + SGTimeStamp now; // calculate the offset - toff = ((int) tv.tv_sec) - time; - utoff = ((int) tv.tv_usec) - timeusec; + toff = ((int) now.get_seconds()) - time; + utoff = ((int) now.get_usec()) - timeusec; while (utoff < 0) { toff--; utoff += 1000000; @@ -256,8 +256,6 @@ MPPlayer::SetPosition const double accN, const double accE, const double accD ) { - int toff, utoff; - // Save the position matrix and update time if (m_Initialised) { @@ -357,7 +355,7 @@ void MPPlayer::SetProperty(string property, SGPropertyNode::Type type, double va // set the property switch (type) { case 2: - node->setBoolValue((bool) val); + node->setBoolValue( val != 0.0 ); break; case 3: node->setIntValue((int) val); @@ -491,14 +489,13 @@ MPPlayer::FillPosMsg T_PositionMsg *PosMsg ) { - struct timeval tv; - gettimeofday(&tv, NULL); - + SGTimeStamp now; + FillMsgHdr(MsgHdr, POS_DATA_ID); strncpy(PosMsg->Model, m_ModelName.c_str(), MAX_MODEL_NAME_LEN); PosMsg->Model[MAX_MODEL_NAME_LEN - 1] = '\0'; - PosMsg->time = XDR_encode_uint32 (tv.tv_sec); - PosMsg->timeusec = XDR_encode_uint32 (tv.tv_usec); + PosMsg->time = XDR_encode_uint32 (now.get_seconds()); + PosMsg->timeusec = XDR_encode_uint32 (now.get_usec()); PosMsg->lat = XDR_encode_double (m_lat); PosMsg->lon = XDR_encode_double (m_lon); PosMsg->alt = XDR_encode_double (m_alt); diff --git a/src/MultiPlayer/mpplayer.hxx b/src/MultiPlayer/mpplayer.hxx index b47d5f20a..381657207 100644 --- a/src/MultiPlayer/mpplayer.hxx +++ b/src/MultiPlayer/mpplayer.hxx @@ -46,7 +46,6 @@ #include #include #include -#include #include STL_STRING SG_USING_STD(string);