2006-04-13 20:47:06 +00:00
|
|
|
// SDL interface layer
|
|
|
|
// for the Build Engine
|
|
|
|
// by Jonathon Fowler (jonof@edgenetwk.com)
|
|
|
|
//
|
2008-10-22 07:30:06 +00:00
|
|
|
// Use SDL 1.2 or 1.3 from http://www.libsdl.org
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
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"
|
|
|
|
#include "sdlayer.h"
|
|
|
|
#include "cache1d.h"
|
|
|
|
#include "pragmas.h"
|
|
|
|
#include "a.h"
|
|
|
|
#include "build.h"
|
|
|
|
#include "osd.h"
|
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
|
|
|
# include "glbuild.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined __APPLE__
|
|
|
|
# include "osxbits.h"
|
|
|
|
#elif defined HAVE_GTK2
|
|
|
|
# include "gtkbits.h"
|
2006-07-01 01:40:18 +00:00
|
|
|
#else
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t startwin_open(void) { return 0; }
|
|
|
|
int32_t startwin_close(void) { return 0; }
|
|
|
|
int32_t startwin_puts(const char *s) { s=s; return 0; }
|
|
|
|
int32_t startwin_idle(void *s) { s=s; return 0; }
|
|
|
|
int32_t startwin_settitle(const char *s) { s=s; return 0; }
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
|
#define MWHEELTICKS 10
|
2009-01-09 09:29:17 +00:00
|
|
|
static uint32_t mwheelup, mwheeldown;
|
2006-08-07 06:18:57 +00:00
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t _buildargc = 1;
|
2007-08-17 03:16:46 +00:00
|
|
|
const char **_buildargv = NULL;
|
2009-01-09 09:29:17 +00:00
|
|
|
extern int32_t app_main(int32_t argc, const char *argv[]);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
char quitevent=0, appactive=1;
|
|
|
|
|
|
|
|
// video
|
|
|
|
static SDL_Surface *sdl_surface;
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t xres=-1, yres=-1, bpp=0, fullscreen=0, bytesperline, imageSize;
|
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;
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t vsync=0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
// input
|
|
|
|
char inputdevices=0;
|
|
|
|
char keystatus[256], keyfifo[KEYFIFOSIZ], keyfifoplc, keyfifoend;
|
2009-01-09 09:29:17 +00:00
|
|
|
char keyasciififo[KEYFIFOSIZ], keyasciififoplc, keyasciififoend;
|
|
|
|
char remap[256];
|
|
|
|
int32_t remapinit=0;
|
2009-01-10 07:38:50 +00:00
|
|
|
static char key_names[256][24];
|
2009-01-09 09:29:17 +00:00
|
|
|
volatile int32_t mousex=0,mousey=0,mouseb=0;
|
|
|
|
int32_t *joyaxis = NULL, joyb=0, *joyhat = NULL;
|
2006-04-13 20:47:06 +00:00
|
|
|
char joyisgamepad=0, joynumaxes=0, joynumbuttons=0, joynumhats=0;
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t joyaxespresent=0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
void(*keypresscallback)(int32_t,int32_t) = 0;
|
|
|
|
void(*mousepresscallback)(int32_t,int32_t) = 0;
|
|
|
|
void(*joypresscallback)(int32_t,int32_t) = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3)
|
2009-01-09 09:29:17 +00:00
|
|
|
static char keytranslation[SDLK_LAST];
|
2008-10-20 12:33:29 +00:00
|
|
|
#else
|
2009-01-09 09:29:17 +00:00
|
|
|
static char keytranslation[SDL_NUM_SCANCODES];
|
2008-10-20 12:33:29 +00:00
|
|
|
#endif
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t buildkeytranslationtable(void);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//static SDL_Surface * loadtarga(const char *fn); // for loading the icon
|
2009-12-05 09:22:43 +00:00
|
|
|
static SDL_Surface * appicon = NULL;
|
2006-04-13 20:47:06 +00:00
|
|
|
static SDL_Surface * loadappicon(void);
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t wm_msgbox(char *name, 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);
|
|
|
|
vsprintf(buf,fmt,va);
|
|
|
|
va_end(va);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
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;
|
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
|
|
|
}
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t wm_ynbox(char *name, 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
|
|
|
char c;
|
|
|
|
va_list va;
|
2008-03-26 03:53:54 +00:00
|
|
|
#if (!defined(__APPLE__) && defined(HAVE_GTK2))
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t r;
|
2008-03-26 03:53:54 +00:00
|
|
|
#endif
|
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
|
|
|
|
|
|
|
#if defined __APPLE__
|
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
|
2006-04-24 19:04:22 +00:00
|
|
|
if ((r = gtkbuild_ynbox(name, buf)) >= 0) return r;
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
puts(buf);
|
|
|
|
puts(" (type 'Y' or 'N', and press Return or Enter to continue)");
|
|
|
|
do c = getchar(); while (c != 'Y' && c != 'y' && c != 'N' && c != 'n');
|
|
|
|
if (c == 'Y' || c == 'y') return 1;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void wm_setapptitle(char *name)
|
|
|
|
{
|
2006-11-17 05:05:16 +00:00
|
|
|
if (name)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
Bstrncpy(apptitle, name, sizeof(apptitle)-1);
|
|
|
|
apptitle[ sizeof(apptitle)-1 ] = 0;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_WM_SetCaption(apptitle, NULL);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_settitle(apptitle);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
// System
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
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;
|
2008-02-18 08:10:54 +00:00
|
|
|
char *argp;
|
|
|
|
FILE *fp;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2009-06-13 21:06:45 +00:00
|
|
|
nedcreatepool(SYSTEM_POOL_SIZE, -1);
|
2009-10-15 23:08:47 +00:00
|
|
|
// atexit(neddestroysyspool);
|
2009-06-13 21:06:45 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
buildkeytranslationtable();
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef HAVE_GTK2
|
2006-04-24 19:04:22 +00:00
|
|
|
gtkbuild_init(&argc, &argv);
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_open();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
_buildargc = argc;
|
2007-08-17 03:16:46 +00:00
|
|
|
_buildargv = (const char**)argv;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-02-18 08:10:54 +00:00
|
|
|
// pipe standard outputs to files
|
|
|
|
if ((argp = Bgetenv("BUILD_LOGSTDOUT")) != NULL)
|
|
|
|
if (!Bstrcasecmp(argp, "TRUE"))
|
|
|
|
{
|
|
|
|
fp = freopen("stdout.txt", "w", stdout);
|
|
|
|
if (!fp)
|
|
|
|
{
|
|
|
|
fp = fopen("stdout.txt", "w");
|
|
|
|
}
|
|
|
|
if (fp) setvbuf(fp, 0, _IONBF, 0);
|
|
|
|
*stdout = *fp;
|
|
|
|
*stderr = *fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(USE_OPENGL) && defined(POLYMOST)
|
|
|
|
if ((argp = Bgetenv("BUILD_NOFOG")) != NULL)
|
|
|
|
nofog = Batol(argp);
|
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
baselayer_init();
|
2007-09-06 21:11:18 +00:00
|
|
|
r = app_main(_buildargc, _buildargv);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_close();
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef HAVE_GTK2
|
2006-04-24 19:04:22 +00:00
|
|
|
gtkbuild_exit(r);
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
return r;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2008-07-22 21:03:09 +00:00
|
|
|
#if defined(USE_OPENGL) && defined(POLYMOST)
|
2009-01-09 09:29:17 +00:00
|
|
|
void setvsync(int32_t sync)
|
2008-07-22 21:03:09 +00:00
|
|
|
{
|
2008-07-23 03:56:50 +00:00
|
|
|
if (vsync == sync) return;
|
2008-07-22 21:03:09 +00:00
|
|
|
vsync = sync;
|
|
|
|
resetvideomode();
|
|
|
|
if (setgamemode(fullscreen,xdim,ydim,bpp))
|
|
|
|
OSD_Printf("restartvid: Reset failed...\n");
|
|
|
|
}
|
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2009-08-03 22:15:53 +00:00
|
|
|
static void attach_debugger_here(void){}
|
|
|
|
|
|
|
|
static void sighandler(int signum)
|
|
|
|
{
|
2009-10-01 19:43:15 +00:00
|
|
|
// if (signum==SIGSEGV)
|
2009-08-03 22:15:53 +00:00
|
|
|
{
|
|
|
|
SDL_WM_GrabInput(SDL_GRAB_OFF);
|
|
|
|
SDL_ShowCursor(SDL_ENABLE);
|
|
|
|
attach_debugger_here();
|
|
|
|
uninitsystem();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-07-10 02:45:24 +00:00
|
|
|
/*
|
2008-07-20 00:39:06 +00:00
|
|
|
#ifdef DEBUGGINGAIDS
|
2006-04-24 19:04:22 +00:00
|
|
|
const SDL_VideoInfo *vid;
|
2008-07-20 00:39:06 +00:00
|
|
|
#endif
|
2008-07-10 02:45:24 +00:00
|
|
|
*/
|
2006-04-24 19:04:22 +00:00
|
|
|
const SDL_version *linked = SDL_Linked_Version();
|
|
|
|
SDL_version compiled;
|
|
|
|
char drvname[32];
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_VERSION(&compiled);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-02-24 00:46:57 +00:00
|
|
|
initprintf("Initializing SDL system interface "
|
2008-04-25 01:46:19 +00:00
|
|
|
"(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);
|
|
|
|
|
|
|
|
if (SDL_VERSIONNUM(linked->major,linked->minor,linked->patch) < SDL_REQUIREDVERSION)
|
2008-05-10 01:29:37 +00:00
|
|
|
{
|
|
|
|
/*reject running under SDL versions older than what is stated in sdl_inc.h */
|
2008-04-25 01:46:19 +00:00
|
|
|
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;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO //| SDL_INIT_TIMER
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef NOSDLPARACHUTE
|
2006-04-24 19:04:22 +00:00
|
|
|
| SDL_INIT_NOPARACHUTE
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-11-17 05:05:16 +00:00
|
|
|
))
|
|
|
|
{
|
2008-02-24 00:46:57 +00:00
|
|
|
initprintf("Initialization failed! (%s)\n", SDL_GetError());
|
2006-04-24 19:04:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2009-08-03 22:15:53 +00:00
|
|
|
signal(SIGSEGV, sighandler);
|
2009-10-01 19:43:15 +00:00
|
|
|
signal(SIGABRT, sighandler);
|
|
|
|
signal(SIGFPE, sighandler);
|
2009-08-03 22:15:53 +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
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
2006-11-17 05:05:16 +00:00
|
|
|
if (loadgldriver(getenv("BUILD_GLDRV")))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
initprintf("Failed loading OpenGL driver. GL modes will be unavailable.\n");
|
|
|
|
nogl = 1;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __APPLE__
|
2009-11-18 01:17:56 +00:00
|
|
|
|
|
|
|
//icon = loadtarga("icon.tga");
|
|
|
|
appicon = loadappicon();
|
|
|
|
if (appicon)
|
|
|
|
SDL_WM_SetIcon(appicon, 0);
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (SDL_VideoDriverName(drvname, 32))
|
|
|
|
initprintf("Using \"%s\" video driver\n", drvname);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-07-10 02:45:24 +00:00
|
|
|
/*
|
2006-04-24 19:04:22 +00:00
|
|
|
// dump a quick summary of the graphics hardware
|
2008-07-20 00:39:06 +00:00
|
|
|
#ifdef DEBUGGINGAIDS
|
2006-04-24 19:04:22 +00:00
|
|
|
vid = SDL_GetVideoInfo();
|
|
|
|
initprintf("Video device information:\n");
|
|
|
|
initprintf(" Can create hardware surfaces? %s\n", (vid->hw_available)?"Yes":"No");
|
|
|
|
initprintf(" Window manager available? %s\n", (vid->wm_available)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated hardware blits? %s\n", (vid->blit_hw)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated hardware colourkey blits? %s\n", (vid->blit_hw_CC)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated hardware alpha blits? %s\n", (vid->blit_hw_A)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated software blits? %s\n", (vid->blit_sw)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated software colourkey blits? %s\n", (vid->blit_sw_CC)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated software alpha blits? %s\n", (vid->blit_sw_A)?"Yes":"No");
|
|
|
|
initprintf(" Accelerated colour fills? %s\n", (vid->blit_fill)?"Yes":"No");
|
|
|
|
initprintf(" Total video memory: %dKB\n", vid->video_mem);
|
2008-07-20 00:39:06 +00:00
|
|
|
#endif
|
|
|
|
*/
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// uninitsystem() -- uninit SDL systems
|
|
|
|
//
|
|
|
|
void uninitsystem(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
uninitinput();
|
|
|
|
uninitmouse();
|
|
|
|
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
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
2006-04-24 19:04:22 +00:00
|
|
|
unloadgldriver();
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// initprintf() -- prints a string to the intitialization window
|
|
|
|
//
|
|
|
|
void initprintf(const char *f, ...)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
va_list va;
|
|
|
|
char buf[1024];
|
2009-01-06 06:59:18 +00:00
|
|
|
static char dabuf[1024];
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
va_start(va, f);
|
|
|
|
Bvsnprintf(buf, 1024, f, va);
|
|
|
|
va_end(va);
|
2009-01-06 06:59:18 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
OSD_Printf(buf);
|
2009-05-22 23:49:25 +00:00
|
|
|
Bprintf("%s", buf);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
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);
|
|
|
|
startwin_idle(NULL);
|
|
|
|
Bmemset(dabuf, 0, sizeof(dabuf));
|
|
|
|
}
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// debugprintf() -- prints a debug string to stderr
|
|
|
|
//
|
|
|
|
void debugprintf(const char *f, ...)
|
|
|
|
{
|
|
|
|
#ifdef DEBUGGINGAIDS
|
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
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
static char mouseacquired=0,moustat=0;
|
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
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i,j;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
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
|
|
|
|
if (!getenv("SDL_HAS3BUTTONMOUSE")) putenv("SDL_HAS3BUTTONMOUSE=1");
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2008-10-24 09:20:38 +00:00
|
|
|
if (!remapinit)
|
2009-02-19 16:47:54 +00:00
|
|
|
for (i=0; i<256; i++)
|
2008-10-24 09:20:38 +00:00
|
|
|
remap[i]=i;
|
|
|
|
remapinit=1;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-10-24 09:20:38 +00:00
|
|
|
if (SDL_EnableKeyRepeat(250, 30)) // doesn't do anything in 1.3
|
|
|
|
initprintf("Error enabling keyboard repeat.\n");
|
2006-04-24 19:04:22 +00:00
|
|
|
inputdevices = 1|2; // keyboard (1) and mouse (2)
|
|
|
|
mouseacquired = 0;
|
|
|
|
|
|
|
|
SDL_EnableUNICODE(1); // let's hope this doesn't hit us too hard
|
|
|
|
|
2009-01-10 07:38:50 +00:00
|
|
|
memset(key_names,0,sizeof(key_names));
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3)
|
2006-11-17 05:05:16 +00:00
|
|
|
for (i=0; i<SDLK_LAST; i++)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!keytranslation[i]) continue;
|
2009-02-02 01:49:14 +00:00
|
|
|
Bstrncpy((char *)key_names[ keytranslation[i] ], SDL_GetKeyName(i), sizeof(key_names[i])-1);
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
2008-10-20 12:33:29 +00:00
|
|
|
#else
|
|
|
|
for (i=0; i<SDL_NUM_SCANCODES; i++)
|
|
|
|
{
|
|
|
|
if (!keytranslation[i]) continue;
|
2009-02-02 01:49:14 +00:00
|
|
|
Bstrncpy((char *)key_names[ keytranslation[i] ], SDL_GetKeyName(SDL_SCANCODE_TO_KEYCODE(i)), sizeof(key_names[i])-1);
|
2008-10-20 12:33:29 +00:00
|
|
|
}
|
|
|
|
#endif
|
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();
|
|
|
|
initprintf("%d joystick(s) found\n",i);
|
2009-02-19 16:47:54 +00:00
|
|
|
for (j=0; j<i; j++) initprintf(" %d. %s\n", j+1, SDL_JoystickName(j));
|
2006-04-24 19:04:22 +00:00
|
|
|
joydev = SDL_JoystickOpen(0);
|
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
|
|
|
|
|
|
|
joynumaxes = SDL_JoystickNumAxes(joydev);
|
|
|
|
joynumbuttons = min(32,SDL_JoystickNumButtons(joydev));
|
|
|
|
joynumhats = SDL_JoystickNumHats(joydev);
|
|
|
|
initprintf("Joystick 1 has %d axes, %d buttons, and %d hat(s).\n",
|
|
|
|
joynumaxes,joynumbuttons,joynumhats);
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
joyaxis = (int32_t *)Bcalloc(joynumaxes, sizeof(int32_t));
|
|
|
|
joyhat = (int32_t *)Bcalloc(joynumhats, sizeof(int32_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)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
const char *getkeyname(int32_t num)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2010-01-16 20:17:33 +00:00
|
|
|
return ((unsigned)num >= 256) ? NULL : key_names[num];
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
case 0: // axis
|
|
|
|
if ((unsigned)num > (unsigned)joynumaxes) return NULL;
|
2009-02-02 01:49:14 +00:00
|
|
|
Bsprintf(tmp,"Axis %d",num);
|
2009-01-09 09:29:17 +00:00
|
|
|
return (char *)tmp;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
case 1: // button
|
|
|
|
if ((unsigned)num > (unsigned)joynumbuttons) return NULL;
|
2009-02-02 01:49:14 +00:00
|
|
|
Bsprintf(tmp,"Button %d",num);
|
2009-01-09 09:29:17 +00:00
|
|
|
return (char *)tmp;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
case 2: // hat
|
|
|
|
if ((unsigned)num > (unsigned)joynumhats) return NULL;
|
2009-02-02 01:49:14 +00:00
|
|
|
Bsprintf(tmp,"Hat %d",num);
|
2009-01-09 09:29:17 +00:00
|
|
|
return (char *)tmp;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// bgetchar, bkbhit, bflushchars -- character-based input functions
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
char bgetchar(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2010-01-16 20:17:33 +00:00
|
|
|
if (keyasciififoplc == keyasciififoend)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
{
|
|
|
|
char c = keyasciififo[keyasciififoplc];
|
|
|
|
keyasciififoplc = ((keyasciififoplc+1)&(KEYFIFOSIZ-1));
|
|
|
|
return c;
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t bkbhit(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
return (keyasciififoplc != keyasciififoend);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void bflushchars(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
keyasciififoplc = keyasciififoend = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// set{key|mouse|joy}presscallback() -- sets a callback which gets notified when keys are pressed
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
void setkeypresscallback(void(*callback)(int32_t, int32_t)) { keypresscallback = callback; }
|
|
|
|
void setmousepresscallback(void(*callback)(int32_t, int32_t)) { mousepresscallback = callback; }
|
|
|
|
void setjoypresscallback(void(*callback)(int32_t, int32_t)) { joypresscallback = callback; }
|
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
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
moustat=1;
|
2008-02-16 22:27:08 +00:00
|
|
|
grabmouse(1); // 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);
|
|
|
|
moustat=0;
|
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)
|
|
|
|
{
|
|
|
|
if (a != mouseacquired)
|
|
|
|
{
|
2007-07-04 09:15:08 +00:00
|
|
|
// #ifndef DEBUGGINGAIDS
|
2010-01-11 17:26:44 +00:00
|
|
|
#if 1
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_GrabMode g;
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
g = SDL_WM_GrabInput(a ? SDL_GRAB_ON : SDL_GRAB_OFF);
|
2006-04-24 19:04:22 +00:00
|
|
|
mouseacquired = (g == SDL_GRAB_ON);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_ShowCursor(mouseacquired ? SDL_DISABLE : SDL_ENABLE);
|
2006-11-19 01:28:51 +00:00
|
|
|
#else
|
|
|
|
mouseacquired = a;
|
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
mouseacquired = a;
|
|
|
|
}
|
|
|
|
mousex = mousey = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// readmousexy() -- return mouse motion information
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
void readmousexy(int32_t *x, int32_t *y)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!mouseacquired || !appactive || !moustat) { *x = *y = 0; return; }
|
|
|
|
*x = mousex;
|
|
|
|
*y = mousey;
|
|
|
|
mousex = mousey = 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// readmousebstatus() -- return mouse button information
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
void readmousebstatus(int32_t *b)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (!mouseacquired || !appactive || !moustat) *b = 0;
|
|
|
|
else *b = mouseb;
|
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
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(axis);
|
|
|
|
UNREFERENCED_PARAMETER(dead);
|
|
|
|
UNREFERENCED_PARAMETER(satur);
|
|
|
|
}
|
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
|
|
|
{
|
2008-03-23 00:06:42 +00:00
|
|
|
UNREFERENCED_PARAMETER(axis);
|
2006-04-24 19:04:22 +00:00
|
|
|
*dead = *satur = 0;
|
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
|
|
|
|
//
|
|
|
|
// ---------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
static Uint32 timerfreq=0;
|
|
|
|
static Uint32 timerlastsample=0;
|
2006-10-05 07:39:37 +00:00
|
|
|
Uint32 timerticspersec=0;
|
2006-11-17 05:05:16 +00:00
|
|
|
static void(*usertimercallback)(void) = NULL;
|
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
|
|
|
|
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
|
|
|
|
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;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// sampletimer() -- update totalclock
|
|
|
|
//
|
|
|
|
void sampletimer(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
Uint32 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();
|
2009-01-09 09:29:17 +00:00
|
|
|
n = (int32_t)(i * timerticspersec / timerfreq) - timerlastsample;
|
2006-11-17 05:05:16 +00:00
|
|
|
if (n>0)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
totalclock += n;
|
|
|
|
timerlastsample += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usertimercallback) for (; n>0; n--) usertimercallback();
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// getticks() -- returns the sdl ticks count
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
uint32_t getticks(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
return (uint32_t)SDL_GetTicks();
|
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
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t sortmodes(const struct validmode_t *a, const struct validmode_t *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
|
|
|
|
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
|
|
|
}
|
|
|
|
static char modeschecked=0;
|
|
|
|
void getvalidmodes(void)
|
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t cdepths[] =
|
2007-12-12 17:42:14 +00:00
|
|
|
{
|
|
|
|
8,
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef USE_OPENGL
|
2007-12-12 17:42:14 +00:00
|
|
|
16,24,32,
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2007-12-12 17:42:14 +00:00
|
|
|
0
|
|
|
|
};
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t defaultres[][2] =
|
2007-12-12 17:42:14 +00:00
|
|
|
{
|
|
|
|
{1280,1024}
|
|
|
|
,{1280,960},{1152,864},{1024,768},{800,600},{640,480},
|
|
|
|
{640,400},{512,384},{480,360},{400,300},{320,240},{320,200},{0,0}
|
|
|
|
};
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_Rect **modes;
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION > 1 || SDL_MINOR_VERSION > 2)
|
|
|
|
SDL_PixelFormat pf = { NULL, 8, 1, 0,0,0,0, 0,0,0,0, 0,0,0,0 };
|
|
|
|
#else
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_PixelFormat pf = { NULL, 8, 1, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0 };
|
2008-10-20 12:33:29 +00:00
|
|
|
#endif
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i, j, maxx=0, maxy=0;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (modeschecked) return;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
validmodecnt=0;
|
2008-07-10 02:45:24 +00:00
|
|
|
// initprintf("Detecting video modes:\n");
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#define ADDMODE(x,y,c,f) if (validmodecnt<MAXVALIDMODES) { \
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t mn; \
|
2006-04-13 20:47:06 +00:00
|
|
|
for(mn=0;mn<validmodecnt;mn++) \
|
|
|
|
if (validmode[mn].xdim==x && validmode[mn].ydim==y && \
|
|
|
|
validmode[mn].bpp==c && validmode[mn].fs==f) break; \
|
|
|
|
if (mn==validmodecnt) { \
|
|
|
|
validmode[validmodecnt].xdim=x; \
|
|
|
|
validmode[validmodecnt].ydim=y; \
|
|
|
|
validmode[validmodecnt].bpp=c; \
|
|
|
|
validmode[validmodecnt].fs=f; \
|
|
|
|
validmodecnt++; \
|
2008-07-10 02:45:24 +00:00
|
|
|
/*initprintf(" - %dx%d %d-bit %s\n", x, y, c, (f&1)?"fullscreen":"windowed");*/ \
|
2006-04-13 20:47:06 +00:00
|
|
|
} \
|
2006-11-13 23:12:47 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#define CHECK(w,h) if ((w < maxx) && (h < maxy))
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
// do fullscreen modes first
|
2006-11-17 05:05:16 +00:00
|
|
|
for (j=0; cdepths[j]; j++)
|
|
|
|
{
|
2006-07-01 01:40:18 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
if (nogl && cdepths[j] > 8) continue;
|
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
pf.BitsPerPixel = cdepths[j];
|
|
|
|
pf.BytesPerPixel = cdepths[j] >> 3;
|
|
|
|
|
2009-02-19 16:47:54 +00:00
|
|
|
modes = SDL_ListModes(&pf, SURFACE_FLAGS
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3)
|
2009-02-19 16:47:54 +00:00
|
|
|
| SDL_FULLSCREEN // not implemented/working in SDL 1.3 SDL_compat.c
|
2008-10-20 12:33:29 +00:00
|
|
|
#endif
|
2009-02-19 16:47:54 +00:00
|
|
|
);
|
2008-10-24 09:20:38 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (modes == (SDL_Rect **)0)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (cdepths[j] > 8) cdepths[j] = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (modes == (SDL_Rect **)-1)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
for (i=0; defaultres[i][0]; i++)
|
|
|
|
ADDMODE(defaultres[i][0],defaultres[i][1],cdepths[j],1)
|
2009-02-19 16:47:54 +00:00
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i=0; modes[i]; i++)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if ((modes[i]->w > MAXXDIM) || (modes[i]->h > MAXYDIM)) continue;
|
|
|
|
|
|
|
|
ADDMODE(modes[i]->w, modes[i]->h, cdepths[j], 1)
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if ((modes[i]->w > maxx) && (modes[i]->h > maxy))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
maxx = modes[i]->w;
|
|
|
|
maxy = modes[i]->h;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (maxx == 0 && maxy == 0)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
initprintf("No fullscreen modes available!\n");
|
|
|
|
maxx = MAXXDIM; maxy = MAXYDIM;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add windowed modes next
|
2006-11-17 05:05:16 +00:00
|
|
|
for (j=0; cdepths[j]; j++)
|
|
|
|
{
|
2006-07-01 01:40:18 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
if (nogl && cdepths[j] > 8) continue;
|
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
if (cdepths[j] < 0) continue;
|
|
|
|
for (i=0; defaultres[i][0]; i++)
|
|
|
|
CHECK(defaultres[i][0],defaultres[i][1])
|
|
|
|
ADDMODE(defaultres[i][0],defaultres[i][1],cdepths[j],0)
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#undef CHECK
|
|
|
|
#undef ADDMODE
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
qsort((void*)validmode, validmodecnt, sizeof(struct validmode_t), (int32_t(*)(const void*,const void*))sortmodes);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
modeschecked=1;
|
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
|
|
|
|
if (*x < 320) *x = 320;
|
|
|
|
if (*y < 200) *y = 200;
|
|
|
|
if (*x > MAXXDIM) *x = MAXXDIM;
|
|
|
|
if (*y > MAXYDIM) *y = MAXYDIM;
|
2008-10-24 09:20:38 +00:00
|
|
|
// *x &= 0xfffffff8l;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
for (i=0; i<validmodecnt; i++)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (validmode[i].bpp != c) continue;
|
|
|
|
if (validmode[i].fs != fs) continue;
|
|
|
|
dx = klabs(validmode[i].xdim - *x);
|
|
|
|
dy = klabs(validmode[i].ydim - *y);
|
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;
|
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
if ((dx <= odx) && (dy <= ody))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
nearest = i;
|
|
|
|
odx = dx; ody = dy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// no mode that will match (eg. if no fullscreen modes)
|
|
|
|
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
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return nearest; // JBF 20031206: Returns the mode number
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// setvideomode() -- set SDL video mode
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t setvideomode(int32_t x, int32_t y, int32_t c, int32_t fs)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t regrab = 0;
|
|
|
|
static int32_t warnonce = 0;
|
2008-12-01 10:44:18 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3)
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t ovsync = 1;
|
2008-12-01 10:44:18 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if ((fs == fullscreen) && (x == xres) && (y == yres) && (c == bpp) &&
|
2006-11-17 05:05:16 +00:00
|
|
|
!videomodereset)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
OSD_ResizeDisplay(xres,yres);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
if (checkvideomode(&x,&y,c,fs,0) < 0) return -1;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_close();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (mouseacquired)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
regrab = 1;
|
|
|
|
grabmouse(0);
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (lockcount) while (lockcount) enddrawing();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#if defined(USE_OPENGL)
|
2006-04-24 19:04:22 +00:00
|
|
|
if (bpp > 8 && sdl_surface) polymost_glreset();
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
// restore gamma before we change video modes if it was changed
|
2006-11-17 05:05:16 +00:00
|
|
|
if (sdl_surface && gammabrightness)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_SetGammaRamp(sysgamma[0], sysgamma[1], sysgamma[2]);
|
|
|
|
gammabrightness = 0; // redetect on next mode switch
|
|
|
|
}
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#if defined(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-11-17 05:05:16 +00:00
|
|
|
struct
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_GLattr attr;
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t value;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
2007-12-12 17:42:14 +00:00
|
|
|
attributes[] =
|
|
|
|
{
|
2006-04-13 20:47:06 +00:00
|
|
|
#if 0
|
2007-12-12 17:42:14 +00:00
|
|
|
{ SDL_GL_RED_SIZE, 8 },
|
|
|
|
{ SDL_GL_GREEN_SIZE, 8 },
|
|
|
|
{ SDL_GL_BLUE_SIZE, 8 },
|
|
|
|
{ SDL_GL_ALPHA_SIZE, 8 },
|
|
|
|
{ SDL_GL_BUFFER_SIZE, c },
|
|
|
|
{ SDL_GL_STENCIL_SIZE, 0 },
|
|
|
|
{ SDL_GL_ACCUM_RED_SIZE, 0 },
|
|
|
|
{ SDL_GL_ACCUM_GREEN_SIZE, 0 },
|
|
|
|
{ SDL_GL_ACCUM_BLUE_SIZE, 0 },
|
|
|
|
{ SDL_GL_ACCUM_ALPHA_SIZE, 0 },
|
|
|
|
{ SDL_GL_DEPTH_SIZE, 24 },
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2007-12-12 17:42:14 +00:00
|
|
|
{ SDL_GL_DOUBLEBUFFER, 1 },
|
|
|
|
{ SDL_GL_MULTISAMPLEBUFFERS, glmultisample > 0 },
|
|
|
|
{ SDL_GL_MULTISAMPLESAMPLES, glmultisample },
|
2008-04-06 23:35:48 +00:00
|
|
|
{ SDL_GL_STENCIL_SIZE, 1 },
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3)
|
2008-07-22 21:56:28 +00:00
|
|
|
{ SDL_GL_SWAP_CONTROL, vsync },
|
2008-10-20 12:33:29 +00:00
|
|
|
#endif
|
2007-12-12 17:42:14 +00:00
|
|
|
};
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
if (nogl) return -1;
|
|
|
|
|
|
|
|
initprintf("Setting video mode %dx%d (%d-bpp %s)\n",
|
|
|
|
x,y,c, ((fs&1) ? "fullscreen" : "windowed"));
|
2006-11-17 05:05:16 +00:00
|
|
|
do
|
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
for (i=0; i < (int32_t)(sizeof(attributes)/sizeof(attributes[0])); i++)
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
j = attributes[i].value;
|
|
|
|
if (!multisamplecheck &&
|
|
|
|
(attributes[i].attr == SDL_GL_MULTISAMPLEBUFFERS ||
|
|
|
|
attributes[i].attr == SDL_GL_MULTISAMPLESAMPLES)
|
2006-11-17 05:05:16 +00:00
|
|
|
)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
SDL_GL_SetAttribute(attributes[i].attr, j);
|
|
|
|
}
|
|
|
|
|
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. */
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3)
|
2008-07-22 21:56:28 +00:00
|
|
|
if (vsync != ovsync)
|
|
|
|
{
|
|
|
|
if (sdl_surface)
|
|
|
|
{
|
|
|
|
SDL_FreeSurface(sdl_surface);
|
2008-07-23 03:56:50 +00:00
|
|
|
sdl_surface = SDL_SetVideoMode(1, 1, 8, SDL_NOFRAME | SURFACE_FLAGS | ((fs&1)?SDL_FULLSCREEN:0));
|
2008-07-22 21:56:28 +00:00
|
|
|
SDL_FreeSurface(sdl_surface);
|
|
|
|
}
|
|
|
|
ovsync = vsync;
|
|
|
|
}
|
2008-10-20 12:33:29 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
sdl_surface = SDL_SetVideoMode(x, y, c, SDL_OPENGL | ((fs&1)?SDL_FULLSCREEN:0));
|
2006-11-17 05:05:16 +00:00
|
|
|
if (!sdl_surface)
|
|
|
|
{
|
|
|
|
if (multisamplecheck)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
initprintf("Multisample mode not possible. Retrying without multisampling.\n");
|
|
|
|
glmultisample = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
initprintf("Unable to set video mode!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
while (multisamplecheck--);
|
|
|
|
}
|
|
|
|
else
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
{
|
|
|
|
initprintf("Setting video mode %dx%d (%d-bpp %s)\n",
|
|
|
|
x,y,c, ((fs&1) ? "fullscreen" : "windowed"));
|
|
|
|
sdl_surface = SDL_SetVideoMode(x, y, c, SURFACE_FLAGS | ((fs&1)?SDL_FULLSCREEN:0));
|
2006-11-17 05:05:16 +00:00
|
|
|
if (!sdl_surface)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
initprintf("Unable to set video mode!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#if 0
|
2006-04-24 19:04:22 +00:00
|
|
|
{
|
|
|
|
char flags[512] = "";
|
2006-04-13 20:47:06 +00:00
|
|
|
#define FLAG(x,y) if ((sdl_surface->flags & x) == x) { strcat(flags, y); strcat(flags, " "); }
|
2006-04-24 19:04:22 +00:00
|
|
|
FLAG(SDL_HWSURFACE, "HWSURFACE") else
|
|
|
|
FLAG(SDL_SWSURFACE, "SWSURFACE")
|
|
|
|
FLAG(SDL_ASYNCBLIT, "ASYNCBLIT")
|
|
|
|
FLAG(SDL_ANYFORMAT, "ANYFORMAT")
|
|
|
|
FLAG(SDL_HWPALETTE, "HWPALETTE")
|
|
|
|
FLAG(SDL_DOUBLEBUF, "DOUBLEBUF")
|
|
|
|
FLAG(SDL_FULLSCREEN, "FULLSCREEN")
|
|
|
|
FLAG(SDL_OPENGL, "OPENGL")
|
|
|
|
FLAG(SDL_OPENGLBLIT, "OPENGLBLIT")
|
|
|
|
FLAG(SDL_RESIZABLE, "RESIZABLE")
|
|
|
|
FLAG(SDL_HWACCEL, "HWACCEL")
|
|
|
|
FLAG(SDL_SRCCOLORKEY, "SRCCOLORKEY")
|
|
|
|
FLAG(SDL_RLEACCEL, "RLEACCEL")
|
|
|
|
FLAG(SDL_SRCALPHA, "SRCALPHA")
|
|
|
|
FLAG(SDL_PREALLOC, "PREALLOC")
|
2006-04-13 20:47:06 +00:00
|
|
|
#undef FLAG
|
2006-04-24 19:04:22 +00:00
|
|
|
initprintf("SDL Surface flags: %s\n", flags);
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
{
|
|
|
|
//static char t[384];
|
|
|
|
//sprintf(t, "%s (%dx%d %s)", apptitle, x, y, ((fs) ? "fullscreen" : "windowed"));
|
|
|
|
SDL_WM_SetCaption(apptitle, 0);
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#ifdef USE_OPENGL
|
2006-11-17 05:05:16 +00:00
|
|
|
if (c > 8)
|
|
|
|
{
|
2006-07-24 02:47:47 +00:00
|
|
|
char *p,*p2,*p3;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2006-07-24 02:47:47 +00:00
|
|
|
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);
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2009-06-28 21:03:50 +00:00
|
|
|
#ifdef POLYMER
|
|
|
|
if (!Bstrcmp(glinfo.vendor,"ATI Technologies Inc.")) {
|
|
|
|
pr_ati_fboworkaround = 1;
|
|
|
|
initprintf("Enabling ATI FBO color attachment workaround.\n");
|
2009-06-28 21:16:11 +00:00
|
|
|
|
|
|
|
if (!Bstrncmp(glinfo.renderer,"Radeon X1", 9)) {
|
|
|
|
pr_ati_nodepthoffset = 1;
|
|
|
|
initprintf("Enabling ATI R520 polygon offset workaround.\n");
|
|
|
|
} else
|
|
|
|
pr_ati_nodepthoffset = 0;
|
2010-01-23 22:12:02 +00:00
|
|
|
#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
|
2009-06-28 21:16:11 +00:00
|
|
|
} else
|
|
|
|
pr_ati_fboworkaround = 0;
|
2009-06-28 21:03:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
glinfo.maxanisotropy = 1.0;
|
|
|
|
glinfo.bgra = 0;
|
|
|
|
glinfo.texcompr = 0;
|
|
|
|
|
|
|
|
// process the extensions string and flag stuff we recognize
|
|
|
|
p = Bstrdup(glinfo.extensions);
|
|
|
|
p3 = p;
|
2006-11-17 05:05:16 +00:00
|
|
|
while ((p2 = Bstrtoken(p3==p?p:NULL, " ", (char**)&p3, 1)) != NULL)
|
|
|
|
{
|
|
|
|
if (!Bstrcmp(p2, "GL_EXT_texture_filter_anisotropic"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// supports anisotropy. get the maximum anisotropy level
|
|
|
|
bglGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &glinfo.maxanisotropy);
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "GL_EXT_texture_edge_clamp") ||
|
|
|
|
!Bstrcmp(p2, "GL_SGIS_texture_edge_clamp"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// supports GL_CLAMP_TO_EDGE or GL_CLAMP_TO_EDGE_SGIS
|
|
|
|
glinfo.clamptoedge = 1;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "GL_EXT_bgra"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// support bgra textures
|
|
|
|
glinfo.bgra = 1;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "GL_ARB_texture_compression"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// support texture compression
|
|
|
|
glinfo.texcompr = 1;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "GL_ARB_texture_non_power_of_two"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// support non-power-of-two texture sizes
|
|
|
|
glinfo.texnpot = 1;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "WGL_3DFX_gamma_control"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// 3dfx cards have issues with fog
|
|
|
|
nofog = 1;
|
|
|
|
if (!(warnonce&1)) initprintf("3dfx card detected: OpenGL fog disabled\n");
|
|
|
|
warnonce |= 1;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "GL_ARB_multisample"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// supports multisampling
|
|
|
|
glinfo.multisample = 1;
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else if (!Bstrcmp(p2, "GL_NV_multisample_filter_hint"))
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
// supports nvidia's multisample hint extension
|
|
|
|
glinfo.nvmultisamplehint = 1;
|
|
|
|
}
|
2007-01-06 01:29:45 +00:00
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_fragment_program"))
|
|
|
|
{
|
|
|
|
glinfo.arbfp = 1;
|
|
|
|
}
|
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_depth_texture"))
|
|
|
|
{
|
|
|
|
glinfo.depthtex = 1;
|
|
|
|
}
|
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_shadow"))
|
|
|
|
{
|
|
|
|
glinfo.shadow = 1;
|
|
|
|
}
|
|
|
|
else if (!Bstrcmp((char *)p2, "GL_EXT_framebuffer_object"))
|
|
|
|
{
|
|
|
|
glinfo.fbos = 1;
|
|
|
|
}
|
|
|
|
else if (!Bstrcmp((char *)p2, "GL_NV_texture_rectangle") ||
|
|
|
|
!Bstrcmp((char *)p2, "GL_EXT_texture_rectangle"))
|
|
|
|
{
|
|
|
|
glinfo.rect = 1;
|
|
|
|
}
|
2007-01-15 09:08:57 +00:00
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_multitexture"))
|
|
|
|
{
|
|
|
|
glinfo.multitex = 1;
|
|
|
|
}
|
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_texture_env_combine"))
|
|
|
|
{
|
|
|
|
glinfo.envcombine = 1;
|
|
|
|
}
|
2007-03-08 03:07:10 +00:00
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_vertex_buffer_object"))
|
|
|
|
{
|
|
|
|
glinfo.vbos = 1;
|
|
|
|
}
|
2009-02-05 08:56:59 +00:00
|
|
|
else if (!Bstrcmp((char *)p2, "GL_EXT_gpu_shader4"))
|
|
|
|
{
|
|
|
|
glinfo.sm4 = 1;
|
|
|
|
}
|
2009-09-30 01:26:13 +00:00
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_occlusion_query"))
|
|
|
|
{
|
|
|
|
glinfo.occlusionqueries = 1;
|
|
|
|
}
|
|
|
|
else if (!Bstrcmp((char *)p2, "GL_ARB_shader_objects"))
|
|
|
|
{
|
|
|
|
glinfo.glsl = 1;
|
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
Bfree(p);
|
2008-02-24 00:46:57 +00:00
|
|
|
|
|
|
|
if (!glinfo.dumped)
|
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t oldbpp = bpp;
|
2008-05-31 03:53:53 +00:00
|
|
|
bpp = 32;
|
2008-02-24 00:46:57 +00:00
|
|
|
osdcmd_glinfo(NULL);
|
2008-05-31 07:27:43 +00:00
|
|
|
glinfo.dumped = 1;
|
2008-05-31 03:53:53 +00:00
|
|
|
bpp = oldbpp;
|
2008-02-24 00:46:57 +00:00
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
xres = x;
|
|
|
|
yres = y;
|
|
|
|
bpp = c;
|
|
|
|
fullscreen = fs;
|
|
|
|
//bytesperline = sdl_surface->pitch;
|
|
|
|
//imageSize = bytesperline*yres;
|
|
|
|
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
|
2006-11-17 05:05:16 +00:00
|
|
|
if (!gammabrightness)
|
|
|
|
{
|
2008-07-19 13:12:20 +00:00
|
|
|
// float f = 1.0 + ((float)curbrightness / 10.0);
|
2006-04-24 19:04:22 +00:00
|
|
|
if (SDL_GetGammaRamp(sysgamma[0], sysgamma[1], sysgamma[2]) >= 0)
|
|
|
|
gammabrightness = 1;
|
|
|
|
|
|
|
|
// see if gamma really is working by trying to set the brightness
|
2008-07-19 13:12:20 +00:00
|
|
|
if (gammabrightness && setgamma() < 0)
|
2006-04-24 19:04:22 +00:00
|
|
|
gammabrightness = 0; // nope
|
|
|
|
}
|
|
|
|
|
|
|
|
// setpalettefade will set the palette according to whether gamma worked
|
|
|
|
setpalettefade(palfadergb.r, palfadergb.g, palfadergb.b, palfadedelta);
|
|
|
|
|
|
|
|
//if (c==8) setpalette(0,256,0);
|
|
|
|
//baselayer_onvideomodechange(c>8);
|
|
|
|
|
|
|
|
if (regrab) grabmouse(1);
|
|
|
|
|
|
|
|
return 0;
|
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)
|
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i,j;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
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;
|
|
|
|
imageSize = 0;
|
|
|
|
modechange = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// lock the frame
|
|
|
|
if (lockcount++ > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (offscreenrendering) return;
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(sdl_surface)) SDL_LockSurface(sdl_surface);
|
2008-02-16 22:27:08 +00:00
|
|
|
frameplace = (intptr_t)sdl_surface->pixels;
|
2006-04-24 19:04:22 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (sdl_surface->pitch != bytesperline || modechange)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
bytesperline = sdl_surface->pitch;
|
|
|
|
imageSize = bytesperline*yres;
|
|
|
|
setvlinebpl(bytesperline);
|
|
|
|
|
|
|
|
j = 0;
|
2009-02-19 16:47:54 +00:00
|
|
|
for (i=0; i<=ydim; i++) ylookup[i] = j, j += bytesperline;
|
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
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (SDL_MUSTLOCK(sdl_surface)) SDL_UnlockSurface(sdl_surface);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// showframe() -- update the display
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
void showframe(int32_t w)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
// int32_t i,j;
|
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)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
bglMatrixMode(GL_PROJECTION);
|
|
|
|
bglPushMatrix();
|
|
|
|
bglLoadIdentity();
|
|
|
|
bglMatrixMode(GL_MODELVIEW);
|
|
|
|
bglPushMatrix();
|
|
|
|
bglLoadIdentity();
|
|
|
|
|
|
|
|
bglDisable(GL_DEPTH_TEST);
|
|
|
|
bglDisable(GL_ALPHA_TEST);
|
|
|
|
bglDisable(GL_TEXTURE_2D);
|
|
|
|
|
|
|
|
bglEnable(GL_BLEND);
|
|
|
|
bglColor4ub(palfadergb.r, palfadergb.g, palfadergb.b, palfadedelta);
|
|
|
|
|
|
|
|
bglBegin(GL_QUADS);
|
|
|
|
bglVertex2i(-1, -1);
|
|
|
|
bglVertex2i(1, -1);
|
|
|
|
bglVertex2i(1, 1);
|
|
|
|
bglVertex2i(-1, 1);
|
|
|
|
bglEnd();
|
|
|
|
|
2009-03-23 14:18:20 +00:00
|
|
|
bglDisable(GL_BLEND);
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
bglMatrixMode(GL_MODELVIEW);
|
|
|
|
bglPopMatrix();
|
|
|
|
bglMatrixMode(GL_PROJECTION);
|
|
|
|
bglPopMatrix();
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_GL_SwapBuffers();
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Flip(sdl_surface);
|
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
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_Color pal[256];
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i,n;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
if (bpp > 8) return 0; // no palette in opengl
|
|
|
|
|
|
|
|
copybuf(curpalettefaded, pal, 256);
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
for (i=start, n=num; n>0; i++, n--)
|
2006-04-24 19:04:22 +00:00
|
|
|
curpalettefaded[i].f = pal[i].unused = 0;
|
|
|
|
|
|
|
|
//return SDL_SetPalette(sdl_surface, SDL_LOGPAL|SDL_PHYSPAL, pal, 0, 256);
|
2009-11-18 01:17:56 +00:00
|
|
|
|
|
|
|
return sdl_surface ? SDL_SetColors(sdl_surface, pal, 0, 256) : 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// getpalette() -- get palette values
|
|
|
|
//
|
|
|
|
/*
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t getpalette(int32_t start, int32_t num, char *dapal)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i;
|
2006-04-13 20:47:06 +00:00
|
|
|
SDL_Palette *pal;
|
|
|
|
|
|
|
|
// we shouldn't need to lock the surface to get the palette
|
|
|
|
pal = sdl_surface->format->palette;
|
|
|
|
|
|
|
|
for (i=num; i>0; i--, start++) {
|
|
|
|
dapal[0] = pal->colors[start].b >> 2;
|
|
|
|
dapal[1] = pal->colors[start].g >> 2;
|
|
|
|
dapal[2] = pal->colors[start].r >> 2;
|
|
|
|
dapal += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// setgamma
|
|
|
|
//
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t setgamma(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t i;
|
|
|
|
uint16_t gammaTable[768];
|
2008-07-20 00:39:06 +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));
|
|
|
|
|
|
|
|
double invgamma = 1 / gamma;
|
|
|
|
double norm = pow(255., invgamma - 1);
|
|
|
|
|
|
|
|
// This formula is taken from Doomsday
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
{
|
|
|
|
double val = i * contrast - (contrast - 1) * 127;
|
|
|
|
if (gamma != 1) val = pow(val, invgamma) / norm;
|
|
|
|
val += bright * 128;
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
gammaTable[i] = gammaTable[i + 256] = gammaTable[i + 512] = (uint16_t)max(0.f,(double)min(0xffff,val*256));
|
2008-07-20 00:39:06 +00:00
|
|
|
}
|
2008-07-19 13:12:20 +00:00
|
|
|
return SDL_SetGammaRamp(&gammaTable[0],&gammaTable[256],&gammaTable[512]);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef __APPLE__
|
|
|
|
extern struct sdlappicon sdlappicon;
|
|
|
|
static SDL_Surface * loadappicon(void)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_Surface *surf;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
surf = SDL_CreateRGBSurfaceFrom((void*)sdlappicon.pixels,
|
|
|
|
sdlappicon.width, sdlappicon.height, 32, sdlappicon.width*4,
|
|
|
|
0xffl,0xff00l,0xff0000l,0xff000000l);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
|
|
static inline void SetKey(int32_t key, int32_t state)
|
|
|
|
{
|
|
|
|
keystatus[remap[key]] = state;
|
|
|
|
|
|
|
|
if (state)
|
|
|
|
{
|
|
|
|
keyfifo[keyfifoend] = remap[key];
|
|
|
|
keyfifo[(keyfifoend+1)&(KEYFIFOSIZ-1)] = state;
|
|
|
|
keyfifoend = ((keyfifoend+2)&(KEYFIFOSIZ-1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t handleevents(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t code, rv=0, j;
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_Event ev;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
while (SDL_PollEvent(&ev))
|
|
|
|
{
|
|
|
|
switch (ev.type)
|
|
|
|
{
|
2008-10-20 12:33:29 +00:00
|
|
|
#if (SDL_MAJOR_VERSION > 1 || SDL_MINOR_VERSION > 2)
|
|
|
|
case SDL_TEXTINPUT:
|
|
|
|
j = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
code = ev.text.text[j];
|
|
|
|
|
|
|
|
if (code != scantoasc[OSD_OSDKey()] && ((keyasciififoend+1)&(KEYFIFOSIZ-1)) != keyasciififoplc)
|
|
|
|
{
|
|
|
|
if (OSD_HandleChar(code))
|
|
|
|
{
|
|
|
|
keyasciififo[keyasciififoend] = code;
|
|
|
|
keyasciififoend = ((keyasciififoend+1)&(KEYFIFOSIZ-1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (j < SDL_TEXTINPUTEVENT_TEXT_SIZE && ev.text.text[++j]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_KEYDOWN:
|
|
|
|
case SDL_KEYUP:
|
|
|
|
code = keytranslation[ev.key.keysym.scancode];
|
|
|
|
// initprintf("got key %d, %d\n",ev.key.keysym.scancode,code);
|
|
|
|
|
|
|
|
// hook in the osd
|
|
|
|
if (OSD_HandleScanCode(code, (ev.key.type == SDL_KEYDOWN)) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ev.key.type == SDL_KEYDOWN)
|
|
|
|
{
|
|
|
|
if (!keystatus[code])
|
|
|
|
{
|
|
|
|
SetKey(code, 1);
|
|
|
|
if (keypresscallback)
|
2008-10-24 09:20:38 +00:00
|
|
|
keypresscallback(code, 1);
|
2008-10-20 12:33:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetKey(code, 0);
|
|
|
|
if (keypresscallback)
|
2008-10-24 09:20:38 +00:00
|
|
|
keypresscallback(code, 0);
|
2008-10-20 12:33:29 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SDL_WINDOWEVENT:
|
|
|
|
switch (ev.window.event)
|
|
|
|
{
|
|
|
|
case SDL_WINDOWEVENT_FOCUS_GAINED:
|
|
|
|
appactive = 1;
|
|
|
|
#ifndef DEBUGGINGAIDS
|
|
|
|
if (mouseacquired && moustat)
|
|
|
|
{
|
|
|
|
SDL_WM_GrabInput(SDL_GRAB_ON);
|
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case SDL_WINDOWEVENT_FOCUS_LOST:
|
|
|
|
appactive = 0;
|
|
|
|
#ifndef DEBUGGINGAIDS
|
|
|
|
if (mouseacquired && moustat)
|
|
|
|
{
|
|
|
|
SDL_WM_GrabInput(SDL_GRAB_OFF);
|
|
|
|
SDL_ShowCursor(SDL_ENABLE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2008-10-22 04:14:30 +00:00
|
|
|
/*
|
|
|
|
case SDL_MOUSEWHEEL:
|
|
|
|
initprintf("wheel y %d\n",ev.wheel.y);
|
|
|
|
if (ev.wheel.y > 0)
|
|
|
|
{
|
|
|
|
mwheelup = totalclock;
|
|
|
|
mouseb |= 16;
|
|
|
|
if (mousepresscallback)
|
|
|
|
mousepresscallback(5, 1);
|
|
|
|
}
|
|
|
|
if (ev.wheel.y < 0)
|
|
|
|
{
|
|
|
|
mwheeldown = totalclock;
|
|
|
|
mouseb |= 32;
|
|
|
|
if (mousepresscallback)
|
|
|
|
mousepresscallback(6, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
*/
|
2008-10-20 12:33:29 +00:00
|
|
|
#else
|
2006-04-24 19:04:22 +00:00
|
|
|
case SDL_KEYDOWN:
|
|
|
|
case SDL_KEYUP:
|
|
|
|
code = keytranslation[ev.key.keysym.sym];
|
|
|
|
|
2008-07-07 12:35:21 +00:00
|
|
|
if (code != OSD_OSDKey() && ev.key.keysym.unicode != 0 && ev.key.type == SDL_KEYDOWN &&
|
2006-04-24 19:04:22 +00:00
|
|
|
(ev.key.keysym.unicode & 0xff80) == 0 &&
|
2006-11-17 05:05:16 +00:00
|
|
|
((keyasciififoend+1)&(KEYFIFOSIZ-1)) != keyasciififoplc)
|
|
|
|
{
|
2008-07-05 09:12:36 +00:00
|
|
|
if (OSD_HandleChar(ev.key.keysym.unicode & 0x7f))
|
2008-07-04 02:13:48 +00:00
|
|
|
{
|
|
|
|
keyasciififo[keyasciififoend] = ev.key.keysym.unicode & 0x7f;
|
|
|
|
keyasciififoend = ((keyasciififoend+1)&(KEYFIFOSIZ-1));
|
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// hook in the osd
|
2008-07-02 01:32:53 +00:00
|
|
|
if (OSD_HandleScanCode(code, (ev.key.type == SDL_KEYDOWN)) == 0)
|
2006-04-24 19:04:22 +00:00
|
|
|
break;
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (ev.key.type == SDL_KEYDOWN)
|
|
|
|
{
|
|
|
|
if (!keystatus[code])
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SetKey(code, 1);
|
|
|
|
if (keypresscallback)
|
2008-10-24 09:20:38 +00:00
|
|
|
keypresscallback(code, 1);
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SetKey(code, 0);
|
|
|
|
if (keypresscallback)
|
2008-10-24 09:20:38 +00:00
|
|
|
keypresscallback(code, 0);
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_ACTIVEEVENT:
|
2006-11-17 05:05:16 +00:00
|
|
|
if (ev.active.state & SDL_APPINPUTFOCUS)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
appactive = ev.active.gain;
|
2006-11-19 01:28:51 +00:00
|
|
|
#ifndef DEBUGGINGAIDS
|
2006-11-17 05:05:16 +00:00
|
|
|
if (mouseacquired && moustat)
|
|
|
|
{
|
|
|
|
if (appactive)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_WM_GrabInput(SDL_GRAB_ON);
|
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
2006-11-17 05:05:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
SDL_WM_GrabInput(SDL_GRAB_OFF);
|
|
|
|
SDL_ShowCursor(SDL_ENABLE);
|
|
|
|
}
|
|
|
|
}
|
2006-11-19 01:28:51 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
rv=-1;
|
|
|
|
}
|
|
|
|
break;
|
2008-10-20 12:33:29 +00:00
|
|
|
#endif
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
2006-11-17 05:05:16 +00:00
|
|
|
switch (ev.button.button)
|
|
|
|
{
|
2008-10-20 04:00:00 +00:00
|
|
|
// some of these get reordered to match winlayer
|
2008-10-20 03:09:19 +00:00
|
|
|
default:
|
2008-10-20 12:33:29 +00:00
|
|
|
j = -1; break;
|
2006-11-13 23:12:47 +00:00
|
|
|
case SDL_BUTTON_LEFT:
|
|
|
|
j = 0; break;
|
|
|
|
case SDL_BUTTON_RIGHT:
|
|
|
|
j = 1; break;
|
|
|
|
case SDL_BUTTON_MIDDLE:
|
|
|
|
j = 2; break;
|
2008-10-18 12:37:26 +00:00
|
|
|
case SDL_BUTTON_WHEELUP:
|
|
|
|
case SDL_BUTTON_WHEELDOWN:
|
2006-11-13 23:12:47 +00:00
|
|
|
j = ev.button.button; break;
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
if (j<0) break;
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (ev.button.state == SDL_PRESSED)
|
|
|
|
{
|
|
|
|
if (ev.button.button == SDL_BUTTON_WHEELUP)
|
|
|
|
{
|
2006-08-07 06:18:57 +00:00
|
|
|
mwheelup = totalclock;
|
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
if (ev.button.button == SDL_BUTTON_WHEELDOWN)
|
|
|
|
{
|
2006-08-07 06:18:57 +00:00
|
|
|
mwheeldown = totalclock;
|
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
mouseb |= (1<<j);
|
2006-08-07 06:18:57 +00:00
|
|
|
}
|
2006-11-17 05:05:16 +00:00
|
|
|
else
|
|
|
|
{
|
2008-10-18 12:37:26 +00:00
|
|
|
if (j != SDL_BUTTON_WHEELUP && j != SDL_BUTTON_WHEELDOWN)
|
|
|
|
mouseb &= ~(1<<j);
|
2006-08-07 06:18:57 +00:00
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
if (mousepresscallback)
|
|
|
|
mousepresscallback(j+1, ev.button.state == SDL_PRESSED);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_MOUSEMOTION:
|
2006-11-17 05:05:16 +00:00
|
|
|
if (appactive)
|
|
|
|
{
|
2007-12-12 17:42:14 +00:00
|
|
|
mousex += ev.motion.xrel;
|
|
|
|
mousey += ev.motion.yrel;
|
2006-04-24 19:04:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_JOYAXISMOTION:
|
|
|
|
if (appactive && ev.jaxis.axis < joynumaxes)
|
|
|
|
joyaxis[ ev.jaxis.axis ] = ev.jaxis.value * 10000 / 32767;
|
|
|
|
break;
|
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
case SDL_JOYHATMOTION:
|
|
|
|
{
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t hatvals[16] =
|
2007-12-12 17:42:14 +00:00
|
|
|
{
|
|
|
|
-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
|
|
|
|
};
|
2006-11-13 23:12:47 +00:00
|
|
|
if (appactive && ev.jhat.hat < joynumhats)
|
|
|
|
joyhat[ ev.jhat.hat ] = hatvals[ ev.jhat.value & 15 ];
|
|
|
|
break;
|
|
|
|
}
|
2006-04-24 19:04:22 +00:00
|
|
|
|
|
|
|
case SDL_JOYBUTTONDOWN:
|
|
|
|
case SDL_JOYBUTTONUP:
|
2006-11-17 05:05:16 +00:00
|
|
|
if (appactive && ev.jbutton.button < joynumbuttons)
|
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
if (ev.jbutton.state == SDL_PRESSED)
|
|
|
|
joyb |= 1 << ev.jbutton.button;
|
|
|
|
else
|
|
|
|
joyb &= ~(1 << ev.jbutton.button);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_QUIT:
|
|
|
|
quitevent = 1;
|
|
|
|
rv=-1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
//printOSD("Got event (%d)\n", ev.type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sampletimer();
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-11-17 05:05:16 +00:00
|
|
|
if (moustat)
|
|
|
|
{
|
2006-11-19 01:28:51 +00:00
|
|
|
if ((mwheelup) && (mwheelup <= (unsigned)(totalclock - MWHEELTICKS)))
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2006-08-07 06:18:57 +00:00
|
|
|
mouseb &= ~16;
|
|
|
|
mwheelup = 0;
|
|
|
|
}
|
2006-11-19 01:28:51 +00:00
|
|
|
if ((mwheeldown) && (mwheeldown <= (unsigned)(totalclock - MWHEELTICKS)))
|
2006-11-17 05:05:16 +00:00
|
|
|
{
|
2006-08-07 06:18:57 +00:00
|
|
|
mouseb &= ~32;
|
|
|
|
mwheeldown = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-01 01:40:18 +00:00
|
|
|
startwin_idle(NULL);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#undef SetKey
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return rv;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2006-12-12 09:28:37 +00:00
|
|
|
inline void idle(void)
|
2006-12-11 21:56:00 +00:00
|
|
|
{
|
2009-08-05 22:37:48 +00:00
|
|
|
usleep(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void idle_waitevent(void)
|
|
|
|
{
|
|
|
|
SDL_WaitEvent(NULL);
|
2006-12-11 21:56:00 +00:00
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-12-01 10:44:18 +00:00
|
|
|
#if (SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION < 3) // SDL 1.2
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t buildkeytranslationtable(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-24 19:04:22 +00:00
|
|
|
memset(keytranslation,0,sizeof(keytranslation));
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#define MAP(x,y) keytranslation[x] = y
|
2006-04-24 19:04:22 +00:00
|
|
|
MAP(SDLK_BACKSPACE, 0xe);
|
|
|
|
MAP(SDLK_TAB, 0xf);
|
|
|
|
MAP(SDLK_RETURN, 0x1c);
|
|
|
|
MAP(SDLK_PAUSE, 0x59); // 0x1d + 0x45 + 0x9d + 0xc5
|
|
|
|
MAP(SDLK_ESCAPE, 0x1);
|
|
|
|
MAP(SDLK_SPACE, 0x39);
|
|
|
|
MAP(SDLK_EXCLAIM, 0x2); // '1'
|
|
|
|
MAP(SDLK_QUOTEDBL, 0x28); // '''
|
|
|
|
MAP(SDLK_HASH, 0x4); // '3'
|
|
|
|
MAP(SDLK_DOLLAR, 0x5); // '4'
|
|
|
|
MAP(37, 0x6); // '5' <-- where's the keysym SDL guys?
|
|
|
|
MAP(SDLK_AMPERSAND, 0x8); // '7'
|
|
|
|
MAP(SDLK_QUOTE, 0x28); // '''
|
|
|
|
MAP(SDLK_LEFTPAREN, 0xa); // '9'
|
|
|
|
MAP(SDLK_RIGHTPAREN, 0xb); // '0'
|
|
|
|
MAP(SDLK_ASTERISK, 0x9); // '8'
|
|
|
|
MAP(SDLK_PLUS, 0xd); // '='
|
|
|
|
MAP(SDLK_COMMA, 0x33);
|
|
|
|
MAP(SDLK_MINUS, 0xc);
|
|
|
|
MAP(SDLK_PERIOD, 0x34);
|
|
|
|
MAP(SDLK_SLASH, 0x35);
|
|
|
|
MAP(SDLK_0, 0xb);
|
|
|
|
MAP(SDLK_1, 0x2);
|
|
|
|
MAP(SDLK_2, 0x3);
|
|
|
|
MAP(SDLK_3, 0x4);
|
|
|
|
MAP(SDLK_4, 0x5);
|
|
|
|
MAP(SDLK_5, 0x6);
|
|
|
|
MAP(SDLK_6, 0x7);
|
|
|
|
MAP(SDLK_7, 0x8);
|
|
|
|
MAP(SDLK_8, 0x9);
|
|
|
|
MAP(SDLK_9, 0xa);
|
|
|
|
MAP(SDLK_COLON, 0x27);
|
|
|
|
MAP(SDLK_SEMICOLON, 0x27);
|
|
|
|
MAP(SDLK_LESS, 0x33);
|
|
|
|
MAP(SDLK_EQUALS, 0xd);
|
|
|
|
MAP(SDLK_GREATER, 0x34);
|
|
|
|
MAP(SDLK_QUESTION, 0x35);
|
|
|
|
MAP(SDLK_AT, 0x3); // '2'
|
|
|
|
MAP(SDLK_LEFTBRACKET, 0x1a);
|
|
|
|
MAP(SDLK_BACKSLASH, 0x2b);
|
|
|
|
MAP(SDLK_RIGHTBRACKET, 0x1b);
|
|
|
|
MAP(SDLK_CARET, 0x7); // '7'
|
|
|
|
MAP(SDLK_UNDERSCORE, 0xc);
|
|
|
|
MAP(SDLK_BACKQUOTE, 0x29);
|
|
|
|
MAP(SDLK_a, 0x1e);
|
|
|
|
MAP(SDLK_b, 0x30);
|
|
|
|
MAP(SDLK_c, 0x2e);
|
|
|
|
MAP(SDLK_d, 0x20);
|
|
|
|
MAP(SDLK_e, 0x12);
|
|
|
|
MAP(SDLK_f, 0x21);
|
|
|
|
MAP(SDLK_g, 0x22);
|
|
|
|
MAP(SDLK_h, 0x23);
|
|
|
|
MAP(SDLK_i, 0x17);
|
|
|
|
MAP(SDLK_j, 0x24);
|
|
|
|
MAP(SDLK_k, 0x25);
|
|
|
|
MAP(SDLK_l, 0x26);
|
|
|
|
MAP(SDLK_m, 0x32);
|
|
|
|
MAP(SDLK_n, 0x31);
|
|
|
|
MAP(SDLK_o, 0x18);
|
|
|
|
MAP(SDLK_p, 0x19);
|
|
|
|
MAP(SDLK_q, 0x10);
|
|
|
|
MAP(SDLK_r, 0x13);
|
|
|
|
MAP(SDLK_s, 0x1f);
|
|
|
|
MAP(SDLK_t, 0x14);
|
|
|
|
MAP(SDLK_u, 0x16);
|
|
|
|
MAP(SDLK_v, 0x2f);
|
|
|
|
MAP(SDLK_w, 0x11);
|
|
|
|
MAP(SDLK_x, 0x2d);
|
|
|
|
MAP(SDLK_y, 0x15);
|
|
|
|
MAP(SDLK_z, 0x2c);
|
|
|
|
MAP(SDLK_DELETE, 0xd3);
|
|
|
|
MAP(SDLK_KP0, 0x52);
|
|
|
|
MAP(SDLK_KP1, 0x4f);
|
|
|
|
MAP(SDLK_KP2, 0x50);
|
|
|
|
MAP(SDLK_KP3, 0x51);
|
|
|
|
MAP(SDLK_KP4, 0x4b);
|
|
|
|
MAP(SDLK_KP5, 0x4c);
|
|
|
|
MAP(SDLK_KP6, 0x4d);
|
|
|
|
MAP(SDLK_KP7, 0x47);
|
|
|
|
MAP(SDLK_KP8, 0x48);
|
|
|
|
MAP(SDLK_KP9, 0x49);
|
|
|
|
MAP(SDLK_KP_PERIOD, 0x53);
|
|
|
|
MAP(SDLK_KP_DIVIDE, 0xb5);
|
|
|
|
MAP(SDLK_KP_MULTIPLY, 0x37);
|
|
|
|
MAP(SDLK_KP_MINUS, 0x4a);
|
|
|
|
MAP(SDLK_KP_PLUS, 0x4e);
|
|
|
|
MAP(SDLK_KP_ENTER, 0x9c);
|
|
|
|
//MAP(SDLK_KP_EQUALS, );
|
|
|
|
MAP(SDLK_UP, 0xc8);
|
|
|
|
MAP(SDLK_DOWN, 0xd0);
|
|
|
|
MAP(SDLK_RIGHT, 0xcd);
|
|
|
|
MAP(SDLK_LEFT, 0xcb);
|
|
|
|
MAP(SDLK_INSERT, 0xd2);
|
|
|
|
MAP(SDLK_HOME, 0xc7);
|
|
|
|
MAP(SDLK_END, 0xcf);
|
|
|
|
MAP(SDLK_PAGEUP, 0xc9);
|
|
|
|
MAP(SDLK_PAGEDOWN, 0xd1);
|
|
|
|
MAP(SDLK_F1, 0x3b);
|
|
|
|
MAP(SDLK_F2, 0x3c);
|
|
|
|
MAP(SDLK_F3, 0x3d);
|
|
|
|
MAP(SDLK_F4, 0x3e);
|
|
|
|
MAP(SDLK_F5, 0x3f);
|
|
|
|
MAP(SDLK_F6, 0x40);
|
|
|
|
MAP(SDLK_F7, 0x41);
|
|
|
|
MAP(SDLK_F8, 0x42);
|
|
|
|
MAP(SDLK_F9, 0x43);
|
|
|
|
MAP(SDLK_F10, 0x44);
|
|
|
|
MAP(SDLK_F11, 0x57);
|
|
|
|
MAP(SDLK_F12, 0x58);
|
|
|
|
MAP(SDLK_NUMLOCK, 0x45);
|
|
|
|
MAP(SDLK_CAPSLOCK, 0x3a);
|
|
|
|
MAP(SDLK_SCROLLOCK, 0x46);
|
|
|
|
MAP(SDLK_RSHIFT, 0x36);
|
|
|
|
MAP(SDLK_LSHIFT, 0x2a);
|
|
|
|
MAP(SDLK_RCTRL, 0x9d);
|
|
|
|
MAP(SDLK_LCTRL, 0x1d);
|
|
|
|
MAP(SDLK_RALT, 0xb8);
|
|
|
|
MAP(SDLK_LALT, 0x38);
|
|
|
|
MAP(SDLK_LSUPER, 0xdb); // win l
|
|
|
|
MAP(SDLK_RSUPER, 0xdc); // win r
|
|
|
|
MAP(SDLK_PRINT, -2); // 0xaa + 0xb7
|
|
|
|
MAP(SDLK_SYSREQ, 0x54); // alt+printscr
|
|
|
|
MAP(SDLK_BREAK, 0xb7); // ctrl+pause
|
|
|
|
MAP(SDLK_MENU, 0xdd); // win menu?
|
2006-04-13 20:47:06 +00:00
|
|
|
#undef MAP
|
|
|
|
|
2006-04-24 19:04:22 +00:00
|
|
|
return 0;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
2008-10-20 12:33:29 +00:00
|
|
|
#else // SDL 1.3
|
2009-01-09 09:29:17 +00:00
|
|
|
static int32_t buildkeytranslationtable(void)
|
2008-10-22 04:14:30 +00:00
|
|
|
{
|
|
|
|
memset(keytranslation,0,sizeof(keytranslation));
|
|
|
|
|
|
|
|
#define MAP(x,y) keytranslation[x] = y
|
|
|
|
printf("%d\n",SDL_SCANCODE_BACKSPACE);
|
|
|
|
MAP(SDL_SCANCODE_BACKSPACE, 0xe);
|
|
|
|
MAP(SDL_SCANCODE_TAB, 0xf);
|
|
|
|
MAP(SDL_SCANCODE_RETURN, 0x1c);
|
|
|
|
MAP(SDL_SCANCODE_PAUSE, 0x59); // 0x1d + 0x45 + 0x9d + 0xc5
|
|
|
|
MAP(SDL_SCANCODE_ESCAPE, 0x1);
|
|
|
|
MAP(SDL_SCANCODE_SPACE, 0x39);
|
|
|
|
MAP(SDL_SCANCODE_COMMA, 0x33);
|
|
|
|
MAP(SDL_SCANCODE_MINUS, 0xc);
|
|
|
|
MAP(SDL_SCANCODE_PERIOD, 0x34);
|
|
|
|
MAP(SDL_SCANCODE_SLASH, 0x35);
|
|
|
|
MAP(SDL_SCANCODE_0, 0xb);
|
|
|
|
MAP(SDL_SCANCODE_1, 0x2);
|
|
|
|
MAP(SDL_SCANCODE_2, 0x3);
|
|
|
|
MAP(SDL_SCANCODE_3, 0x4);
|
|
|
|
MAP(SDL_SCANCODE_4, 0x5);
|
|
|
|
MAP(SDL_SCANCODE_5, 0x6);
|
|
|
|
MAP(SDL_SCANCODE_6, 0x7);
|
|
|
|
MAP(SDL_SCANCODE_7, 0x8);
|
|
|
|
MAP(SDL_SCANCODE_8, 0x9);
|
|
|
|
MAP(SDL_SCANCODE_9, 0xa);
|
|
|
|
MAP(SDL_SCANCODE_SEMICOLON, 0x27);
|
|
|
|
MAP(SDL_SCANCODE_EQUALS, 0xd);
|
|
|
|
MAP(SDL_SCANCODE_LEFTBRACKET, 0x1a);
|
|
|
|
MAP(SDL_SCANCODE_BACKSLASH, 0x2b);
|
|
|
|
MAP(SDL_SCANCODE_RIGHTBRACKET, 0x1b);
|
|
|
|
MAP(SDL_SCANCODE_A, 0x1e);
|
|
|
|
MAP(SDL_SCANCODE_B, 0x30);
|
|
|
|
MAP(SDL_SCANCODE_C, 0x2e);
|
|
|
|
MAP(SDL_SCANCODE_D, 0x20);
|
|
|
|
MAP(SDL_SCANCODE_E, 0x12);
|
|
|
|
MAP(SDL_SCANCODE_F, 0x21);
|
|
|
|
MAP(SDL_SCANCODE_G, 0x22);
|
|
|
|
MAP(SDL_SCANCODE_H, 0x23);
|
|
|
|
MAP(SDL_SCANCODE_I, 0x17);
|
|
|
|
MAP(SDL_SCANCODE_J, 0x24);
|
|
|
|
MAP(SDL_SCANCODE_K, 0x25);
|
|
|
|
MAP(SDL_SCANCODE_L, 0x26);
|
|
|
|
MAP(SDL_SCANCODE_M, 0x32);
|
|
|
|
MAP(SDL_SCANCODE_N, 0x31);
|
|
|
|
MAP(SDL_SCANCODE_O, 0x18);
|
|
|
|
MAP(SDL_SCANCODE_P, 0x19);
|
|
|
|
MAP(SDL_SCANCODE_Q, 0x10);
|
|
|
|
MAP(SDL_SCANCODE_R, 0x13);
|
|
|
|
MAP(SDL_SCANCODE_S, 0x1f);
|
|
|
|
MAP(SDL_SCANCODE_T, 0x14);
|
|
|
|
MAP(SDL_SCANCODE_U, 0x16);
|
|
|
|
MAP(SDL_SCANCODE_V, 0x2f);
|
|
|
|
MAP(SDL_SCANCODE_W, 0x11);
|
|
|
|
MAP(SDL_SCANCODE_X, 0x2d);
|
|
|
|
MAP(SDL_SCANCODE_Y, 0x15);
|
|
|
|
MAP(SDL_SCANCODE_Z, 0x2c);
|
|
|
|
MAP(SDL_SCANCODE_DELETE, 0xd3);
|
|
|
|
MAP(SDL_SCANCODE_KP_0, 0x52);
|
|
|
|
MAP(SDL_SCANCODE_KP_1, 0x4f);
|
|
|
|
MAP(SDL_SCANCODE_KP_2, 0x50);
|
|
|
|
MAP(SDL_SCANCODE_KP_3, 0x51);
|
|
|
|
MAP(SDL_SCANCODE_KP_4, 0x4b);
|
|
|
|
MAP(SDL_SCANCODE_KP_5, 0x4c);
|
|
|
|
MAP(SDL_SCANCODE_KP_6, 0x4d);
|
|
|
|
MAP(SDL_SCANCODE_KP_7, 0x47);
|
|
|
|
MAP(SDL_SCANCODE_KP_8, 0x48);
|
|
|
|
MAP(SDL_SCANCODE_KP_9, 0x49);
|
|
|
|
MAP(SDL_SCANCODE_KP_PERIOD, 0x53);
|
|
|
|
MAP(SDL_SCANCODE_KP_DIVIDE, 0xb5);
|
|
|
|
MAP(SDL_SCANCODE_KP_MULTIPLY, 0x37);
|
|
|
|
MAP(SDL_SCANCODE_KP_MINUS, 0x4a);
|
|
|
|
MAP(SDL_SCANCODE_KP_PLUS, 0x4e);
|
|
|
|
MAP(SDL_SCANCODE_KP_ENTER, 0x9c);
|
|
|
|
//MAP(SDL_SCANCODE_KP_EQUALS, );
|
|
|
|
MAP(SDL_SCANCODE_UP, 0xc8);
|
|
|
|
MAP(SDL_SCANCODE_DOWN, 0xd0);
|
|
|
|
MAP(SDL_SCANCODE_RIGHT, 0xcd);
|
|
|
|
MAP(SDL_SCANCODE_LEFT, 0xcb);
|
|
|
|
MAP(SDL_SCANCODE_INSERT, 0xd2);
|
|
|
|
MAP(SDL_SCANCODE_HOME, 0xc7);
|
|
|
|
MAP(SDL_SCANCODE_END, 0xcf);
|
|
|
|
MAP(SDL_SCANCODE_PAGEUP, 0xc9);
|
|
|
|
MAP(SDL_SCANCODE_PAGEDOWN, 0xd1);
|
|
|
|
MAP(SDL_SCANCODE_F1, 0x3b);
|
|
|
|
MAP(SDL_SCANCODE_F2, 0x3c);
|
|
|
|
MAP(SDL_SCANCODE_F3, 0x3d);
|
|
|
|
MAP(SDL_SCANCODE_F4, 0x3e);
|
|
|
|
MAP(SDL_SCANCODE_F5, 0x3f);
|
|
|
|
MAP(SDL_SCANCODE_F6, 0x40);
|
|
|
|
MAP(SDL_SCANCODE_F7, 0x41);
|
|
|
|
MAP(SDL_SCANCODE_F8, 0x42);
|
|
|
|
MAP(SDL_SCANCODE_F9, 0x43);
|
|
|
|
MAP(SDL_SCANCODE_F10, 0x44);
|
|
|
|
MAP(SDL_SCANCODE_F11, 0x57);
|
|
|
|
MAP(SDL_SCANCODE_F12, 0x58);
|
|
|
|
MAP(SDL_SCANCODE_NUMLOCKCLEAR, 0x45);
|
|
|
|
MAP(SDL_SCANCODE_CAPSLOCK, 0x3a);
|
|
|
|
MAP(SDL_SCANCODE_SCROLLLOCK, 0x46);
|
|
|
|
MAP(SDL_SCANCODE_RSHIFT, 0x36);
|
|
|
|
MAP(SDL_SCANCODE_LSHIFT, 0x2a);
|
|
|
|
MAP(SDL_SCANCODE_RCTRL, 0x9d);
|
|
|
|
MAP(SDL_SCANCODE_LCTRL, 0x1d);
|
|
|
|
MAP(SDL_SCANCODE_RALT, 0xb8);
|
|
|
|
MAP(SDL_SCANCODE_LALT, 0x38);
|
|
|
|
MAP(SDL_SCANCODE_LGUI, 0xdb); // win l
|
|
|
|
MAP(SDL_SCANCODE_RGUI, 0xdc); // win r
|
|
|
|
MAP(SDL_SCANCODE_PRINTSCREEN, -2); // 0xaa + 0xb7
|
|
|
|
MAP(SDL_SCANCODE_SYSREQ, 0x54); // alt+printscr
|
|
|
|
MAP(SDL_SCANCODE_PAUSE, 0xb7); // ctrl+pause
|
|
|
|
MAP(SDL_SCANCODE_MENU, 0xdd); // win menu?
|
|
|
|
MAP(SDL_SCANCODE_GRAVE, 0x29); // tilde
|
|
|
|
#undef MAP
|
2007-10-24 07:12:50 +00:00
|
|
|
|
2008-10-20 12:33:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2007-10-24 07:12:50 +00:00
|
|
|
#if defined _WIN32
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# include <windows.h>
|
2010-01-23 22:12:02 +00:00
|
|
|
#elif defined __linux || defined __FreeBSD__ || defined __NetBSD__ || defined __OpenBSD__ || defined __APPLE__
|
2007-10-24 07:12:50 +00:00
|
|
|
# include <sys/mman.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void makeasmwriteable(void)
|
|
|
|
{
|
|
|
|
#ifndef ENGINE_USING_A_C
|
2009-01-09 09:29:17 +00:00
|
|
|
extern int32_t dep_begin, dep_end;
|
2007-10-24 07:12:50 +00:00
|
|
|
# if defined _WIN32
|
2007-12-12 17:42:14 +00:00
|
|
|
DWORD oldprot;
|
|
|
|
if (!VirtualProtect((LPVOID)&dep_begin, (SIZE_T)&dep_end - (SIZE_T)&dep_begin, PAGE_EXECUTE_READWRITE, &oldprot))
|
|
|
|
{
|
|
|
|
initprint("Error making code writeable\n");
|
|
|
|
return;
|
|
|
|
}
|
2010-01-23 22:12:02 +00:00
|
|
|
# elif defined __linux || defined __FreeBSD__ || defined __NetBSD__ || defined __OpenBSD__ || defined __APPLE__
|
2009-01-09 09:29:17 +00:00
|
|
|
int32_t pagesize;
|
2007-12-12 17:42:14 +00:00
|
|
|
size_t dep_begin_page;
|
|
|
|
pagesize = sysconf(_SC_PAGE_SIZE);
|
|
|
|
if (pagesize == -1)
|
|
|
|
{
|
|
|
|
initprintf("Error getting system page size\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dep_begin_page = ((size_t)&dep_begin) & ~(pagesize-1);
|
2008-03-21 04:01:38 +00:00
|
|
|
if (mprotect((void *)dep_begin_page, (size_t)&dep_end - dep_begin_page, PROT_READ|PROT_WRITE) < 0)
|
2007-12-12 17:42:14 +00:00
|
|
|
{
|
|
|
|
initprintf("Error making code writeable (errno=%d)\n", errno);
|
|
|
|
return;
|
|
|
|
}
|
2007-10-24 07:12:50 +00:00
|
|
|
# else
|
2008-03-21 04:01:38 +00:00
|
|
|
# error "Don't know how to unprotect the self-modifying assembly on this platform!"
|
2007-10-24 07:12:50 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|