/usr/include/OpenLayer/Internal.hpp is in libopenlayer-dev 2.1-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #ifndef OL_INTERNAL_HPP
#define OL_INTERNAL_HPP
#include "Includes.hpp"
#include <string>
#include <math.h>
#include <fstream>
#include <iostream>
#include "Declspec.hpp"
namespace ol {
extern OL_LIB_DECLSPEC bool firstLog;
static inline void OlLog( std::string logStr, bool append = !firstLog ) {
firstLog = false;
#ifdef OL_TO_STDOUT
std::cout << logStr << "\n";
#else
std::ofstream file( "openlayer.log", append? std::ios::app : std::ios::trunc );
file << logStr << "\n";
file.close();
#endif
}
static inline void OlError( std::string errorStr ) {
std::string msg = std::string("ERROR: ") + errorStr;
OlLog( msg );
}
//TTD - change OlAssert to do FILE and LINE correctly
#if defined(_MSC_VER) && _MSC_VER < 1300
#define OlAssert( condition ) \
if( !(condition) ) { \
char linechars[64]; \
OlError( "Assertion failed somewhere in a VC6 program. Shutting down. Sorry can't be any more help"); \
exit( -1 ); \
}
#elif defined(_MSC_VER) && _MSC_VER > 1300
#define OlAssert( condition ) \
if( !(condition) ) { \
char linechars[64]; \
sprintf( linechars, "%i", __LINE__ ); \
OlError( "Assertion failed in \nFile: " + std::string( __FILE__ ) \
+ ", line " + std::string( linechars ) \
+ "\nFunction: " + std::string( __FUNCDNAME__ ) \
+ "\nProgram shutting down" ); \
exit( -1 ); \
}
#else
#define OlAssert( condition ) \
if( !(condition) ) { \
char linechars[64]; \
sprintf( linechars, "%i", __LINE__ ); \
OlError( "Assertion failed in \nFile: " + std::string( __FILE__ ) \
+ ", line " + std::string( linechars ) \
+ "\nFunction: " + std::string( __PRETTY_FUNCTION__ ) \
+ "\nProgram shutting down" ); \
exit( -1 ); \
}
#endif
static inline float RadiansToDegrees( float angle ) {
return angle * (180.0/AL_PI);
}
static inline void RotateMatrix( float angle ) {
#ifdef OL_ANGLES_IN_DEGREES
glRotatef( angle, 0.0, 0.0, 1.0 );
#else // OL_ANGLES_IN_DEGREES
glRotatef( RadiansToDegrees( angle ), 0.0, 0.0, 1.0 );
#endif // OL_ANGLES_IN_DEGREES
}
}
#endif // OL_INTERNAL_HPP
|