util.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. #ifdef __IOS__
  78. LPCSTR
  79. UTIL_IOS_BasePath(
  80. VOID
  81. );
  82. LPCSTR
  83. UTIL_IOS_SavePath(
  84. VOID
  85. );
  86. #endif
  87. #ifdef __WINPHONE__
  88. LPCSTR
  89. UTIL_WP_SavePath(
  90. VOID
  91. );
  92. BOOL
  93. UTIL_WP_GetScreenSize(
  94. DWORD *pdwScreenWidth,
  95. DWORD *pdwScreenHeight
  96. );
  97. #endif
  98. #define _PATH_LOG PAL_PREFIX "log.txt"
  99. #define LOG_EMERG 0 /* system is unusable */
  100. #define LOG_ALERT 1 /* action must be taken immediately */
  101. #define LOG_CRIT 2 /* critical conditions */
  102. #define LOG_ERR 3 /* error conditions */
  103. #define LOG_WARNING 4 /* warning conditions */
  104. #define LOG_NOTICE 5 /* normal but significant condition */
  105. #define LOG_INFO 6 /* informational */
  106. #define LOG_DEBUG 7 /* debug-level messages */
  107. #define LOG_LAST_PRIORITY 8 /* last level */
  108. #ifdef ENABLE_LOG
  109. FILE *
  110. UTIL_OpenLog(
  111. VOID
  112. );
  113. VOID
  114. UTIL_CloseLog(
  115. VOID
  116. );
  117. VOID
  118. UTIL_WriteLog(
  119. int Priority,
  120. const char *Fmt,
  121. ...
  122. );
  123. #else
  124. #define UTIL_OpenLog() ((void)(0))
  125. #define UTIL_CloseLog() ((void)(0))
  126. #ifdef _MSC_VER
  127. __forceinline VOID UTIL_WriteLog(int i, const char *p, ...) {}
  128. #else
  129. #define UTIL_WriteLog(...) ((void)(0))
  130. #endif
  131. #endif
  132. #ifdef __cplusplus
  133. }
  134. #endif
  135. #endif