util.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. long
  30. flength(
  31. FILE *fp
  32. );
  33. void
  34. trim(
  35. char *str
  36. );
  37. char *va(
  38. const char *format,
  39. ...
  40. );
  41. int
  42. RandomLong(
  43. int from,
  44. int to
  45. );
  46. float
  47. RandomFloat(
  48. float from,
  49. float to
  50. );
  51. void
  52. UTIL_Delay(
  53. unsigned int ms
  54. );
  55. void
  56. TerminateOnError(
  57. const char *fmt,
  58. ...
  59. );
  60. void *
  61. UTIL_malloc(
  62. size_t buffer_size
  63. );
  64. void *
  65. UTIL_calloc(
  66. size_t n,
  67. size_t size
  68. );
  69. FILE *
  70. UTIL_OpenRequiredFile(
  71. LPCSTR lpszFileName
  72. );
  73. FILE *
  74. UTIL_OpenRequiredFileForMode(
  75. LPCSTR lpszFileName,
  76. LPCSTR szMode
  77. );
  78. FILE *
  79. UTIL_OpenFile(
  80. LPCSTR lpszFileName
  81. );
  82. FILE *
  83. UTIL_OpenFileForMode(
  84. LPCSTR lpszFileName,
  85. LPCSTR szMode
  86. );
  87. VOID
  88. UTIL_CloseFile(
  89. FILE *fp
  90. );
  91. LPCSTR
  92. UTIL_ConfigPath(
  93. VOID
  94. );
  95. LPCSTR
  96. UTIL_ScreenShotPath(
  97. VOID
  98. );
  99. BOOL
  100. UTIL_GetScreenSize(
  101. DWORD *pdwScreenWidth,
  102. DWORD *pdwScreenHeight
  103. );
  104. BOOL
  105. UTIL_IsAbsolutePath(
  106. LPCSTR lpszFileName
  107. );
  108. BOOL
  109. UTIL_TouchEnabled(
  110. VOID
  111. );
  112. INT
  113. UTIL_Platform_Init(
  114. int argc,
  115. char* argv[]
  116. );
  117. VOID
  118. UTIL_Platform_Quit(
  119. VOID
  120. );
  121. #define LOG_EMERG 0 /* system is unusable */
  122. #define LOG_ALERT 1 /* action must be taken immediately */
  123. #define LOG_CRIT 2 /* critical conditions */
  124. #define LOG_ERR 3 /* error conditions */
  125. #define LOG_WARNING 4 /* warning conditions */
  126. #define LOG_NOTICE 5 /* normal but significant condition */
  127. #define LOG_INFO 6 /* informational */
  128. #define LOG_DEBUG 7 /* debug-level messages */
  129. #define LOG_LAST_PRIORITY 8 /* last level */
  130. #ifdef ENABLE_LOG
  131. FILE *
  132. UTIL_OpenLog(
  133. VOID
  134. );
  135. VOID
  136. UTIL_CloseLog(
  137. VOID
  138. );
  139. VOID
  140. UTIL_WriteLog(
  141. int Priority,
  142. const char *Fmt,
  143. ...
  144. );
  145. #else
  146. #define UTIL_OpenLog() ((void)(0))
  147. #define UTIL_CloseLog() ((void)(0))
  148. #define UTIL_WriteLog(...) ((void)(0))
  149. #endif
  150. #ifdef __cplusplus
  151. }
  152. #endif
  153. #endif