2001-09-04 22:53:46 +00:00
|
|
|
/*
|
|
|
|
SDL - Simple DirectMedia Layer
|
2011-02-11 22:37:15 -08:00
|
|
|
Copyright (C) 1997-2011 Sam Lantinga
|
2001-09-04 22:53:46 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2006-02-01 06:32:25 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2001-09-04 22:53:46 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2006-02-01 06:32:25 +00:00
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2001-09-04 22:53:46 +00:00
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2006-02-01 06:32:25 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-09-04 22:53:46 +00:00
|
|
|
|
2006-02-01 06:32:25 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-09-04 22:53:46 +00:00
|
|
|
|
|
|
|
Sam Lantinga
|
2001-12-14 12:38:15 +00:00
|
|
|
slouken@libsdl.org
|
2011-02-05 16:07:10 -08:00
|
|
|
|
|
|
|
SDL1.3 DirectFB driver by couriersud@arcor.de
|
|
|
|
|
2001-09-04 22:53:46 +00:00
|
|
|
*/
|
2011-02-05 16:07:10 -08:00
|
|
|
|
2006-02-21 08:46:50 +00:00
|
|
|
#include "SDL_config.h"
|
2001-09-04 22:53:46 +00:00
|
|
|
|
|
|
|
#ifndef _SDL_DirectFB_video_h
|
|
|
|
#define _SDL_DirectFB_video_h
|
|
|
|
|
|
|
|
#include <directfb.h>
|
2007-08-11 21:51:19 +00:00
|
|
|
#include <directfb_version.h>
|
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#include "../SDL_sysvideo.h"
|
|
|
|
#include "SDL_scancode.h"
|
|
|
|
#include "SDL_render.h"
|
2007-08-11 21:51:19 +00:00
|
|
|
|
2009-01-13 21:17:38 +00:00
|
|
|
#define DFB_VERSIONNUM(X, Y, Z) \
|
|
|
|
((X)*1000 + (Y)*100 + (Z))
|
|
|
|
|
|
|
|
#define DFB_COMPILEDVERSION \
|
|
|
|
DFB_VERSIONNUM(DIRECTFB_MAJOR_VERSION, DIRECTFB_MINOR_VERSION, DIRECTFB_MICRO_VERSION)
|
|
|
|
|
|
|
|
#define DFB_VERSION_ATLEAST(X, Y, Z) \
|
|
|
|
(DFB_COMPILEDVERSION >= DFB_VERSIONNUM(X, Y, Z))
|
2007-08-11 21:51:19 +00:00
|
|
|
|
2009-01-13 21:17:38 +00:00
|
|
|
#if (DFB_VERSION_ATLEAST(1,0,0))
|
2009-01-14 04:25:32 +00:00
|
|
|
#define SDL_DIRECTFB_OPENGL 1
|
2009-01-13 21:17:38 +00:00
|
|
|
#else
|
2009-01-14 04:25:32 +00:00
|
|
|
#error "SDL_DIRECTFB: Please compile against libdirectfb version >= 1.0.0"
|
2007-08-11 21:51:19 +00:00
|
|
|
#endif
|
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
/* Set below to 1 to compile with (old) multi mice/keyboard api. Code left in
|
|
|
|
* in case we see this again ...
|
|
|
|
*/
|
2001-09-04 22:53:46 +00:00
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#define USE_MULTI_API (0)
|
|
|
|
|
|
|
|
/* Support for LUT8/INDEX8 pixel format.
|
|
|
|
* This is broken in DirectFB 1.4.3. It works in 1.4.0 and 1.4.5
|
|
|
|
* occurred.
|
2008-08-31 16:04:32 +00:00
|
|
|
*/
|
2011-02-05 16:07:10 -08:00
|
|
|
|
|
|
|
#if (DFB_COMPILEDVERSION == DFB_VERSIONNUM(1, 4, 3))
|
|
|
|
#define ENABLE_LUT8 (0)
|
|
|
|
#else
|
|
|
|
#define ENABLE_LUT8 (1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DIRECTFB_DEBUG 1
|
|
|
|
#define LOG_CHANNEL stdout
|
2001-09-04 22:53:46 +00:00
|
|
|
|
2009-01-04 23:43:33 +00:00
|
|
|
#define DFBENV_USE_YUV_UNDERLAY "SDL_DIRECTFB_YUV_UNDERLAY" /* Default: off */
|
|
|
|
#define DFBENV_USE_YUV_DIRECT "SDL_DIRECTFB_YUV_DIRECT" /* Default: off */
|
|
|
|
#define DFBENV_USE_X11_CHECK "SDL_DIRECTFB_X11_CHECK" /* Default: on */
|
|
|
|
#define DFBENV_USE_LINUX_INPUT "SDL_DIRECTFB_LINUX_INPUT" /* Default: on */
|
2009-01-14 04:25:32 +00:00
|
|
|
#define DFBENV_USE_WM "SDL_DIRECTFB_WM" /* Default: off */
|
2007-08-11 21:51:19 +00:00
|
|
|
|
2010-08-16 09:04:55 -07:00
|
|
|
#define SDL_DFB_RELEASE(x) do { if ( (x) != NULL ) { SDL_DFB_CHECK(x->Release(x)); x = NULL; } } while (0)
|
2009-01-13 22:59:02 +00:00
|
|
|
#define SDL_DFB_FREE(x) do { if ( (x) != NULL ) { SDL_free(x); x = NULL; } } while (0)
|
|
|
|
#define SDL_DFB_UNLOCK(x) do { if ( (x) != NULL ) { x->Unlock(x); } } while (0)
|
2007-08-11 21:51:19 +00:00
|
|
|
|
|
|
|
#define SDL_DFB_CONTEXT "SDL_DirectFB"
|
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#define SDL_DFB_ERR(x...) \
|
|
|
|
do { \
|
|
|
|
fprintf(LOG_CHANNEL, "%s: %s <%d>:\n\t", \
|
|
|
|
SDL_DFB_CONTEXT, __FILE__, __LINE__ ); \
|
|
|
|
fprintf(LOG_CHANNEL, x ); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#if (DIRECTFB_DEBUG)
|
|
|
|
|
|
|
|
#define SDL_DFB_LOG(x...) \
|
|
|
|
do { \
|
|
|
|
fprintf(LOG_CHANNEL, SDL_DFB_CONTEXT); \
|
|
|
|
fprintf(LOG_CHANNEL, x ); \
|
|
|
|
fprintf(LOG_CHANNEL, "\n"); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define SDL_DFB_DEBUG(x...) SDL_DFB_ERR( x )
|
|
|
|
|
|
|
|
static inline DFBResult sdl_dfb_check(DFBResult ret, const char *src_file, int src_line) {
|
2010-08-16 09:04:55 -07:00
|
|
|
if (ret != DFB_OK) {
|
2011-02-05 16:07:10 -08:00
|
|
|
SDL_DFB_LOG("%s (%d):%s", src_file, src_line, DirectFBErrorString (ret) );
|
|
|
|
SDL_SetError("%s:%s", SDL_DFB_CONTEXT, DirectFBErrorString (ret) );
|
2010-08-16 09:04:55 -07:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#define SDL_DFB_CHECK(x...) do { sdl_dfb_check( x, __FILE__, __LINE__); } while (0)
|
|
|
|
#define SDL_DFB_CHECKERR(x...) do { if ( sdl_dfb_check( x, __FILE__, __LINE__) != DFB_OK ) goto error; } while (0)
|
2010-08-16 09:04:55 -07:00
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#else
|
2010-08-16 09:04:55 -07:00
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#define SDL_DFB_CHECK(x...) x
|
|
|
|
#define SDL_DFB_CHECKERR(x...) do { if (x != DFB_OK ) goto error; } while (0)
|
|
|
|
#define SDL_DFB_LOG(x...) do {} while (0)
|
|
|
|
#define SDL_DFB_DEBUG(x...) do {} while (0)
|
|
|
|
|
|
|
|
#endif
|
2007-08-11 21:51:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define SDL_DFB_CALLOC(r, n, s) \
|
2011-02-05 16:07:10 -08:00
|
|
|
do { \
|
|
|
|
r = SDL_calloc (n, s); \
|
|
|
|
if (!(r)) { \
|
|
|
|
SDL_DFB_ERR("Out of memory"); \
|
|
|
|
SDL_OutOfMemory(); \
|
|
|
|
goto error; \
|
|
|
|
} \
|
2007-08-11 21:51:19 +00:00
|
|
|
} while (0)
|
2001-09-04 22:53:46 +00:00
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
#define SDL_DFB_ALLOC_CLEAR(r, s) SDL_DFB_CALLOC(r, 1, s)
|
|
|
|
|
2001-09-04 22:53:46 +00:00
|
|
|
/* Private display data */
|
|
|
|
|
2009-01-11 23:49:23 +00:00
|
|
|
#define SDL_DFB_DEVICEDATA(dev) DFB_DeviceData *devdata = (dev ? (DFB_DeviceData *) ((dev)->driverdata) : NULL)
|
2007-08-11 21:51:19 +00:00
|
|
|
|
|
|
|
#define DFB_MAX_SCREENS 10
|
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
typedef struct _DFB_KeyboardData DFB_KeyboardData;
|
|
|
|
struct _DFB_KeyboardData
|
|
|
|
{
|
2011-02-07 09:37:11 -08:00
|
|
|
const SDL_Scancode *map; /* keyboard scancode map */
|
2011-02-05 16:07:10 -08:00
|
|
|
int map_size; /* size of map */
|
|
|
|
int map_adjust; /* index adjust */
|
|
|
|
int is_generic; /* generic keyboard */
|
|
|
|
int id;
|
|
|
|
};
|
|
|
|
|
2007-08-11 21:51:19 +00:00
|
|
|
typedef struct _DFB_DeviceData DFB_DeviceData;
|
|
|
|
struct _DFB_DeviceData
|
2001-09-04 22:53:46 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
int initialized;
|
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
IDirectFB *dfb;
|
|
|
|
int num_mice;
|
|
|
|
int mouse_id[0x100];
|
|
|
|
int num_keyboard;
|
|
|
|
DFB_KeyboardData keyboard[10];
|
|
|
|
SDL_Window *firstwin;
|
|
|
|
|
|
|
|
int use_yuv_underlays;
|
|
|
|
int use_yuv_direct;
|
|
|
|
int use_linux_input;
|
|
|
|
int has_own_wm;
|
|
|
|
|
2007-08-11 21:51:19 +00:00
|
|
|
|
2010-08-16 09:04:55 -07:00
|
|
|
/* window grab */
|
2011-02-05 16:07:10 -08:00
|
|
|
SDL_Window *grabbed_window;
|
2001-09-04 22:53:46 +00:00
|
|
|
|
2008-08-31 16:04:32 +00:00
|
|
|
/* global events */
|
|
|
|
IDirectFBEventBuffer *events;
|
2007-08-11 21:51:19 +00:00
|
|
|
};
|
2002-08-31 04:13:28 +00:00
|
|
|
|
2011-02-05 16:07:10 -08:00
|
|
|
Uint32 DirectFB_DFBToSDLPixelFormat(DFBSurfacePixelFormat pixelformat);
|
|
|
|
DFBSurfacePixelFormat DirectFB_SDLToDFBPixelFormat(Uint32 format);
|
|
|
|
void DirectFB_SetSupportedPixelFormats(SDL_RendererInfo *ri);
|
|
|
|
|
|
|
|
|
2001-09-04 22:53:46 +00:00
|
|
|
#endif /* _SDL_DirectFB_video_h */
|