2006-01-09 11:22:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2006-02-03 15:19:58 +00:00
|
|
|
* Copyright (C) 2006 by Daniel Everton <dan@iocaine.org>
|
2006-01-09 11:22:36 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
#include <stdlib.h>
|
2006-02-09 11:17:52 +00:00
|
|
|
#include <string.h>
|
2007-09-10 03:49:12 +00:00
|
|
|
#include <setjmp.h>
|
2006-02-03 15:19:58 +00:00
|
|
|
#include "autoconf.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "kernel.h"
|
2006-02-09 21:49:28 +00:00
|
|
|
#include "uisdl.h"
|
|
|
|
#include "lcd-sdl.h"
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#include "lcd-bitmap.h"
|
2007-02-20 15:12:56 +00:00
|
|
|
#elif defined(HAVE_LCD_CHARCELLS)
|
2007-03-31 09:58:49 +00:00
|
|
|
#include "lcd-charcells.h"
|
2006-02-09 21:49:28 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-07-28 07:35:45 +00:00
|
|
|
#include "lcd-remote-bitmap.h"
|
2006-02-09 21:49:28 +00:00
|
|
|
#endif
|
|
|
|
#include "thread-sdl.h"
|
|
|
|
#include "SDL_mutex.h"
|
|
|
|
#include "SDL_thread.h"
|
2006-02-03 15:19:58 +00:00
|
|
|
|
2006-02-09 21:49:28 +00:00
|
|
|
/* extern functions */
|
2006-03-19 06:59:36 +00:00
|
|
|
extern void app_main (void *); /* mod entry point */
|
2006-02-03 15:19:58 +00:00
|
|
|
extern void new_key(int key);
|
|
|
|
extern void sim_tick_tasks(void);
|
2007-09-10 03:49:12 +00:00
|
|
|
extern bool sim_io_init(void);
|
2007-09-09 01:59:07 +00:00
|
|
|
extern void sim_io_shutdown(void);
|
2006-02-03 15:19:58 +00:00
|
|
|
|
|
|
|
void button_event(int key, bool pressed);
|
|
|
|
|
|
|
|
SDL_Surface *gui_surface;
|
2006-02-09 11:17:52 +00:00
|
|
|
bool background = false; /* Don't use backgrounds by default */
|
2006-02-03 15:19:58 +00:00
|
|
|
|
|
|
|
SDL_TimerID tick_timer_id;
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-09 21:49:28 +00:00
|
|
|
bool lcd_display_redraw = true; /* Used for player simulator */
|
2006-02-21 21:48:06 +00:00
|
|
|
char having_new_lcd = true; /* Used for player simulator */
|
|
|
|
|
|
|
|
bool debug_audio = false;
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2007-04-24 23:58:57 +00:00
|
|
|
bool debug_wps = false;
|
2007-07-22 17:17:53 +00:00
|
|
|
int wps_verbose_level = 3;
|
2007-04-24 23:58:57 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
long start_tick;
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
Uint32 tick_timer(Uint32 interval, void *param)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2006-02-03 15:19:58 +00:00
|
|
|
long new_tick;
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
(void) interval;
|
|
|
|
(void) param;
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2007-09-09 01:59:07 +00:00
|
|
|
new_tick = (SDL_GetTicks() - start_tick) / (1000/HZ);
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-13 21:46:28 +00:00
|
|
|
if (new_tick != current_tick) {
|
2006-02-03 15:19:58 +00:00
|
|
|
long i;
|
|
|
|
for (i = new_tick - current_tick; i > 0; i--)
|
|
|
|
sim_tick_tasks();
|
|
|
|
current_tick = new_tick;
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
return 1;
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
void gui_message_loop(void)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_Event event;
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
while(!done && SDL_WaitEvent(&event))
|
|
|
|
{
|
|
|
|
switch(event.type)
|
|
|
|
{
|
|
|
|
case SDL_KEYDOWN:
|
|
|
|
button_event(event.key.keysym.sym, true);
|
|
|
|
break;
|
|
|
|
case SDL_KEYUP:
|
|
|
|
button_event(event.key.keysym.sym, false);
|
|
|
|
break;
|
|
|
|
case SDL_QUIT:
|
|
|
|
done = true;
|
|
|
|
break;
|
|
|
|
default:
|
2006-03-19 06:59:36 +00:00
|
|
|
/*printf("Unhandled event\n"); */
|
2006-02-03 15:19:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-17 22:09:34 +00:00
|
|
|
bool gui_startup(void)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_Surface *picture_surface;
|
2006-02-09 11:17:52 +00:00
|
|
|
int width, height;
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO|SDL_INIT_AUDIO|SDL_INIT_TIMER)) {
|
2007-09-10 21:18:19 +00:00
|
|
|
fprintf(stderr, "fatal: %s\n", SDL_GetError());
|
2006-02-03 15:19:58 +00:00
|
|
|
return false;
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
atexit(SDL_Quit);
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-09 11:17:52 +00:00
|
|
|
/* Try and load the background image. If it fails go without */
|
|
|
|
if (background) {
|
|
|
|
picture_surface = SDL_LoadBMP("UI256.bmp");
|
|
|
|
if (picture_surface == NULL) {
|
|
|
|
background = false;
|
2007-09-10 21:18:19 +00:00
|
|
|
fprintf(stderr, "warn: %s\n", SDL_GetError());
|
2006-02-09 11:17:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set things up */
|
|
|
|
|
|
|
|
if (background) {
|
|
|
|
width = UI_WIDTH;
|
|
|
|
height = UI_HEIGHT;
|
|
|
|
} else {
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
width = UI_LCD_WIDTH > UI_REMOTE_WIDTH ? UI_LCD_WIDTH : UI_REMOTE_WIDTH;
|
|
|
|
height = UI_LCD_HEIGHT + UI_REMOTE_HEIGHT;
|
|
|
|
#else
|
|
|
|
width = UI_LCD_WIDTH;
|
|
|
|
height = UI_LCD_HEIGHT;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-09 21:49:28 +00:00
|
|
|
if ((gui_surface = SDL_SetVideoMode(width * display_zoom, height * display_zoom, 24, SDL_HWSURFACE|SDL_DOUBLEBUF)) == NULL) {
|
2006-02-09 11:17:52 +00:00
|
|
|
fprintf(stderr, "fatal: %s\n", SDL_GetError());
|
2006-02-03 15:19:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_WM_SetCaption(UI_TITLE, NULL);
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-09 21:49:28 +00:00
|
|
|
sim_lcd_init();
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
sim_lcd_remote_init();
|
|
|
|
#endif
|
2006-02-09 11:17:52 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
|
2006-02-09 11:17:52 +00:00
|
|
|
|
|
|
|
if (background && picture_surface != NULL) {
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_BlitSurface(picture_surface, NULL, gui_surface, NULL);
|
|
|
|
SDL_UpdateRect(gui_surface, 0, 0, 0, 0);
|
2006-02-09 11:17:52 +00:00
|
|
|
}
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
start_tick = SDL_GetTicks();
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
return true;
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-17 22:09:34 +00:00
|
|
|
bool gui_shutdown(void)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_RemoveTimer(tick_timer_id);
|
2007-09-10 03:49:12 +00:00
|
|
|
/* Order here is relevent to prevent deadlocks and use of destroyed
|
|
|
|
sync primitives by kernel threads */
|
|
|
|
thread_sdl_shutdown();
|
2007-09-08 12:20:53 +00:00
|
|
|
sim_io_shutdown();
|
2006-02-03 15:19:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-10-22 12:41:13 +00:00
|
|
|
#if defined(WIN32) && defined(main)
|
|
|
|
/* Don't use SDL_main on windows -> no more stdio redirection */
|
|
|
|
#undef main
|
|
|
|
#endif
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
int main(int argc, char *argv[])
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2006-02-09 11:17:52 +00:00
|
|
|
if (argc >= 1) {
|
|
|
|
int x;
|
|
|
|
for (x = 1; x < argc; x++) {
|
2006-02-21 21:48:06 +00:00
|
|
|
if (!strcmp("--debugaudio", argv[x])) {
|
|
|
|
debug_audio = true;
|
|
|
|
printf("Writing debug audio file.\n");
|
2007-04-24 23:58:57 +00:00
|
|
|
} else if (!strcmp("--debugwps", argv[x])) {
|
|
|
|
debug_wps = true;
|
|
|
|
printf("WPS debug mode enabled.\n");
|
2006-02-21 21:48:06 +00:00
|
|
|
} else if (!strcmp("--background", argv[x])) {
|
2006-02-09 11:17:52 +00:00
|
|
|
background = true;
|
|
|
|
printf("Using background image.\n");
|
|
|
|
} else if (!strcmp("--old_lcd", argv[x])) {
|
|
|
|
having_new_lcd = false;
|
|
|
|
printf("Using old LCD layout.\n");
|
2006-02-09 21:49:28 +00:00
|
|
|
} else if (!strcmp("--zoom", argv[x])) {
|
|
|
|
x++;
|
2006-02-21 21:56:38 +00:00
|
|
|
if(x < argc)
|
|
|
|
display_zoom=atoi(argv[x]);
|
|
|
|
else
|
|
|
|
display_zoom = 2;
|
2006-02-09 21:49:28 +00:00
|
|
|
printf("Window zoom is %d\n", display_zoom);
|
2006-02-09 11:17:52 +00:00
|
|
|
} else {
|
|
|
|
printf("rockboxui\n");
|
|
|
|
printf("Arguments:\n");
|
2006-02-21 21:48:06 +00:00
|
|
|
printf(" --debugaudio \t Write raw PCM data to audiodebug.raw\n");
|
2007-04-24 23:58:57 +00:00
|
|
|
printf(" --debugwps \t Print advanced WPS debug info\n");
|
2006-02-09 11:17:52 +00:00
|
|
|
printf(" --background \t Use background image of hardware\n");
|
|
|
|
printf(" --old_lcd \t [Player] simulate old playermodel (ROM version<4.51)\n");
|
2007-04-24 23:58:57 +00:00
|
|
|
printf(" --zoom [VAL]\t window zoom (will disable backgrounds)\n");
|
2006-02-09 11:17:52 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-03 15:19:58 +00:00
|
|
|
|
2006-02-09 21:49:28 +00:00
|
|
|
if (display_zoom > 1) {
|
|
|
|
background = false;
|
|
|
|
}
|
|
|
|
|
2007-09-10 03:49:12 +00:00
|
|
|
if (!sim_io_init()) {
|
|
|
|
fprintf(stderr, "sim_io_init failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2007-09-08 12:20:53 +00:00
|
|
|
|
2007-09-10 03:49:12 +00:00
|
|
|
if (!gui_startup()) {
|
|
|
|
fprintf(stderr, "gui_startup failed\n");
|
2006-02-03 15:19:58 +00:00
|
|
|
return -1;
|
2007-09-10 03:49:12 +00:00
|
|
|
}
|
2006-02-03 15:19:58 +00:00
|
|
|
|
2007-09-10 03:49:12 +00:00
|
|
|
/* app_main will be called by the new main thread */
|
|
|
|
if (!thread_sdl_init(NULL)) {
|
|
|
|
fprintf(stderr, "thread_sdl_init failed\n");
|
2006-02-03 15:19:58 +00:00
|
|
|
return -1;
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
tick_timer_id = SDL_AddTimer(10, tick_timer, NULL);
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2006-02-03 15:19:58 +00:00
|
|
|
gui_message_loop();
|
|
|
|
|
|
|
|
return gui_shutdown();
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
2006-02-03 15:19:58 +00:00
|
|
|
|