util.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // All rights reserved.
  5. //
  6. // This file is part of SDLPAL.
  7. //
  8. // SDLPAL is free software: you can redistribute it and/or modify
  9. // it under the terms of the GNU General Public License as published by
  10. // the Free Software Foundation, either version 3 of the License, or
  11. // (at your option) any later version.
  12. //
  13. // This program is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. // GNU General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU General Public License
  19. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. //
  21. #ifndef UTIL_H
  22. #define UTIL_H
  23. #include "common.h"
  24. //#define ENABLE_LOG 1
  25. #ifdef __cplusplus
  26. extern "C"
  27. {
  28. #endif
  29. void
  30. trim(
  31. char *str
  32. );
  33. char *va(
  34. const char *format,
  35. ...
  36. );
  37. int
  38. RandomLong(
  39. int from,
  40. int to
  41. );
  42. float
  43. RandomFloat(
  44. float from,
  45. float to
  46. );
  47. void
  48. UTIL_Delay(
  49. unsigned int ms
  50. );
  51. void
  52. TerminateOnError(
  53. const char *fmt,
  54. ...
  55. );
  56. void *
  57. UTIL_malloc(
  58. size_t buffer_size
  59. );
  60. void *
  61. UTIL_calloc(
  62. size_t n,
  63. size_t size
  64. );
  65. FILE *
  66. UTIL_OpenRequiredFile(
  67. LPCSTR lpszFileName
  68. );
  69. FILE *
  70. UTIL_OpenFile(
  71. LPCSTR lpszFileName
  72. );
  73. VOID
  74. UTIL_CloseFile(
  75. FILE *fp
  76. );
  77. #if defined(__WINPHONE__) || defined(__IOS__)
  78. LPCSTR
  79. UTIL_BasePath(
  80. VOID
  81. );
  82. LPCSTR
  83. UTIL_SavePath(
  84. VOID
  85. );
  86. BOOL
  87. UTIL_GetScreenSize(
  88. DWORD *pdwScreenWidth,
  89. DWORD *pdwScreenHeight
  90. );
  91. #endif
  92. #define _PATH_LOG PAL_PREFIX "log.txt"
  93. #define LOG_EMERG 0 /* system is unusable */
  94. #define LOG_ALERT 1 /* action must be taken immediately */
  95. #define LOG_CRIT 2 /* critical conditions */
  96. #define LOG_ERR 3 /* error conditions */
  97. #define LOG_WARNING 4 /* warning conditions */
  98. #define LOG_NOTICE 5 /* normal but significant condition */
  99. #define LOG_INFO 6 /* informational */
  100. #define LOG_DEBUG 7 /* debug-level messages */
  101. #define LOG_LAST_PRIORITY 8 /* last level */
  102. #ifdef ENABLE_LOG
  103. FILE *
  104. UTIL_OpenLog(
  105. VOID
  106. );
  107. VOID
  108. UTIL_CloseLog(
  109. VOID
  110. );
  111. VOID
  112. UTIL_WriteLog(
  113. int Priority,
  114. const char *Fmt,
  115. ...
  116. );
  117. #else
  118. #define UTIL_OpenLog() ((void)(0))
  119. #define UTIL_CloseLog() ((void)(0))
  120. #ifdef _MSC_VER
  121. __forceinline VOID UTIL_WriteLog(int i, const char *p, ...) {}
  122. #else
  123. #define UTIL_WriteLog(...) ((void)(0))
  124. #endif
  125. #endif
  126. #ifdef __cplusplus
  127. }
  128. #endif
  129. #endif