8a935f6c4d
them to prevent compiler warning(s). We should make more code use a different key instead of ON for the models that don't have one! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4154 a1c6a512-1295-4272-9138-f99709370657
856 lines
25 KiB
C
856 lines
25 KiB
C
/***************************************************************************
|
|
*
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2003 Hardeep Sidhu
|
|
*
|
|
* 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 <string.h>
|
|
#include <sprintf.h>
|
|
#include "playlist.h"
|
|
#include "mpeg.h"
|
|
#include "screens.h"
|
|
#include "status.h"
|
|
#include "settings.h"
|
|
#include "icons.h"
|
|
#include "menu.h"
|
|
#include "plugin.h"
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
#include "widgets.h"
|
|
#endif
|
|
|
|
#include "lang.h"
|
|
|
|
/* Defines for LCD display purposes. Taken from tree.c */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
#define CURSOR_X (global_settings.scrollbar && \
|
|
viewer.num_tracks>viewer.num_display_lines?1:0)
|
|
#define CURSOR_Y 0
|
|
#define CURSOR_WIDTH (global_settings.invert_cursor ? 0 : 4)
|
|
|
|
#define ICON_WIDTH ((viewer.char_width > 6) ? viewer.char_width : 6)
|
|
|
|
#define MARGIN_X ((global_settings.scrollbar && \
|
|
viewer.num_tracks > viewer.num_display_lines ? \
|
|
SCROLLBAR_WIDTH : 0) + CURSOR_WIDTH + ICON_WIDTH)
|
|
#define MARGIN_Y (global_settings.statusbar ? STATUSBAR_HEIGHT : 0)
|
|
|
|
#define LINE_X 0
|
|
#define LINE_Y (global_settings.statusbar ? 1 : 0)
|
|
|
|
#define SCROLLBAR_X 0
|
|
#define SCROLLBAR_Y lcd_getymargin()
|
|
#define SCROLLBAR_WIDTH 6
|
|
#else
|
|
#define MARGIN_X 0
|
|
#define MARGIN_Y 0
|
|
#define LINE_X 2
|
|
#define LINE_Y 0
|
|
#define CURSOR_X 0
|
|
#define CURSOR_Y 0
|
|
#endif
|
|
|
|
/* Maximum number of tracks we can have loaded at one time */
|
|
#define MAX_PLAYLIST_ENTRIES 200
|
|
|
|
/* Index of track on display line _pos */
|
|
#define INDEX(_pos) (viewer.first_display_index - viewer.first_index + (_pos))
|
|
|
|
/* Global playlist viewer settings */
|
|
struct playlist_viewer_info {
|
|
char *name_buffer; /* Buffer used to store track names */
|
|
int buffer_size; /* Size of name buffer */
|
|
|
|
int num_display_lines; /* Number of lines on lcd */
|
|
int line_height; /* Height (in pixels) of display line */
|
|
int char_width; /* Width (in pixels) of a character */
|
|
|
|
int num_tracks; /* Number of tracks in playlist */
|
|
short current_playing_track;/* Index of current playing track */
|
|
|
|
int num_loaded; /* Number of track entries loaded in viewer */
|
|
int first_index; /* Index of first loaded track */
|
|
int last_index; /* Index of last loaded track */
|
|
int first_display_index; /* Index of first track on display */
|
|
int last_display_index; /* Index of last track on display */
|
|
int cursor_pos; /* Line number of cursor */
|
|
|
|
int move_track; /* Playlist index of track to move or -1 */
|
|
};
|
|
|
|
/* Information about a specific track */
|
|
struct playlist_entry {
|
|
char *name; /* Formatted track name */
|
|
int index; /* Playlist index */
|
|
int display_index; /* Display index */
|
|
bool queued; /* Is track queued? */
|
|
};
|
|
|
|
static struct playlist_viewer_info viewer;
|
|
static struct playlist_entry tracks[MAX_PLAYLIST_ENTRIES];
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
extern unsigned char bitmap_icons_6x8[LastIcon][6];
|
|
#endif
|
|
|
|
static bool initialize(void);
|
|
static void load_playlist_entries(int start_index);
|
|
static void load_playlist_entries_r(int end_index);
|
|
static int load_entry(int index, int pos, char* p, int size);
|
|
static void format_name(char* dest, char* src);
|
|
static void display_playlist(void);
|
|
static void update_display_line(int line, bool scroll);
|
|
static void scroll_display(int lines);
|
|
static void update_first_index(void);
|
|
static bool update_playlist(bool force);
|
|
#ifdef BUTTON_ON
|
|
static int onplay_menu(int index);
|
|
#endif
|
|
|
|
/* Initialize the playlist viewer */
|
|
static bool initialize(void)
|
|
{
|
|
if (!(mpeg_status() & MPEG_STATUS_PLAY))
|
|
/* Nothing is playing, exit */
|
|
return false;
|
|
|
|
viewer.name_buffer = plugin_get_buffer(&viewer.buffer_size);
|
|
if (!viewer.name_buffer)
|
|
return false;
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
{
|
|
char icon_chars[] = "MQ"; /* characters used as icons */
|
|
unsigned int i;
|
|
|
|
viewer.char_width = 0;
|
|
viewer.line_height = 0;
|
|
|
|
/* Use icon characters to calculate largest possible width/height so
|
|
that we set proper margins */
|
|
for (i=0; i<sizeof(icon_chars); i++)
|
|
{
|
|
char str[2];
|
|
int w, h;
|
|
|
|
snprintf(str, sizeof(str), "%c", icon_chars[i]);
|
|
lcd_getstringsize(str, &w, &h);
|
|
|
|
if (w > viewer.char_width)
|
|
viewer.char_width = w;
|
|
|
|
if (h > viewer.line_height)
|
|
{
|
|
viewer.line_height = h;
|
|
viewer.num_display_lines = (LCD_HEIGHT - MARGIN_Y)/h;
|
|
}
|
|
}
|
|
}
|
|
#else
|
|
viewer.num_display_lines = 2;
|
|
viewer.char_width = 1;
|
|
viewer.line_height = 1;
|
|
#endif
|
|
|
|
viewer.cursor_pos = 0;
|
|
viewer.move_track = -1;
|
|
|
|
/* Start displaying at current playing track */
|
|
viewer.first_display_index = playlist_get_display_index() - 1;
|
|
update_first_index();
|
|
|
|
if (!update_playlist(true))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
/* Load tracks starting at start_index */
|
|
static void load_playlist_entries(int start_index)
|
|
{
|
|
int num_entries = viewer.num_tracks - start_index;
|
|
char* p = viewer.name_buffer;
|
|
int remaining = viewer.buffer_size;
|
|
int i;
|
|
|
|
viewer.first_index = start_index;
|
|
|
|
if (num_entries > MAX_PLAYLIST_ENTRIES)
|
|
num_entries = MAX_PLAYLIST_ENTRIES;
|
|
|
|
for(i=0; i<num_entries; i++, start_index++)
|
|
{
|
|
int len = load_entry(start_index, i, p, remaining);
|
|
if (len < 0)
|
|
{
|
|
/* Out of name buffer space */
|
|
num_entries = i;
|
|
break;
|
|
}
|
|
|
|
p += len;
|
|
remaining -= len;
|
|
}
|
|
|
|
viewer.num_loaded = num_entries;
|
|
viewer.last_index = viewer.first_index + (viewer.num_loaded - 1);
|
|
}
|
|
|
|
/* Load tracks in reverse, ending at end_index */
|
|
static void load_playlist_entries_r(int end_index)
|
|
{
|
|
int num_entries = end_index;
|
|
char* p = viewer.name_buffer;
|
|
int remaining = viewer.buffer_size;
|
|
int i;
|
|
|
|
viewer.last_index = end_index;
|
|
|
|
if (num_entries > MAX_PLAYLIST_ENTRIES)
|
|
num_entries = MAX_PLAYLIST_ENTRIES;
|
|
|
|
for(i=num_entries; i>=0; i--, end_index--)
|
|
{
|
|
int len = load_entry(end_index, i, p, remaining);
|
|
if (len < 0)
|
|
{
|
|
int j;
|
|
|
|
/* Out of name buffer space */
|
|
num_entries -= i;
|
|
|
|
/* Shift loaded tracks up such that first track is index 0 */
|
|
for (j=0; j<num_entries; j++, i++)
|
|
{
|
|
tracks[j].name = tracks[i].name;
|
|
tracks[j].index = tracks[i].index;
|
|
tracks[j].display_index = tracks[i].display_index;
|
|
tracks[j].queued = tracks[i].queued;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
p += len;
|
|
remaining -= len;
|
|
}
|
|
|
|
viewer.first_index = viewer.last_index - num_entries;
|
|
|
|
num_entries++;
|
|
if (!viewer.first_index &&
|
|
num_entries < viewer.num_tracks &&
|
|
num_entries < MAX_PLAYLIST_ENTRIES)
|
|
{
|
|
/* Lets see if we can load more data at the end of the list */
|
|
int max = viewer.num_tracks;
|
|
if (max > MAX_PLAYLIST_ENTRIES)
|
|
max = MAX_PLAYLIST_ENTRIES;
|
|
|
|
for (i = num_entries; i<max; i++)
|
|
{
|
|
int len = load_entry(num_entries, num_entries, p, remaining);
|
|
if (len < 0)
|
|
/* Out of name buffer space */
|
|
break;
|
|
|
|
p += len;
|
|
remaining -= len;
|
|
|
|
num_entries++;
|
|
viewer.last_index++;
|
|
}
|
|
}
|
|
|
|
viewer.num_loaded = num_entries;
|
|
}
|
|
|
|
/* Load track at playlist index. pos is the position in the tracks array and
|
|
p is a pointer to the name buffer (max size), Returns -1 if buffer is
|
|
full. */
|
|
static int load_entry(int index, int pos, char* p, int size)
|
|
{
|
|
struct playlist_track_info info;
|
|
int len;
|
|
int result = 0;
|
|
char name[MAX_PATH];
|
|
|
|
/* Playlist viewer orders songs based on display index. We need to
|
|
convert to real playlist index to access track */
|
|
index = (index + playlist_get_first_index()) % viewer.num_tracks;
|
|
if (playlist_get_track_info(index, &info) < 0)
|
|
return -1;
|
|
|
|
format_name(name, info.filename);
|
|
|
|
len = strlen(name) + 1;
|
|
|
|
if (len <= size)
|
|
{
|
|
strcpy(p, name);
|
|
|
|
tracks[pos].name = p;
|
|
tracks[pos].index = info.index;
|
|
tracks[pos].display_index = info.display_index;
|
|
tracks[pos].queued = info.attr & PLAYLIST_ATTR_QUEUED;
|
|
|
|
result = len;
|
|
}
|
|
else
|
|
result = -1;
|
|
|
|
return result;
|
|
}
|
|
|
|
/* Format trackname for display purposes */
|
|
static void format_name(char* dest, char* src)
|
|
{
|
|
char* p = strrchr(src, '/');
|
|
int len;
|
|
|
|
/* Only display the mp3 filename */
|
|
strcpy(dest, p+1);
|
|
len = strlen(dest);
|
|
|
|
/* Remove the extension */
|
|
if (!strcasecmp(&dest[len-4], ".mp3") ||
|
|
!strcasecmp(&dest[len-4], ".mp2") ||
|
|
!strcasecmp(&dest[len-4], ".mpa"))
|
|
dest[len-4] = '\0';
|
|
}
|
|
|
|
/* Display tracks on screen */
|
|
static void display_playlist(void)
|
|
{
|
|
int i;
|
|
int num_display_tracks =
|
|
viewer.last_display_index - viewer.first_display_index;
|
|
|
|
lcd_clear_display();
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
lcd_setmargins(MARGIN_X, MARGIN_Y);
|
|
lcd_setfont(FONT_UI);
|
|
#endif
|
|
|
|
for (i=0; i<=num_display_tracks; i++)
|
|
{
|
|
/* Icons */
|
|
if (tracks[INDEX(i)].index == viewer.current_playing_track)
|
|
{
|
|
/* Current playing track */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
int offset=0;
|
|
if ( viewer.line_height > 8 )
|
|
offset = (viewer.line_height - 8) / 2;
|
|
lcd_bitmap(bitmap_icons_6x8[File],
|
|
CURSOR_X * 6 + CURSOR_WIDTH,
|
|
MARGIN_Y+(i*viewer.line_height) + offset,
|
|
6, 8, true);
|
|
#else
|
|
lcd_putc(LINE_X-1, i, File);
|
|
#endif
|
|
}
|
|
else if (tracks[INDEX(i)].index == viewer.move_track)
|
|
{
|
|
/* Track we are moving */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
lcd_putsxy(CURSOR_X * 6 + CURSOR_WIDTH,
|
|
MARGIN_Y+(i*viewer.line_height), "M");
|
|
#else
|
|
lcd_putc(LINE_X-1, i, 'M');
|
|
#endif
|
|
}
|
|
else if (tracks[INDEX(i)].queued)
|
|
{
|
|
/* Queued track */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
lcd_putsxy(CURSOR_X * 6 + CURSOR_WIDTH,
|
|
MARGIN_Y+(i*viewer.line_height), "Q");
|
|
#else
|
|
lcd_putc(LINE_X-1, i, 'Q');
|
|
#endif
|
|
}
|
|
|
|
update_display_line(i, false);
|
|
}
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
if (global_settings.scrollbar &&
|
|
(viewer.num_tracks > viewer.num_display_lines))
|
|
scrollbar(SCROLLBAR_X, SCROLLBAR_Y, SCROLLBAR_WIDTH - 1,
|
|
LCD_HEIGHT - SCROLLBAR_Y, viewer.num_tracks-1,
|
|
viewer.first_display_index, viewer.last_display_index,
|
|
VERTICAL);
|
|
#endif
|
|
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos, true);
|
|
status_draw(true);
|
|
}
|
|
|
|
/* Scroll cursor or display by num lines */
|
|
static void scroll_display(int lines)
|
|
{
|
|
int new_index = viewer.first_display_index + viewer.cursor_pos + lines;
|
|
bool pagescroll = false;
|
|
bool wrap = false;
|
|
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos, false);
|
|
|
|
if (lines > 1 || lines < -1)
|
|
pagescroll = true;
|
|
|
|
if (new_index < 0)
|
|
{
|
|
/* Wrap around if not pageup */
|
|
if (pagescroll)
|
|
new_index = 0;
|
|
else
|
|
{
|
|
new_index += viewer.num_tracks;
|
|
viewer.cursor_pos = viewer.num_display_lines-1;
|
|
wrap = true;
|
|
}
|
|
}
|
|
else if (new_index >= viewer.num_tracks)
|
|
{
|
|
/* Wrap around if not pagedown */
|
|
if (pagescroll)
|
|
new_index = viewer.num_tracks - 1;
|
|
else
|
|
{
|
|
new_index -= viewer.num_tracks;
|
|
viewer.cursor_pos = 0;
|
|
wrap = true;
|
|
}
|
|
}
|
|
|
|
if (new_index >= viewer.first_display_index &&
|
|
new_index <= viewer.last_display_index)
|
|
{
|
|
/* Just update the cursor */
|
|
viewer.cursor_pos = new_index - viewer.first_display_index;
|
|
}
|
|
else
|
|
{
|
|
/* New track is outside of display */
|
|
if (wrap)
|
|
viewer.first_display_index = new_index;
|
|
else
|
|
viewer.first_display_index = viewer.first_display_index + lines;
|
|
|
|
if (viewer.first_display_index < 0)
|
|
viewer.first_display_index = 0;
|
|
|
|
viewer.last_display_index =
|
|
viewer.first_display_index + (viewer.num_display_lines - 1);
|
|
if (viewer.last_display_index >= viewer.num_tracks)
|
|
{
|
|
/* display as many tracks as possible on screen */
|
|
if (viewer.first_display_index > 0)
|
|
{
|
|
viewer.first_display_index -=
|
|
(viewer.last_display_index - viewer.num_tracks + 1);
|
|
if (viewer.first_display_index < 0)
|
|
viewer.first_display_index = 0;
|
|
}
|
|
|
|
viewer.last_display_index = viewer.num_tracks - 1;
|
|
}
|
|
|
|
if (viewer.cursor_pos >
|
|
(viewer.last_display_index - viewer.first_display_index))
|
|
viewer.cursor_pos =
|
|
viewer.last_display_index - viewer.first_display_index;
|
|
|
|
/* Load more data if needed */
|
|
if (viewer.first_display_index < viewer.first_index)
|
|
load_playlist_entries_r(viewer.last_display_index);
|
|
else if (viewer.last_display_index > viewer.last_index)
|
|
load_playlist_entries(viewer.first_display_index);
|
|
|
|
display_playlist();
|
|
}
|
|
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos, true);
|
|
}
|
|
|
|
/* Update lcd line. Scroll line if requested */
|
|
static void update_display_line(int line, bool scroll)
|
|
{
|
|
char str[MAX_PATH + 16];
|
|
|
|
snprintf(str, sizeof(str), "%d. %s",
|
|
tracks[INDEX(line)].display_index,
|
|
tracks[INDEX(line)].name);
|
|
|
|
if (scroll)
|
|
{
|
|
#ifdef HAVE_LCD_BITMAP
|
|
if (global_settings.invert_cursor)
|
|
lcd_puts_scroll_style(LINE_X, line, str, STYLE_INVERT);
|
|
else
|
|
#endif
|
|
lcd_puts_scroll(LINE_X, line, str);
|
|
}
|
|
else
|
|
lcd_puts(LINE_X, line, str);
|
|
}
|
|
|
|
/* Update first index, if necessary, to put as much as possible on the
|
|
screen */
|
|
static void update_first_index(void)
|
|
{
|
|
/* viewer.num_tracks may be invalid at this point */
|
|
int num_tracks = playlist_amount();
|
|
|
|
if ((num_tracks - viewer.first_display_index) < viewer.num_display_lines)
|
|
{
|
|
/* Try to display as much as possible */
|
|
int old_index = viewer.first_display_index;
|
|
|
|
viewer.first_display_index = num_tracks - viewer.num_display_lines;
|
|
if (viewer.first_display_index < 0)
|
|
viewer.first_display_index = 0;
|
|
|
|
/* Cursor should still point at current track */
|
|
viewer.cursor_pos += old_index - viewer.first_display_index;
|
|
}
|
|
}
|
|
|
|
/* Update playlist in case something has changed or forced */
|
|
static bool update_playlist(bool force)
|
|
{
|
|
playlist_get_resume_info(&viewer.current_playing_track);
|
|
|
|
if (force || playlist_amount() != viewer.num_tracks)
|
|
{
|
|
int index;
|
|
|
|
/* Reload tracks */
|
|
viewer.num_tracks = playlist_amount();
|
|
if (viewer.num_tracks < 0)
|
|
return false;
|
|
|
|
index = viewer.first_display_index;
|
|
|
|
load_playlist_entries(index);
|
|
|
|
if (viewer.num_loaded <= 0)
|
|
return false;
|
|
|
|
viewer.first_display_index = viewer.first_index;
|
|
viewer.last_display_index =
|
|
viewer.first_index + viewer.num_display_lines - 1;
|
|
if (viewer.last_display_index >= viewer.num_tracks)
|
|
viewer.last_display_index = viewer.num_tracks - 1;
|
|
}
|
|
|
|
display_playlist();
|
|
|
|
return true;
|
|
}
|
|
|
|
#ifdef BUTTON_ON
|
|
/* Menu of playlist commands. Invoked via ON+PLAY on main viewer screen.
|
|
Returns -1 if USB attached, 0 if no playlist change, and 1 if playlist
|
|
changed. */
|
|
static int onplay_menu(int index)
|
|
{
|
|
struct menu_items menu[2]; /* increase this if you add entries! */
|
|
int m, i=0, result, ret = 0;
|
|
bool current = (tracks[index].index == viewer.current_playing_track);
|
|
|
|
menu[i].desc = str(LANG_DELETE);
|
|
i++;
|
|
|
|
menu[i].desc = str(LANG_MOVE);
|
|
i++;
|
|
|
|
m = menu_init(menu, i);
|
|
result = menu_show(m);
|
|
if (result == MENU_ATTACHED_USB)
|
|
ret = -1;
|
|
else if (result >= 0)
|
|
{
|
|
/* Abort current move */
|
|
viewer.move_track = -1;
|
|
|
|
switch (result)
|
|
{
|
|
case 0:
|
|
/* delete track */
|
|
if (current)
|
|
mpeg_stop();
|
|
|
|
playlist_delete(tracks[index].index);
|
|
|
|
if (current)
|
|
{
|
|
/* Start playing new track except if it's the last track
|
|
in the playlist and repeat mode is disabled */
|
|
if (tracks[index].display_index != viewer.num_tracks ||
|
|
global_settings.repeat_mode == REPEAT_ALL)
|
|
{
|
|
mpeg_play(0);
|
|
viewer.current_playing_track = -1;
|
|
}
|
|
}
|
|
|
|
ret = 1;
|
|
break;
|
|
case 1:
|
|
/* move track */
|
|
viewer.move_track = tracks[index].index;
|
|
ret = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
menu_exit(m);
|
|
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
/* Main viewer function */
|
|
bool playlist_viewer(void)
|
|
{
|
|
bool exit=false; /* exit viewer */
|
|
bool update=true; /* update display */
|
|
bool cursor_on=true; /* used for flashing cursor */
|
|
int old_cursor_pos; /* last cursor position */
|
|
int button;
|
|
|
|
if (!initialize())
|
|
return false;
|
|
|
|
old_cursor_pos = viewer.cursor_pos;
|
|
|
|
while (!exit)
|
|
{
|
|
short track;
|
|
|
|
/* Timeout so we can determine if play status has changed */
|
|
button = button_get_w_tmo(HZ/2);
|
|
|
|
if (!(mpeg_status() & MPEG_STATUS_PLAY))
|
|
{
|
|
/* Play has stopped */
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
splash(HZ, 0, true, str(LANG_END_PLAYLIST_PLAYER));
|
|
#else
|
|
splash(HZ, 0, true, str(LANG_END_PLAYLIST_RECORDER));
|
|
#endif
|
|
status_set_playmode(STATUS_STOP);
|
|
return false;;
|
|
}
|
|
|
|
if (viewer.move_track != -1 || !cursor_on)
|
|
{
|
|
/* Flash cursor to identify that we are moving a track */
|
|
cursor_on = !cursor_on;
|
|
#ifdef HAVE_LCD_BITMAP
|
|
if (global_settings.invert_cursor)
|
|
{
|
|
lcd_invertrect(
|
|
MARGIN_X, MARGIN_Y+(viewer.cursor_pos*viewer.line_height),
|
|
LCD_WIDTH, viewer.line_height);
|
|
lcd_invertscroll(LINE_X, viewer.cursor_pos);
|
|
}
|
|
else
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos,
|
|
cursor_on);
|
|
|
|
lcd_update_rect(
|
|
0, MARGIN_Y + (viewer.cursor_pos * viewer.line_height),
|
|
LCD_WIDTH, viewer.line_height);
|
|
#else
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos, cursor_on);
|
|
lcd_update();
|
|
#endif
|
|
}
|
|
|
|
playlist_get_resume_info(&track);
|
|
|
|
if (track != viewer.current_playing_track ||
|
|
playlist_amount() != viewer.num_tracks)
|
|
{
|
|
/* Playlist has changed (new track started?) */
|
|
update_first_index();
|
|
if (!update_playlist(false))
|
|
exit = true;
|
|
else
|
|
update = true;
|
|
|
|
/* Abort move on playlist change */
|
|
viewer.move_track = -1;
|
|
}
|
|
|
|
switch (button)
|
|
{
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
case BUTTON_OFF:
|
|
case BUTTON_LEFT:
|
|
#else
|
|
case BUTTON_STOP:
|
|
#endif
|
|
exit = true;
|
|
break;
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
case BUTTON_UP:
|
|
case BUTTON_UP | BUTTON_REPEAT:
|
|
#else
|
|
case BUTTON_LEFT:
|
|
case BUTTON_LEFT | BUTTON_REPEAT:
|
|
#endif
|
|
scroll_display(-1);
|
|
update = true;
|
|
break;
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
case BUTTON_DOWN:
|
|
case BUTTON_DOWN | BUTTON_REPEAT:
|
|
#else
|
|
case BUTTON_RIGHT:
|
|
case BUTTON_RIGHT | BUTTON_REPEAT:
|
|
#endif
|
|
scroll_display(1);
|
|
update = true;
|
|
break;
|
|
|
|
#ifdef BUTTON_ON
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
case BUTTON_ON | BUTTON_UP:
|
|
case BUTTON_ON | BUTTON_UP | BUTTON_REPEAT:
|
|
#else
|
|
case BUTTON_ON | BUTTON_LEFT:
|
|
case BUTTON_ON | BUTTON_LEFT | BUTTON_REPEAT:
|
|
#endif
|
|
/* Pageup */
|
|
scroll_display(-viewer.num_display_lines);
|
|
update = true;
|
|
break;
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
case BUTTON_ON | BUTTON_DOWN:
|
|
case BUTTON_ON | BUTTON_DOWN | BUTTON_REPEAT:
|
|
#else
|
|
case BUTTON_ON | BUTTON_RIGHT:
|
|
case BUTTON_ON | BUTTON_RIGHT | BUTTON_REPEAT:
|
|
#endif
|
|
/* Pagedown */
|
|
scroll_display(viewer.num_display_lines);
|
|
update = true;
|
|
break;
|
|
#endif /* BUTTON_ON */
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
case BUTTON_RIGHT:
|
|
#endif
|
|
case BUTTON_PLAY:
|
|
if (viewer.move_track >= 0)
|
|
{
|
|
/* Move track */
|
|
int ret;
|
|
|
|
ret = playlist_move(viewer.move_track,
|
|
tracks[INDEX(viewer.cursor_pos)].index);
|
|
if (ret < 0)
|
|
splash(HZ, 0, true, str(LANG_MOVE_FAILED));
|
|
|
|
update_playlist(true);
|
|
viewer.move_track = -1;
|
|
}
|
|
else
|
|
{
|
|
/* Stop current track and play new track */
|
|
mpeg_stop();
|
|
playlist_start(tracks[INDEX(viewer.cursor_pos)].index, 0);
|
|
status_set_playmode(STATUS_PLAY);
|
|
update_playlist(false);
|
|
}
|
|
|
|
display_playlist();
|
|
update = true;
|
|
break;
|
|
|
|
#ifdef BUTTON_ON
|
|
case BUTTON_ON | BUTTON_PLAY:
|
|
{
|
|
/* ON+PLAY menu */
|
|
int ret;
|
|
|
|
ret = onplay_menu(INDEX(viewer.cursor_pos));
|
|
|
|
if (ret < 0)
|
|
/* USB attached */
|
|
return true;
|
|
else if (ret > 0)
|
|
{
|
|
/* Playlist changed */
|
|
update_first_index();
|
|
update_playlist(true);
|
|
if (viewer.num_tracks <= 0)
|
|
exit = true;
|
|
}
|
|
else
|
|
display_playlist();
|
|
|
|
update = true;
|
|
break;
|
|
}
|
|
#endif /* BUTTON_ON */
|
|
case SYS_USB_CONNECTED:
|
|
usb_screen();
|
|
return true;
|
|
}
|
|
|
|
if (update && !exit)
|
|
{
|
|
lcd_stop_scroll();
|
|
|
|
if (viewer.cursor_pos >
|
|
(viewer.last_display_index - viewer.first_display_index))
|
|
{
|
|
/* Cursor position is invalid */
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos, false);
|
|
viewer.cursor_pos =
|
|
viewer.last_display_index - viewer.first_display_index;
|
|
put_cursorxy(CURSOR_X, CURSOR_Y + viewer.cursor_pos, true);
|
|
}
|
|
|
|
if (viewer.cursor_pos != old_cursor_pos &&
|
|
old_cursor_pos <=
|
|
(viewer.last_display_index - viewer.first_display_index))
|
|
/* Stop scrolling previous line */
|
|
update_display_line(old_cursor_pos, false);
|
|
|
|
/* Scroll line at new cursor position */
|
|
update_display_line(viewer.cursor_pos, true);
|
|
|
|
lcd_update();
|
|
|
|
old_cursor_pos = viewer.cursor_pos;
|
|
cursor_on = true;
|
|
update = false;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|