2013-01-08 22:40:58 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
#include <sdl.h>
|
2013-01-22 16:57:47 +08:00
|
|
|
#else
|
|
|
|
#include <SDL/SDL.h>
|
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
#include <rtdevice.h>
|
|
|
|
#include <rtgui/driver.h>
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
#define SDL_SCREEN_WIDTH 480
|
|
|
|
#define SDL_SCREEN_HEIGHT 320
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-02-09 11:24:36 +08:00
|
|
|
extern void rt_hw_exit(void);
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
#define SDL_SCREEN_FORMAT SDL_PIXELFORMAT_RGB565
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
struct sdlfb_device
|
|
|
|
{
|
|
|
|
struct rt_device parent;
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_Renderer *renderer; /* window renderer */
|
|
|
|
SDL_Surface *surface; /* screen surface */
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
rt_uint16_t width;
|
|
|
|
rt_uint16_t height;
|
|
|
|
};
|
|
|
|
struct sdlfb_device _device;
|
|
|
|
|
|
|
|
/* common device interface */
|
|
|
|
static rt_err_t sdlfb_init(rt_device_t dev)
|
|
|
|
{
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
static rt_err_t sdlfb_open(rt_device_t dev, rt_uint16_t oflag)
|
|
|
|
{
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
static rt_err_t sdlfb_close(rt_device_t dev)
|
|
|
|
{
|
|
|
|
SDL_Quit();
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
int sdlfb_info(int *format, int *bpp)
|
|
|
|
{
|
|
|
|
int bit_pp; /* texture bits per pixel */
|
|
|
|
Uint32 Rmask, Gmask, Bmask, Amask; /* masks for pixel format passed into OpenGL */
|
|
|
|
|
|
|
|
/* Grab info about format that will be passed into OpenGL */
|
|
|
|
SDL_PixelFormatEnumToMasks(SDL_SCREEN_FORMAT, &bit_pp, &Rmask, &Gmask,
|
|
|
|
&Bmask, &Amask);
|
|
|
|
|
|
|
|
*bpp = bit_pp;
|
|
|
|
switch (SDL_SCREEN_FORMAT)
|
|
|
|
{
|
|
|
|
case SDL_PIXELFORMAT_RGB565:
|
|
|
|
*format = RTGRAPHIC_PIXEL_FORMAT_RGB565;
|
|
|
|
break;
|
|
|
|
case SDL_PIXELFORMAT_RGB888:
|
|
|
|
*format = RTGRAPHIC_PIXEL_FORMAT_RGB888;
|
|
|
|
break;
|
|
|
|
case SDL_PIXELFORMAT_ARGB8888:
|
|
|
|
*format = RTGRAPHIC_PIXEL_FORMAT_ARGB888;
|
|
|
|
break;
|
|
|
|
case SDL_PIXELFORMAT_ABGR8888:
|
|
|
|
*format = RTGRAPHIC_PIXEL_FORMAT_ABGR888;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
static rt_mutex_t sdllock;
|
2018-03-11 14:35:50 +08:00
|
|
|
static rt_err_t sdlfb_control(rt_device_t dev, int cmd, void *args)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
|
|
|
struct sdlfb_device *device;
|
|
|
|
|
|
|
|
rt_mutex_take(sdllock, RT_WAITING_FOREVER);
|
|
|
|
device = (struct sdlfb_device *)dev;
|
|
|
|
RT_ASSERT(device != RT_NULL);
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case RTGRAPHIC_CTRL_GET_INFO:
|
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
int format, bpp;
|
2013-01-08 22:40:58 +08:00
|
|
|
struct rt_device_graphic_info *info;
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
sdlfb_info(&format, &bpp);
|
2013-01-08 22:40:58 +08:00
|
|
|
info = (struct rt_device_graphic_info *) args;
|
2017-12-16 00:05:23 +08:00
|
|
|
info->bits_per_pixel = bpp;
|
|
|
|
info->pixel_format = format;
|
|
|
|
info->framebuffer = (rt_uint8_t*)device->surface->pixels;
|
|
|
|
info->width = device->width;
|
|
|
|
info->height = device->height;
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
break;
|
2018-01-19 11:42:05 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
case RTGRAPHIC_CTRL_RECT_UPDATE:
|
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_Texture * texture;
|
2013-01-08 22:40:58 +08:00
|
|
|
struct rt_device_rect_info *rect;
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_Rect _rect = { 0, 0, SDL_SCREEN_WIDTH, SDL_SCREEN_HEIGHT };
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
rect = (struct rt_device_rect_info *)args;
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_RenderClear(_device.renderer);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
texture = SDL_CreateTextureFromSurface(_device.renderer, _device.surface);
|
|
|
|
SDL_SetTextureBlendMode(texture, SDL_BLENDMODE_BLEND);
|
|
|
|
SDL_RenderCopy(_device.renderer, texture, NULL, &_rect);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_RenderPresent(_device.renderer);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_DestroyTexture(texture);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RTGRAPHIC_CTRL_SET_MODE:
|
|
|
|
{
|
|
|
|
break;
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rt_mutex_release(sdllock);
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
Uint16 pixels[16 * 16] = { // ...or with raw pixel data:
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0aab, 0x0789, 0x0bcc, 0x0eee, 0x09aa, 0x099a, 0x0ddd,
|
|
|
|
0x0fff, 0x0eee, 0x0899, 0x0fff, 0x0fff, 0x1fff, 0x0dde, 0x0dee,
|
|
|
|
0x0fff, 0xabbc, 0xf779, 0x8cdd, 0x3fff, 0x9bbc, 0xaaab, 0x6fff,
|
|
|
|
0x0fff, 0x3fff, 0xbaab, 0x0fff, 0x0fff, 0x6689, 0x6fff, 0x0dee,
|
|
|
|
0xe678, 0xf134, 0x8abb, 0xf235, 0xf678, 0xf013, 0xf568, 0xf001,
|
|
|
|
0xd889, 0x7abc, 0xf001, 0x0fff, 0x0fff, 0x0bcc, 0x9124, 0x5fff,
|
|
|
|
0xf124, 0xf356, 0x3eee, 0x0fff, 0x7bbc, 0xf124, 0x0789, 0x2fff,
|
|
|
|
0xf002, 0xd789, 0xf024, 0x0fff, 0x0fff, 0x0002, 0x0134, 0xd79a,
|
|
|
|
0x1fff, 0xf023, 0xf000, 0xf124, 0xc99a, 0xf024, 0x0567, 0x0fff,
|
|
|
|
0xf002, 0xe678, 0xf013, 0x0fff, 0x0ddd, 0x0fff, 0x0fff, 0xb689,
|
|
|
|
0x8abb, 0x0fff, 0x0fff, 0xf001, 0xf235, 0xf013, 0x0fff, 0xd789,
|
|
|
|
0xf002, 0x9899, 0xf001, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0xe789,
|
|
|
|
0xf023, 0xf000, 0xf001, 0xe456, 0x8bcc, 0xf013, 0xf002, 0xf012,
|
|
|
|
0x1767, 0x5aaa, 0xf013, 0xf001, 0xf000, 0x0fff, 0x7fff, 0xf124,
|
|
|
|
0x0fff, 0x089a, 0x0578, 0x0fff, 0x089a, 0x0013, 0x0245, 0x0eff,
|
|
|
|
0x0223, 0x0dde, 0x0135, 0x0789, 0x0ddd, 0xbbbc, 0xf346, 0x0467,
|
|
|
|
0x0fff, 0x4eee, 0x3ddd, 0x0edd, 0x0dee, 0x0fff, 0x0fff, 0x0dee,
|
|
|
|
0x0def, 0x08ab, 0x0fff, 0x7fff, 0xfabc, 0xf356, 0x0457, 0x0467,
|
|
|
|
0x0fff, 0x0bcd, 0x4bde, 0x9bcc, 0x8dee, 0x8eff, 0x8fff, 0x9fff,
|
|
|
|
0xadee, 0xeccd, 0xf689, 0xc357, 0x2356, 0x0356, 0x0467, 0x0467,
|
|
|
|
0x0fff, 0x0ccd, 0x0bdd, 0x0cdd, 0x0aaa, 0x2234, 0x4135, 0x4346,
|
|
|
|
0x5356, 0x2246, 0x0346, 0x0356, 0x0467, 0x0356, 0x0467, 0x0467,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff,
|
|
|
|
0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff, 0x0fff
|
|
|
|
};
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
static void sdlfb_hw_init(void)
|
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
SDL_Window *win;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
_device.parent.init = sdlfb_init;
|
|
|
|
_device.parent.open = sdlfb_open;
|
|
|
|
_device.parent.close = sdlfb_close;
|
|
|
|
_device.parent.read = RT_NULL;
|
|
|
|
_device.parent.write = RT_NULL;
|
|
|
|
_device.parent.control = sdlfb_control;
|
|
|
|
|
|
|
|
_device.width = SDL_SCREEN_WIDTH;
|
|
|
|
_device.height = SDL_SCREEN_HEIGHT;
|
2017-12-16 00:05:23 +08:00
|
|
|
|
|
|
|
{
|
|
|
|
int bpp; /* texture bits per pixel */
|
|
|
|
Uint32 Rmask, Gmask, Bmask, Amask; /* masks for pixel format passed into OpenGL */
|
|
|
|
|
|
|
|
/* Grab info about format that will be passed into OpenGL */
|
|
|
|
SDL_PixelFormatEnumToMasks(SDL_SCREEN_FORMAT, &bpp, &Rmask, &Gmask,
|
|
|
|
&Bmask, &Amask);
|
|
|
|
|
|
|
|
_device.surface = SDL_CreateRGBSurface(0, SDL_SCREEN_WIDTH, SDL_SCREEN_HEIGHT,
|
|
|
|
bpp, Rmask, Gmask, Bmask, Amask);
|
|
|
|
}
|
|
|
|
|
|
|
|
win = SDL_CreateWindow("RT-Thread/Persimmon",
|
|
|
|
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
|
|
|
|
SDL_SCREEN_WIDTH, SDL_SCREEN_HEIGHT, SDL_WINDOW_OPENGL);
|
|
|
|
if (win == NULL)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Couldn't set video mode: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
/* set the icon of Window */
|
|
|
|
{
|
|
|
|
SDL_Surface *surface;
|
|
|
|
surface = SDL_CreateRGBSurfaceFrom(pixels, 16, 16, 16, 16 * 2, 0x0f00, 0x00f0, 0x000f, 0xf000);
|
|
|
|
SDL_SetWindowIcon(win, surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
_device.renderer = SDL_CreateRenderer(win, -1, SDL_RENDERER_ACCELERATED);
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
rt_device_register(RT_DEVICE(&_device), "sdl", RT_DEVICE_FLAG_RDWR);
|
|
|
|
|
|
|
|
sdllock = rt_mutex_create("fb", RT_IPC_FLAG_FIFO);
|
|
|
|
}
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
#include <windows.h>
|
|
|
|
#include <mmsystem.h>
|
2013-01-22 16:57:47 +08:00
|
|
|
#else
|
|
|
|
#include <pthread.h>
|
2013-01-22 23:51:13 +08:00
|
|
|
#include <signal.h>
|
2013-01-22 16:57:47 +08:00
|
|
|
#endif
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <rtgui/event.h>
|
|
|
|
#include <rtgui/kbddef.h>
|
|
|
|
#include <rtgui/rtgui_server.h>
|
|
|
|
#include <rtgui/rtgui_system.h>
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
#ifdef _WIN32
|
2013-03-02 14:32:26 +08:00
|
|
|
static HANDLE sdl_ok_event = NULL;
|
2013-08-31 16:30:32 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
static DWORD WINAPI sdl_loop(LPVOID lpParam)
|
2013-01-22 16:57:47 +08:00
|
|
|
#else
|
2013-08-31 16:30:32 +08:00
|
|
|
static pthread_mutex_t sdl_ok_mutex;
|
|
|
|
static pthread_cond_t sdl_ok_event;
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
static void *sdl_loop(void *lpParam)
|
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
|
|
|
int quit = 0;
|
|
|
|
SDL_Event event;
|
2017-12-16 00:05:23 +08:00
|
|
|
int state = 0;
|
2013-01-08 22:40:58 +08:00
|
|
|
rt_device_t device;
|
2017-12-16 00:05:23 +08:00
|
|
|
int timeout = 1000000;
|
|
|
|
|
|
|
|
int last_x = -1, last_y = -1;
|
2013-01-22 23:51:13 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
int motion_x, motion_y;
|
|
|
|
int motion_button = 0;
|
|
|
|
int motion_tick = 50;
|
|
|
|
|
|
|
|
int mouse_id = 1;
|
|
|
|
|
2013-01-22 23:51:13 +08:00
|
|
|
#ifndef _WIN32
|
|
|
|
sigset_t sigmask, oldmask;
|
|
|
|
/* set the getchar without buffer */
|
|
|
|
sigfillset(&sigmask);
|
|
|
|
pthread_sigmask(SIG_BLOCK, &sigmask, &oldmask);
|
2013-08-31 16:30:32 +08:00
|
|
|
pthread_mutex_lock(&sdl_ok_mutex);
|
2013-01-22 23:51:13 +08:00
|
|
|
#endif
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
sdlfb_hw_init();
|
|
|
|
|
|
|
|
device = rt_device_find("sdl");
|
2013-08-31 16:30:32 +08:00
|
|
|
RT_ASSERT(device);
|
2013-01-08 22:40:58 +08:00
|
|
|
rtgui_graphic_set_device(device);
|
2013-03-02 14:32:26 +08:00
|
|
|
#ifdef _WIN32
|
|
|
|
SetEvent(sdl_ok_event);
|
2013-08-31 16:30:32 +08:00
|
|
|
#else
|
|
|
|
pthread_cond_signal(&sdl_ok_event);
|
|
|
|
pthread_mutex_unlock(&sdl_ok_mutex);
|
2013-03-02 14:32:26 +08:00
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
/* handle SDL event */
|
|
|
|
while (!quit)
|
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
if (motion_button & RTGUI_MOUSE_BUTTON_DOWN)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
timeout = motion_tick - SDL_GetTicks();
|
|
|
|
}
|
|
|
|
else
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
timeout = 1000 * 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
int tick = SDL_GetTicks();
|
|
|
|
SDL_WaitEventTimeout(&event, timeout);
|
|
|
|
if (SDL_GetTicks() >= motion_tick && (motion_button & RTGUI_MOUSE_BUTTON_DOWN)) /* whether timeout */
|
|
|
|
{
|
|
|
|
/* sendout motion event */
|
2013-01-08 22:40:58 +08:00
|
|
|
struct rtgui_event_mouse emouse;
|
2017-12-16 00:05:23 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
emouse.parent.type = RTGUI_EVENT_MOUSE_MOTION;
|
|
|
|
emouse.parent.sender = RT_NULL;
|
|
|
|
emouse.wid = RT_NULL;
|
2017-12-16 00:05:23 +08:00
|
|
|
emouse.id = mouse_id;
|
|
|
|
emouse.ts = rt_tick_get();
|
|
|
|
|
|
|
|
if ((motion_x > 0 && motion_x < SDL_SCREEN_WIDTH) &&
|
|
|
|
(motion_y > 0 && motion_y < SDL_SCREEN_HEIGHT))
|
|
|
|
{
|
|
|
|
emouse.x = motion_x;
|
|
|
|
emouse.y = motion_y;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
/* init mouse button */
|
|
|
|
emouse.button = motion_button;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
/* send event to server */
|
|
|
|
rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse));
|
|
|
|
}
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
/* reset motion tick */
|
|
|
|
motion_tick = 50 + SDL_GetTicks();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (event.type)
|
|
|
|
{
|
|
|
|
case SDL_MOUSEMOTION:
|
|
|
|
{
|
|
|
|
/* save to (x,y) in the motion */
|
|
|
|
motion_x = ((SDL_MouseMotionEvent *)&event)->x;
|
|
|
|
motion_y = ((SDL_MouseMotionEvent *)&event)->y;
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
int x, y;
|
2013-01-08 22:40:58 +08:00
|
|
|
struct rtgui_event_mouse emouse;
|
|
|
|
SDL_MouseButtonEvent *mb;
|
|
|
|
|
|
|
|
emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON;
|
|
|
|
emouse.parent.sender = RT_NULL;
|
|
|
|
emouse.wid = RT_NULL;
|
2017-12-16 00:05:23 +08:00
|
|
|
if (event.type == SDL_MOUSEBUTTONDOWN && state == 0)
|
|
|
|
mouse_id = rt_tick_get();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
emouse.id = mouse_id;
|
|
|
|
emouse.ts = rt_tick_get();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
mb = (SDL_MouseButtonEvent *)&event;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-16 00:05:23 +08:00
|
|
|
x = mb->x;
|
|
|
|
y = mb->y;
|
|
|
|
if ((x > 0 && x < SDL_SCREEN_WIDTH) &&
|
|
|
|
(y > 0 && y < SDL_SCREEN_HEIGHT))
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2017-12-16 00:05:23 +08:00
|
|
|
emouse.x = x;
|
|
|
|
emouse.y = y;
|
|
|
|
|
|
|
|
/* init mouse button */
|
|
|
|
emouse.button = 0;
|
|
|
|
|
|
|
|
/* set emouse button */
|
|
|
|
if (mb->button & (1 << (SDL_BUTTON_LEFT - 1)))
|
|
|
|
{
|
|
|
|
emouse.button |= RTGUI_MOUSE_BUTTON_LEFT;
|
|
|
|
}
|
|
|
|
else if (mb->button & (1 << (SDL_BUTTON_RIGHT - 1)))
|
|
|
|
{
|
|
|
|
emouse.button |= RTGUI_MOUSE_BUTTON_RIGHT;
|
|
|
|
}
|
|
|
|
else if (mb->button & (1 << (SDL_BUTTON_MIDDLE - 1)))
|
|
|
|
{
|
|
|
|
emouse.button |= RTGUI_MOUSE_BUTTON_MIDDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mb->type == SDL_MOUSEBUTTONDOWN)
|
|
|
|
{
|
|
|
|
emouse.button |= RTGUI_MOUSE_BUTTON_DOWN;
|
|
|
|
motion_button = emouse.button;
|
|
|
|
|
|
|
|
/* set motion timeout tick */
|
|
|
|
motion_tick = 50 + SDL_GetTicks();
|
|
|
|
|
|
|
|
if (state == 0)
|
|
|
|
{
|
|
|
|
/* send event to server */
|
|
|
|
rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse));
|
|
|
|
last_x = -1; last_y = -1;
|
|
|
|
|
|
|
|
state = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
emouse.button |= RTGUI_MOUSE_BUTTON_UP;
|
|
|
|
motion_button = 0;
|
|
|
|
|
|
|
|
if (state == 1)
|
|
|
|
{
|
|
|
|
/* send event to server */
|
|
|
|
rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse));
|
|
|
|
last_x = -1; last_y = -1;
|
|
|
|
|
|
|
|
state = 0;
|
|
|
|
}
|
|
|
|
}
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_KEYUP:
|
|
|
|
{
|
|
|
|
struct rtgui_event_kbd ekbd;
|
|
|
|
ekbd.parent.type = RTGUI_EVENT_KBD;
|
|
|
|
ekbd.parent.sender = RT_NULL;
|
|
|
|
ekbd.type = RTGUI_KEYUP;
|
|
|
|
ekbd.wid = RT_NULL;
|
|
|
|
ekbd.mod = event.key.keysym.mod;
|
|
|
|
ekbd.key = event.key.keysym.sym;
|
|
|
|
|
|
|
|
/* FIXME: unicode */
|
|
|
|
ekbd.unicode = 0;
|
|
|
|
|
|
|
|
/* send event to server */
|
|
|
|
rtgui_server_post_event(&ekbd.parent, sizeof(struct rtgui_event_kbd));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_KEYDOWN:
|
|
|
|
{
|
|
|
|
struct rtgui_event_kbd ekbd;
|
|
|
|
ekbd.parent.type = RTGUI_EVENT_KBD;
|
|
|
|
ekbd.parent.sender = RT_NULL;
|
|
|
|
ekbd.type = RTGUI_KEYDOWN;
|
|
|
|
ekbd.wid = RT_NULL;
|
|
|
|
ekbd.mod = event.key.keysym.mod;
|
|
|
|
ekbd.key = event.key.keysym.sym;
|
|
|
|
|
|
|
|
/* FIXME: unicode */
|
|
|
|
ekbd.unicode = 0;
|
|
|
|
|
|
|
|
/* send event to server */
|
|
|
|
rtgui_server_post_event(&ekbd.parent, sizeof(struct rtgui_event_kbd));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_QUIT:
|
|
|
|
SDL_Quit();
|
|
|
|
quit = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-12-13 20:38:56 +08:00
|
|
|
if (quit)
|
|
|
|
{
|
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
}
|
2014-03-11 11:28:22 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
2014-02-09 11:24:36 +08:00
|
|
|
rt_hw_exit();
|
2013-01-08 22:40:58 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* start sdl thread */
|
|
|
|
void rt_hw_sdl_start(void)
|
|
|
|
{
|
2013-01-22 16:57:47 +08:00
|
|
|
#ifdef _WIN32
|
2013-01-08 22:40:58 +08:00
|
|
|
HANDLE thread;
|
|
|
|
DWORD thread_id;
|
2013-03-02 14:32:26 +08:00
|
|
|
sdl_ok_event = CreateEvent(NULL,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
|
|
|
NULL);
|
|
|
|
if (sdl_ok_event == NULL)
|
|
|
|
{
|
|
|
|
printf("error, create SDL event failed\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
2013-01-08 22:40:58 +08:00
|
|
|
/* create thread that loop sdl event */
|
|
|
|
thread = CreateThread(NULL,
|
|
|
|
0,
|
|
|
|
(LPTHREAD_START_ROUTINE)sdl_loop,
|
|
|
|
0,
|
|
|
|
CREATE_SUSPENDED,
|
|
|
|
&thread_id);
|
|
|
|
if (thread == NULL)
|
|
|
|
{
|
|
|
|
//Display Error Message
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ResumeThread(thread);
|
2013-03-02 14:32:26 +08:00
|
|
|
|
|
|
|
/* wait until SDL LCD device is registered and seted */
|
|
|
|
WaitForSingleObject(sdl_ok_event, INFINITE);
|
2013-01-22 16:57:47 +08:00
|
|
|
#else
|
2013-01-22 23:51:13 +08:00
|
|
|
/* Linux */
|
|
|
|
pthread_t pid;
|
2013-01-22 16:57:47 +08:00
|
|
|
int res;
|
2013-08-31 16:30:32 +08:00
|
|
|
|
|
|
|
pthread_mutex_init(&sdl_ok_mutex, NULL);
|
|
|
|
pthread_cond_init(&sdl_ok_event, NULL);
|
|
|
|
|
2013-01-22 16:57:47 +08:00
|
|
|
res = pthread_create(&pid, NULL, &sdl_loop, NULL);
|
|
|
|
if (res)
|
|
|
|
{
|
|
|
|
printf("pthread create sdl thread faild, <%d>\n", res);
|
|
|
|
exit(EXIT_FAILURE);
|
2013-01-22 23:51:13 +08:00
|
|
|
}
|
2013-08-31 16:30:32 +08:00
|
|
|
pthread_mutex_lock(&sdl_ok_mutex);
|
|
|
|
pthread_cond_wait(&sdl_ok_event, &sdl_ok_mutex);
|
|
|
|
|
|
|
|
pthread_mutex_destroy(&sdl_ok_mutex);
|
|
|
|
pthread_cond_destroy(&sdl_ok_event);
|
2013-01-22 16:57:47 +08:00
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|