|
int | XPMP2::PrefsFuncIntDefault (const char *, const char *, int _default) |
| Default config function just always returns the provided default value. More...
|
|
bool | XPMP2::ExistsFile (const std::string &filename) |
| Does a file path exist? More...
|
|
bool | XPMP2::IsDir (const std::string &path) |
| Is path a directory? More...
|
|
bool | XPMP2::CreateDir (const std::string &path) |
| Create directory if it does not exist. More...
|
|
bool | XPMP2::CopyFileIfNewer (const std::string &source, const std::string &destDir) |
| Copy file if source is newer or destination missing. More...
|
|
std::list< std::string > | XPMP2::GetDirContents (const std::string &path) |
| List of files in a directory (wrapper around XPLMGetDirectoryContents) More...
|
|
std::istream & | XPMP2::safeGetline (std::istream &is, std::string &t) |
| Read a line from a text file, no matter if ending on CRLF or LF. More...
|
|
const std::string & | XPMP2::GetXPSystemPath () |
| Returns XP's system directory, including a trailing slash. More...
|
|
std::string | XPMP2::StripXPSysDir (const std::string &path) |
| If a path starts with X-Plane's system directory it is stripped. More...
|
|
void | XPMP2::RemoveExtension (std::string &path) |
| Removes everything after the last dot, the dot including. More...
|
|
std::string & | XPMP2::str_tolower (std::string &s) |
| change a std::string to uppercase More...
|
|
std::string & | XPMP2::rtrim (std::string &s, const char *t=WHITESPACE) |
| trimming of string (from right) More...
|
|
std::string & | XPMP2::ltrim (std::string &s, const char *t=WHITESPACE) |
| trimming of string (from left) More...
|
|
std::string & | XPMP2::trim (std::string &s, const char *t=WHITESPACE) |
| trimming of string (from both ends) More...
|
|
std::string | XPMP2::leftOf (const std::string &s, const std::string &terminators) |
| Returns everything left of any of terminators. More...
|
|
std::vector< std::string > | XPMP2::str_tokenize (const std::string s, const std::string tokens, bool bSkipEmpty=true) |
| separates string into tokens More...
|
|
bool | XPMP2::fequal (float a, float b) |
| Are these two float near-equal? (to avoid trying something like a == b) More...
|
|
template<class T > |
T | XPMP2::rad2deg (const T _rad) |
| Convert radians to degrees, normalized to [0..360) More...
|
|
template<class T > |
T | XPMP2::deg2rad (const T _deg) |
| Convert degree to radians. More...
|
|
template<class T > |
T | XPMP2::sqr (const T a) |
| Square. More...
|
|
template<class T > |
T | XPMP2::dist (const T x1, const T y1, const T z1, const T x2, const T y2, const T z2) |
| Pythagorean distance between two points in a 3-D world. More...
|
|
float | XPMP2::atan2deg (float x, float y) |
| atan2 converted to degrees: the angle between (0|0) and the given point More...
|
|
float | XPMP2::angleLocCoord (float x1, float z1, float x2, float z2) |
| Angle of line from point (x1|z1) to point (x2|z2) More...
|
|
float | XPMP2::headDiff (float head1, float head2) |
| (Shortest) difference between 2 angles: How much to turn to go from h1 to h2? More...
|
|
template<class numT > |
numT | XPMP2::headNormalize (numT _head) |
| Normalize a heading value to [0..360), works for both float and double values. More...
|
|
std::valarray< float > | XPMP2::HeadPitch2Vec (const float head, const float pitch) |
| Convert heading/pitch to normalized x/y/z vector. More...
|
|
std::valarray< float > | XPMP2::HeadPitchRoll2Normal (const float head, const float pitch, const float roll) |
| Convert heading/pitch/roll to unit and normal vector, ie. returns 6 values, first 3 like HeadPitch2Vec, second three the normal vector (pointing "up") More...
|
|
float | XPMP2::GetMiscNetwTime () |
| Get synched network time from X-Plane (sim/network/misc/network_time_sec) as used in Log.txt. More...
|
|
std::string | XPMP2::GetMiscNetwTimeStr (float _time=NAN) |
| Return the network time as a string like used in the XP's Log.txt. More...
|
|
const char * | XPMP2::GetGraphicsDriverTxt () |
| Text string for current graphics driver in use. More...
|
|
bool | XPMP2::IsPaused () |
| X-Plane in a Pause state? More...
|
|
bool | XPMP2::IsViewExternal () |
| Is current X-Plane view an external view (outside a cockpit)? More...
|
|
bool | XPMP2::CheckEverySoOften (float &_lastCheck, float _interval, float _now) |
| Convenience function to check on something at most every x seconds. More...
|
|
bool | XPMP2::CheckEverySoOften (float &_lastCheck, float _interval) |
| Convenience function to check on something at most every x seconds. More...
|
|
const char * | XPMP2::LogGetString (const char *szFile, int ln, const char *szFunc, logLevelTy lvl, const char *szMsg, va_list args) |
| Returns ptr to static buffer filled with formatted log string. More...
|
|
void | XPMP2::LogMsg (const char *szFile, int ln, const char *szFunc, logLevelTy lvl, const char *szMsg,...) XPMP2_FMTARGS(5) |
| Log Text to log file. More...
|
|
std::string | XPMP2::TOPOSIX (const std::string &p) |
| On Lin/Win there is no need for a conversion, but we do treat p now as std::string More...
|
|
std::string | XPMP2::FROMPOSIX (const std::string &p) |
| On Lin/Win there is no need for a conversion, but we do treat p now as std::string More...
|
|