2005-10-28 00:00:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2005-10-30 01:24:35 +00:00
|
|
|
* Copyright (C) Daniel Stenberg (2002)
|
2005-10-28 00:00:00 +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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "stdarg.h"
|
|
|
|
#include "string.h"
|
2006-10-07 16:37:30 +00:00
|
|
|
#include "rbunicode.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
#include "stdio.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "screen_access.h"
|
2007-08-06 13:08:36 +00:00
|
|
|
#include "lang.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "talk.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
#ifndef MAX
|
|
|
|
#define MAX(a, b) (((a)>(b))?(a):(b))
|
|
|
|
#endif
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
#define MAXLINES (LCD_HEIGHT/6)
|
|
|
|
#define MAXBUFFER 512
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
#else /* HAVE_LCD_CHARCELLS */
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
#define MAXLINES 2
|
|
|
|
#define MAXBUFFER 64
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-03-16 21:56:08 +00:00
|
|
|
static void splash(struct screen * screen, const char *fmt, va_list ap)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2006-10-07 16:37:30 +00:00
|
|
|
char splash_buf[MAXBUFFER];
|
|
|
|
short widths[MAXLINES];
|
|
|
|
char *lines[MAXLINES];
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
char *next;
|
2006-10-07 16:37:30 +00:00
|
|
|
char *lastbreak = NULL;
|
|
|
|
char *store = NULL;
|
|
|
|
int line = 0;
|
2006-10-02 23:54:28 +00:00
|
|
|
int x = 0;
|
2006-10-07 16:37:30 +00:00
|
|
|
int y, i;
|
|
|
|
int space_w, w, h;
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-10-07 16:37:30 +00:00
|
|
|
int maxw = 0;
|
2006-02-02 22:00:56 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2006-10-07 16:37:30 +00:00
|
|
|
unsigned prevfg = 0;
|
2006-02-02 22:00:56 +00:00
|
|
|
#endif
|
2006-10-07 16:37:30 +00:00
|
|
|
|
|
|
|
screen->getstringsize(" ", &space_w, &h);
|
|
|
|
#else /* HAVE_LCD_CHARCELLS */
|
|
|
|
|
|
|
|
space_w = h = 1;
|
2006-10-13 11:53:57 +00:00
|
|
|
screen->double_height (false);
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
2006-10-07 16:37:30 +00:00
|
|
|
y = h;
|
|
|
|
|
|
|
|
vsnprintf(splash_buf, sizeof(splash_buf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
/* break splash string into display lines, doing proper word wrap */
|
|
|
|
|
2006-10-02 23:54:28 +00:00
|
|
|
next = strtok_r(splash_buf, " ", &store);
|
2006-10-07 16:37:30 +00:00
|
|
|
if (!next)
|
|
|
|
return; /* nothing to display */
|
2006-10-13 11:53:57 +00:00
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
lines[0] = next;
|
|
|
|
while (true)
|
|
|
|
{
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-10-07 16:37:30 +00:00
|
|
|
screen->getstringsize(next, &w, NULL);
|
2005-10-28 00:00:00 +00:00
|
|
|
#else
|
2006-10-07 16:37:30 +00:00
|
|
|
w = utf8length(next);
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
2006-10-07 16:37:30 +00:00
|
|
|
if (lastbreak)
|
|
|
|
{
|
|
|
|
if (x + (next - lastbreak) * space_w + w > screen->width)
|
|
|
|
{ /* too wide, wrap */
|
|
|
|
widths[line] = x;
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
if (x > maxw)
|
|
|
|
maxw = x;
|
|
|
|
#endif
|
|
|
|
if ((y + h > screen->height) || (line >= (MAXLINES-1)))
|
|
|
|
break; /* screen full or out of lines */
|
2006-10-02 23:54:28 +00:00
|
|
|
x = 0;
|
2006-10-07 16:37:30 +00:00
|
|
|
y += h;
|
|
|
|
lines[++line] = next;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
else
|
2006-10-07 16:37:30 +00:00
|
|
|
{
|
|
|
|
/* restore & calculate spacing */
|
|
|
|
*lastbreak = ' ';
|
|
|
|
x += (next - lastbreak) * space_w;
|
|
|
|
}
|
2006-10-02 23:54:28 +00:00
|
|
|
}
|
2006-10-07 16:37:30 +00:00
|
|
|
x += w;
|
|
|
|
lastbreak = next + strlen(next);
|
|
|
|
next = strtok_r(NULL, " ", &store);
|
|
|
|
if (!next)
|
|
|
|
{ /* no more words */
|
|
|
|
widths[line] = x;
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-10-07 16:37:30 +00:00
|
|
|
if (x > maxw)
|
|
|
|
maxw = x;
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
2006-10-07 16:37:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-10-02 23:54:28 +00:00
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
/* prepare screen */
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-10-07 16:37:30 +00:00
|
|
|
screen->stop_scroll();
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-10-28 00:00:00 +00:00
|
|
|
/* If we center the display, then just clear the box we need and put
|
|
|
|
a nice little frame and put the text in there! */
|
2007-03-16 21:56:08 +00:00
|
|
|
y = (screen->height - y) / 2; /* height => y start position */
|
|
|
|
x = (screen->width - maxw) / 2 - 2;
|
2006-10-13 11:53:57 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
#if LCD_DEPTH > 1
|
2007-03-16 21:56:08 +00:00
|
|
|
if (screen->depth > 1)
|
|
|
|
{
|
|
|
|
prevfg = screen->get_foreground();
|
|
|
|
screen->set_drawmode(DRMODE_FG);
|
|
|
|
screen->set_foreground(
|
|
|
|
SCREEN_COLOR_TO_NATIVE(screen, LCD_LIGHTGRAY));
|
|
|
|
}
|
|
|
|
else
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
2007-03-16 21:56:08 +00:00
|
|
|
screen->set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID);
|
2006-10-13 11:53:57 +00:00
|
|
|
|
2007-03-16 21:56:08 +00:00
|
|
|
screen->fillrect(x, y-2, maxw+4, screen->height-y*2+4);
|
2006-10-13 11:53:57 +00:00
|
|
|
|
|
|
|
#if LCD_DEPTH > 1
|
2007-03-16 21:56:08 +00:00
|
|
|
if (screen->depth > 1)
|
|
|
|
screen->set_foreground(SCREEN_COLOR_TO_NATIVE(screen, LCD_BLACK));
|
|
|
|
else
|
2006-10-13 11:53:57 +00:00
|
|
|
#endif
|
2007-03-16 21:56:08 +00:00
|
|
|
screen->set_drawmode(DRMODE_SOLID);
|
2006-10-13 11:53:57 +00:00
|
|
|
|
2007-03-16 21:56:08 +00:00
|
|
|
screen->drawrect(x, y-2, maxw+4, screen->height-y*2+4);
|
2006-10-07 16:37:30 +00:00
|
|
|
#else /* HAVE_LCD_CHARCELLS */
|
2007-03-16 21:56:08 +00:00
|
|
|
y = 0; /* vertical centering on 2 lines would be silly */
|
2006-10-07 16:37:30 +00:00
|
|
|
x = 0;
|
|
|
|
screen->clear_display();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* print the message to screen */
|
|
|
|
|
|
|
|
for (i = 0; i <= line; i++)
|
|
|
|
{
|
2007-03-16 21:56:08 +00:00
|
|
|
x = MAX((screen->width - widths[i]) / 2, 0);
|
2006-10-02 23:54:28 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-10-07 16:37:30 +00:00
|
|
|
screen->putsxy(x, y, lines[i]);
|
2005-10-28 00:00:00 +00:00
|
|
|
#else
|
2006-10-07 16:37:30 +00:00
|
|
|
screen->puts(x, y, lines[i]);
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
2006-10-07 16:37:30 +00:00
|
|
|
y += h;
|
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH > 1)
|
2007-03-16 21:56:08 +00:00
|
|
|
if (screen->depth > 1)
|
2006-10-07 16:37:30 +00:00
|
|
|
{
|
2006-02-02 22:00:56 +00:00
|
|
|
screen->set_foreground(prevfg);
|
2006-10-13 11:53:57 +00:00
|
|
|
screen->set_drawmode(DRMODE_SOLID);
|
2006-02-02 22:00:56 +00:00
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
|
|
|
screen->update();
|
|
|
|
}
|
|
|
|
|
2007-03-16 21:56:08 +00:00
|
|
|
void gui_splash(struct screen * screen, int ticks,
|
|
|
|
const unsigned char *fmt, ...)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start( ap, fmt );
|
2007-03-16 21:56:08 +00:00
|
|
|
splash(screen, fmt, ap);
|
2005-10-28 00:00:00 +00:00
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
if(ticks)
|
|
|
|
sleep(ticks);
|
|
|
|
}
|
|
|
|
|
2007-03-16 21:56:08 +00:00
|
|
|
void gui_syncsplash(int ticks, const unsigned char *fmt, ...)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int i;
|
2007-08-06 15:01:45 +00:00
|
|
|
#if !defined(SIMULATOR) || CONFIG_CODEC == SWCODEC
|
2007-08-06 13:08:36 +00:00
|
|
|
long id;
|
|
|
|
/* fmt may be a so called virtual pointer. See settings.h. */
|
|
|
|
if((id = P2ID(fmt)) >= 0)
|
|
|
|
/* If fmt specifies a voicefont ID, and voice menus are
|
|
|
|
enabled, then speak it. */
|
|
|
|
cond_talk_ids_fq(id);
|
2007-08-06 15:01:45 +00:00
|
|
|
#endif
|
2007-08-06 13:08:36 +00:00
|
|
|
/* If fmt is a lang ID then get the corresponding string (which
|
|
|
|
still might contain % place holders). */
|
|
|
|
fmt = P2STR(fmt);
|
2005-10-28 00:00:00 +00:00
|
|
|
va_start( ap, fmt );
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2007-03-16 21:56:08 +00:00
|
|
|
splash(&(screens[i]), fmt, ap);
|
2005-10-28 00:00:00 +00:00
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
if(ticks)
|
|
|
|
sleep(ticks);
|
|
|
|
}
|