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
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-01-09 11:22:36 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
#include <SDL.h>
|
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>
|
2007-10-26 23:11:18 +00:00
|
|
|
#include "system-sdl.h"
|
2010-05-15 21:02:47 +00:00
|
|
|
#include "thread-sdl.h"
|
|
|
|
#include "sim-ui-defines.h"
|
2006-02-09 21:49:28 +00:00
|
|
|
#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
|
2010-05-15 21:02:47 +00:00
|
|
|
#include "panic.h"
|
|
|
|
#include "debug.h"
|
2010-02-16 17:34:48 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
SDL_Surface *gui_surface;
|
2006-02-03 15:19:58 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
bool background = true; /* use backgrounds by default */
|
2009-10-26 09:58:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2010-05-15 21:02:47 +00:00
|
|
|
bool showremote = true; /* include remote by default */
|
2009-10-26 09:58:39 +00:00
|
|
|
#endif
|
2010-05-15 21:02:47 +00:00
|
|
|
bool mapping = false;
|
|
|
|
bool debug_buttons = false;
|
2006-02-03 15:19:58 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
bool lcd_display_redraw = true; /* Used for player simulator */
|
|
|
|
char having_new_lcd = true; /* Used for player simulator */
|
|
|
|
bool sim_alarm_wakeup = false;
|
|
|
|
const char *sim_root_dir = NULL;
|
|
|
|
extern int display_zoom;
|
2006-02-21 21:48:06 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
#ifdef DEBUG
|
2006-02-21 21:48:06 +00:00
|
|
|
bool debug_audio = false;
|
2010-05-15 21:02:47 +00:00
|
|
|
#endif
|
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
|
|
|
|
2010-02-16 17:34:48 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
void sys_poweroff(void)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2010-05-15 21:02:47 +00:00
|
|
|
/* Order here is relevent to prevent deadlocks and use of destroyed
|
|
|
|
sync primitives by kernel threads */
|
|
|
|
sim_thread_shutdown();
|
|
|
|
sim_kernel_shutdown();
|
|
|
|
SDL_Quit();
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2010-05-17 17:19:31 +00:00
|
|
|
/*
|
|
|
|
* Button read loop */
|
|
|
|
void gui_message_loop(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This callback let's the main thread run again after SDL has been initialized
|
|
|
|
**/
|
|
|
|
static uint32_t cond_signal(uint32_t interval, void *param)
|
|
|
|
{
|
|
|
|
(void)interval;
|
|
|
|
SDL_cond *c = (SDL_cond*)param;
|
|
|
|
/* remove timer, CondSignal returns 0 on success */
|
|
|
|
return SDL_CondSignal(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This thread will read the buttons in an interrupt like fashion, and
|
|
|
|
* also initializes SDL_INIT_VIDEO and the surfaces
|
|
|
|
*
|
|
|
|
* it must be done in the same thread (at least on windows) because events only
|
|
|
|
* work in the thread which called SDL_Init(SubSystem) with SDL_INIT_VIDEO
|
|
|
|
*
|
|
|
|
* This is an SDL thread and relies on preemptive behavoir of the host
|
|
|
|
**/
|
|
|
|
static int sdl_event_thread(void * param)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2010-05-17 17:19:31 +00:00
|
|
|
SDL_InitSubSystem(SDL_INIT_VIDEO);
|
|
|
|
|
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-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;
|
2010-05-15 21:02:47 +00:00
|
|
|
DEBUGF("warn: %s\n", SDL_GetError());
|
2006-02-09 11:17:52 +00:00
|
|
|
}
|
|
|
|
}
|
2010-05-15 21:02:47 +00:00
|
|
|
|
2006-02-09 11:17:52 +00:00
|
|
|
/* Set things up */
|
2009-10-26 09:58:39 +00:00
|
|
|
if (background)
|
|
|
|
{
|
2006-02-09 11:17:52 +00:00
|
|
|
width = UI_WIDTH;
|
|
|
|
height = UI_HEIGHT;
|
2009-10-26 09:58:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-09 11:17:52 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2009-10-26 09:58:39 +00:00
|
|
|
if (showremote)
|
|
|
|
{
|
|
|
|
width = SIM_LCD_WIDTH > SIM_REMOTE_WIDTH ? SIM_LCD_WIDTH : SIM_REMOTE_WIDTH;
|
|
|
|
height = SIM_LCD_HEIGHT + SIM_REMOTE_HEIGHT;
|
|
|
|
}
|
|
|
|
else
|
2006-02-09 11:17:52 +00:00
|
|
|
#endif
|
2009-10-26 09:58:39 +00:00
|
|
|
{
|
|
|
|
width = SIM_LCD_WIDTH;
|
|
|
|
height = SIM_LCD_HEIGHT;
|
|
|
|
}
|
2006-02-09 11:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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) {
|
2010-05-15 21:02:47 +00:00
|
|
|
panicf("%s", SDL_GetError());
|
2006-02-03 15:19:58 +00:00
|
|
|
}
|
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
|
2009-10-26 09:58:39 +00:00
|
|
|
if (showremote)
|
|
|
|
sim_lcd_remote_init();
|
2006-02-09 21:49:28 +00:00
|
|
|
#endif
|
2006-02-09 11:17:52 +00:00
|
|
|
|
2010-05-17 17:19:31 +00:00
|
|
|
if (background && picture_surface != NULL)
|
2006-02-03 15:19:58 +00:00
|
|
|
SDL_BlitSurface(picture_surface, NULL, gui_surface, NULL);
|
2010-05-17 17:19:31 +00:00
|
|
|
|
|
|
|
/* calling SDL_CondSignal() right away here doesn't work reliably so
|
|
|
|
* post-pone it a bit */
|
|
|
|
SDL_AddTimer(100, cond_signal, param);
|
|
|
|
/*
|
|
|
|
* finally enter the button loop */
|
|
|
|
while(1)
|
|
|
|
gui_message_loop();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void system_init(void)
|
|
|
|
{
|
|
|
|
SDL_cond *c;
|
|
|
|
SDL_mutex *m;
|
|
|
|
if (SDL_Init(SDL_INIT_TIMER))
|
|
|
|
panicf("%s", SDL_GetError());
|
|
|
|
atexit(SDL_Quit);
|
|
|
|
|
|
|
|
c = SDL_CreateCond();
|
|
|
|
m = SDL_CreateMutex();
|
|
|
|
|
|
|
|
SDL_CreateThread(sdl_event_thread, c);
|
|
|
|
|
|
|
|
/* Lock mutex and wait for sdl_event_thread to run so that it can
|
|
|
|
* initialize the surfaces and video subsystem needed for SDL events */
|
|
|
|
SDL_LockMutex(m);
|
|
|
|
SDL_CondWait(c, m);
|
|
|
|
SDL_UnlockMutex(m);
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
SDL_DestroyCond(c);
|
|
|
|
SDL_DestroyMutex(m);
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
void system_exception_wait(void)
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2010-05-15 21:02:47 +00:00
|
|
|
sim_thread_exception_wait();
|
2006-02-03 15:19:58 +00:00
|
|
|
}
|
2006-01-09 11:22:36 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
void system_reboot(void)
|
|
|
|
{
|
|
|
|
sim_thread_exception_wait();
|
|
|
|
}
|
2006-10-22 12:41:13 +00:00
|
|
|
|
2010-05-17 17:19:31 +00:00
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
void sys_handle_argv(int argc, char *argv[])
|
2006-01-09 11:22:36 +00:00
|
|
|
{
|
2007-11-08 10:15:44 +00:00
|
|
|
if (argc >= 1)
|
|
|
|
{
|
2006-02-09 11:17:52 +00:00
|
|
|
int x;
|
2007-11-08 10:15:44 +00:00
|
|
|
for (x = 1; x < argc; x++)
|
|
|
|
{
|
2010-05-15 21:02:47 +00:00
|
|
|
#ifdef DEBUG
|
2007-11-08 10:15:44 +00:00
|
|
|
if (!strcmp("--debugaudio", argv[x]))
|
|
|
|
{
|
2006-02-21 21:48:06 +00:00
|
|
|
debug_audio = true;
|
|
|
|
printf("Writing debug audio file.\n");
|
2010-05-15 21:02:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (!strcmp("--debugwps", argv[x]))
|
2007-11-08 10:15:44 +00:00
|
|
|
{
|
2007-04-24 23:58:57 +00:00
|
|
|
debug_wps = true;
|
|
|
|
printf("WPS debug mode enabled.\n");
|
2007-11-08 10:15:44 +00:00
|
|
|
}
|
2009-01-08 20:04:17 +00:00
|
|
|
else if (!strcmp("--nobackground", argv[x]))
|
2007-11-08 10:15:44 +00:00
|
|
|
{
|
2009-01-08 20:04:17 +00:00
|
|
|
background = false;
|
|
|
|
printf("Disabling background image.\n");
|
2007-11-08 10:15:44 +00:00
|
|
|
}
|
2009-10-26 09:58:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
else if (!strcmp("--noremote", argv[x]))
|
|
|
|
{
|
|
|
|
showremote = false;
|
|
|
|
background = false;
|
|
|
|
printf("Disabling remote image.\n");
|
|
|
|
}
|
|
|
|
#endif
|
2007-11-08 10:15:44 +00:00
|
|
|
else if (!strcmp("--old_lcd", argv[x]))
|
|
|
|
{
|
2006-02-09 11:17:52 +00:00
|
|
|
having_new_lcd = false;
|
|
|
|
printf("Using old LCD layout.\n");
|
2007-11-08 10:15:44 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp("--zoom", argv[x]))
|
|
|
|
{
|
2006-02-09 21:49:28 +00:00
|
|
|
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);
|
2007-11-08 10:15:44 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp("--alarm", argv[x]))
|
|
|
|
{
|
2007-10-13 12:07:59 +00:00
|
|
|
sim_alarm_wakeup = true;
|
|
|
|
printf("Simulating alarm wakeup.\n");
|
2007-11-08 10:15:44 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp("--root", argv[x]))
|
|
|
|
{
|
|
|
|
x++;
|
|
|
|
if (x < argc)
|
|
|
|
{
|
|
|
|
sim_root_dir = argv[x];
|
|
|
|
printf("Root directory: %s\n", sim_root_dir);
|
|
|
|
}
|
|
|
|
}
|
2010-02-16 17:34:48 +00:00
|
|
|
else if (!strcmp("--mapping", argv[x]))
|
|
|
|
{
|
|
|
|
mapping = true;
|
|
|
|
printf("Printing click coords with drag radii.\n");
|
|
|
|
}
|
|
|
|
else if (!strcmp("--debugbuttons", argv[x]))
|
|
|
|
{
|
|
|
|
debug_buttons = true;
|
|
|
|
printf("Printing background button clicks.\n");
|
|
|
|
}
|
2007-11-08 10:15:44 +00:00
|
|
|
else
|
|
|
|
{
|
2006-02-09 11:17:52 +00:00
|
|
|
printf("rockboxui\n");
|
|
|
|
printf("Arguments:\n");
|
2010-05-15 21:02:47 +00:00
|
|
|
#ifdef DEBUG
|
2006-02-21 21:48:06 +00:00
|
|
|
printf(" --debugaudio \t Write raw PCM data to audiodebug.raw\n");
|
2010-05-15 21:02:47 +00:00
|
|
|
#endif
|
2007-04-24 23:58:57 +00:00
|
|
|
printf(" --debugwps \t Print advanced WPS debug info\n");
|
2009-01-08 20:04:17 +00:00
|
|
|
printf(" --nobackground \t Disable the background image\n");
|
2009-10-26 09:58:39 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
printf(" --noremote \t Disable the remote image (will disable backgrounds)\n");
|
|
|
|
#endif
|
2006-02-09 11:17:52 +00:00
|
|
|
printf(" --old_lcd \t [Player] simulate old playermodel (ROM version<4.51)\n");
|
2007-11-08 10:15:44 +00:00
|
|
|
printf(" --zoom [VAL]\t Window zoom (will disable backgrounds)\n");
|
|
|
|
printf(" --alarm \t Simulate a wake-up on alarm\n");
|
|
|
|
printf(" --root [DIR]\t Set root directory\n");
|
2010-02-16 17:34:48 +00:00
|
|
|
printf(" --mapping \t Output coordinates and radius for mapping backgrounds\n");
|
2006-02-09 11:17:52 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-09 21:49:28 +00:00
|
|
|
if (display_zoom > 1) {
|
|
|
|
background = false;
|
|
|
|
}
|
2006-01-09 11:22:36 +00:00
|
|
|
}
|