forked from sdlpal/sdlpal
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpal_config.h
More file actions
88 lines (71 loc) · 2.66 KB
/
pal_config.h
File metadata and controls
88 lines (71 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* -*- mode: c; tab-width: 4; c-basic-offset: 4; c-file-style: "linux" -*- */
//
// Copyright (c) 2009-2011, Wei Mingzhi <whistler_wmz@users.sf.net>.
// Copyright (c) 2011-2022, SDLPAL development team.
// All rights reserved.
//
// This file is part of SDLPAL.
//
// SDLPAL is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License, version 3
// as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// win32/pal_config.h: WIN32-specific header.
// @Author: Lou Yihua <louyihua@21cn.com>, 2016.
//
#pragma once
#define PAL_PREFIX "./"
#define PAL_SAVE_PREFIX "./"
#define PAL_DEFAULT_WINDOW_WIDTH 640
#define PAL_DEFAULT_WINDOW_HEIGHT 400
#define PAL_DEFAULT_FULLSCREEN_HEIGHT 480
#if SDL_VERSION_ATLEAST(2,0,0)
# define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE | (gConfig.fFullScreen ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0))
#else
# define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_RESIZABLE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0))
# define PAL_FATAL_OUTPUT(s) MessageBoxA(0, (s), "FATAL ERROR", MB_ICONERROR)
# define PAL_HAS_SDLCD 1
#endif
#ifdef _M_ARM
# define PAL_SDL_INIT_FLAGS (SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_CDROM | SDL_INIT_NOPARACHUTE)
#else
# ifndef PAL_HAS_JOYSTICKS
# define PAL_HAS_JOYSTICKS 1
# endif
# define PAL_SDL_INIT_FLAGS (SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_CDROM | SDL_INIT_NOPARACHUTE | SDL_INIT_JOYSTICK)
#endif
#define PAL_PLATFORM NULL
#define PAL_CREDIT NULL
#define PAL_PORTYEAR NULL
#define PAL_HAS_NATIVEMIDI 1
#define PAL_HAS_CONFIG_PAGE 1
#define PAL_FILESYSTEM_IGNORE_CASE 1
#define PAL_PATH_SEPARATORS "\\/"
#define PAL_IS_PATH_SEPARATOR(x) ((x) == '\\' || (x) == '/')
#ifndef __MINGW__
#define strtok_r strtok_s
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#define strdup _strdup //https://msdn.microsoft.com/en-us/library/ms235454(v=vs.140).aspx
#endif
PAL_C_LINKAGE char* strcasestr(const char *, const char *);
#define PAL_NEED_STRCASESTR 1
#if defined (_M_ARM64) || defined(_M_ARM)
#define PAL_HAS_GLSL 0
#else
#define PAL_HAS_GLSL 1
#endif
#define PAL_HAS_PLATFORM_STARTUP 1
#ifdef __MINGW__
#define PAL_CONVERT_UTF8 SDL_iconv_utf8_locale
#endif
#include <malloc.h>
#include <stdbool.h>