common.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. //
  2. // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
  3. // All rights reserved.
  4. // Modified by Lou Yihua <louyihua@21cn.com> with unicode support, 2015.
  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 _COMMON_H
  22. #define _COMMON_H
  23. #ifndef ENABLE_REVISIED_BATTLE
  24. # define PAL_CLASSIC 1
  25. #endif
  26. #ifdef __cplusplus
  27. extern "C"
  28. {
  29. #endif
  30. #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS)
  31. #define _CRT_SECURE_NO_WARNINGS
  32. #endif
  33. #include <wchar.h>
  34. #include <stdio.h>
  35. #include <stdlib.h>
  36. #include <string.h>
  37. #include <time.h>
  38. #include <limits.h>
  39. #include <stdarg.h>
  40. #include <assert.h>
  41. #include "SDL.h"
  42. #include "SDL_endian.h"
  43. #if SDL_VERSION_ATLEAST(2,0,0)
  44. #define SDLK_KP1 SDLK_KP_1
  45. #define SDLK_KP2 SDLK_KP_2
  46. #define SDLK_KP3 SDLK_KP_3
  47. #define SDLK_KP4 SDLK_KP_4
  48. #define SDLK_KP5 SDLK_KP_5
  49. #define SDLK_KP6 SDLK_KP_6
  50. #define SDLK_KP7 SDLK_KP_7
  51. #define SDLK_KP8 SDLK_KP_8
  52. #define SDLK_KP9 SDLK_KP_9
  53. #define SDLK_KP0 SDLK_KP_0
  54. #define SDL_HWSURFACE 0
  55. #endif
  56. #if !defined(__cplusplus)
  57. #ifndef max
  58. #define max(a, b) (((a) > (b)) ? (a) : (b))
  59. #endif
  60. #ifndef min
  61. #define min(a, b) (((a) < (b)) ? (a) : (b))
  62. #endif
  63. #endif
  64. /* This is need when compiled with SDL 1.2 */
  65. #ifndef SDL_FORCE_INLINE
  66. #if defined(_MSC_VER)
  67. #define SDL_FORCE_INLINE __forceinline
  68. #elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) )
  69. #define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__
  70. #else
  71. #define SDL_FORCE_INLINE static SDL_INLINE
  72. #endif
  73. #endif /* SDL_FORCE_INLINE not defined */
  74. #if defined(_MSC_VER)
  75. #define PAL_FORCE_INLINE static SDL_FORCE_INLINE
  76. #else
  77. #define PAL_FORCE_INLINE SDL_FORCE_INLINE
  78. #endif
  79. #if defined (__SYMBIAN32__)
  80. #undef _WIN32
  81. #undef SDL_INIT_JOYSTICK
  82. #define SDL_INIT_JOYSTICK 0
  83. #define PAL_HAS_MOUSE 1
  84. #define PAL_PREFIX "e:/data/pal/"
  85. #define PAL_SAVE_PREFIX "e:/data/pal/"
  86. # ifdef __S60_5X__
  87. # define PAL_DEFAULT_WINDOW_WIDTH 640
  88. # define PAL_DEFAULT_WINDOW_HEIGHT 360
  89. # else
  90. # define PAL_DEFAULT_WINDOW_WIDTH 320
  91. # define PAL_DEFAULT_WINDOW_HEIGHT 240
  92. # endif
  93. # if SDL_VERSION_ATLEAST(2,0,0)
  94. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE)
  95. # else
  96. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0))
  97. # endif
  98. # define PAL_PLATFORM " Symbian S60 \x79FB\x690D (c) 2009, netwan."
  99. # define PAL_CREDIT "netwan"
  100. # define PAL_PORTYEAR "2009"
  101. #elif defined (GEKKO)
  102. #define PAL_HAS_JOYSTICKS 1
  103. #define PAL_HAS_MOUSE 0
  104. #define PAL_PREFIX "SD:/apps/sdlpal/"
  105. #define PAL_SAVE_PREFIX "SD:/apps/sdlpal/"
  106. #define PAL_DEFAULT_WINDOW_WIDTH 640
  107. #define PAL_DEFAULT_WINDOW_HEIGHT 480
  108. # if SDL_VERSION_ATLEAST(2,0,0)
  109. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE)
  110. # else
  111. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0))
  112. # endif
  113. # define PAL_PLATFORM "Nintendo WII"
  114. # define PAL_CREDIT "Rikku2000"
  115. # define PAL_PORTYEAR "2012"
  116. #elif defined (PSP)
  117. #define PAL_HAS_JOYSTICKS 0
  118. #define PAL_PREFIX "ms0:/"
  119. #define PAL_SAVE_PREFIX "ms0:/PSP/SAVEDATA/SDLPAL/"
  120. #define PAL_DEFAULT_WINDOW_WIDTH 320
  121. #define PAL_DEFAULT_WINDOW_HEIGHT 240
  122. # if SDL_VERSION_ATLEAST(2,0,0)
  123. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  124. # else
  125. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | SDL_FULLSCREEN)
  126. # endif
  127. # define PAL_PLATFORM "Sony PSP"
  128. # define PAL_CREDIT "(Unknown)"
  129. # define PAL_PORTYEAR "2011"
  130. #elif defined(GPH) || defined(DINGOO)
  131. #define PAL_PREFIX "./"
  132. #define PAL_SAVE_PREFIX "./"
  133. # define PAL_DEFAULT_WINDOW_WIDTH 320
  134. # define PAL_DEFAULT_WINDOW_HEIGHT 240
  135. # if SDL_VERSION_ATLEAST(2,0,0)
  136. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  137. # else
  138. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | SDL_FULLSCREEN)
  139. # endif
  140. # if defined(GPH)
  141. # define PAL_PLATFORM "GPH Caanoo & Wiz"
  142. # else
  143. # define PAL_PLATFORM "DINGOO & Dingux"
  144. # endif
  145. # define PAL_CREDIT "Rikku2000"
  146. # define PAL_PORTYEAR "2011"
  147. #elif defined(NDS)
  148. #define PAL_PREFIX "./"
  149. #define PAL_SAVE_PREFIX "./"
  150. # define PAL_DEFAULT_WINDOW_WIDTH 293
  151. # define PAL_DEFAULT_WINDOW_HEIGHT 196
  152. # if SDL_VERSION_ATLEAST(2,0,0)
  153. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  154. # else
  155. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | SDL_FULLSCREEN)
  156. # endif
  157. # define PAL_PLATFORM "Nintendo DS"
  158. # define PAL_CREDIT "(Unknown)"
  159. # define PAL_PORTYEAR "2012"
  160. #elif defined (__IOS__)
  161. #define PAL_PREFIX UTIL_BasePath()
  162. #define PAL_SAVE_PREFIX UTIL_SavePath()
  163. #define PAL_HAS_TOUCH 1
  164. #define PAL_DEFAULT_WINDOW_WIDTH 320
  165. #define PAL_DEFAULT_WINDOW_HEIGHT 200
  166. # if SDL_VERSION_ATLEAST(2,0,0)
  167. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  168. # else
  169. # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_FULLSCREEN)
  170. # endif
  171. # define PAL_PLATFORM "Apple iOS"
  172. # define PAL_CREDIT "(Unknown)"
  173. # define PAL_PORTYEAR "2015"
  174. #elif defined (__ANDROID__)
  175. #define PAL_PREFIX "/mnt/sdcard/sdlpal/"
  176. #define PAL_SAVE_PREFIX "/mnt/sdcard/sdlpal/"
  177. #define PAL_HAS_TOUCH 1
  178. #define PAL_DEFAULT_WINDOW_WIDTH 320
  179. #define PAL_DEFAULT_WINDOW_HEIGHT 200
  180. # if SDL_VERSION_ATLEAST(2,0,0)
  181. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  182. # else
  183. # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_FULLSCREEN)
  184. # endif
  185. # define PAL_PLATFORM "Android"
  186. # define PAL_CREDIT "Rikku2000"
  187. # define PAL_PORTYEAR "2013"
  188. #elif defined(__WINRT__)
  189. #define PAL_PREFIX UTIL_BasePath()
  190. #define PAL_SAVE_PREFIX UTIL_SavePath()
  191. #define PAL_CONFIG_PREFIX UTIL_ConfigPath()
  192. #define PAL_SCREENSHOT_PREFIX UTIL_ScreenShotPath()
  193. #define PAL_HAS_TOUCH 1
  194. #define PAL_AUDIO_DEFAULT_BUFFER_SIZE 4096
  195. #define PAL_DEFAULT_WINDOW_WIDTH 320
  196. #define PAL_DEFAULT_WINDOW_HEIGHT 200
  197. # if SDL_VERSION_ATLEAST(2,0,0)
  198. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  199. # else
  200. # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_RESIZABLE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0))
  201. # endif
  202. # define PAL_PLATFORM "Windows Runtime"
  203. # define PAL_CREDIT "(Unknown)"
  204. # define PAL_PORTYEAR "2015"
  205. #elif defined (__EMSCRIPTEN__)
  206. #include <emscripten.h>
  207. #define SDL_Delay emscripten_sleep
  208. #define PAL_PREFIX "data/"
  209. #define PAL_SAVE_PREFIX "data/"
  210. #define PAL_HAS_TOUCH 0
  211. #define PAL_DEFAULT_WINDOW_WIDTH 320
  212. #define PAL_DEFAULT_WINDOW_HEIGHT 200
  213. # if SDL_VERSION_ATLEAST(2,0,0)
  214. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  215. # else
  216. # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_FULLSCREEN)
  217. # endif
  218. # define PAL_PLATFORM "Emscripten"
  219. # define PAL_CREDIT "palxex"
  220. # define PAL_PORTYEAR "2016"
  221. #else
  222. # ifndef PAL_HAS_JOYSTICKS
  223. # define PAL_HAS_JOYSTICKS 1
  224. # endif
  225. #if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION <= 2
  226. # define PAL_ALLOW_KEYREPEAT 1
  227. # define PAL_HAS_SDLCD 1
  228. #endif
  229. # define PAL_PREFIX "./"
  230. # define PAL_SAVE_PREFIX "./"
  231. # define PAL_DEFAULT_WINDOW_WIDTH 640
  232. # define PAL_DEFAULT_WINDOW_HEIGHT 400
  233. # define PAL_DEFAULT_FULLSCREEN_HEIGHT 480
  234. # if SDL_VERSION_ATLEAST(2,0,0)
  235. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE | (gConfig.fFullScreen ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0))
  236. # else
  237. # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_RESIZABLE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0))
  238. # endif
  239. # define PAL_PLATFORM NULL
  240. # define PAL_CREDIT NULL
  241. # define PAL_PORTYEAR NULL
  242. #endif
  243. #ifndef PAL_DEFAULT_FULLSCREEN_HEIGHT
  244. # define PAL_DEFAULT_FULLSCREEN_HEIGHT PAL_DEFAULT_WINDOW_HEIGHT
  245. #endif
  246. /* Default for 1024 samples */
  247. #ifndef PAL_AUDIO_DEFAULT_BUFFER_SIZE
  248. # define PAL_AUDIO_DEFAULT_BUFFER_SIZE 1024
  249. #endif
  250. #ifndef PAL_HAS_SDLCD
  251. # define PAL_HAS_SDLCD 0
  252. #endif
  253. #ifndef PAL_HAS_MP3
  254. # define PAL_HAS_MP3 1 /* Try always enable MP3. If compilation/run failed, please change this value to 0. */
  255. #endif
  256. #ifndef PAL_HAS_OGG
  257. # define PAL_HAS_OGG 1 /* Try always enable OGG. If compilation/run failed, please change this value to 0. */
  258. #endif
  259. #ifndef SDL_INIT_CDROM
  260. # define SDL_INIT_CDROM 0 /* Compatibility with SDL 1.2 */
  261. #endif
  262. #ifndef SDL_AUDIO_BITSIZE
  263. # define SDL_AUDIO_BITSIZE(x) (x & 0xFF)
  264. #endif
  265. #ifndef PAL_CONFIG_PREFIX
  266. # define PAL_CONFIG_PREFIX PAL_PREFIX
  267. #endif
  268. #ifndef PAL_SCREENSHOT_PREFIX
  269. # define PAL_SCREENSHOT_PREFIX PAL_SAVE_PREFIX
  270. #endif
  271. #ifdef _WIN32
  272. #include <windows.h>
  273. #include <io.h>
  274. #if defined(_MSC_VER)
  275. # if _MSC_VER < 1900
  276. # define vsnprintf _vsnprintf
  277. # define snprintf _snprintf
  278. # endif
  279. # define strdup _strdup
  280. # pragma warning (disable:4244)
  281. #endif
  282. #ifndef _LPCBYTE_DEFINED
  283. # define _LPCBYTE_DEFINED
  284. typedef const BYTE *LPCBYTE;
  285. #endif
  286. #ifndef __WINRT__
  287. # define PAL_HAS_NATIVEMIDI 1
  288. #endif
  289. #else
  290. #include <unistd.h>
  291. #include <dirent.h>
  292. #ifndef FALSE
  293. #define FALSE 0
  294. #endif
  295. #ifndef TRUE
  296. #define TRUE 1
  297. #endif
  298. #define VOID void
  299. typedef char CHAR;
  300. typedef wchar_t WCHAR;
  301. typedef short SHORT;
  302. typedef long LONG;
  303. typedef unsigned long ULONG, *PULONG;
  304. typedef unsigned short USHORT, *PUSHORT;
  305. typedef unsigned char UCHAR, *PUCHAR;
  306. typedef unsigned short WORD, *LPWORD;
  307. typedef unsigned int DWORD, *LPDWORD;
  308. typedef int INT, *LPINT;
  309. #ifndef __OBJC__
  310. typedef int BOOL, *LPBOOL;
  311. #endif
  312. typedef unsigned int UINT, *PUINT, UINT32, *PUINT32;
  313. typedef unsigned char BYTE, *LPBYTE;
  314. typedef const BYTE *LPCBYTE;
  315. typedef float FLOAT, *LPFLOAT;
  316. typedef void *LPVOID;
  317. typedef const void *LPCVOID;
  318. typedef CHAR *LPSTR;
  319. typedef const CHAR *LPCSTR;
  320. typedef WCHAR *LPWSTR;
  321. typedef const WCHAR *LPCWSTR;
  322. #endif
  323. #ifndef PAL_HAS_NATIVEMIDI
  324. #define PAL_HAS_NATIVEMIDI 0
  325. #endif
  326. #if defined (__SYMBIAN32__)
  327. #define PAL_LARGE static
  328. #else
  329. #define PAL_LARGE /* */
  330. #endif
  331. #define __WIDETEXT(quote) L##quote
  332. #define WIDETEXT(quote) __WIDETEXT(quote)
  333. // For SDL 1.2 compatibility
  334. #ifndef SDL_TICKS_PASSED
  335. #define SDL_TICKS_PASSED(A, B) ((Sint32)((B) - (A)) <= 0)
  336. #endif
  337. typedef enum tagCODEPAGE {
  338. CP_MIN = 0,
  339. CP_BIG5 = 0,
  340. CP_GBK = 1,
  341. CP_SHIFTJIS = 2,
  342. CP_JISX0208 = 3,
  343. CP_MAX = CP_GBK + 1,
  344. CP_UTF_8 = CP_MAX + 1
  345. } CODEPAGE;
  346. #ifdef __cplusplus
  347. }
  348. #endif
  349. #endif