/dep/g3dlite/include/G3D/platform.h

http://github.com/SingularityCore/Singularity · C Header · 337 lines · 170 code · 68 blank · 99 comment · 11 complexity · 114bde85a43f13bf1df1bf91aa92463e MD5 · raw file

  1. /**
  2. @file platform.h
  3. \#defines for platform specific issues.
  4. @maintainer Morgan McGuire, http://graphics.cs.williams.edu
  5. @created 2003-06-09
  6. @edited 2010-01-11
  7. */
  8. #ifndef G3D_platform_h
  9. #define G3D_platform_h
  10. /**
  11. The version number of G3D in the form: MmmBB ->
  12. version M.mm [beta BB]
  13. */
  14. #define G3D_VER 80000
  15. // fatal error for unsupported architectures
  16. #if defined(__powerpc__)
  17. # error PowerPC is not supported by G3D!
  18. #endif
  19. #if defined(G3D_RELEASEDEBUG)
  20. # define G3D_DEBUGRELEASE
  21. #endif
  22. #if defined(G3D_DEBUGRELEASE) && defined(_DEBUG)
  23. # undef _DEBUG
  24. #endif
  25. /** @def G3D_DEBUG()
  26. Defined if G3D is built in debug mode. */
  27. #if !defined(G3D_DEBUG) && (defined(_DEBUG) || defined(G3D_DEBUGRELEASE))
  28. # define G3D_DEBUG
  29. #endif
  30. /** These control the version of Winsock used by G3D.
  31. Version 2.0 is standard for G3D 6.09 and later.
  32. Version 1.1 is standard for G3D 6.08 and earlier.
  33. */
  34. #define G3D_WINSOCK_MAJOR_VERSION 2
  35. #define G3D_WINSOCK_MINOR_VERSION 0
  36. #ifndef _MSC_VER
  37. /// Fast call is a register-based optimized calling convention supported only by Visual C++
  38. #define __fastcall
  39. #endif
  40. #ifdef _MSC_VER
  41. #define G3D_WIN32
  42. #elif defined(__FreeBSD__) || defined(__OpenBSD__)
  43. #define G3D_FREEBSD
  44. #define G3D_LINUX
  45. #elif defined(__linux__)
  46. #define G3D_LINUX
  47. #elif defined(__APPLE__)
  48. #define G3D_OSX
  49. // Prevent OS X fp.h header from being included; it defines
  50. // pi as a constant, which creates a conflict with G3D
  51. #define __FP__
  52. #else
  53. #error Unknown platform
  54. #endif
  55. // Detect 64-bit under various compilers
  56. #if (defined(_M_X64) || defined(_WIN64) || defined(__LP64__) || defined(_LP64))
  57. # define G3D_64BIT
  58. #if defined(WIN32)
  59. #include <intrin.h>
  60. #endif
  61. #else
  62. # define G3D_32BIT
  63. #endif
  64. // Strongly encourage inlining on gcc
  65. #ifdef __GNUC__
  66. #define inline __inline__
  67. #endif
  68. // Verify that the supported compilers are being used and that this is a known
  69. // processor.
  70. #ifdef G3D_LINUX
  71. # ifndef __GNUC__
  72. # error G3D only supports the gcc compiler on Linux.
  73. # endif
  74. #endif
  75. #ifdef G3D_OSX
  76. # ifndef __GNUC__
  77. # error G3D only supports the gcc compiler on OS X.
  78. # endif
  79. # if defined(__i386__)
  80. # define G3D_OSX_INTEL
  81. # elif defined(__PPC__)
  82. # define G3D_OSX_PPC
  83. # else
  84. # define G3D_OSX_UNKNOWN
  85. # endif
  86. #endif
  87. #ifdef _MSC_VER
  88. // Microsoft Visual C++ 8.0 ("Express") = 1400
  89. // Microsoft Visual C++ 7.1 ("2003") _MSC_VER = 1310
  90. // Microsoft Visual C++ 7.0 ("2002") _MSC_VER = 1300
  91. // Microsoft Visual C++ 6.0 _MSC_VER = 1200
  92. // Microsoft Visual C++ 5.0 _MSC_VER = 1100
  93. // Turn off warnings about deprecated C routines
  94. # pragma warning (disable : 4996)
  95. // Turn off "conditional expression is constant" warning; MSVC generates this
  96. // for debug assertions in inlined methods.
  97. # pragma warning (disable : 4127)
  98. /** @def G3D_DEPRECATED()
  99. Creates deprecated warning. */
  100. # define G3D_DEPRECATED __declspec(deprecated)
  101. // Prevent Winsock conflicts by hiding the winsock API
  102. # ifndef _WINSOCKAPI_
  103. # define _G3D_INTERNAL_HIDE_WINSOCK_
  104. # define _WINSOCKAPI_
  105. # endif
  106. // Disable 'name too long for browse information' warning
  107. # pragma warning (disable : 4786)
  108. // TODO: remove
  109. # pragma warning (disable : 4244)
  110. # define restrict
  111. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  112. Enables printf parameter validation on gcc. */
  113. # define G3D_CHECK_PRINTF_ARGS
  114. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  115. Enables printf parameter validation on gcc. */
  116. # define G3D_CHECK_VPRINTF_ARGS
  117. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  118. Enables printf parameter validation on gcc. */
  119. # define G3D_CHECK_PRINTF_METHOD_ARGS
  120. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  121. Enables printf parameter validation on gcc. */
  122. # define G3D_CHECK_VPRINTF_METHOD_ARGS
  123. // On MSVC, we need to link against the multithreaded DLL version of
  124. // the C++ runtime because that is what SDL and ZLIB are compiled
  125. // against. This is not the default for MSVC, so we set the following
  126. // defines to force correct linking.
  127. //
  128. // For documentation on compiler options, see:
  129. // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/_core_.2f.md.2c_2f.ml.2c_2f.mt.2c_2f.ld.asp
  130. // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HTML/_core_Compiler_Reference.asp
  131. //
  132. // DLL runtime
  133. #ifndef _DLL
  134. #define _DLL
  135. #endif
  136. // Multithreaded runtime
  137. #ifndef _MT
  138. #define _MT 1
  139. #endif
  140. // Ensure that we aren't forced into the static lib
  141. #ifdef _STATIC_CPPLIB
  142. #undef _STATIC_CPPLIB
  143. #endif
  144. #ifdef _DEBUG
  145. #pragma comment (linker, "/NODEFAULTLIB:LIBCMTD.LIB")
  146. #pragma comment (linker, "/NODEFAULTLIB:LIBCPMTD.LIB")
  147. #pragma comment (linker, "/NODEFAULTLIB:LIBCPD.LIB")
  148. #pragma comment (linker, "/DEFAULTLIB:MSVCPRTD.LIB")
  149. #pragma comment(linker, "/NODEFAULTLIB:LIBCD.LIB")
  150. #pragma comment(linker, "/DEFAULTLIB:MSVCRTD.LIB")
  151. #else
  152. #pragma comment(linker, "/NODEFAULTLIB:LIBC.LIB")
  153. #pragma comment(linker, "/DEFAULTLIB:MSVCRT.LIB")
  154. #pragma comment (linker, "/NODEFAULTLIB:LIBCMT.LIB")
  155. #pragma comment (linker, "/NODEFAULTLIB:LIBCPMT.LIB")
  156. #pragma comment(linker, "/NODEFAULTLIB:LIBCP.LIB")
  157. #pragma comment (linker, "/DEFAULTLIB:MSVCPRT.LIB")
  158. #endif
  159. // Now set up external linking
  160. # ifdef _DEBUG
  161. // zlib was linked against the release MSVCRT; force
  162. // the debug version.
  163. # pragma comment(linker, "/NODEFAULTLIB:MSVCRT.LIB")
  164. # endif
  165. # ifndef WIN32_LEAN_AND_MEAN
  166. # define WIN32_LEAN_AND_MEAN 1
  167. # endif
  168. # define NOMINMAX 1
  169. # ifndef _WIN32_WINNT
  170. # define _WIN32_WINNT 0x0500
  171. # endif
  172. # include <windows.h>
  173. # undef WIN32_LEAN_AND_MEAN
  174. # undef NOMINMAX
  175. # ifdef _G3D_INTERNAL_HIDE_WINSOCK_
  176. # undef _G3D_INTERNAL_HIDE_WINSOCK_
  177. # undef _WINSOCKAPI_
  178. # endif
  179. /** @def G3D_START_AT_MAIN()
  180. Defines necessary wrapper around WinMain on Windows to allow transfer of execution to main(). */
  181. # define G3D_START_AT_MAIN()\
  182. int WINAPI G3D_WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw);\
  183. int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) {\
  184. return G3D_WinMain(hInst, hPrev, szCmdLine, sw);\
  185. }
  186. #else
  187. /** @def G3D_START_AT_MAIN()
  188. Defines necessary wrapper around WinMain on Windows to allow transfer of execution to main(). */
  189. # define G3D_START_AT_MAIN()
  190. #endif // win32
  191. #ifdef __GNUC__
  192. # include <stdint.h>
  193. # if __STDC_VERSION__ < 199901
  194. # define restrict __restrict__
  195. # endif
  196. /** @def G3D_DEPRECATED()
  197. Creates deprecated warning. */
  198. # define G3D_DEPRECATED __attribute__((__deprecated__))
  199. // setup function calling conventions
  200. # if defined(__i386__) && ! defined(__x86_64__)
  201. # ifndef __cdecl
  202. # define __cdecl __attribute__((cdecl))
  203. # endif
  204. # ifndef __stdcall
  205. # define __stdcall __attribute__((stdcall))
  206. # endif
  207. # elif defined(__x86_64__)
  208. # ifndef __cdecl
  209. # define __cdecl
  210. # endif
  211. # ifndef __stdcall
  212. # define __stdcall
  213. # endif
  214. # endif // calling conventions
  215. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  216. Enables printf parameter validation on gcc. */
  217. # define G3D_CHECK_PRINTF_METHOD_ARGS __attribute__((__format__(__printf__, 2, 3)))
  218. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  219. Enables printf parameter validation on gcc. */
  220. # define G3D_CHECK_VPRINTF_METHOD_ARGS __attribute__((__format__(__printf__, 2, 0)))
  221. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  222. Enables printf parameter validation on gcc. */
  223. # define G3D_CHECK_PRINTF_ARGS __attribute__((__format__(__printf__, 1, 2)))
  224. /** @def G3D_CHECK_PRINTF_METHOD_ARGS()
  225. Enables printf parameter validation on gcc. */
  226. # define G3D_CHECK_VPRINTF_ARGS __attribute__((__format__(__printf__, 1, 0)))
  227. #endif
  228. /**
  229. @def STR(expression)
  230. Creates a string from the expression. Frequently used with G3D::Shader
  231. to express shading programs inline.
  232. <CODE>STR(this becomes a string)\verbatim<PRE>\endverbatim evaluates the same as \verbatim<CODE>\endverbatim"this becomes a string"</CODE>
  233. */
  234. #define STR(x) #x
  235. /** @def PRAGMA(expression)
  236. \#pragma may not appear inside a macro, so this uses the pragma operator
  237. to create an equivalent statement.*/
  238. #ifdef _MSC_VER
  239. // Microsoft's version http://msdn.microsoft.com/en-us/library/d9x1s805.aspx
  240. # define PRAGMA(x) __pragma(x)
  241. #else
  242. // C99 standard http://www.delorie.com/gnu/docs/gcc/cpp_45.html
  243. # define PRAGMA(x) _Pragma(#x)
  244. #endif
  245. /** @def G3D_BEGIN_PACKED_CLASS(byteAlign)
  246. Switch to tight alignment
  247. See G3D::Color3uint8 for an example.*/
  248. #ifdef _MSC_VER
  249. # define G3D_BEGIN_PACKED_CLASS(byteAlign) PRAGMA( pack(push, byteAlign) )
  250. #else
  251. # define G3D_BEGIN_PACKED_CLASS(byteAlign)
  252. #endif
  253. /** @def G3D_END_PACKED_CLASS(byteAlign)
  254. End switch to tight alignment
  255. See G3D::Color3uint8 for an example.*/
  256. #ifdef _MSC_VER
  257. # define G3D_END_PACKED_CLASS(byteAlign) ; PRAGMA( pack(pop) )
  258. #elif defined(__GNUC__)
  259. # define G3D_END_PACKED_CLASS(byteAlign) __attribute((aligned(byteAlign))) ;
  260. #else
  261. # define G3D_END_PACKED_CLASS(byteAlign) ;
  262. #endif
  263. // Header guard
  264. #endif