2006-04-13 20:47:06 +00:00
|
|
|
// SDL interface layer
|
|
|
|
// for the Build Engine
|
2012-03-12 04:47:04 +00:00
|
|
|
// by Jonathon Fowler (jf@jonof.id.au)
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
2013-10-06 07:49:53 +00:00
|
|
|
// Use SDL 1.2 or 2.0 from http://www.libsdl.org
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-11-05 02:49:08 +00:00
|
|
|
#define __STDC_FORMAT_MACROS
|
2014-07-10 09:01:48 +00:00
|
|
|
#ifndef __STDC_LIMIT_MACROS
|
2012-11-05 02:49:08 +00:00
|
|
|
#define __STDC_LIMIT_MACROS
|
2014-07-10 09:01:48 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
#include <stdlib.h>
|
2012-09-02 14:05:23 +00:00
|
|
|
#include <math.h> // pow
|
2009-08-03 22:15:53 +00:00
|
|
|
#include <signal.h>
|
2008-04-25 01:46:19 +00:00
|
|
|
#include "sdl_inc.h"
|
2006-04-13 20:47:06 +00:00
|
|
|
#include "compat.h"
|
2014-10-20 07:37:29 +00:00
|
|
|
#include "renderlayer.h"
|
2006-04-13 20:47:06 +00:00
|
|
|
#include "cache1d.h"
|
2011-12-28 20:34:57 +00:00
|
|
|
//#include "pragmas.h"
|
2006-04-13 20:47:06 +00:00
|
|
|
#include "a.h"
|
|
|
|
#include "build.h"
|
|
|
|
#include "osd.h"
|
2015-01-11 04:52:15 +00:00
|
|
|
#include "engine_priv.h"
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
|
|
|
# include "glbuild.h"
|
|
|
|
#endif
|
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#if defined _WIN32
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# include <windows.h>
|
|
|
|
# include "winbits.h"
|
2014-07-22 11:19:45 +00:00
|
|
|
#endif
|
|
|
|
#if defined __APPLE__
|
2006-04-13 20:47:06 +00:00
|
|
|
# include "osxbits.h"
|
2012-08-02 10:52:41 +00:00
|
|
|
# include <mach/mach.h>
|
|
|
|
# include <mach/mach_time.h>
|
2014-07-22 11:19:45 +00:00
|
|
|
#endif
|
|
|
|
#if defined HAVE_GTK2
|
2006-04-13 20:47:06 +00:00
|
|
|
# include "gtkbits.h"
|
2014-07-22 11:19:45 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
#ifdef __ANDROID__
|
2014-12-27 18:36:14 +00:00
|
|
|
# include <android/log.h>
|
2011-07-20 23:04:20 +00:00
|
|
|
#endif
|
2014-12-17 13:01:13 +00:00
|
|
|
#if defined GEKKO
|
2014-12-17 13:01:58 +00:00
|
|
|
# include "wiibits.h"
|
|
|
|
# include <ogc/lwp.h>
|
|
|
|
# include <ogc/lwp_watchdog.h>
|
2014-12-17 13:01:13 +00:00
|
|
|
# define SDL_DISABLE_8BIT_BUFFER
|
|
|
|
#endif
|
2011-07-20 23:04:20 +00:00
|
|
|
|
2014-10-20 07:37:29 +00:00
|
|
|
#if !defined STARTUP_SETUP_WINDOW
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t startwin_open(void) { return 0; }
|
|
|
|
int32_t startwin_close(void) { return 0; }
|
2011-12-09 19:08:29 +00:00
|
|
|
int32_t startwin_puts(const char *s) { UNREFERENCED_PARAMETER(s); return 0; }
|
|
|
|
int32_t startwin_idle(void *s) { UNREFERENCED_PARAMETER(s); return 0; }
|
|
|
|
int32_t startwin_settitle(const char *s) { UNREFERENCED_PARAMETER(s); return 0; }
|
2014-11-26 04:39:23 +00:00
|
|
|
int32_t startwin_run(void) { return 0; }
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-18 05:14:17 +00:00
|
|
|
/// These can be useful for debugging sometimes...
|
|
|
|
//#define SDL_WM_GrabInput(x) SDL_WM_GrabInput(SDL_GRAB_OFF)
|
|
|
|
//#define SDL_ShowCursor(x) SDL_ShowCursor(SDL_ENABLE)
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#define SURFACE_FLAGS (SDL_SWSURFACE|SDL_HWPALETTE|SDL_HWACCEL)
|
|
|
|
|
|
|
|
// undefine to restrict windowed resolutions to conventional sizes
|
|
|
|
#define ANY_WINDOWED_SIZE
|
|
|
|
|
2006-08-07 06:18:57 +00:00
|
|
|
// fix for mousewheel
|
2013-12-20 07:24:09 +00:00
|
|
|
int32_t inputchecked = 0;
|
2006-08-07 06:18:57 +00:00
|
|
|
|
2011-01-16 02:50:27 +00:00
|
|
|
char quitevent=0, appactive=1, novideo=0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
// video
|
2013-10-08 09:59:59 +00:00
|
|
|
static SDL_Surface *sdl_surface/*=NULL*/;
|
2014-12-17 13:01:13 +00:00
|
|
|
#if !defined SDL_DISABLE_8BIT_BUFFER
|
2013-10-07 10:03:37 +00:00
|
|
|
static SDL_Surface *sdl_buffersurface=NULL;
|
2014-12-17 13:01:13 +00:00
|
|
|
#else
|
|
|
|
# define sdl_buffersurface sdl_surface
|
|
|
|
#endif
|
2014-04-12 08:45:26 +00:00
|
|
|
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#if SDL_MAJOR_VERSION==2
|
2013-10-08 09:59:59 +00:00
|
|
|
static SDL_Palette *sdl_palptr=NULL;
|
|
|
|
static SDL_Window *sdl_window=NULL;
|
|
|
|
static SDL_GLContext sdl_context=NULL;
|
2014-01-12 14:05:56 +00:00
|
|
|
static SDL_Texture *sdl_texture=NULL;
|
|
|
|
static SDL_Renderer *sdl_renderer=NULL;
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#endif
|
2014-04-12 08:45:26 +00:00
|
|
|
|
2011-09-15 17:03:50 +00:00
|
|
|
int32_t xres=-1, yres=-1, bpp=0, fullscreen=0, bytesperline;
|
2008-02-16 22:27:08 +00:00
|
|
|
intptr_t frameplace=0;
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t lockcount=0;
|
2006-04-13 20:47:06 +00:00
|
|
|
char modechange=1;
|
|
|
|
char offscreenrendering=0;
|
|
|
|
char videomodereset = 0;
|
|
|
|
char nofog=0;
|
2009-01-09 09:29:17 +00:00
|
|
|
static uint16_t sysgamma[3][256];
|
|
|
|
extern int32_t curbrightness, gammabrightness;
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
// OpenGL stuff
|
2008-08-26 19:50:34 +00:00
|
|
|
char nogl=0;
|
2013-10-08 10:00:25 +00:00
|
|
|
static int32_t vsync_render=0;
|
2013-10-13 09:08:31 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2011-12-28 20:34:57 +00:00
|
|
|
// last gamma, contrast, brightness
|
|
|
|
static float lastvidgcb[3];
|
|
|
|
|
2011-11-25 09:50:07 +00:00
|
|
|
//#define KEY_PRINT_DEBUG
|
|
|
|
|
2013-10-06 07:50:16 +00:00
|
|
|
#include "sdlkeytrans.c"
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2011-01-16 02:50:27 +00:00
|
|
|
static SDL_Surface *appicon = NULL;
|
2014-12-27 18:36:14 +00:00
|
|
|
#if !defined __APPLE__ && !defined EDUKE32_TOUCH_DEVICES
|
2011-01-16 02:50:27 +00:00
|
|
|
static SDL_Surface *loadappicon(void);
|
2014-10-16 21:03:24 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2010-06-22 21:50:01 +00:00
|
|
|
static mutex_t m_initprintf;
|
|
|
|
|
2010-10-21 02:20:40 +00:00
|
|
|
// Joystick dead and saturation zones
|
|
|
|
uint16_t *joydead, *joysatur;
|
|
|
|
|
2012-11-24 09:13:29 +00:00
|
|
|
#ifdef _WIN32
|
2014-11-29 03:07:33 +00:00
|
|
|
# if SDL_MAJOR_VERSION != 1
|
2012-11-24 09:13:29 +00:00
|
|
|
//
|
2013-10-07 10:05:03 +00:00
|
|
|
// win_gethwnd() -- gets the window handle
|
|
|
|
//
|
|
|
|
HWND win_gethwnd(void)
|
|
|
|
{
|
|
|
|
struct SDL_SysWMinfo wmInfo;
|
|
|
|
SDL_VERSION(&wmInfo.version);
|
|
|
|
|
2014-04-12 08:45:26 +00:00
|
|
|
if (SDL_GetWindowWMInfo(sdl_window, &wmInfo) != SDL_TRUE)
|
|
|
|
return 0;
|
|
|
|
|
2013-10-07 10:05:03 +00:00
|
|
|
if (wmInfo.subsystem == SDL_SYSWM_WINDOWS)
|
|
|
|
return wmInfo.info.win.window;
|
|
|
|
|
|
|
|
initprintf("win_gethwnd: Unknown WM subsystem?!\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2014-11-29 03:07:33 +00:00
|
|
|
# endif
|
2013-10-07 10:05:03 +00:00
|
|
|
//
|
2012-11-24 09:13:29 +00:00
|
|
|
// win_gethinstance() -- gets the application instance
|
|
|
|
//
|
Win64 support! (Meaning it works, not that we recommend it for everyday use.)
This includes a complete Windows header and library refresh, including the addition of 64-bit compiled libs:
*libogg 1.3.0
*libvorbis 1.3.3
*zlib 1.2.7
*libpng 1.5.13
*libvpx 9a3de881c0e681ba1a79a166a86308bbc84b4acd
*SDL_mixer 1.2.12 (for RENDERTYPE=SDL)
*DirectX import libraries: dsound and dxguid (now included)
To build in 64-bit, you essentially need MinGW's MSYS (but not MinGW itself) and MinGW-w64 at the top of your PATH. The target is automatically detected using `$(CC) -dumpmachine`. The EDukeWiki will get detailed instrucitons.
All compiler and linker warnings when building in 64-bit mode have been fixed.
Remaining 64-bit to-do:
- The ebacktrace dll does not build under 64-bit. It uses code specific to the format of 32-bit executables and will have to be ported to work with 64-bit executables. A future 64-bit version will be named ebacktrace1-64.dll.
- RENDERTYPE=SDL crashes in SDL_mixer's Mix_Linked_Version().
- DirectInput gives an error and does not function. This only affects joysticks, and the error never happens without any plugged in.
- Port the classic renderer ASM to 64-bit. (Just kidding, this is way out of my league.)
This commit includes a fair bit of Makefile development spanning all platforms, including simplifying the SDLCONFIG code, fixing build on Mac OS X (thanks rhoenie!), globally factoring Apple brew/port inclusion, enforcing that all -L come before all -l, and ensuring that $(shell ) is always :='d.
In addition, I have resurrected the old GCC_MAJOR and GCC_MINOR detection using `$(CC) -dumpversion`, but I have made it failsafe in case the command fails or the version is manually specified. I have applied this new fine-grained detection where applicable, including allowing LTO, and restraining -W's to versions that support them.
git-svn-id: https://svn.eduke32.com/eduke32@3278 1a8010ca-5511-0410-912e-c29ae57300e0
2012-12-13 02:37:20 +00:00
|
|
|
HINSTANCE win_gethinstance(void)
|
2012-11-24 09:13:29 +00:00
|
|
|
{
|
Win64 support! (Meaning it works, not that we recommend it for everyday use.)
This includes a complete Windows header and library refresh, including the addition of 64-bit compiled libs:
*libogg 1.3.0
*libvorbis 1.3.3
*zlib 1.2.7
*libpng 1.5.13
*libvpx 9a3de881c0e681ba1a79a166a86308bbc84b4acd
*SDL_mixer 1.2.12 (for RENDERTYPE=SDL)
*DirectX import libraries: dsound and dxguid (now included)
To build in 64-bit, you essentially need MinGW's MSYS (but not MinGW itself) and MinGW-w64 at the top of your PATH. The target is automatically detected using `$(CC) -dumpmachine`. The EDukeWiki will get detailed instrucitons.
All compiler and linker warnings when building in 64-bit mode have been fixed.
Remaining 64-bit to-do:
- The ebacktrace dll does not build under 64-bit. It uses code specific to the format of 32-bit executables and will have to be ported to work with 64-bit executables. A future 64-bit version will be named ebacktrace1-64.dll.
- RENDERTYPE=SDL crashes in SDL_mixer's Mix_Linked_Version().
- DirectInput gives an error and does not function. This only affects joysticks, and the error never happens without any plugged in.
- Port the classic renderer ASM to 64-bit. (Just kidding, this is way out of my league.)
This commit includes a fair bit of Makefile development spanning all platforms, including simplifying the SDLCONFIG code, fixing build on Mac OS X (thanks rhoenie!), globally factoring Apple brew/port inclusion, enforcing that all -L come before all -l, and ensuring that $(shell ) is always :='d.
In addition, I have resurrected the old GCC_MAJOR and GCC_MINOR detection using `$(CC) -dumpversion`, but I have made it failsafe in case the command fails or the version is manually specified. I have applied this new fine-grained detection where applicable, including allowing LTO, and restraining -W's to versions that support them.
git-svn-id: https://svn.eduke32.com/eduke32@3278 1a8010ca-5511-0410-912e-c29ae57300e0
2012-12-13 02:37:20 +00:00
|
|
|
return (HINSTANCE)GetModuleHandle(NULL);
|
2012-11-24 09:13:29 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-17 12:35:03 +00:00
|
|
|
|
2014-07-28 06:43:16 +00:00
|
|
|
int32_t wm_msgbox(const char *name, const char *fmt, ...)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-09-21 20:10:51 +00:00
|
|
|
char buf[2048];
|
2006-04-24 19:04:22 +00:00
|
|
|
va_list va;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-03-25 09:21:18 +00:00
|
|
|
UNREFERENCED_PARAMETER(name);
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
va_start(va,fmt);
|
2013-10-27 21:12:25 +00:00
|
|
|
vsnprintf(buf,sizeof(buf),fmt,va);
|
2006-04-24 19:04:22 +00:00
|
|
|
va_end(va);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-10-20 07:37:29 +00:00
|
|
|
#if defined(__APPLE__) && !TARGET_OS_IPHONE
|
2006-04-24 19:04:22 +00:00
|
|
|
return osx_msgbox(name, buf);
|
2006-04-13 20:47:06 +00:00
|
|
|
#elif defined HAVE_GTK2
|
2006-04-24 19:04:22 +00:00
|
|
|
if (gtkbuild_msgbox(name, buf) >= 0) return 1;
|
2014-01-12 14:06:15 +00:00
|
|
|
#elif defined _WIN32
|
|
|
|
MessageBox(win_gethwnd(),buf,name,MB_OK|MB_TASKMODAL);
|
|
|
|
return 0;
|
2014-12-27 18:36:14 +00:00
|
|
|
#elif defined EDUKE32_TOUCH_DEVICES
|
2014-04-15 19:02:48 +00:00
|
|
|
initprintf("wm_msgbox called. Message: %s: %s",name,buf);
|
|
|
|
return 0;
|
2013-10-07 10:05:24 +00:00
|
|
|
#elif SDL_MAJOR_VERSION==2
|
2013-10-27 21:12:25 +00:00
|
|
|
# if !defined _WIN32
|
|
|
|
// Replace all tab chars with spaces because the hand-rolled SDL message
|
|
|
|
// box diplays the former as N/L instead of whitespace.
|
|
|
|
{
|
2014-05-17 12:35:03 +00:00
|
|
|
size_t i;
|
|
|
|
for (i=0; i<sizeof(buf); i++)
|
2013-10-27 21:12:25 +00:00
|
|
|
if (buf[i] == '\t')
|
|
|
|
buf[i] = ' ';
|
|
|
|
}
|
|
|
|
# endif
|
2013-10-07 10:05:24 +00:00
|
|
|
return SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_INFORMATION, name, buf, NULL);
|
2014-12-18 18:15:26 +00:00
|
|
|
#elif defined GEKKO
|
|
|
|
puts(buf);
|
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
puts(buf);
|
|
|
|
puts(" (press Return or Enter to continue)");
|
|
|
|
getchar();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2014-11-28 08:12:40 +00:00
|
|
|
#if SDL_MAJOR_VERSION != 1
|
2014-07-28 06:43:16 +00:00
|
|
|
int32_t wm_ynbox(const char *name, const char *fmt, ...)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-09-21 20:10:51 +00:00
|
|
|
char buf[2048];
|
2006-04-24 19:04:22 +00:00
|
|
|
va_list va;
|
2008-03-25 09:21:18 +00:00
|
|
|
|
|
|
|
UNREFERENCED_PARAMETER(name);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
va_start(va,fmt);
|
|
|
|
vsprintf(buf,fmt,va);
|
|
|
|
va_end(va);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-10-20 07:37:29 +00:00
|
|
|
#if defined __APPLE__ && !TARGET_OS_IPHONE
|
2006-04-24 19:04:22 +00:00
|
|
|
return osx_ynbox(name, buf);
|
2006-04-13 20:47:06 +00:00
|
|
|
#elif defined HAVE_GTK2
|
2014-05-18 09:55:43 +00:00
|
|
|
{
|
|
|
|
int32_t r = gtkbuild_ynbox(name, buf);
|
2014-12-08 09:18:29 +00:00
|
|
|
|
|
|
|
return r >= 0 ? r : 0;
|
2014-05-18 09:55:43 +00:00
|
|
|
}
|
2014-01-12 14:06:15 +00:00
|
|
|
#elif defined _WIN32
|
2014-05-18 09:55:43 +00:00
|
|
|
return (MessageBox(win_gethwnd(),buf,name,MB_YESNO|MB_ICONQUESTION|MB_TASKMODAL) == IDYES);
|
2014-12-27 18:36:14 +00:00
|
|
|
#elif defined EDUKE32_TOUCH_DEVICES
|
2014-04-15 19:02:48 +00:00
|
|
|
initprintf("wm_ynbox called, this is bad! Message: %s: %s",name,buf);
|
|
|
|
initprintf("Returning false..");
|
|
|
|
return 0;
|
2014-11-22 12:33:47 +00:00
|
|
|
#else
|
2014-05-17 12:35:03 +00:00
|
|
|
{
|
2014-05-18 09:55:43 +00:00
|
|
|
int32_t r = -1;
|
|
|
|
|
2014-05-17 12:35:03 +00:00
|
|
|
const SDL_MessageBoxButtonData buttons[] = {
|
|
|
|
{
|
|
|
|
SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT,
|
|
|
|
0,
|
|
|
|
"No"
|
|
|
|
},{
|
|
|
|
SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT,
|
|
|
|
1,
|
|
|
|
"Yes"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
SDL_MessageBoxData data = {
|
|
|
|
SDL_MESSAGEBOX_INFORMATION,
|
|
|
|
NULL, /* no parent window */
|
|
|
|
name,
|
|
|
|
buf,
|
|
|
|
2,
|
|
|
|
buttons,
|
|
|
|
NULL /* Default color scheme */
|
|
|
|
};
|
|
|
|
|
|
|
|
SDL_ShowMessageBox(&data, &r);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
2014-11-28 08:12:40 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-07-28 06:43:16 +00:00
|
|
|
void wm_setapptitle(const char *name)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-12-27 18:36:14 +00:00
|
|
|
#ifndef EDUKE32_TOUCH_DEVICES
|
2014-11-22 12:33:47 +00:00
|
|
|
if (name != apptitle)
|
2012-03-28 19:43:21 +00:00
|
|
|
Bstrncpyz(apptitle, name, sizeof(apptitle));
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
#if !defined(__APPLE__)
|
2014-11-29 03:07:33 +00:00
|
|
|
if (!appicon)
|
|
|
|
appicon = loadappicon();
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
|
|
|
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#if SDL_MAJOR_VERSION == 1
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_WM_SetCaption(apptitle, NULL);
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2014-11-29 03:07:33 +00:00
|
|
|
if (appicon && sdl_surface)
|
2014-11-22 12:33:47 +00:00
|
|
|
SDL_WM_SetIcon(appicon, 0);
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#else
|
|
|
|
SDL_SetWindowTitle(sdl_window, apptitle);
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
if (appicon)
|
|
|
|
SDL_SetWindowIcon(sdl_window, appicon);
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_settitle(apptitle);
|
2014-12-27 18:36:14 +00:00
|
|
|
#else
|
|
|
|
UNREFERENCED_PARAMETER(name);
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
// System
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
static void attach_debugger_here(void) {}
|
|
|
|
|
|
|
|
/* XXX: libexecinfo could be used on systems without gnu libc. */
|
2014-12-27 18:36:14 +00:00
|
|
|
#if !defined _WIN32 && defined __GNUC__ && !defined __OpenBSD__ && !(defined __APPLE__ && defined __BIG_ENDIAN__) && !defined GEKKO && !defined EDUKE32_TOUCH_DEVICES && !defined __OPENDINGUX__
|
2014-11-22 12:33:47 +00:00
|
|
|
# define PRINTSTACKONSEGV 1
|
|
|
|
# include <execinfo.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline char grabmouse_low(char a);
|
|
|
|
|
|
|
|
static void sighandler(int signum)
|
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(signum);
|
|
|
|
// if (signum==SIGSEGV)
|
|
|
|
{
|
|
|
|
grabmouse_low(0);
|
|
|
|
#if PRINTSTACKONSEGV
|
|
|
|
{
|
|
|
|
void *addr[32];
|
|
|
|
int32_t errfd = fileno(stderr);
|
|
|
|
int32_t n=backtrace(addr, ARRAY_SIZE(addr));
|
|
|
|
backtrace_symbols_fd(addr, n, errfd);
|
|
|
|
}
|
|
|
|
// This is useful for attaching the debugger post-mortem. For those pesky
|
|
|
|
// cases where the program runs through happily when inspected from the start.
|
|
|
|
// usleep(15000000);
|
2014-07-28 06:42:28 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
attach_debugger_here();
|
|
|
|
app_crashhandler();
|
|
|
|
uninitsystem();
|
|
|
|
Bexit(8);
|
|
|
|
}
|
|
|
|
}
|
2014-07-28 06:42:28 +00:00
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t main(int32_t argc, char *argv[])
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t r;
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2013-01-08 06:17:10 +00:00
|
|
|
#ifdef USE_OPENGL
|
2008-02-18 08:10:54 +00:00
|
|
|
char *argp;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if ((argp = Bgetenv("BUILD_NOFOG")) != NULL)
|
|
|
|
nofog = Batol(argp);
|
2014-07-28 06:42:28 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
buildkeytranslationtable();
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
signal(SIGSEGV, sighandler);
|
|
|
|
signal(SIGILL, sighandler); /* clang -fcatch-undefined-behavior uses an ill. insn */
|
|
|
|
signal(SIGABRT, sighandler);
|
|
|
|
signal(SIGFPE, sighandler);
|
2014-04-19 02:51:33 +00:00
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#ifdef _WIN32
|
2014-11-22 12:33:47 +00:00
|
|
|
win_open();
|
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
if (!CheckWinVersion())
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
MessageBox(0, "This application requires Windows XP or better to run.", apptitle, MB_OK | MB_ICONSTOP);
|
2012-11-25 04:26:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
#elif defined(GEKKO)
|
2014-12-17 13:01:58 +00:00
|
|
|
wii_open();
|
2014-11-22 12:33:47 +00:00
|
|
|
#elif defined(HAVE_GTK2)
|
|
|
|
// Pre-initialize SDL video system in order to make sure XInitThreads() is called
|
|
|
|
// before GTK starts talking to X11.
|
|
|
|
SDL_Init(SDL_INIT_VIDEO);
|
2006-04-24 19:04:22 +00:00
|
|
|
gtkbuild_init(&argc, &argv);
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
startwin_open();
|
2013-01-06 18:56:29 +00:00
|
|
|
maybe_redirect_outputs();
|
2006-04-24 19:04:22 +00:00
|
|
|
baselayer_init();
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2013-03-21 10:19:25 +00:00
|
|
|
r = app_main(argc, (const char **)argv);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_close();
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
win_close();
|
2014-11-22 12:33:47 +00:00
|
|
|
#elif defined(HAVE_GTK2)
|
|
|
|
gtkbuild_exit(r);
|
2012-11-25 04:26:37 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return r;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2011-03-04 08:50:58 +00:00
|
|
|
#ifdef USE_OPENGL
|
2014-11-28 08:30:31 +00:00
|
|
|
void setvsync(int32_t sync);
|
|
|
|
#if SDL_MAJOR_VERSION != 1
|
2009-01-09 09:29:17 +00:00
|
|
|
void setvsync(int32_t sync)
|
2008-07-22 21:03:09 +00:00
|
|
|
{
|
2013-10-08 10:00:25 +00:00
|
|
|
if (vsync_render == sync) return;
|
|
|
|
vsync_render = sync;
|
2013-10-13 09:08:31 +00:00
|
|
|
|
2013-10-08 10:00:25 +00:00
|
|
|
if (sdl_context)
|
|
|
|
SDL_GL_SetSwapInterval(vsync_render);
|
2008-07-22 21:03:09 +00:00
|
|
|
}
|
|
|
|
#endif
|
2014-11-28 08:30:31 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-28 08:12:40 +00:00
|
|
|
int32_t sdlayer_checkversion(void);
|
|
|
|
#if SDL_MAJOR_VERSION != 1
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t sdlayer_checkversion(void)
|
|
|
|
{
|
|
|
|
SDL_version compiled;
|
|
|
|
SDL_version linked_;
|
|
|
|
const SDL_version *linked = &linked_;
|
|
|
|
SDL_GetVersion(&linked_);
|
2013-07-20 03:36:54 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
SDL_VERSION(&compiled);
|
2010-10-17 14:49:39 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
initprintf("Initializing SDL system interface "
|
|
|
|
"(compiled against SDL version %d.%d.%d, found version %d.%d.%d)\n",
|
|
|
|
compiled.major, compiled.minor, compiled.patch, linked->major, linked->minor, linked->patch);
|
2013-10-08 09:59:59 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (SDL_VERSIONNUM(linked->major,linked->minor,linked->patch) < SDL_REQUIREDVERSION)
|
2009-08-03 22:15:53 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
/*reject running under SDL versions older than what is stated in sdl_inc.h */
|
|
|
|
initprintf("You need at least v%d.%d.%d of SDL to run this game\n",SDL_MIN_X,SDL_MIN_Y,SDL_MIN_Z);
|
|
|
|
return -1;
|
2009-08-03 22:15:53 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-08-03 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
|
|
|
// initsystem() -- init SDL systems
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t initsystem(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
const int sdlinitflags = SDL_INIT_VIDEO;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2010-06-22 21:50:01 +00:00
|
|
|
mutex_init(&m_initprintf);
|
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
win_init();
|
|
|
|
#endif
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (sdlayer_checkversion())
|
2008-04-25 01:46:19 +00:00
|
|
|
return -1;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (SDL_Init(sdlinitflags))
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2011-01-16 02:50:27 +00:00
|
|
|
initprintf("Initialization failed! (%s)\nNon-interactive mode enabled\n", SDL_GetError());
|
2011-02-27 22:11:39 +00:00
|
|
|
novideo = 1;
|
|
|
|
#ifdef USE_OPENGL
|
|
|
|
nogl = 1;
|
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
atexit(uninitsystem);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
frameplace = 0;
|
|
|
|
lockcount = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2011-01-16 02:50:27 +00:00
|
|
|
if (!novideo)
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
const char *drvname = SDL_GetVideoDriver(0);
|
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
|
|
|
if (loadgldriver(getenv("BUILD_GLDRV")))
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
initprintf("Failed loading OpenGL driver. GL modes will be unavailable.\n");
|
|
|
|
nogl = 1;
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
if (drvname)
|
|
|
|
initprintf("Using \"%s\" video driver\n", drvname);
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
wm_setapptitle(apptitle);
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2014-11-28 08:12:40 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// uninitsystem() -- uninit SDL systems
|
|
|
|
//
|
|
|
|
void uninitsystem(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
uninitinput();
|
|
|
|
uninittimer();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2009-11-18 01:17:56 +00:00
|
|
|
if (appicon)
|
2009-12-05 09:22:43 +00:00
|
|
|
{
|
2009-11-18 01:17:56 +00:00
|
|
|
SDL_FreeSurface(appicon);
|
2009-12-05 09:22:43 +00:00
|
|
|
appicon = NULL;
|
|
|
|
}
|
2009-11-18 01:17:56 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_Quit();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
win_uninit();
|
|
|
|
#endif
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef USE_OPENGL
|
2006-04-24 19:04:22 +00:00
|
|
|
unloadgldriver();
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-08 10:00:25 +00:00
|
|
|
//
|
|
|
|
// system_getcvars() -- propagate any cvars that are read post-initialization
|
|
|
|
//
|
|
|
|
void system_getcvars(void)
|
|
|
|
{
|
2013-10-13 09:08:31 +00:00
|
|
|
#ifdef USE_OPENGL
|
2013-10-08 10:00:25 +00:00
|
|
|
setvsync(vsync);
|
2013-10-13 09:08:31 +00:00
|
|
|
#endif
|
2013-10-08 10:00:25 +00:00
|
|
|
}
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
2014-07-24 14:01:44 +00:00
|
|
|
// initprintf() -- prints a formatted string to the intitialization window
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
|
|
|
void initprintf(const char *f, ...)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
va_list va;
|
2010-06-27 10:08:58 +00:00
|
|
|
char buf[2048];
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
va_start(va, f);
|
2010-06-27 10:08:58 +00:00
|
|
|
Bvsnprintf(buf, sizeof(buf), f, va);
|
2006-04-24 19:04:22 +00:00
|
|
|
va_end(va);
|
2009-01-06 06:59:18 +00:00
|
|
|
|
2014-07-24 14:01:44 +00:00
|
|
|
initputs(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// initputs() -- prints a string to the intitialization window
|
|
|
|
//
|
|
|
|
void initputs(const char *buf)
|
|
|
|
{
|
|
|
|
static char dabuf[2048];
|
|
|
|
|
2014-04-15 19:02:48 +00:00
|
|
|
#ifdef __ANDROID__
|
|
|
|
__android_log_print(ANDROID_LOG_INFO,"DUKE", "%s",buf);
|
|
|
|
#endif
|
2014-07-24 14:01:44 +00:00
|
|
|
OSD_Puts(buf);
|
2011-01-16 02:50:27 +00:00
|
|
|
// Bprintf("%s", buf);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2010-06-22 21:50:01 +00:00
|
|
|
mutex_lock(&m_initprintf);
|
2009-01-06 06:59:18 +00:00
|
|
|
if (Bstrlen(dabuf) + Bstrlen(buf) > 1022)
|
|
|
|
{
|
|
|
|
startwin_puts(dabuf);
|
|
|
|
Bmemset(dabuf, 0, sizeof(dabuf));
|
|
|
|
}
|
|
|
|
|
|
|
|
Bstrcat(dabuf,buf);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2009-06-13 21:06:45 +00:00
|
|
|
if (flushlogwindow || Bstrlen(dabuf) > 768)
|
2009-01-06 06:59:18 +00:00
|
|
|
{
|
|
|
|
startwin_puts(dabuf);
|
2012-11-24 09:13:29 +00:00
|
|
|
#ifndef _WIN32
|
2009-01-06 06:59:18 +00:00
|
|
|
startwin_idle(NULL);
|
2013-10-07 10:05:41 +00:00
|
|
|
#else
|
|
|
|
handleevents();
|
2012-11-24 09:13:29 +00:00
|
|
|
#endif
|
2009-01-06 06:59:18 +00:00
|
|
|
Bmemset(dabuf, 0, sizeof(dabuf));
|
|
|
|
}
|
2010-06-22 21:50:01 +00:00
|
|
|
mutex_unlock(&m_initprintf);
|
2009-01-06 06:59:18 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//
|
2014-07-24 14:01:44 +00:00
|
|
|
// debugprintf() -- prints a formatted debug string to stderr
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
|
|
|
void debugprintf(const char *f, ...)
|
|
|
|
{
|
2011-07-20 23:04:20 +00:00
|
|
|
#if defined DEBUGGINGAIDS && !(defined __APPLE__ && defined __BIG_ENDIAN__)
|
2006-04-24 19:04:22 +00:00
|
|
|
va_list va;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
va_start(va,f);
|
|
|
|
Bvfprintf(stderr, f, va);
|
|
|
|
va_end(va);
|
2008-03-26 04:11:26 +00:00
|
|
|
#else
|
|
|
|
UNREFERENCED_PARAMETER(f);
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
// All things Input
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
2014-05-24 15:27:53 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
static void switchlayout(const char *layout)
|
|
|
|
{
|
|
|
|
char layoutname[KL_NAMELENGTH];
|
|
|
|
|
|
|
|
GetKeyboardLayoutName(layoutname);
|
|
|
|
|
|
|
|
if (!Bstrcmp(layoutname, layout))
|
|
|
|
return;
|
|
|
|
|
|
|
|
initprintf("Switching keyboard layout from %s to %s\n", layoutname, layout);
|
|
|
|
LoadKeyboardLayout(layout, KLF_ACTIVATE|KLF_SETFORPROCESS|KLF_SUBSTITUTE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void W_SetKeyboardLayoutUS(int32_t resetp)
|
|
|
|
{
|
|
|
|
static char defaultlayoutname[KL_NAMELENGTH];
|
|
|
|
|
|
|
|
if (!resetp)
|
|
|
|
{
|
|
|
|
static int done = 0;
|
|
|
|
|
|
|
|
if (!done)
|
|
|
|
{
|
|
|
|
GetKeyboardLayoutName(defaultlayoutname);
|
|
|
|
// 00000409 is "American English"
|
|
|
|
switchlayout("00000409");
|
|
|
|
|
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (defaultlayoutname[0])
|
|
|
|
{
|
|
|
|
switchlayout(defaultlayoutname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
// static int32_t joyblast=0;
|
2006-04-13 20:47:06 +00:00
|
|
|
static SDL_Joystick *joydev = NULL;
|
|
|
|
|
|
|
|
//
|
|
|
|
// initinput() -- init input system
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t initinput(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t i, j;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-05-24 15:27:53 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
W_SetKeyboardLayoutUS(0);
|
|
|
|
#endif
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef __APPLE__
|
2006-04-24 19:04:22 +00:00
|
|
|
// force OS X to operate in >1 button mouse mode so that LMB isn't adulterated
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!getenv("SDL_HAS3BUTTONMOUSE"))
|
|
|
|
putenv("SDL_HAS3BUTTONMOUSE=1");
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2014-12-09 23:56:54 +00:00
|
|
|
if (!keyremapinit)
|
|
|
|
for (i = 0; i < 256; i++) keyremap[i] = i;
|
|
|
|
keyremapinit = 1;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
inputdevices = 1 | 2; // keyboard (1) and mouse (2)
|
2011-04-07 01:16:29 +00:00
|
|
|
mousegrab = 0;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
memset(key_names, 0, sizeof(key_names));
|
2014-04-12 08:45:26 +00:00
|
|
|
|
|
|
|
#if SDL_MAJOR_VERSION == 1
|
2014-11-22 12:33:47 +00:00
|
|
|
#define SDL_SCANCODE_TO_KEYCODE(x) (SDLKey)(x)
|
|
|
|
#define SDL_JoystickNameForIndex(x) SDL_JoystickName(x)
|
|
|
|
#define SDL_NUM_SCANCODES SDLK_LAST
|
|
|
|
if (SDL_EnableKeyRepeat(250, 30))
|
|
|
|
initprintf("Error enabling keyboard repeat.\n");
|
|
|
|
SDL_EnableUNICODE(1); // let's hope this doesn't hit us too hard
|
2014-04-12 08:45:26 +00:00
|
|
|
#endif
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
for (i = SDL_NUM_SCANCODES - 1; i >= 0; i--)
|
2008-10-20 12:33:29 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!keytranslation[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Bstrncpyz(key_names[keytranslation[i]], SDL_GetKeyName(SDL_SCANCODE_TO_KEYCODE(i)), sizeof(key_names[i]));
|
2014-04-12 08:45:26 +00:00
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (!SDL_InitSubSystem(SDL_INIT_JOYSTICK))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
i = SDL_NumJoysticks();
|
2014-11-22 12:33:47 +00:00
|
|
|
initprintf("%d joystick(s) found\n", i);
|
|
|
|
|
|
|
|
for (j = 0; j < i; j++)
|
|
|
|
initprintf(" %d. %s\n", j + 1, SDL_JoystickNameForIndex(j));
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
joydev = SDL_JoystickOpen(0);
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (joydev)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_JoystickEventState(SDL_ENABLE);
|
2006-09-02 02:34:29 +00:00
|
|
|
inputdevices |= 4;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-12-18 18:16:16 +00:00
|
|
|
// KEEPINSYNC source/gamedefs.h, source/jmact/_control.h
|
|
|
|
joynumaxes = min(9, SDL_JoystickNumAxes(joydev));
|
2014-11-22 12:33:47 +00:00
|
|
|
joynumbuttons = min(32, SDL_JoystickNumButtons(joydev));
|
2014-12-18 18:16:16 +00:00
|
|
|
joynumhats = min((36-joynumbuttons)/4,SDL_JoystickNumHats(joydev));
|
2014-11-22 12:33:47 +00:00
|
|
|
initprintf("Joystick 1 has %d axes, %d buttons, and %d hat(s).\n", joynumaxes, joynumbuttons, joynumhats);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
joyaxis = (int32_t *)Bcalloc(joynumaxes, sizeof(int32_t));
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2012-02-11 11:51:34 +00:00
|
|
|
if (joynumhats)
|
|
|
|
joyhat = (int32_t *)Bcalloc(joynumhats, sizeof(int32_t));
|
2010-10-21 02:20:40 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
for (i = 0; i < joynumhats; i++) joyhat[i] = -1; // centre
|
2010-10-21 02:20:40 +00:00
|
|
|
|
|
|
|
joydead = (uint16_t *)Bcalloc(joynumaxes, sizeof(uint16_t));
|
|
|
|
joysatur = (uint16_t *)Bcalloc(joynumaxes, sizeof(uint16_t));
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// uninitinput() -- uninit input system
|
|
|
|
//
|
|
|
|
void uninitinput(void)
|
|
|
|
{
|
2014-05-24 15:27:53 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
W_SetKeyboardLayoutUS(1);
|
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
uninitmouse();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (joydev)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_JoystickClose(joydev);
|
|
|
|
joydev = NULL;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 12:38:43 +00:00
|
|
|
#ifndef GEKKO
|
2009-01-09 09:29:17 +00:00
|
|
|
const char *getjoyname(int32_t what, int32_t num)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
static char tmp[64];
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
switch (what)
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
case 0: // axis
|
|
|
|
if ((unsigned)num > (unsigned)joynumaxes)
|
|
|
|
return NULL;
|
|
|
|
Bsprintf(tmp, "Axis %d", num);
|
|
|
|
return (char *)tmp;
|
|
|
|
|
|
|
|
case 1: // button
|
|
|
|
if ((unsigned)num > (unsigned)joynumbuttons)
|
|
|
|
return NULL;
|
|
|
|
Bsprintf(tmp, "Button %d", num);
|
|
|
|
return (char *)tmp;
|
|
|
|
|
|
|
|
case 2: // hat
|
|
|
|
if ((unsigned)num > (unsigned)joynumhats)
|
|
|
|
return NULL;
|
|
|
|
Bsprintf(tmp, "Hat %d", num);
|
|
|
|
return (char *)tmp;
|
|
|
|
|
|
|
|
default: return NULL;
|
2012-05-01 12:38:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// initmouse() -- init mouse input
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t initmouse(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-17 07:39:12 +00:00
|
|
|
moustat=AppMouseGrab;
|
|
|
|
grabmouse(AppMouseGrab); // FIXME - SA
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// uninitmouse() -- uninit mouse input
|
|
|
|
//
|
|
|
|
void uninitmouse(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
grabmouse(0);
|
2014-11-22 12:33:47 +00:00
|
|
|
moustat = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-28 08:12:40 +00:00
|
|
|
#if SDL_MAJOR_VERSION != 1
|
2013-10-08 09:59:59 +00:00
|
|
|
//
|
|
|
|
// grabmouse_low() -- show/hide mouse cursor, lower level (doesn't check state).
|
|
|
|
// furthermore return 0 if successful.
|
|
|
|
//
|
|
|
|
|
|
|
|
static inline char grabmouse_low(char a)
|
|
|
|
{
|
2014-12-27 18:36:14 +00:00
|
|
|
#if !defined EDUKE32_TOUCH_DEVICES && (!defined DEBUGGINGAIDS || defined _WIN32 || defined __APPLE__)
|
2013-10-08 09:59:59 +00:00
|
|
|
/* FIXME: Maybe it's better to make sure that grabmouse_low
|
|
|
|
is called only when a window is ready? */
|
|
|
|
if (sdl_window)
|
|
|
|
SDL_SetWindowGrab(sdl_window, a ? SDL_TRUE : SDL_FALSE);
|
|
|
|
return SDL_SetRelativeMouseMode(a ? SDL_TRUE : SDL_FALSE);
|
2014-04-18 13:20:56 +00:00
|
|
|
#else
|
|
|
|
UNREFERENCED_PARAMETER(a);
|
|
|
|
return 0;
|
2014-04-12 08:45:26 +00:00
|
|
|
#endif
|
2013-10-08 09:59:59 +00:00
|
|
|
}
|
2014-11-28 08:12:40 +00:00
|
|
|
#endif
|
2013-10-08 09:59:59 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
|
|
|
// grabmouse() -- show/hide mouse cursor
|
|
|
|
//
|
|
|
|
void grabmouse(char a)
|
|
|
|
{
|
2006-11-17 05:05:16 +00:00
|
|
|
if (appactive && moustat)
|
|
|
|
{
|
2014-12-27 18:36:14 +00:00
|
|
|
#if !defined EDUKE32_TOUCH_DEVICES && (!defined DEBUGGINGAIDS || defined _WIN32 || defined __APPLE__)
|
2013-10-08 09:59:59 +00:00
|
|
|
if ((a != mousegrab) && !grabmouse_low(a))
|
2006-11-19 01:28:51 +00:00
|
|
|
#endif
|
2013-10-11 22:20:45 +00:00
|
|
|
mousegrab = a;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else
|
2011-04-07 01:16:29 +00:00
|
|
|
mousegrab = a;
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
mousex = mousey = 0;
|
2014-11-17 07:39:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AppGrabMouse(char a)
|
|
|
|
{
|
|
|
|
grabmouse(a);
|
|
|
|
AppMouseGrab = mousegrab;
|
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// setjoydeadzone() -- sets the dead and saturation zones for the joystick
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
void setjoydeadzone(int32_t axis, uint16_t dead, uint16_t satur)
|
2008-03-23 00:06:42 +00:00
|
|
|
{
|
2010-10-21 02:20:40 +00:00
|
|
|
joydead[axis] = dead;
|
|
|
|
joysatur[axis] = satur;
|
2008-03-23 00:06:42 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// getjoydeadzone() -- gets the dead and saturation zones for the joystick
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
void getjoydeadzone(int32_t axis, uint16_t *dead, uint16_t *satur)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2010-10-21 02:20:40 +00:00
|
|
|
*dead = joydead[axis];
|
|
|
|
*satur = joysatur[axis];
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// releaseallbuttons()
|
|
|
|
//
|
|
|
|
void releaseallbuttons(void)
|
2006-11-17 05:05:16 +00:00
|
|
|
{}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
// All things Timer
|
|
|
|
// Ken did this
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
static uint32_t timerfreq;
|
|
|
|
static uint32_t timerlastsample;
|
2012-01-27 15:02:25 +00:00
|
|
|
int32_t timerticspersec=0;
|
2013-07-07 20:59:00 +00:00
|
|
|
static double msperu64tick = 0;
|
2006-11-17 05:05:16 +00:00
|
|
|
static void(*usertimercallback)(void) = NULL;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-06-22 21:39:57 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
2008-02-24 00:46:57 +00:00
|
|
|
// inittimer() -- initialize timer
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t inittimer(int32_t tickspersecond)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (timerfreq) return 0; // already installed
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-02-24 00:46:57 +00:00
|
|
|
// initprintf("Initializing timer\n");
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
{
|
|
|
|
int32_t t = win_inittimer();
|
|
|
|
if (t < 0)
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
timerfreq = 1000;
|
|
|
|
timerticspersec = tickspersecond;
|
|
|
|
timerlastsample = SDL_GetTicks() * timerticspersec / timerfreq;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
usertimercallback = NULL;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2013-07-07 20:59:00 +00:00
|
|
|
msperu64tick = 1000.0 / (double)getu64tickspersec();
|
2012-06-22 21:39:57 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// uninittimer() -- shut down timer
|
|
|
|
//
|
|
|
|
void uninittimer(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!timerfreq) return;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
timerfreq=0;
|
2012-06-22 21:39:57 +00:00
|
|
|
|
2012-11-25 04:26:37 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
win_timerfreq=0;
|
|
|
|
#endif
|
|
|
|
|
2013-07-07 20:59:00 +00:00
|
|
|
msperu64tick = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// sampletimer() -- update totalclock
|
|
|
|
//
|
|
|
|
void sampletimer(void)
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
uint32_t i;
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t n;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!timerfreq) return;
|
|
|
|
i = SDL_GetTicks();
|
2014-11-22 12:33:47 +00:00
|
|
|
n = tabledivide32(i * timerticspersec, timerfreq) - timerlastsample;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (n <= 0) return;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
totalclock += n;
|
|
|
|
timerlastsample += n;
|
|
|
|
|
|
|
|
if (usertimercallback)
|
|
|
|
for (; n > 0; n--) usertimercallback();
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2014-11-26 04:37:22 +00:00
|
|
|
#if defined LUNATIC
|
|
|
|
//
|
|
|
|
// getticks() -- returns the sdl ticks count
|
|
|
|
//
|
|
|
|
uint32_t getticks(void)
|
|
|
|
{
|
|
|
|
return (uint32_t)SDL_GetTicks();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-15 17:05:00 +00:00
|
|
|
// high-resolution timers for profiling
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
#if SDL_MAJOR_VERSION!=1
|
2013-07-07 20:59:00 +00:00
|
|
|
uint64_t getu64ticks(void)
|
2011-09-15 17:05:00 +00:00
|
|
|
{
|
2012-06-22 21:39:57 +00:00
|
|
|
return SDL_GetPerformanceCounter();
|
2011-09-15 17:05:00 +00:00
|
|
|
}
|
|
|
|
|
2013-07-07 20:59:00 +00:00
|
|
|
uint64_t getu64tickspersec(void)
|
2011-09-15 17:05:00 +00:00
|
|
|
{
|
2012-06-22 21:39:57 +00:00
|
|
|
return SDL_GetPerformanceFrequency();
|
2011-09-15 17:05:00 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
2011-09-15 17:05:00 +00:00
|
|
|
|
2012-06-22 21:39:57 +00:00
|
|
|
// Returns the time since an unspecified starting time in milliseconds.
|
|
|
|
// (May be not monotonic for certain configurations.)
|
|
|
|
ATTRIBUTE((flatten))
|
2013-07-07 20:59:05 +00:00
|
|
|
double gethiticks(void)
|
2011-09-15 17:05:00 +00:00
|
|
|
{
|
2013-07-07 20:59:00 +00:00
|
|
|
return (double)getu64ticks() * msperu64tick;
|
2011-09-15 17:05:00 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// gettimerfreq() -- returns the number of ticks per second the timer is configured to generate
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t gettimerfreq(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
return timerticspersec;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// installusertimercallback() -- set up a callback function to be called when the timer is fired
|
|
|
|
//
|
2006-11-17 05:05:16 +00:00
|
|
|
void(*installusertimercallback(void(*callback)(void)))(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-11-17 05:05:16 +00:00
|
|
|
void(*oldtimercallback)(void);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
oldtimercallback = usertimercallback;
|
|
|
|
usertimercallback = callback;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return oldtimercallback;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
// All things Video
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
2006-04-24 19:04:22 +00:00
|
|
|
//
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// getvalidmodes() -- figure out what video modes are available
|
|
|
|
//
|
2013-09-21 13:38:44 +00:00
|
|
|
static int sortmodes(const void *a_, const void *b_)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t x;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2013-09-21 13:38:44 +00:00
|
|
|
const struct validmode_t *a = (const struct validmode_t *)a_;
|
|
|
|
const struct validmode_t *b = (const struct validmode_t *)b_;
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if ((x = a->fs - b->fs) != 0) return x;
|
|
|
|
if ((x = a->bpp - b->bpp) != 0) return x;
|
|
|
|
if ((x = a->xdim - b->xdim) != 0) return x;
|
|
|
|
if ((x = a->ydim - b->ydim) != 0) return x;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2014-04-12 08:45:26 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
static char modeschecked=0;
|
2014-04-12 08:45:26 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
#if SDL_MAJOR_VERSION != 1
|
2006-04-13 20:47:06 +00:00
|
|
|
void getvalidmodes(void)
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t i, maxx = 0, maxy = 0;
|
|
|
|
SDL_DisplayMode dispmode;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (modeschecked || novideo)
|
|
|
|
return;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
validmodecnt = 0;
|
2014-04-12 08:45:26 +00:00
|
|
|
// initprintf("Detecting video modes:\n");
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
// do fullscreen modes first
|
2014-11-22 12:33:47 +00:00
|
|
|
for (i = 0; i < SDL_GetNumDisplayModes(0); i++)
|
2013-10-08 09:59:59 +00:00
|
|
|
{
|
|
|
|
SDL_GetDisplayMode(0, i, &dispmode);
|
2014-11-22 12:33:47 +00:00
|
|
|
if ((dispmode.w > MAXXDIM) || (dispmode.h > MAXYDIM))
|
|
|
|
continue;
|
2013-10-08 09:59:59 +00:00
|
|
|
|
|
|
|
// HACK: 8-bit == Software, 32-bit == OpenGL
|
2014-11-22 12:33:47 +00:00
|
|
|
SDL_ADDMODE(dispmode.w, dispmode.h, 8, 1);
|
2013-10-08 09:59:59 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
if (!nogl)
|
2014-11-22 12:33:47 +00:00
|
|
|
SDL_ADDMODE(dispmode.w, dispmode.h, 32, 1);
|
2013-10-08 09:59:59 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
if ((dispmode.w > maxx) || (dispmode.h > maxy))
|
2013-10-08 09:59:59 +00:00
|
|
|
{
|
|
|
|
maxx = dispmode.w;
|
|
|
|
maxy = dispmode.h;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
SDL_CHECKFSMODES(maxx, maxy);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
// add windowed modes next
|
2014-11-22 12:33:47 +00:00
|
|
|
for (i = 0; defaultres[i][0]; i++)
|
2014-04-12 08:45:26 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!SDL_CHECKMODE(defaultres[i][0], defaultres[i][1]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// HACK: 8-bit == Software, 32-bit == OpenGL
|
|
|
|
SDL_ADDMODE(defaultres[i][0], defaultres[i][1], 8, 0);
|
|
|
|
|
2013-10-08 09:59:59 +00:00
|
|
|
#ifdef USE_OPENGL
|
2014-11-22 12:33:47 +00:00
|
|
|
if (nogl)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SDL_ADDMODE(defaultres[i][0], defaultres[i][1], 32, 0);
|
2013-10-08 09:59:59 +00:00
|
|
|
#endif
|
2014-04-12 08:45:26 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
qsort((void *)validmode, validmodecnt, sizeof(struct validmode_t), &sortmodes);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
modeschecked = 1;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2014-04-12 08:45:26 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// checkvideomode() -- makes sure the video mode passed is legal
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t checkvideomode(int32_t *x, int32_t *y, int32_t c, int32_t fs, int32_t forced)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i, nearest=-1, dx, dy, odx=9999, ody=9999;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
getvalidmodes();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (c>8
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef USE_OPENGL
|
2006-04-24 19:04:22 +00:00
|
|
|
&& nogl
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
) return -1;
|
|
|
|
|
|
|
|
// fix up the passed resolution values to be multiples of 8
|
|
|
|
// and at least 320x200 or at most MAXXDIMxMAXYDIM
|
2014-11-22 12:33:47 +00:00
|
|
|
*x = clamp(*x, 320, MAXXDIM);
|
|
|
|
*y = clamp(*y, 200, MAXYDIM);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
for (i = 0; i < validmodecnt; i++)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (validmode[i].bpp != c || validmode[i].fs != fs)
|
|
|
|
continue;
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
dx = klabs(validmode[i].xdim - *x);
|
|
|
|
dy = klabs(validmode[i].ydim - *y);
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (!(dx | dy))
|
2007-12-12 17:42:14 +00:00
|
|
|
{
|
|
|
|
// perfect match
|
2006-04-24 19:04:22 +00:00
|
|
|
nearest = i;
|
|
|
|
break;
|
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if ((dx <= odx) && (dy <= ody))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
nearest = i;
|
2014-11-22 12:33:47 +00:00
|
|
|
odx = dx;
|
|
|
|
ody = dy;
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-13 23:12:47 +00:00
|
|
|
#ifdef ANY_WINDOWED_SIZE
|
2006-07-01 01:40:18 +00:00
|
|
|
if (!forced && (fs&1) == 0 && (nearest < 0 || (validmode[nearest].xdim!=*x || validmode[nearest].ydim!=*y)))
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0x7fffffffl;
|
2006-11-13 23:12:47 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (nearest < 0)
|
2006-04-24 19:04:22 +00:00
|
|
|
return -1;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
*x = validmode[nearest].xdim;
|
|
|
|
*y = validmode[nearest].ydim;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
return nearest;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
static int32_t needpalupdate;
|
|
|
|
static SDL_Color sdlayer_pal[256];
|
|
|
|
|
2013-10-08 09:59:59 +00:00
|
|
|
static void destroy_window_resources()
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
{
|
2014-12-17 13:01:13 +00:00
|
|
|
#if !defined SDL_DISABLE_8BIT_BUFFER
|
2014-11-22 12:33:47 +00:00
|
|
|
if (sdl_buffersurface)
|
|
|
|
SDL_FreeSurface(sdl_buffersurface);
|
2014-01-27 10:30:39 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
sdl_buffersurface = NULL;
|
2014-12-17 13:01:13 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
/* We should NOT destroy the window surface. This is done automatically
|
|
|
|
when SDL_DestroyWindow or SDL_SetVideoMode is called. */
|
|
|
|
|
|
|
|
#if SDL_MAJOR_VERSION == 2
|
|
|
|
if (sdl_renderer && sdl_texture && sdl_surface)
|
|
|
|
SDL_FreeSurface(sdl_surface);
|
|
|
|
sdl_surface = NULL;
|
|
|
|
if (sdl_context)
|
|
|
|
SDL_GL_DeleteContext(sdl_context);
|
|
|
|
sdl_context = NULL;
|
|
|
|
if (sdl_texture)
|
|
|
|
SDL_DestroyTexture(sdl_texture);
|
|
|
|
sdl_texture = NULL;
|
|
|
|
if (sdl_renderer)
|
|
|
|
SDL_DestroyRenderer(sdl_renderer);
|
|
|
|
sdl_renderer = NULL;
|
|
|
|
if (sdl_window)
|
|
|
|
SDL_DestroyWindow(sdl_window);
|
|
|
|
sdl_window = NULL;
|
2013-10-07 10:06:09 +00:00
|
|
|
#endif
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
void sdlayer_setvideomode_opengl(void)
|
|
|
|
{
|
|
|
|
polymost_glreset();
|
|
|
|
|
|
|
|
bglEnable(GL_TEXTURE_2D);
|
|
|
|
bglShadeModel(GL_SMOOTH); // GL_FLAT
|
|
|
|
bglClearColor(0, 0, 0, 0.5); // Black Background
|
|
|
|
bglHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); // Use FASTEST for ortho!
|
|
|
|
bglHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
|
|
|
|
bglDisable(GL_DITHER);
|
|
|
|
|
|
|
|
glinfo.vendor = (const char *) bglGetString(GL_VENDOR);
|
|
|
|
glinfo.renderer = (const char *) bglGetString(GL_RENDERER);
|
|
|
|
glinfo.version = (const char *) bglGetString(GL_VERSION);
|
|
|
|
glinfo.extensions = (const char *) bglGetString(GL_EXTENSIONS);
|
|
|
|
|
|
|
|
#ifdef POLYMER
|
|
|
|
if (!Bstrcmp(glinfo.vendor, "ATI Technologies Inc."))
|
|
|
|
{
|
|
|
|
pr_ati_fboworkaround = 1;
|
|
|
|
initprintf("Enabling ATI FBO color attachment workaround.\n");
|
|
|
|
|
|
|
|
if (Bstrstr(glinfo.renderer, "Radeon X1"))
|
|
|
|
{
|
|
|
|
pr_ati_nodepthoffset = 1;
|
|
|
|
initprintf("Enabling ATI R520 polygon offset workaround.\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pr_ati_nodepthoffset = 0;
|
|
|
|
#ifdef __APPLE__
|
|
|
|
// See bug description at http://lists.apple.com/archives/mac-opengl/2005/Oct/msg00169.html
|
|
|
|
if (!Bstrncmp(glinfo.renderer, "ATI Radeon 9600", 15))
|
|
|
|
{
|
|
|
|
pr_ati_textureformat_one = 1;
|
|
|
|
initprintf("Enabling ATI Radeon 9600 texture format workaround.\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pr_ati_textureformat_one = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pr_ati_fboworkaround = 0;
|
|
|
|
#endif // defined POLYMER
|
|
|
|
|
|
|
|
glinfo.maxanisotropy = 1.0;
|
|
|
|
glinfo.bgra = 0;
|
|
|
|
glinfo.texcompr = 0;
|
|
|
|
|
|
|
|
// process the extensions string and flag stuff we recognize
|
2014-11-22 12:34:29 +00:00
|
|
|
glinfo.clamptoedge = !!Bstrstr(glinfo.extensions, "GL_EXT_texture_edge_clamp") ||
|
|
|
|
!!Bstrstr(glinfo.extensions, "GL_SGIS_texture_edge_clamp");
|
|
|
|
glinfo.bgra = !!Bstrstr(glinfo.extensions, "GL_EXT_bgra");
|
|
|
|
glinfo.texcompr =
|
|
|
|
!!Bstrstr(glinfo.extensions, "GL_ARB_texture_compression") && Bstrcmp(glinfo.vendor, "ATI Technologies Inc.");
|
|
|
|
glinfo.texnpot = !!Bstrstr(glinfo.extensions, "GL_ARB_texture_non_power_of_two");
|
|
|
|
glinfo.multisample = !!Bstrstr(glinfo.extensions, "GL_ARB_multisample");
|
|
|
|
glinfo.nvmultisamplehint = !!Bstrstr(glinfo.extensions, "GL_NV_multisample_filter_hint");
|
|
|
|
glinfo.arbfp = !!Bstrstr(glinfo.extensions, "GL_ARB_fragment_program");
|
|
|
|
glinfo.depthtex = !!Bstrstr(glinfo.extensions, "GL_ARB_depth_texture");
|
|
|
|
glinfo.shadow = !!Bstrstr(glinfo.extensions, "GL_ARB_shadow");
|
|
|
|
glinfo.fbos = !!Bstrstr(glinfo.extensions, "GL_EXT_framebuffer_object");
|
|
|
|
glinfo.rect =
|
|
|
|
!!Bstrstr(glinfo.extensions, "GL_NV_texture_rectangle") || !!Bstrstr(glinfo.extensions, "GL_EXT_texture_rectangle");
|
|
|
|
glinfo.multitex = !!Bstrstr(glinfo.extensions, "GL_ARB_multitexture");
|
|
|
|
glinfo.envcombine = !!Bstrstr(glinfo.extensions, "GL_ARB_texture_env_combine");
|
|
|
|
glinfo.vbos = !!Bstrstr(glinfo.extensions, "GL_ARB_vertex_buffer_object");
|
|
|
|
glinfo.sm4 = !!Bstrstr(glinfo.extensions, "GL_EXT_gpu_shader4");
|
|
|
|
glinfo.occlusionqueries = !!Bstrstr(glinfo.extensions, "GL_ARB_occlusion_query");
|
|
|
|
glinfo.glsl = !!Bstrstr(glinfo.extensions, "GL_ARB_shader_objects");
|
|
|
|
glinfo.debugoutput = !!Bstrstr(glinfo.extensions, "GL_ARB_debug_output");
|
|
|
|
|
|
|
|
if (Bstrstr(glinfo.extensions, "GL_EXT_texture_filter_anisotropic"))
|
2014-11-22 12:33:47 +00:00
|
|
|
bglGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &glinfo.maxanisotropy);
|
|
|
|
|
2014-11-22 12:34:29 +00:00
|
|
|
if (Bstrstr(glinfo.extensions, "WGL_3DFX_gamma_control"))
|
2014-11-22 12:33:47 +00:00
|
|
|
{
|
|
|
|
static int32_t warnonce;
|
|
|
|
// 3dfx cards have issues with fog
|
|
|
|
nofog = 1;
|
|
|
|
if (!(warnonce & 1))
|
|
|
|
initprintf("3dfx card detected: OpenGL fog disabled\n");
|
|
|
|
warnonce |= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!glinfo.dumped)
|
|
|
|
{
|
|
|
|
int32_t oldbpp = bpp;
|
|
|
|
bpp = 32;
|
|
|
|
osdcmd_glinfo(NULL);
|
|
|
|
glinfo.dumped = 1;
|
|
|
|
bpp = oldbpp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // defined USE_OPENGL
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
|
|
|
// setvideomode() -- set SDL video mode
|
|
|
|
//
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
int32_t setvideomode_sdlcommon(int32_t *x, int32_t *y, int32_t c, int32_t fs, int32_t *regrab)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if ((fs == fullscreen) && (*x == xres) && (*y == yres) && (c == bpp) && !videomodereset)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
OSD_ResizeDisplay(xres, yres);
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (checkvideomode(x, y, c, fs, 0) < 0)
|
|
|
|
return -1;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-12-17 13:01:58 +00:00
|
|
|
#ifdef GEKKO
|
|
|
|
if (!sdl_surface) // only run this the first time we set a video mode
|
|
|
|
wii_initgamevideo();
|
|
|
|
#endif
|
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_close();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2011-04-07 01:16:29 +00:00
|
|
|
if (mousegrab)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
*regrab = 1;
|
2006-04-24 19:04:22 +00:00
|
|
|
grabmouse(0);
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
while (lockcount) enddrawing();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2011-03-04 08:50:58 +00:00
|
|
|
#ifdef USE_OPENGL
|
2014-11-22 12:33:47 +00:00
|
|
|
if (bpp > 8 && sdl_surface)
|
|
|
|
polymost_glreset();
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-28 20:34:57 +00:00
|
|
|
// clear last gamma/contrast/brightness so that it will be set anew
|
|
|
|
lastvidgcb[0] = lastvidgcb[1] = lastvidgcb[2] = 0.0f;
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setvideomode_sdlcommonpost(int32_t x, int32_t y, int32_t c, int32_t fs, int32_t regrab)
|
|
|
|
{
|
|
|
|
wm_setapptitle(apptitle);
|
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
|
|
|
if (c > 8)
|
|
|
|
sdlayer_setvideomode_opengl();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
xres = x;
|
|
|
|
yres = y;
|
|
|
|
bpp = c;
|
|
|
|
fullscreen = fs;
|
|
|
|
// bytesperline = sdl_surface->pitch;
|
|
|
|
numpages = c > 8 ? 2 : 1;
|
|
|
|
frameplace = 0;
|
|
|
|
lockcount = 0;
|
|
|
|
modechange = 1;
|
|
|
|
videomodereset = 0;
|
|
|
|
OSD_ResizeDisplay(xres, yres);
|
|
|
|
|
|
|
|
// save the current system gamma to determine if gamma is available
|
|
|
|
if (!gammabrightness)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
// float f = 1.0 + ((float)curbrightness / 10.0);
|
|
|
|
#if SDL_MAJOR_VERSION != 1
|
|
|
|
if (SDL_GetWindowGammaRamp(sdl_window, sysgamma[0], sysgamma[1], sysgamma[2]) == 0)
|
|
|
|
#else
|
|
|
|
if (SDL_GetGammaRamp(sysgamma[0], sysgamma[1], sysgamma[2]) >= 0)
|
|
|
|
#endif
|
|
|
|
gammabrightness = 1;
|
|
|
|
|
|
|
|
// see if gamma really is working by trying to set the brightness
|
|
|
|
if (gammabrightness && setgamma() < 0)
|
|
|
|
gammabrightness = 0; // nope
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
2013-10-07 10:03:37 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
setpalettefade(palfadergb.r, palfadergb.g, palfadergb.b, palfadedelta);
|
|
|
|
|
|
|
|
if (regrab)
|
|
|
|
grabmouse(AppMouseGrab);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#if SDL_MAJOR_VERSION!=1
|
|
|
|
int32_t setvideomode(int32_t x, int32_t y, int32_t c, int32_t fs)
|
|
|
|
{
|
|
|
|
int32_t regrab = 0, ret;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
ret = setvideomode_sdlcommon(&x, &y, c, fs, ®rab);
|
|
|
|
if (ret != 1) return ret;
|
|
|
|
|
2013-10-08 09:59:59 +00:00
|
|
|
// deinit
|
|
|
|
destroy_window_resources();
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
initprintf("Setting video mode %dx%d (%d-bpp %s)\n", x, y, c, ((fs & 1) ? "fullscreen" : "windowed"));
|
|
|
|
|
2011-03-04 08:50:58 +00:00
|
|
|
#ifdef USE_OPENGL
|
2006-11-17 05:05:16 +00:00
|
|
|
if (c > 8)
|
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i, j, multisamplecheck = (glmultisample > 0);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (nogl)
|
|
|
|
return -1;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
#ifdef _WIN32
|
2012-11-25 04:26:37 +00:00
|
|
|
win_setvideomode(c);
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
2014-11-22 18:37:16 +00:00
|
|
|
struct glattribs
|
|
|
|
{
|
|
|
|
SDL_GLattr attr;
|
|
|
|
int32_t value;
|
|
|
|
} sdlayer_gl_attributes [] =
|
|
|
|
{
|
|
|
|
{ SDL_GL_DOUBLEBUFFER, 1 },
|
|
|
|
{ SDL_GL_MULTISAMPLEBUFFERS, glmultisample > 0 },
|
|
|
|
{ SDL_GL_MULTISAMPLESAMPLES, glmultisample },
|
|
|
|
{ SDL_GL_STENCIL_SIZE, 1 },
|
|
|
|
{ SDL_GL_ACCELERATED_VISUAL, 1 },
|
|
|
|
};
|
2012-11-25 04:26:37 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
do
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
SDL_GL_ATTRIBUTES(i, sdlayer_gl_attributes);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2008-07-22 21:56:28 +00:00
|
|
|
/* HACK: changing SDL GL attribs only works before surface creation,
|
|
|
|
so we have to create a new surface in a different format first
|
|
|
|
to force the surface we WANT to be recreated instead of reused. */
|
2014-11-22 12:33:47 +00:00
|
|
|
sdl_window = SDL_CreateWindow("", windowpos ? windowx : SDL_WINDOWPOS_CENTERED,
|
|
|
|
windowpos ? windowy : SDL_WINDOWPOS_CENTERED, x, y,
|
|
|
|
((fs & 1) ? SDL_WINDOW_FULLSCREEN : 0) | SDL_WINDOW_OPENGL);
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (sdl_window)
|
|
|
|
sdl_context = SDL_GL_CreateContext(sdl_window);
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!sdl_window || !sdl_context)
|
2013-10-08 09:59:59 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
initprintf("Unable to set video mode: %s failed: %s\n", sdl_window ? "SDL_GL_CreateContext" : "SDL_GL_CreateWindow", SDL_GetError());
|
2013-10-08 09:59:59 +00:00
|
|
|
destroy_window_resources();
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
return -1;
|
2013-10-08 09:59:59 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2013-10-08 10:00:25 +00:00
|
|
|
SDL_GL_SetSwapInterval(vsync_render);
|
2013-10-08 09:59:59 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
loadglextensions();
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
} while (multisamplecheck--);
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else
|
2011-09-10 15:44:53 +00:00
|
|
|
#endif // defined USE_OPENGL
|
2006-04-24 19:04:22 +00:00
|
|
|
{
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
// init
|
2015-01-11 04:53:59 +00:00
|
|
|
sdl_window = SDL_CreateWindow("", windowpos ? windowx : SDL_WINDOWPOS_CENTERED,
|
|
|
|
windowpos ? windowy : SDL_WINDOWPOS_CENTERED, x, y,
|
2014-11-22 12:33:47 +00:00
|
|
|
((fs & 1) ? SDL_WINDOW_FULLSCREEN : 0));
|
2013-10-08 09:59:59 +00:00
|
|
|
if (!sdl_window)
|
2014-04-12 08:45:26 +00:00
|
|
|
SDL2_VIDEO_ERR("SDL_CreateWindow");
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
|
2014-01-12 14:05:56 +00:00
|
|
|
sdl_renderer = SDL_CreateRenderer(sdl_window, -1, 0);
|
|
|
|
if (!sdl_renderer)
|
2014-04-12 08:45:26 +00:00
|
|
|
SDL2_VIDEO_FALLBACK("SDL_CreateRenderer")
|
2014-01-12 14:05:56 +00:00
|
|
|
else
|
|
|
|
{
|
2014-01-27 10:30:54 +00:00
|
|
|
SDL_RendererInfo sdl_rendererinfo;
|
|
|
|
SDL_GetRendererInfo(sdl_renderer, &sdl_rendererinfo);
|
2014-11-22 12:33:47 +00:00
|
|
|
if (sdl_rendererinfo.flags & SDL_RENDERER_SOFTWARE) // this would be useless
|
2014-04-12 08:45:26 +00:00
|
|
|
SDL2_RENDERER_DESTROY(sdl_renderer);
|
2014-01-27 10:30:54 +00:00
|
|
|
else
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
sdl_texture = SDL_CreateTexture(sdl_renderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, x, y);
|
2014-01-27 10:30:54 +00:00
|
|
|
if (!sdl_texture)
|
|
|
|
{
|
2014-04-12 08:45:26 +00:00
|
|
|
SDL2_VIDEO_FALLBACK("SDL_CreateTexture");
|
|
|
|
SDL2_RENDERER_DESTROY(sdl_renderer);
|
2014-01-27 10:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-12 14:05:56 +00:00
|
|
|
|
2014-04-12 08:45:26 +00:00
|
|
|
if (sdl_texture)
|
2014-01-12 14:05:56 +00:00
|
|
|
{
|
2014-04-12 08:45:26 +00:00
|
|
|
sdl_surface = SDL_CreateRGBSurface(0, x, y, 32, 0, 0, 0, 0);
|
|
|
|
|
|
|
|
if (!sdl_surface)
|
|
|
|
{
|
|
|
|
SDL2_VIDEO_FALLBACK("SDL_CreateRGBSurface");
|
|
|
|
SDL_DestroyTexture(sdl_texture);
|
|
|
|
sdl_texture = NULL;
|
|
|
|
SDL2_RENDERER_DESTROY(sdl_renderer);
|
|
|
|
}
|
2014-01-12 14:05:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sdl_surface)
|
|
|
|
{
|
|
|
|
sdl_surface = SDL_GetWindowSurface(sdl_window);
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!sdl_surface)
|
|
|
|
SDL2_VIDEO_ERR("SDL_GetWindowSurface");
|
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-12-17 13:01:13 +00:00
|
|
|
#if !defined SDL_DISABLE_8BIT_BUFFER
|
2014-11-22 12:33:47 +00:00
|
|
|
sdl_buffersurface = SDL_CreateRGBSurface(0, x, y, c, 0, 0, 0, 0);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!sdl_buffersurface)
|
|
|
|
SDL2_VIDEO_ERR("SDL_CreateRGBSurface");
|
2014-12-17 13:01:13 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (!sdl_palptr)
|
|
|
|
sdl_palptr = SDL_AllocPalette(256);
|
|
|
|
|
|
|
|
if (SDL_SetSurfacePalette(sdl_buffersurface, sdl_palptr) < 0)
|
|
|
|
initprintf("SDL_SetSurfacePalette failed: %s\n", SDL_GetError());
|
|
|
|
}
|
|
|
|
|
|
|
|
setvideomode_sdlcommonpost(x, y, c, fs, regrab);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// resetvideomode() -- resets the video system
|
|
|
|
//
|
|
|
|
void resetvideomode(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
videomodereset = 1;
|
|
|
|
modeschecked = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// begindrawing() -- locks the framebuffer for drawing
|
|
|
|
//
|
|
|
|
void begindrawing(void)
|
|
|
|
{
|
2006-11-17 05:05:16 +00:00
|
|
|
if (bpp > 8)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (offscreenrendering) return;
|
|
|
|
frameplace = 0;
|
|
|
|
bytesperline = 0;
|
|
|
|
modechange = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// lock the frame
|
|
|
|
if (lockcount++ > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (offscreenrendering) return;
|
|
|
|
|
2013-10-07 10:03:37 +00:00
|
|
|
if (SDL_MUSTLOCK(sdl_buffersurface)) SDL_LockSurface(sdl_buffersurface);
|
|
|
|
frameplace = (intptr_t)sdl_buffersurface->pixels;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2013-10-07 10:03:37 +00:00
|
|
|
if (sdl_buffersurface->pitch != bytesperline || modechange)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2013-10-07 10:03:37 +00:00
|
|
|
bytesperline = sdl_buffersurface->pitch;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2012-12-14 19:28:17 +00:00
|
|
|
calc_ylookup(bytesperline, ydim);
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
modechange=0;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// enddrawing() -- unlocks the framebuffer
|
|
|
|
//
|
|
|
|
void enddrawing(void)
|
|
|
|
{
|
2006-11-17 05:05:16 +00:00
|
|
|
if (bpp > 8)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!offscreenrendering) frameplace = 0;
|
|
|
|
return;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!frameplace) return;
|
2007-12-12 17:42:14 +00:00
|
|
|
if (lockcount > 1) { lockcount--; return; }
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!offscreenrendering) frameplace = 0;
|
|
|
|
if (lockcount == 0) return;
|
|
|
|
lockcount = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (offscreenrendering) return;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2013-10-07 10:03:37 +00:00
|
|
|
if (SDL_MUSTLOCK(sdl_buffersurface)) SDL_UnlockSurface(sdl_buffersurface);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// showframe() -- update the display
|
|
|
|
//
|
2014-11-22 12:33:47 +00:00
|
|
|
#if SDL_MAJOR_VERSION != 1
|
2009-01-09 09:29:17 +00:00
|
|
|
void showframe(int32_t w)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2008-03-23 00:06:42 +00:00
|
|
|
UNREFERENCED_PARAMETER(w);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
2006-11-17 05:05:16 +00:00
|
|
|
if (bpp > 8)
|
|
|
|
{
|
|
|
|
if (palfadedelta)
|
2012-12-10 18:17:44 +00:00
|
|
|
fullscreen_tint_gl(palfadergb.r, palfadergb.g, palfadergb.b, palfadedelta);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2013-10-07 10:04:02 +00:00
|
|
|
SDL_GL_SwapWindow(sdl_window);
|
2006-04-24 19:04:22 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (offscreenrendering) return;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (lockcount)
|
|
|
|
{
|
2007-12-12 17:42:14 +00:00
|
|
|
printf("Frame still locked %d times when showframe() called.\n", lockcount);
|
2006-04-24 19:04:22 +00:00
|
|
|
while (lockcount) enddrawing();
|
|
|
|
}
|
|
|
|
|
2014-04-12 08:45:26 +00:00
|
|
|
// deferred palette updating
|
|
|
|
if (needpalupdate)
|
|
|
|
{
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
if (SDL_SetPaletteColors(sdl_palptr, sdlayer_pal, 0, 256) < 0)
|
|
|
|
initprintf("SDL_SetPaletteColors failed: %s\n", SDL_GetError());
|
2011-12-28 20:34:41 +00:00
|
|
|
needpalupdate = 0;
|
|
|
|
}
|
|
|
|
|
2014-12-17 13:01:13 +00:00
|
|
|
#if !defined SDL_DISABLE_8BIT_BUFFER
|
2013-10-07 10:03:37 +00:00
|
|
|
SDL_BlitSurface(sdl_buffersurface, NULL, sdl_surface, NULL);
|
2014-12-17 13:01:13 +00:00
|
|
|
#endif
|
2013-10-07 10:04:02 +00:00
|
|
|
|
2014-01-12 14:05:56 +00:00
|
|
|
if (sdl_renderer && sdl_texture)
|
|
|
|
{
|
|
|
|
SDL_UpdateTexture(sdl_texture, NULL, sdl_surface->pixels, sdl_surface->pitch);
|
|
|
|
|
|
|
|
SDL_RenderClear(sdl_renderer);
|
|
|
|
SDL_RenderCopy(sdl_renderer, sdl_texture, NULL, NULL);
|
|
|
|
SDL_RenderPresent(sdl_renderer);
|
|
|
|
}
|
|
|
|
else if (SDL_UpdateWindowSurface(sdl_window))
|
2013-10-08 09:59:59 +00:00
|
|
|
{
|
|
|
|
// If a fullscreen X11 window is minimized then this may be required.
|
|
|
|
// FIXME: What to do if this fails...
|
|
|
|
sdl_surface = SDL_GetWindowSurface(sdl_window);
|
|
|
|
SDL_UpdateWindowSurface(sdl_window);
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
//
|
|
|
|
// setpalette() -- set palette values
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t setpalette(int32_t start, int32_t num)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t i, n;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (bpp > 8)
|
|
|
|
return 0; // no palette in opengl
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
Bmemcpy(sdlayer_pal, curpalettefaded, 256 * 4);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
for (i = start, n = num; n > 0; i++, n--)
|
2013-10-06 07:49:53 +00:00
|
|
|
curpalettefaded[i].f =
|
2014-11-22 12:33:47 +00:00
|
|
|
#if SDL_MAJOR_VERSION == 1
|
2013-10-06 07:49:53 +00:00
|
|
|
sdlayer_pal[i].unused
|
|
|
|
#else
|
|
|
|
sdlayer_pal[i].a
|
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
= 0;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2011-12-28 20:34:41 +00:00
|
|
|
needpalupdate = 1;
|
2011-01-16 02:50:27 +00:00
|
|
|
|
2011-12-28 20:34:41 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// setgamma
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t setgamma(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
// return 0;
|
2014-04-15 19:02:48 +00:00
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i;
|
|
|
|
uint16_t gammaTable[768];
|
2014-09-30 04:06:32 +00:00
|
|
|
float gamma = max(0.1f, min(4.f, vid_gamma));
|
|
|
|
float contrast = max(0.1f, min(3.f, vid_contrast));
|
|
|
|
float bright = max(-0.8f, min(0.8f, vid_brightness));
|
2008-07-20 00:39:06 +00:00
|
|
|
|
2014-09-30 04:06:32 +00:00
|
|
|
float invgamma = 1.f / gamma;
|
|
|
|
float norm = powf(255.f, invgamma - 1.f);
|
2008-07-20 00:39:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (novideo)
|
|
|
|
return 0;
|
2011-01-16 02:50:27 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (lastvidgcb[0] == gamma && lastvidgcb[1] == contrast && lastvidgcb[2] == bright)
|
2011-12-28 20:34:57 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-07-20 00:39:06 +00:00
|
|
|
// This formula is taken from Doomsday
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
{
|
2014-09-30 04:06:32 +00:00
|
|
|
float val = i * contrast - (contrast - 1.f) * 127.f;
|
|
|
|
if (gamma != 1.f)
|
|
|
|
val = powf(val, invgamma) / norm;
|
2008-07-20 00:39:06 +00:00
|
|
|
|
2014-09-30 04:06:32 +00:00
|
|
|
val += bright * 128.f;
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
gammaTable[i] = gammaTable[i + 256] = gammaTable[i + 512] = (uint16_t)max(0.f, min(65535.f, val * 256.f));
|
2008-07-20 00:39:06 +00:00
|
|
|
}
|
2014-04-12 08:45:26 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
#if SDL_MAJOR_VERSION == 1
|
2014-09-30 04:06:32 +00:00
|
|
|
i = SDL_SetGammaRamp(&gammaTable[0], &gammaTable[256], &gammaTable[512]);
|
2014-04-12 08:45:26 +00:00
|
|
|
if (i != -1)
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#else
|
|
|
|
i = INT32_MIN;
|
2014-09-30 04:06:32 +00:00
|
|
|
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
if (sdl_window)
|
2014-09-30 04:06:32 +00:00
|
|
|
i = SDL_SetWindowGammaRamp(sdl_window, &gammaTable[0], &gammaTable[256], &gammaTable[512]);
|
2011-12-28 20:34:57 +00:00
|
|
|
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
if (i < 0)
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
#ifndef __ANDROID__ // Don't do this check, it is really supported, TODO
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
if (i != INT32_MIN)
|
|
|
|
initprintf("Unable to set gamma: SDL_SetWindowGammaRamp failed: %s\n", SDL_GetError());
|
2014-04-15 19:02:48 +00:00
|
|
|
#endif
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2011-12-28 20:34:57 +00:00
|
|
|
{
|
|
|
|
lastvidgcb[0] = gamma;
|
|
|
|
lastvidgcb[1] = contrast;
|
|
|
|
lastvidgcb[2] = bright;
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2014-12-27 18:36:14 +00:00
|
|
|
#if !defined __APPLE__ && !defined EDUKE32_TOUCH_DEVICES
|
2006-04-13 20:47:06 +00:00
|
|
|
extern struct sdlappicon sdlappicon;
|
2014-11-22 12:34:29 +00:00
|
|
|
static inline SDL_Surface *loadappicon(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:34:29 +00:00
|
|
|
SDL_Surface *surf = SDL_CreateRGBSurfaceFrom((void *)sdlappicon.pixels, sdlappicon.width, sdlappicon.height, 32,
|
|
|
|
sdlappicon.width * 4, 0xffl, 0xff00l, 0xff0000l, 0xff000000l);
|
2006-04-24 19:04:22 +00:00
|
|
|
return surf;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
// Miscellany
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
2006-04-24 19:04:22 +00:00
|
|
|
//
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-09-15 15:28:30 +00:00
|
|
|
int32_t handleevents_peekkeys(void)
|
|
|
|
{
|
|
|
|
SDL_PumpEvents();
|
2014-11-22 12:33:47 +00:00
|
|
|
|
2013-10-06 07:49:53 +00:00
|
|
|
#if SDL_MAJOR_VERSION==1
|
2012-09-15 15:28:30 +00:00
|
|
|
return SDL_PeepEvents(NULL, 1, SDL_PEEKEVENT, SDL_EVENTMASK(SDL_KEYDOWN));
|
|
|
|
#else
|
2013-10-06 07:49:53 +00:00
|
|
|
return SDL_PeepEvents(NULL, 1, SDL_PEEKEVENT, SDL_KEYDOWN, SDL_KEYDOWN);
|
2012-09-15 15:28:30 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-12-27 18:36:43 +00:00
|
|
|
void handleevents_updatemousestate(uint8_t state)
|
|
|
|
{
|
|
|
|
mousepressstate = state == SDL_RELEASED ? Mouse_Released : Mouse_Pressed;
|
|
|
|
}
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// handleevents() -- process the SDL message queue
|
|
|
|
// returns !0 if there was an important event worth checking (like quitting)
|
|
|
|
//
|
2010-01-23 22:12:02 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t handleevents_sdlcommon(SDL_Event *ev)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t j;
|
2013-12-20 07:24:09 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
switch (ev->type)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
case SDL_MOUSEMOTION:
|
2014-11-22 12:34:46 +00:00
|
|
|
#ifndef GEKKO
|
2014-12-27 18:36:43 +00:00
|
|
|
mouseabs.x = ev->motion.x;
|
|
|
|
mouseabs.y = ev->motion.y;
|
2014-11-22 12:34:46 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
// SDL <VER> doesn't handle relative mouse movement correctly yet as the cursor still clips to the
|
|
|
|
// screen edges
|
|
|
|
// so, we call SDL_WarpMouse() to center the cursor and ignore the resulting motion event that occurs
|
|
|
|
// <VER> is 1.3 for PK, 1.2 for tueidj
|
|
|
|
if (appactive && mousegrab)
|
2008-10-20 12:33:29 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (ev->motion.x != xdim >> 1 || ev->motion.y != ydim >> 1)
|
2008-10-20 12:33:29 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
mousex += ev->motion.xrel;
|
|
|
|
mousey += ev->motion.yrel;
|
|
|
|
#if !defined DEBUGGINGAIDS || MY_DEVELOPER_ID == 805120924
|
2014-11-22 12:44:06 +00:00
|
|
|
# if SDL_MAJOR_VERSION==1
|
|
|
|
SDL_WarpMouse(xdim>>1, ydim>>1);
|
|
|
|
# else
|
|
|
|
SDL_WarpMouseInWindow(sdl_window, xdim>>1, ydim>>1);
|
|
|
|
# endif
|
2014-04-12 08:45:26 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
2014-11-22 12:33:47 +00:00
|
|
|
// some of these get reordered to match winlayer
|
|
|
|
switch (ev->button.button)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
default: j = -1; break;
|
2014-12-27 18:36:43 +00:00
|
|
|
case SDL_BUTTON_LEFT: j = 0; handleevents_updatemousestate(ev->button.state); break;
|
2014-11-22 12:33:47 +00:00
|
|
|
case SDL_BUTTON_RIGHT: j = 1; break;
|
|
|
|
case SDL_BUTTON_MIDDLE: j = 2; break;
|
2013-12-01 18:28:03 +00:00
|
|
|
|
2014-11-22 18:37:16 +00:00
|
|
|
#if SDL_MAJOR_VERSION == 1
|
2014-11-22 12:33:47 +00:00
|
|
|
case SDL_BUTTON_WHEELUP: // 4
|
|
|
|
case SDL_BUTTON_WHEELDOWN: // 5
|
|
|
|
j = ev->button.button;
|
|
|
|
break;
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
#endif
|
2014-11-22 18:37:16 +00:00
|
|
|
/* Thumb buttons. */
|
|
|
|
#if SDL_MAJOR_VERSION==1 || !defined _WIN32
|
|
|
|
// NOTE: SDL1 does have SDL_BUTTON_X1, but that's not what is
|
|
|
|
// generated. Neither with SDL2 on Linux. (Other OSs: not tested.)
|
2014-11-22 12:33:47 +00:00
|
|
|
case 8: j = 3; break;
|
|
|
|
case 9: j = 6; break;
|
2013-12-01 18:28:03 +00:00
|
|
|
#else
|
2014-11-22 18:37:16 +00:00
|
|
|
// On SDL2/Windows, everything is as it should be.
|
2014-11-22 12:33:47 +00:00
|
|
|
case SDL_BUTTON_X1: j = 3; break;
|
|
|
|
case SDL_BUTTON_X2: j = 6; break;
|
2013-12-01 18:28:03 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (j < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ev->button.state == SDL_PRESSED)
|
|
|
|
mouseb |= (1 << j);
|
2006-11-17 05:05:16 +00:00
|
|
|
else
|
2014-11-29 03:21:56 +00:00
|
|
|
#if SDL_MAJOR_VERSION==1
|
|
|
|
if (j != SDL_BUTTON_WHEELUP && j != SDL_BUTTON_WHEELDOWN)
|
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
mouseb &= ~(1 << j);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
if (mousepresscallback)
|
2014-11-22 12:33:47 +00:00
|
|
|
mousepresscallback(j+1, ev->button.state == SDL_PRESSED);
|
2006-04-24 19:04:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_JOYAXISMOTION:
|
2014-11-22 12:33:47 +00:00
|
|
|
if (appactive && ev->jaxis.axis < joynumaxes)
|
2010-10-21 02:20:40 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
joyaxis[ev->jaxis.axis] = ev->jaxis.value * 10000 / 32767;
|
|
|
|
if ((joyaxis[ev->jaxis.axis] < joydead[ev->jaxis.axis]) &&
|
|
|
|
(joyaxis[ev->jaxis.axis] > -joydead[ev->jaxis.axis]))
|
|
|
|
joyaxis[ev->jaxis.axis] = 0;
|
|
|
|
else if (joyaxis[ev->jaxis.axis] >= joysatur[ev->jaxis.axis])
|
|
|
|
joyaxis[ev->jaxis.axis] = 10000;
|
|
|
|
else if (joyaxis[ev->jaxis.axis] <= -joysatur[ev->jaxis.axis])
|
|
|
|
joyaxis[ev->jaxis.axis] = -10000;
|
2010-10-21 02:20:40 +00:00
|
|
|
else
|
2014-11-22 12:33:47 +00:00
|
|
|
joyaxis[ev->jaxis.axis] = joyaxis[ev->jaxis.axis] * 10000 / joysatur[ev->jaxis.axis];
|
2010-10-21 02:20:40 +00:00
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
break;
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
case SDL_JOYHATMOTION:
|
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t hatvals[16] = {
|
|
|
|
-1, // centre
|
|
|
|
0, // up 1
|
|
|
|
9000, // right 2
|
|
|
|
4500, // up+right 3
|
|
|
|
18000, // down 4
|
|
|
|
-1, // down+up!! 5
|
|
|
|
13500, // down+right 6
|
|
|
|
-1, // down+right+up!! 7
|
|
|
|
27000, // left 8
|
|
|
|
27500, // left+up 9
|
|
|
|
-1, // left+right!! 10
|
|
|
|
-1, // left+right+up!! 11
|
|
|
|
22500, // left+down 12
|
|
|
|
-1, // left+down+up!! 13
|
|
|
|
-1, // left+down+right!! 14
|
|
|
|
-1, // left+down+right+up!! 15
|
2007-12-12 17:42:14 +00:00
|
|
|
};
|
2014-11-22 12:33:47 +00:00
|
|
|
if (appactive && ev->jhat.hat < joynumhats)
|
|
|
|
joyhat[ev->jhat.hat] = hatvals[ev->jhat.value & 15];
|
2006-11-13 23:12:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
case SDL_JOYBUTTONDOWN:
|
|
|
|
case SDL_JOYBUTTONUP:
|
2014-11-22 12:33:47 +00:00
|
|
|
if (appactive && ev->jbutton.button < joynumbuttons)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (ev->jbutton.state == SDL_PRESSED)
|
|
|
|
joyb |= 1 << ev->jbutton.button;
|
2006-04-24 19:04:22 +00:00
|
|
|
else
|
2014-11-22 12:33:47 +00:00
|
|
|
joyb &= ~(1 << ev->jbutton.button);
|
2014-12-27 18:36:43 +00:00
|
|
|
|
|
|
|
#ifdef GEKKO
|
|
|
|
if (ev->jbutton.button == 0) // WII_A
|
|
|
|
handleevents_updatemousestate(ev->jbutton.state);
|
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_QUIT:
|
|
|
|
quitevent = 1;
|
2014-11-22 12:33:47 +00:00
|
|
|
return -1;
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-05-18 05:14:17 +00:00
|
|
|
|
2014-11-28 08:12:40 +00:00
|
|
|
int32_t handleevents_pollsdl(void);
|
2014-11-22 12:33:47 +00:00
|
|
|
#if SDL_MAJOR_VERSION != 1
|
|
|
|
// SDL 2.0 specific event handling
|
|
|
|
int32_t handleevents_pollsdl(void)
|
|
|
|
{
|
|
|
|
int32_t code, rv=0, j;
|
|
|
|
SDL_Event ev;
|
2006-08-07 06:18:57 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
while (SDL_PollEvent(&ev))
|
|
|
|
{
|
|
|
|
switch (ev.type)
|
|
|
|
{
|
|
|
|
case SDL_TEXTINPUT:
|
|
|
|
j = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
code = ev.text.text[j];
|
|
|
|
|
|
|
|
if (code != scantoasc[OSD_OSDKey()] && !keyascfifo_isfull())
|
|
|
|
{
|
|
|
|
if (OSD_HandleChar(code))
|
|
|
|
keyascfifo_insert(code);
|
|
|
|
}
|
|
|
|
} while (j < SDL_TEXTINPUTEVENT_TEXT_SIZE && ev.text.text[++j]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_KEYDOWN:
|
|
|
|
case SDL_KEYUP:
|
|
|
|
code = keytranslation[ev.key.keysym.scancode];
|
|
|
|
|
|
|
|
// XXX: see osd.c, OSD_HandleChar(), there are more...
|
|
|
|
if (ev.key.type == SDL_KEYDOWN && !keyascfifo_isfull() &&
|
|
|
|
(ev.key.keysym.scancode == SDL_SCANCODE_RETURN ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_KP_ENTER ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_ESCAPE ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_BACKSPACE ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_TAB ||
|
|
|
|
(ev.key.keysym.mod==KMOD_LCTRL &&
|
|
|
|
(ev.key.keysym.scancode == SDL_SCANCODE_F ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_G ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_K ||
|
|
|
|
ev.key.keysym.scancode == SDL_SCANCODE_U))))
|
|
|
|
{
|
|
|
|
char keyvalue;
|
|
|
|
switch (ev.key.keysym.scancode)
|
|
|
|
{
|
|
|
|
case SDL_SCANCODE_RETURN: case SDL_SCANCODE_KP_ENTER: keyvalue = '\r'; break;
|
|
|
|
case SDL_SCANCODE_ESCAPE: keyvalue = 27; break;
|
|
|
|
case SDL_SCANCODE_BACKSPACE: keyvalue = '\b'; break;
|
|
|
|
case SDL_SCANCODE_TAB: keyvalue = '\t'; break;
|
|
|
|
case SDL_SCANCODE_F: keyvalue = 6; break;
|
|
|
|
case SDL_SCANCODE_G: keyvalue = 7; break;
|
|
|
|
case SDL_SCANCODE_K: keyvalue = 11; break;
|
|
|
|
case SDL_SCANCODE_U: keyvalue = 21; break;
|
|
|
|
default: keyvalue = 0; break;
|
|
|
|
}
|
|
|
|
if (OSD_HandleChar(keyvalue))
|
|
|
|
keyascfifo_insert(keyvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
// initprintf("SDL2: got key %d, %d, %u\n", ev.key.keysym.scancode, code, ev.key.type);
|
|
|
|
|
|
|
|
// hook in the osd
|
|
|
|
if ((j = OSD_HandleScanCode(code, (ev.key.type == SDL_KEYDOWN))) <= 0)
|
|
|
|
{
|
|
|
|
if (j == -1) // osdkey
|
|
|
|
for (j = 0; j < KEYSTATUSSIZ; ++j)
|
|
|
|
if (GetKey(j))
|
|
|
|
{
|
|
|
|
SetKey(j, 0);
|
|
|
|
if (keypresscallback)
|
|
|
|
keypresscallback(j, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev.key.type == SDL_KEYDOWN)
|
|
|
|
{
|
|
|
|
if (!GetKey(code))
|
|
|
|
{
|
|
|
|
SetKey(code, 1);
|
|
|
|
if (keypresscallback)
|
|
|
|
keypresscallback(code, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
# if 1
|
|
|
|
// The pause key generates a release event right after
|
|
|
|
// the pressing one. As a result, it gets unseen
|
|
|
|
// by the game most of the time.
|
|
|
|
if (code == 0x59) // pause
|
|
|
|
break;
|
|
|
|
# endif
|
|
|
|
SetKey(code, 0);
|
|
|
|
if (keypresscallback)
|
|
|
|
keypresscallback(code, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_MOUSEWHEEL:
|
|
|
|
// initprintf("wheel y %d\n",ev.wheel.y);
|
|
|
|
if (ev.wheel.y > 0)
|
|
|
|
{
|
|
|
|
mouseb |= 16;
|
|
|
|
if (mousepresscallback)
|
|
|
|
mousepresscallback(5, 1);
|
|
|
|
}
|
|
|
|
if (ev.wheel.y < 0)
|
|
|
|
{
|
|
|
|
mouseb |= 32;
|
|
|
|
if (mousepresscallback)
|
|
|
|
mousepresscallback(6, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_WINDOWEVENT:
|
|
|
|
switch (ev.window.event)
|
|
|
|
{
|
|
|
|
case SDL_WINDOWEVENT_FOCUS_GAINED:
|
|
|
|
case SDL_WINDOWEVENT_FOCUS_LOST:
|
|
|
|
appactive = (ev.window.event == SDL_WINDOWEVENT_FOCUS_GAINED);
|
|
|
|
if (mousegrab && moustat)
|
|
|
|
grabmouse_low(appactive);
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (backgroundidle)
|
|
|
|
SetPriorityClass(GetCurrentProcess(), appactive ? NORMAL_PRIORITY_CLASS : IDLE_PRIORITY_CLASS);
|
2012-11-24 09:13:29 +00:00
|
|
|
#endif
|
2014-11-22 12:33:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_WINDOWEVENT_MOVED:
|
|
|
|
if (windowpos)
|
|
|
|
{
|
|
|
|
windowx = ev.window.data1;
|
|
|
|
windowy = ev.window.data2;
|
|
|
|
}
|
|
|
|
break;
|
2014-11-22 12:34:46 +00:00
|
|
|
case SDL_WINDOWEVENT_ENTER:
|
|
|
|
mouseinwindow = 1;
|
|
|
|
break;
|
|
|
|
case SDL_WINDOWEVENT_LEAVE:
|
|
|
|
mouseinwindow = 0;
|
|
|
|
break;
|
2014-11-22 12:33:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
default:
|
|
|
|
rv = handleevents_sdlcommon(&ev);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return rv;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t handleevents(void)
|
2010-05-18 05:14:17 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
int32_t rv;
|
2010-05-18 05:14:17 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
if (inputchecked && moustat)
|
2011-01-16 02:50:27 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (mousepresscallback)
|
2011-01-16 02:50:27 +00:00
|
|
|
{
|
2014-11-22 12:33:47 +00:00
|
|
|
if (mouseb & 16)
|
|
|
|
mousepresscallback(5, 0);
|
|
|
|
if (mouseb & 32)
|
|
|
|
mousepresscallback(6, 0);
|
2010-05-18 05:14:17 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
mouseb &= ~(16 | 32);
|
2010-05-18 05:14:17 +00:00
|
|
|
}
|
2014-11-22 12:33:47 +00:00
|
|
|
|
|
|
|
rv = handleevents_pollsdl();
|
|
|
|
|
|
|
|
inputchecked = 0;
|
|
|
|
sampletimer();
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
startwin_idle(NULL);
|
2010-05-18 05:14:17 +00:00
|
|
|
#endif
|
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
return rv;
|
|
|
|
}
|
2007-10-24 07:12:50 +00:00
|
|
|
|
2014-11-22 12:33:47 +00:00
|
|
|
#if SDL_MAJOR_VERSION == 1
|
|
|
|
#include "sdlayer12.c"
|
|
|
|
#endif
|