2002-06-04 21:43:38 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by wavey@wavey.org
|
|
|
|
*
|
|
|
|
* 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 <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "playlist.h"
|
|
|
|
#include <file.h>
|
|
|
|
#include "sprintf.h"
|
|
|
|
#include "debug.h"
|
2002-06-07 14:48:06 +00:00
|
|
|
#include "mpeg.h"
|
2002-06-13 15:16:41 +00:00
|
|
|
#include "lcd.h"
|
|
|
|
#include "kernel.h"
|
2002-06-27 10:10:30 +00:00
|
|
|
#include "settings.h"
|
2002-08-07 10:35:26 +00:00
|
|
|
#include "status.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#define LINE_Y (global_settings.statusbar&&statusbar_enabled?1:0) /* Y position the entry-list starts at */
|
|
|
|
#else /* HAVE_LCD_BITMAP */
|
|
|
|
#define LINE_Y 0 /* Y position the entry-list starts at */
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
2002-06-04 21:43:38 +00:00
|
|
|
|
|
|
|
playlist_info_t playlist;
|
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
#define PLAYLIST_BUFFER_SIZE (MAX_PATH*200)
|
|
|
|
|
|
|
|
unsigned char playlist_buffer[PLAYLIST_BUFFER_SIZE];
|
|
|
|
static int playlist_end_pos = 0;
|
|
|
|
|
2002-07-05 12:48:17 +00:00
|
|
|
char now_playing[MAX_PATH+1];
|
2002-06-04 21:43:38 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
void playlist_clear(void)
|
|
|
|
{
|
|
|
|
playlist_end_pos = 0;
|
|
|
|
playlist_buffer[0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int playlist_add(char *filename)
|
|
|
|
{
|
|
|
|
int len = strlen(filename);
|
|
|
|
|
|
|
|
if(len+2 > PLAYLIST_BUFFER_SIZE - playlist_end_pos)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
strcpy(&playlist_buffer[playlist_end_pos], filename);
|
|
|
|
playlist_end_pos += len;
|
|
|
|
playlist_buffer[playlist_end_pos++] = '\n';
|
|
|
|
playlist_buffer[playlist_end_pos] = '\0';
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* playlist_next(int steps)
|
2002-06-04 21:43:38 +00:00
|
|
|
{
|
2002-06-26 23:25:03 +00:00
|
|
|
int seek;
|
2002-06-04 21:43:38 +00:00
|
|
|
int max;
|
|
|
|
int fd;
|
2002-06-17 10:17:50 +00:00
|
|
|
int i;
|
2002-08-06 13:09:48 +00:00
|
|
|
char *buf;
|
2002-08-01 11:37:26 +00:00
|
|
|
char dir_buf[MAX_PATH+1];
|
|
|
|
char *dir_end;
|
2002-06-07 14:48:06 +00:00
|
|
|
|
2002-06-26 23:25:03 +00:00
|
|
|
playlist.index = (playlist.index+steps) % playlist.amount;
|
2002-08-09 08:54:46 +00:00
|
|
|
while ( playlist.index < 0 ) {
|
2002-08-08 21:12:09 +00:00
|
|
|
if ( global_settings.loop_playlist )
|
|
|
|
playlist.index += playlist.amount;
|
|
|
|
else
|
|
|
|
playlist.index = 0;
|
|
|
|
}
|
2002-06-26 23:25:03 +00:00
|
|
|
seek = playlist.indices[playlist.index];
|
2002-06-04 21:43:38 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
if(playlist.in_ram)
|
|
|
|
{
|
|
|
|
buf = playlist_buffer + seek;
|
|
|
|
max = playlist_end_pos - seek;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fd = open(playlist.filename, O_RDONLY);
|
|
|
|
if(-1 != fd)
|
|
|
|
{
|
|
|
|
buf = playlist_buffer;
|
|
|
|
lseek(fd, seek, SEEK_SET);
|
|
|
|
max = read(fd, buf, MAX_PATH);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Zero-terminate the file name */
|
|
|
|
seek=0;
|
|
|
|
while((buf[seek] != '\n') &&
|
|
|
|
(buf[seek] != '\r') &&
|
|
|
|
(seek < max))
|
2002-06-04 21:43:38 +00:00
|
|
|
seek++;
|
2002-06-11 07:33:51 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
/* Now work back killing white space */
|
|
|
|
while((buf[seek-1] == ' ') ||
|
|
|
|
(buf[seek-1] == '\t'))
|
|
|
|
seek--;
|
2002-06-27 08:20:09 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
buf[seek]=0;
|
2002-06-17 10:17:50 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
/* replace backslashes with forward slashes */
|
|
|
|
for ( i=0; i<seek; i++ )
|
|
|
|
if ( buf[i] == '\\' )
|
|
|
|
buf[i] = '/';
|
|
|
|
|
|
|
|
if('/' == buf[0]) {
|
|
|
|
strcpy(now_playing, &buf[0]);
|
|
|
|
return now_playing;
|
|
|
|
}
|
|
|
|
else {
|
2002-08-08 10:29:14 +00:00
|
|
|
strncpy(dir_buf, playlist.filename, playlist.dirlen-1);
|
2002-08-08 13:58:53 +00:00
|
|
|
dir_buf[playlist.dirlen-1] = 0;
|
2002-08-06 13:09:48 +00:00
|
|
|
|
|
|
|
/* handle dos style drive letter */
|
|
|
|
if ( ':' == buf[1] ) {
|
|
|
|
strcpy(now_playing, &buf[2]);
|
|
|
|
return now_playing;
|
|
|
|
}
|
|
|
|
else if ( '.' == buf[0] && '.' == buf[1] && '/' == buf[2] ) {
|
|
|
|
/* handle relative paths */
|
|
|
|
seek=3;
|
|
|
|
while(buf[seek] == '.' &&
|
|
|
|
buf[seek+1] == '.' &&
|
|
|
|
buf[seek+2] == '/')
|
|
|
|
seek += 3;
|
|
|
|
for (i=0; i<seek/3; i++) {
|
|
|
|
dir_end = strrchr(dir_buf, '/');
|
|
|
|
if (dir_end)
|
|
|
|
*dir_end = '\0';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
snprintf(now_playing, MAX_PATH+1, "%s/%s", dir_buf, &buf[seek]);
|
|
|
|
return now_playing;
|
|
|
|
}
|
|
|
|
else if ( '.' == buf[0] && '/' == buf[1] ) {
|
|
|
|
snprintf(now_playing, MAX_PATH+1, "%s/%s", dir_buf, &buf[2]);
|
|
|
|
return now_playing;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
snprintf(now_playing, MAX_PATH+1, "%s/%s", dir_buf, buf);
|
|
|
|
return now_playing;
|
|
|
|
}
|
2002-06-04 21:43:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-07 06:04:24 +00:00
|
|
|
void play_list(char *dir, char *file, int start_index)
|
2002-06-04 21:43:38 +00:00
|
|
|
{
|
2002-06-12 07:07:45 +00:00
|
|
|
char *sep="";
|
2002-08-06 13:09:48 +00:00
|
|
|
int dirlen;
|
2002-06-13 15:16:41 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
empty_playlist();
|
|
|
|
|
2002-08-07 06:04:24 +00:00
|
|
|
playlist.index = start_index;
|
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
/* If file is NULL, the list is in RAM */
|
|
|
|
if(file) {
|
|
|
|
lcd_clear_display();
|
2002-08-07 10:35:26 +00:00
|
|
|
lcd_puts(0,LINE_Y,"Loading...");
|
|
|
|
status_draw();
|
2002-08-06 13:09:48 +00:00
|
|
|
lcd_update();
|
|
|
|
playlist.in_ram = false;
|
|
|
|
} else {
|
|
|
|
/* Assign a dummy filename */
|
|
|
|
file = "";
|
|
|
|
playlist.in_ram = true;
|
|
|
|
}
|
2002-06-04 21:43:38 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
dirlen = strlen(dir);
|
|
|
|
|
|
|
|
/* If the dir does not end in trailing slash, we use a separator.
|
2002-06-12 07:07:45 +00:00
|
|
|
Otherwise we don't. */
|
2002-08-06 13:09:48 +00:00
|
|
|
if('/' != dir[dirlen-1]) {
|
2002-06-12 07:07:45 +00:00
|
|
|
sep="/";
|
2002-08-06 13:09:48 +00:00
|
|
|
dirlen++;
|
|
|
|
}
|
|
|
|
|
|
|
|
playlist.dirlen = dirlen;
|
2002-06-12 07:07:45 +00:00
|
|
|
|
2002-06-04 21:43:38 +00:00
|
|
|
snprintf(playlist.filename, sizeof(playlist.filename),
|
2002-06-12 07:07:45 +00:00
|
|
|
"%s%s%s",
|
|
|
|
dir, sep, file);
|
2002-06-04 21:43:38 +00:00
|
|
|
|
|
|
|
/* add track indices to playlist data structure */
|
2002-08-06 13:09:48 +00:00
|
|
|
add_indices_to_playlist();
|
|
|
|
|
2002-06-27 10:10:30 +00:00
|
|
|
if(global_settings.playlist_shuffle) {
|
2002-08-06 13:09:48 +00:00
|
|
|
if(!playlist.in_ram) {
|
2002-08-07 10:35:26 +00:00
|
|
|
lcd_puts(0,LINE_Y,"Shuffling...");
|
|
|
|
status_draw();
|
2002-08-06 13:09:48 +00:00
|
|
|
lcd_update();
|
|
|
|
}
|
|
|
|
randomise_playlist( current_tick );
|
2002-06-17 10:36:42 +00:00
|
|
|
}
|
2002-06-04 21:43:38 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
if(!playlist.in_ram) {
|
2002-08-07 10:35:26 +00:00
|
|
|
lcd_puts(0,LINE_Y,"Playing... ");
|
|
|
|
status_draw();
|
2002-08-06 13:09:48 +00:00
|
|
|
lcd_update();
|
|
|
|
}
|
2002-06-04 21:43:38 +00:00
|
|
|
/* also make the first song get playing */
|
2002-08-06 13:09:48 +00:00
|
|
|
mpeg_play(playlist_next(0));
|
2002-06-04 21:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* remove any filename and indices associated with the playlist
|
|
|
|
*/
|
2002-08-06 13:09:48 +00:00
|
|
|
void empty_playlist(void)
|
2002-06-04 21:43:38 +00:00
|
|
|
{
|
2002-08-06 13:09:48 +00:00
|
|
|
playlist.filename[0] = '\0';
|
|
|
|
playlist.index = 0;
|
|
|
|
playlist.amount = 0;
|
2002-06-04 21:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* calculate track offsets within a playlist file
|
|
|
|
*/
|
2002-08-06 13:09:48 +00:00
|
|
|
void add_indices_to_playlist(void)
|
2002-06-04 21:43:38 +00:00
|
|
|
{
|
|
|
|
int nread;
|
2002-08-06 13:09:48 +00:00
|
|
|
int fd = -1;
|
2002-06-11 07:30:31 +00:00
|
|
|
int i = 0;
|
|
|
|
int store_index = 0;
|
|
|
|
int count = 0;
|
2002-06-13 21:27:42 +00:00
|
|
|
int next_tick = current_tick + HZ;
|
2002-06-11 07:30:31 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
unsigned char *p = playlist_buffer;
|
2002-06-13 15:16:41 +00:00
|
|
|
char line[16];
|
2002-06-11 07:33:51 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
if(!playlist.in_ram) {
|
|
|
|
fd = open(playlist.filename, O_RDONLY);
|
|
|
|
if(-1 == fd)
|
|
|
|
return; /* failure */
|
|
|
|
}
|
2002-06-04 21:43:38 +00:00
|
|
|
|
2002-06-11 07:30:31 +00:00
|
|
|
store_index = 1;
|
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
while(1)
|
2002-06-11 07:30:31 +00:00
|
|
|
{
|
2002-08-06 13:09:48 +00:00
|
|
|
if(playlist.in_ram) {
|
|
|
|
nread = playlist_end_pos;
|
|
|
|
} else {
|
|
|
|
nread = read(fd, playlist_buffer, PLAYLIST_BUFFER_SIZE);
|
|
|
|
/* Terminate on EOF */
|
|
|
|
if(nread <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = playlist_buffer;
|
2002-06-11 07:30:31 +00:00
|
|
|
|
|
|
|
for(count=0; count < nread; count++,p++) {
|
|
|
|
|
|
|
|
/* Are we on a new line? */
|
2002-06-13 23:06:30 +00:00
|
|
|
if((*p == '\n') || (*p == '\r'))
|
2002-06-11 07:30:31 +00:00
|
|
|
{
|
|
|
|
store_index = 1;
|
|
|
|
}
|
2002-06-15 14:31:01 +00:00
|
|
|
else if((*p == '#') && store_index)
|
|
|
|
{
|
|
|
|
/* If the first character on a new line is a hash
|
|
|
|
sign, we treat it as a comment. So called winamp
|
|
|
|
style playlist. */
|
|
|
|
store_index = 0;
|
|
|
|
}
|
2002-06-11 07:30:31 +00:00
|
|
|
else if(store_index)
|
|
|
|
{
|
2002-07-05 12:48:17 +00:00
|
|
|
|
2002-06-11 07:30:31 +00:00
|
|
|
/* Store a new entry */
|
2002-08-06 13:09:48 +00:00
|
|
|
playlist.indices[ playlist.amount ] = i+count;
|
|
|
|
playlist.amount++;
|
|
|
|
if ( playlist.amount >= MAX_PLAYLIST_SIZE ) {
|
|
|
|
if(!playlist.in_ram)
|
|
|
|
close(fd);
|
2002-08-12 22:52:19 +00:00
|
|
|
|
|
|
|
lcd_clear_display();
|
|
|
|
lcd_puts(0,0,"10000 file");
|
|
|
|
lcd_puts(0,1,"limit reached");
|
|
|
|
lcd_update();
|
|
|
|
sleep(HZ*2);
|
|
|
|
lcd_clear_display();
|
|
|
|
|
2002-06-13 13:53:22 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-06-11 07:30:31 +00:00
|
|
|
|
|
|
|
store_index = 0;
|
2002-08-06 13:09:48 +00:00
|
|
|
/* Update the screen if it takes very long */
|
|
|
|
if(!playlist.in_ram) {
|
|
|
|
if ( current_tick >= next_tick ) {
|
|
|
|
next_tick = current_tick + HZ;
|
|
|
|
snprintf(line, sizeof line, "%d files",
|
|
|
|
playlist.amount);
|
2002-08-07 10:35:26 +00:00
|
|
|
lcd_puts(0,LINE_Y+1,line);
|
|
|
|
status_draw();
|
2002-08-06 13:09:48 +00:00
|
|
|
lcd_update();
|
|
|
|
}
|
2002-06-13 15:16:41 +00:00
|
|
|
}
|
2002-06-11 07:30:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i+= count;
|
2002-06-04 21:43:38 +00:00
|
|
|
|
2002-08-06 13:09:48 +00:00
|
|
|
if(playlist.in_ram)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(!playlist.in_ram) {
|
|
|
|
snprintf(line, sizeof line, "%d files", playlist.amount);
|
2002-08-07 10:35:26 +00:00
|
|
|
lcd_puts(0,LINE_Y+1,line);
|
|
|
|
status_draw();
|
2002-08-06 13:09:48 +00:00
|
|
|
lcd_update();
|
|
|
|
close(fd);
|
|
|
|
}
|
2002-06-04 21:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* randomly rearrange the array of indices for the playlist
|
|
|
|
*/
|
2002-08-06 13:09:48 +00:00
|
|
|
void randomise_playlist( unsigned int seed )
|
2002-06-04 21:43:38 +00:00
|
|
|
{
|
2002-07-22 15:36:39 +00:00
|
|
|
int count;
|
2002-06-04 21:43:38 +00:00
|
|
|
int candidate;
|
|
|
|
int store;
|
|
|
|
|
|
|
|
/* seed with the given seed */
|
2002-07-17 23:07:45 +00:00
|
|
|
srand( seed );
|
2002-06-04 21:43:38 +00:00
|
|
|
|
|
|
|
/* randomise entire indices list */
|
2002-08-06 13:09:48 +00:00
|
|
|
for(count = playlist.amount - 1; count >= 0; count--)
|
2002-06-04 21:43:38 +00:00
|
|
|
{
|
|
|
|
/* the rand is from 0 to RAND_MAX, so adjust to our value range */
|
2002-07-22 15:36:39 +00:00
|
|
|
candidate = rand() % (count + 1);
|
2002-06-04 21:43:38 +00:00
|
|
|
|
|
|
|
/* now swap the values at the 'count' and 'candidate' positions */
|
2002-08-06 13:09:48 +00:00
|
|
|
store = playlist.indices[candidate];
|
|
|
|
playlist.indices[candidate] = playlist.indices[count];
|
|
|
|
playlist.indices[count] = store;
|
2002-06-04 21:43:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-02 13:20:03 +00:00
|
|
|
static int compare(const void* p1, const void* p2)
|
|
|
|
{
|
|
|
|
int* e1 = (int*) p1;
|
|
|
|
int* e2 = (int*) p2;
|
|
|
|
|
|
|
|
return *e1 - *e2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sort the array of indices for the playlist
|
|
|
|
*/
|
2002-08-06 13:09:48 +00:00
|
|
|
void sort_playlist(void)
|
2002-08-02 13:20:03 +00:00
|
|
|
{
|
2002-08-06 13:09:48 +00:00
|
|
|
if (playlist.amount > 0)
|
2002-08-02 13:20:03 +00:00
|
|
|
{
|
2002-08-06 13:09:48 +00:00
|
|
|
qsort(&playlist.indices, playlist.amount, sizeof(playlist.indices[0]), compare);
|
2002-08-02 13:20:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-04 21:43:38 +00:00
|
|
|
/* -----------------------------------------------------------------
|
|
|
|
* local variables:
|
|
|
|
* eval: (load-file "../firmware/rockbox-mode.el")
|
|
|
|
* end:
|
|
|
|
*/
|