2002-05-16 12:53:40 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Daniel Stenberg
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2002-05-16 14:48:40 +00:00
|
|
|
#include <stdio.h>
|
2002-05-16 12:53:40 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "dir.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "tree.h"
|
2002-05-16 14:48:40 +00:00
|
|
|
#include "play.h"
|
2002-05-24 15:51:39 +00:00
|
|
|
#include "main_menu.h"
|
2002-05-29 16:38:19 +00:00
|
|
|
#include "sprintf.h"
|
2002-05-30 13:23:03 +00:00
|
|
|
#include "mpeg.h"
|
2002-06-07 14:23:32 +00:00
|
|
|
#include "playlist.h"
|
2002-05-16 12:53:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#include "icons.h"
|
|
|
|
#endif
|
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
#define MAX_FILES_IN_DIR 200
|
2002-05-16 12:53:40 +00:00
|
|
|
#define TREE_MAX_FILENAMELEN 128
|
|
|
|
#define MAX_DIR_LEVELS 10
|
|
|
|
|
|
|
|
struct entry {
|
|
|
|
bool file; /* true if file, false if dir */
|
|
|
|
char name[TREE_MAX_FILENAMELEN];
|
|
|
|
};
|
|
|
|
|
2002-05-30 14:01:36 +00:00
|
|
|
static struct entry dircache[MAX_FILES_IN_DIR];
|
|
|
|
static struct entry* dircacheptr[MAX_FILES_IN_DIR];
|
2002-05-28 16:26:12 +00:00
|
|
|
static int filesindir;
|
|
|
|
|
2002-05-16 12:53:40 +00:00
|
|
|
void browse_root(void)
|
|
|
|
{
|
|
|
|
dirbrowse("/");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
|
|
|
#define TREE_MAX_ON_SCREEN 7
|
|
|
|
#define TREE_MAX_LEN_DISPLAY 16 /* max length that fits on screen */
|
|
|
|
|
|
|
|
#define MARGIN_Y 8 /* Y pixel margin */
|
|
|
|
#define MARGIN_X 12 /* X pixel margin */
|
|
|
|
#define LINE_Y 0 /* Y position the entry-list starts at */
|
|
|
|
#define LINE_X 2 /* X position the entry-list starts at */
|
|
|
|
#define LINE_HEIGTH 8 /* pixels for each text line */
|
2002-05-31 09:04:51 +00:00
|
|
|
#define CURSOR_CHAR "-"
|
2002-05-16 12:53:40 +00:00
|
|
|
|
|
|
|
extern unsigned char bitmap_icons_6x8[LastIcon][6];
|
|
|
|
|
|
|
|
#else /* HAVE_LCD_BITMAP */
|
|
|
|
|
|
|
|
#define TREE_MAX_ON_SCREEN 2
|
|
|
|
#define TREE_MAX_LEN_DISPLAY 11 /* max length that fits on screen */
|
|
|
|
#define LINE_Y 0 /* Y position the entry-list starts at */
|
|
|
|
#define LINE_X 1 /* X position the entry-list starts at */
|
|
|
|
|
2002-05-31 09:04:51 +00:00
|
|
|
#ifdef HAVE_NEW_CHARCELL_LCD
|
|
|
|
#define CURSOR_CHAR "\x7e"
|
|
|
|
#else
|
|
|
|
#define CURSOR_CHAR "\x89"
|
|
|
|
#endif
|
|
|
|
|
2002-05-16 12:53:40 +00:00
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
2002-05-30 14:01:36 +00:00
|
|
|
static int compare(const void* e1, const void* e2)
|
|
|
|
{
|
|
|
|
return strncmp((*(struct entry**)e1)->name, (*(struct entry**)e2)->name,
|
|
|
|
TREE_MAX_FILENAMELEN);
|
|
|
|
}
|
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
static int showdir(char *path, int start)
|
2002-05-16 12:53:40 +00:00
|
|
|
{
|
2002-05-28 16:26:12 +00:00
|
|
|
static char lastdir[256] = {0};
|
|
|
|
|
2002-05-16 12:53:40 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
int icon_type = 0;
|
|
|
|
#endif
|
|
|
|
int i;
|
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
/* new dir? cache it */
|
|
|
|
if (strncmp(path,lastdir,sizeof(lastdir))) {
|
|
|
|
DIR *dir = opendir(path);
|
|
|
|
if(!dir)
|
|
|
|
return -1; /* not a directory */
|
2002-05-30 14:01:36 +00:00
|
|
|
memset(dircacheptr,0,sizeof(dircacheptr));
|
2002-05-28 16:26:12 +00:00
|
|
|
for ( i=0; i<MAX_FILES_IN_DIR; i++ ) {
|
|
|
|
struct dirent *entry = readdir(dir);
|
|
|
|
if (!entry)
|
|
|
|
break;
|
|
|
|
if(entry->d_name[0] == '.') {
|
|
|
|
/* skip names starting with a dot */
|
|
|
|
i--;
|
|
|
|
continue;
|
|
|
|
}
|
2002-05-30 14:01:36 +00:00
|
|
|
dircache[i].file = !(entry->attribute & ATTR_DIRECTORY);
|
|
|
|
strncpy(dircache[i].name,entry->d_name,TREE_MAX_FILENAMELEN);
|
|
|
|
dircache[i].name[TREE_MAX_FILENAMELEN-1]=0;
|
|
|
|
dircacheptr[i] = &dircache[i];
|
2002-05-28 16:26:12 +00:00
|
|
|
}
|
|
|
|
filesindir = i;
|
|
|
|
closedir(dir);
|
|
|
|
strncpy(lastdir,path,sizeof(lastdir));
|
|
|
|
lastdir[sizeof(lastdir)-1] = 0;
|
2002-05-30 14:01:36 +00:00
|
|
|
qsort(dircacheptr,filesindir,sizeof(struct entry*),compare);
|
2002-05-28 16:26:12 +00:00
|
|
|
}
|
2002-05-31 12:11:22 +00:00
|
|
|
|
2002-05-31 11:16:25 +00:00
|
|
|
#ifdef HAVE_NEW_CHARCELL_LCD
|
|
|
|
lcd_double_height(false);
|
|
|
|
#endif
|
2002-05-28 16:26:12 +00:00
|
|
|
lcd_clear_display();
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lcd_putsxy(0,0, "[Browse]",0);
|
|
|
|
lcd_update();
|
|
|
|
#endif
|
2002-05-16 12:53:40 +00:00
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
for ( i=start; i < start+TREE_MAX_ON_SCREEN; i++ ) {
|
2002-05-29 08:18:46 +00:00
|
|
|
int len;
|
|
|
|
|
|
|
|
if ( i >= filesindir )
|
|
|
|
break;
|
|
|
|
|
2002-05-30 14:01:36 +00:00
|
|
|
len = strlen(dircacheptr[i]->name);
|
2002-05-16 12:53:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-05-30 14:01:36 +00:00
|
|
|
if ( dircacheptr[i]->file )
|
2002-05-28 16:32:43 +00:00
|
|
|
icon_type=File;
|
|
|
|
else
|
|
|
|
icon_type=Folder;
|
2002-05-29 08:18:46 +00:00
|
|
|
lcd_bitmap(bitmap_icons_6x8[icon_type],
|
|
|
|
6, MARGIN_Y+(i-start)*LINE_HEIGTH, 6, 8, true);
|
2002-05-16 12:53:40 +00:00
|
|
|
#endif
|
|
|
|
|
2002-05-28 16:32:43 +00:00
|
|
|
if(len < TREE_MAX_LEN_DISPLAY)
|
2002-05-30 14:01:36 +00:00
|
|
|
lcd_puts(LINE_X, LINE_Y+i-start, dircacheptr[i]->name);
|
2002-05-28 16:32:43 +00:00
|
|
|
else {
|
2002-05-30 14:01:36 +00:00
|
|
|
char storage = dircacheptr[i]->name[TREE_MAX_LEN_DISPLAY];
|
|
|
|
dircacheptr[i]->name[TREE_MAX_LEN_DISPLAY]=0;
|
|
|
|
lcd_puts(LINE_X, LINE_Y+i-start, dircacheptr[i]->name);
|
|
|
|
dircacheptr[i]->name[TREE_MAX_LEN_DISPLAY]=storage;
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
return filesindir;
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
|
2002-05-31 12:11:22 +00:00
|
|
|
static int numentries=0;
|
|
|
|
static int dircursor=0;
|
|
|
|
static int start=0;
|
|
|
|
static int dirpos[MAX_DIR_LEVELS];
|
|
|
|
static int cursorpos[MAX_DIR_LEVELS];
|
|
|
|
static int dirlevel=0;
|
2002-06-04 21:44:29 +00:00
|
|
|
static int playing = 0;
|
2002-05-31 12:11:22 +00:00
|
|
|
static char currdir[255];
|
|
|
|
|
|
|
|
/* QUICK HACK! this should be handled by the playlist code later */
|
|
|
|
char* peek_next_track(int type)
|
|
|
|
{
|
|
|
|
static char buf[256];
|
|
|
|
|
2002-06-04 21:44:29 +00:00
|
|
|
/* next-song only works when playing */
|
2002-05-31 12:11:22 +00:00
|
|
|
if (!playing)
|
|
|
|
return NULL;
|
|
|
|
|
2002-06-04 21:44:29 +00:00
|
|
|
switch(playing) {
|
|
|
|
default:
|
|
|
|
case 1:
|
|
|
|
/* play-full-dir mode */
|
|
|
|
|
|
|
|
/* get next track in dir */
|
|
|
|
while (dircursor + start + 1 < numentries ) {
|
|
|
|
if(dircursor+1 < TREE_MAX_ON_SCREEN)
|
2002-05-31 12:11:22 +00:00
|
|
|
dircursor++;
|
2002-06-04 21:44:29 +00:00
|
|
|
else
|
2002-05-31 12:11:22 +00:00
|
|
|
start++;
|
2002-06-04 21:44:29 +00:00
|
|
|
if ( dircacheptr[dircursor+start]->file &&
|
|
|
|
dircacheptr[dircursor+start]->name[strlen(dircacheptr[dircursor+start]->name)-1] == '3') {
|
|
|
|
snprintf(buf,sizeof buf,"%s/%s",
|
|
|
|
currdir, dircacheptr[dircursor+start]->name );
|
|
|
|
lcd_clear_display();
|
|
|
|
lcd_puts(0,0,"<Playing>");
|
|
|
|
lcd_puts(0,1,"<all files>");
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
/* playlist mode */
|
|
|
|
return playlist_next(type);
|
2002-05-31 12:11:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-05-16 12:53:40 +00:00
|
|
|
bool dirbrowse(char *root)
|
|
|
|
{
|
|
|
|
char buf[255];
|
|
|
|
int i;
|
|
|
|
lcd_clear_display();
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lcd_putsxy(0,0, "[Browse]",0);
|
|
|
|
lcd_setmargins(0,MARGIN_Y);
|
|
|
|
lcd_setfont(0);
|
|
|
|
#endif
|
|
|
|
memcpy(currdir,root,sizeof(currdir));
|
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
numentries = showdir(root, start);
|
2002-05-16 12:53:40 +00:00
|
|
|
|
|
|
|
if (numentries == -1)
|
|
|
|
return -1; /* root is not a directory */
|
|
|
|
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, dircursor, CURSOR_CHAR);
|
2002-05-16 12:53:40 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lcd_update();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
while(1) {
|
2002-05-28 16:32:43 +00:00
|
|
|
switch(button_get(true)) {
|
2002-05-21 20:23:35 +00:00
|
|
|
#if defined(SIMULATOR) && defined(HAVE_RECODER_KEYPAD)
|
2002-05-21 18:02:47 +00:00
|
|
|
case BUTTON_OFF:
|
|
|
|
return false;
|
2002-05-21 18:05:31 +00:00
|
|
|
#endif
|
2002-05-21 18:02:47 +00:00
|
|
|
|
2002-05-16 12:53:40 +00:00
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
case BUTTON_LEFT:
|
2002-05-16 14:48:40 +00:00
|
|
|
#else
|
|
|
|
case BUTTON_STOP:
|
|
|
|
#endif
|
2002-05-16 12:53:40 +00:00
|
|
|
i=strlen(currdir);
|
2002-05-21 14:30:54 +00:00
|
|
|
if (i>1) {
|
2002-05-16 12:53:40 +00:00
|
|
|
while (currdir[i-1]!='/')
|
|
|
|
i--;
|
|
|
|
strcpy(buf,&currdir[i]);
|
|
|
|
if (i==1)
|
|
|
|
currdir[i]=0;
|
|
|
|
else
|
|
|
|
currdir[i-1]=0;
|
|
|
|
|
|
|
|
dirlevel--;
|
2002-05-31 07:19:38 +00:00
|
|
|
if ( dirlevel < MAX_DIR_LEVELS ) {
|
2002-05-16 12:53:40 +00:00
|
|
|
start = dirpos[dirlevel];
|
2002-05-31 07:19:38 +00:00
|
|
|
dircursor = cursorpos[dirlevel];
|
|
|
|
}
|
2002-05-16 12:53:40 +00:00
|
|
|
else
|
2002-05-31 07:19:38 +00:00
|
|
|
start = dircursor = 0;
|
2002-05-28 16:26:12 +00:00
|
|
|
numentries = showdir(currdir, start);
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-27 14:55:40 +00:00
|
|
|
}
|
2002-05-30 13:23:03 +00:00
|
|
|
else
|
|
|
|
mpeg_stop();
|
2002-05-16 12:53:40 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
2002-05-16 14:48:40 +00:00
|
|
|
case BUTTON_RIGHT:
|
2002-05-16 12:53:40 +00:00
|
|
|
#endif
|
2002-05-16 14:48:40 +00:00
|
|
|
case BUTTON_PLAY:
|
2002-05-16 12:53:40 +00:00
|
|
|
if ((currdir[0]=='/') && (currdir[1]==0)) {
|
2002-05-30 14:01:36 +00:00
|
|
|
snprintf(buf,sizeof(buf),"%s%s",currdir,
|
|
|
|
dircacheptr[dircursor+start]->name);
|
2002-05-16 12:53:40 +00:00
|
|
|
} else {
|
2002-05-30 14:01:36 +00:00
|
|
|
snprintf(buf,sizeof(buf),"%s/%s",currdir,
|
|
|
|
dircacheptr[dircursor+start]->name);
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
|
2002-05-30 14:01:36 +00:00
|
|
|
if (!dircacheptr[dircursor+start]->file) {
|
2002-05-16 12:53:40 +00:00
|
|
|
memcpy(currdir,buf,sizeof(currdir));
|
2002-05-31 07:19:38 +00:00
|
|
|
if ( dirlevel < MAX_DIR_LEVELS ) {
|
|
|
|
dirpos[dirlevel] = start;
|
|
|
|
cursorpos[dirlevel] = dircursor;
|
|
|
|
}
|
2002-05-16 12:53:40 +00:00
|
|
|
dirlevel++;
|
|
|
|
dircursor=0;
|
|
|
|
start=0;
|
|
|
|
} else {
|
2002-06-04 21:44:29 +00:00
|
|
|
int len=
|
|
|
|
strlen(dircacheptr[dircursor+start]->name);
|
|
|
|
if((len > 4) &&
|
|
|
|
!strcmp(&dircacheptr[dircursor+start]->name[len-4],
|
|
|
|
".m3u")) {
|
|
|
|
playing = 2;
|
|
|
|
play_list(currdir, dircacheptr[dircursor+start]->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
playing = 1;
|
2002-06-10 07:58:04 +00:00
|
|
|
playtune(buf);
|
2002-06-04 21:44:29 +00:00
|
|
|
playing = 0;
|
2002-05-16 12:53:40 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2002-06-04 21:44:29 +00:00
|
|
|
lcd_setmargins(0, MARGIN_Y);
|
|
|
|
lcd_setfont(0);
|
2002-05-16 12:53:40 +00:00
|
|
|
#endif
|
2002-06-04 21:44:29 +00:00
|
|
|
}
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
|
2002-05-28 16:26:12 +00:00
|
|
|
numentries = showdir(currdir, start);
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-16 12:53:40 +00:00
|
|
|
break;
|
2002-05-16 14:48:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
2002-05-16 12:53:40 +00:00
|
|
|
case BUTTON_UP:
|
2002-05-16 14:48:40 +00:00
|
|
|
#else
|
|
|
|
case BUTTON_LEFT:
|
|
|
|
#endif
|
2002-05-16 12:53:40 +00:00
|
|
|
if(dircursor) {
|
|
|
|
lcd_puts(0, LINE_Y+dircursor, " ");
|
|
|
|
dircursor--;
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-16 12:53:40 +00:00
|
|
|
lcd_update();
|
|
|
|
}
|
|
|
|
else {
|
2002-05-28 16:26:12 +00:00
|
|
|
if (start) {
|
2002-05-16 12:53:40 +00:00
|
|
|
start--;
|
2002-05-28 16:26:12 +00:00
|
|
|
numentries = showdir(currdir, start);
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2002-05-16 14:48:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
2002-05-16 12:53:40 +00:00
|
|
|
case BUTTON_DOWN:
|
2002-05-16 14:48:40 +00:00
|
|
|
#else
|
|
|
|
case BUTTON_RIGHT:
|
|
|
|
#endif
|
2002-05-29 09:00:13 +00:00
|
|
|
if (dircursor + start + 1 < numentries ) {
|
|
|
|
if(dircursor+1 < TREE_MAX_ON_SCREEN) {
|
|
|
|
lcd_puts(0, LINE_Y+dircursor, " ");
|
|
|
|
dircursor++;
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-29 09:00:13 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
start++;
|
|
|
|
numentries = showdir(currdir, start);
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-29 09:00:13 +00:00
|
|
|
}
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-05-21 14:30:54 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
case BUTTON_F1:
|
|
|
|
case BUTTON_F2:
|
|
|
|
case BUTTON_F3:
|
|
|
|
#else
|
|
|
|
case BUTTON_MENU:
|
|
|
|
#endif
|
|
|
|
main_menu();
|
|
|
|
|
|
|
|
/* restore display */
|
|
|
|
/* TODO: this is just a copy from BUTTON_STOP, fix it */
|
|
|
|
lcd_clear_display();
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lcd_putsxy(0,0, "[Browse]",0);
|
|
|
|
lcd_setmargins(0,MARGIN_Y);
|
|
|
|
lcd_setfont(0);
|
|
|
|
#endif
|
2002-05-28 16:26:12 +00:00
|
|
|
numentries = showdir(currdir, start);
|
2002-05-31 09:04:51 +00:00
|
|
|
lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
|
2002-05-21 14:30:54 +00:00
|
|
|
|
|
|
|
break;
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
2002-05-28 16:26:12 +00:00
|
|
|
lcd_update();
|
2002-05-16 12:53:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|