1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Nicolas Pennequin, Jonathan Gordon
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
44 #define CUE_DIR ROCKBOX_DIR "/cue"
46 struct cuesheet
*curr_cue
;
47 struct cuesheet
*temp_cue
;
49 #if CONFIG_CODEC != SWCODEC
50 /* special trickery because the hwcodec playback engine is in firmware/ */
51 static bool cuesheet_handler(const char *filename
)
53 return cuesheet_is_enabled() && look_for_cuesheet_file(filename
, NULL
);
57 void cuesheet_init(void)
59 if (global_settings
.cuesheet
) {
60 curr_cue
= (struct cuesheet
*)buffer_alloc(sizeof(struct cuesheet
));
61 temp_cue
= (struct cuesheet
*)buffer_alloc(sizeof(struct cuesheet
));
62 #if CONFIG_CODEC != SWCODEC
63 audio_set_cuesheet_callback(cuesheet_handler
);
71 bool cuesheet_is_enabled(void)
73 return (curr_cue
!= NULL
);
76 bool look_for_cuesheet_file(const char *trackpath
, char *found_cue_path
)
78 DEBUGF("look for cue file\n");
79 char cuepath
[MAX_PATH
];
80 strncpy(cuepath
, trackpath
, MAX_PATH
);
81 char *dot
= strrchr(cuepath
, '.');
84 int fd
= open(cuepath
,O_RDONLY
);
87 strcpy(cuepath
, CUE_DIR
);
88 strcat(cuepath
, strrchr(trackpath
, '/'));
89 char *dot
= strrchr(cuepath
, '.');
91 fd
= open(cuepath
,O_RDONLY
);
95 found_cue_path
= NULL
;
101 strncpy(found_cue_path
, cuepath
, MAX_PATH
);
105 static char *skip_whitespace(char* buf
)
108 while (*r
&& isspace(*r
))
114 static char *get_string(const char *line
)
118 start
= strchr(line
, '"');
121 start
= strchr(line
, ' ');
127 end
= strchr(++start
, '"');
134 /* parse cuesheet "file" and store the information in "cue" */
135 bool parse_cuesheet(char *file
, struct cuesheet
*cue
)
140 DEBUGF("cue parse\n");
141 int fd
= open(file
,O_RDONLY
);
144 /* couln't open the file */
149 memset(cue
, 0, sizeof(struct cuesheet
));
150 strcpy(cue
->path
, file
);
151 cue
->curr_track
= cue
->tracks
;
153 while ( read_line(fd
,line
,MAX_PATH
) && cue
->track_count
< MAX_TRACKS
)
155 s
= skip_whitespace(line
);
157 if (!strncmp(s
, "TRACK", 5))
161 else if (!strncmp(s
, "INDEX 01", 8))
164 s
= skip_whitespace(s
);
166 s
= skip_whitespace(s
);
167 cue
->tracks
[cue
->track_count
-1].offset
= 60*1000 * atoi(s
);
168 s
= strchr(s
,':') + 1;
169 cue
->tracks
[cue
->track_count
-1].offset
+= 1000 * atoi(s
);
170 s
= strchr(s
,':') + 1;
171 cue
->tracks
[cue
->track_count
-1].offset
+= 13 * atoi(s
);
173 else if (!strncmp(s
, "TITLE", 5)
174 || !strncmp(s
, "PERFORMER", 9)
175 || !strncmp(s
, "SONGWRITER", 10))
178 char *string
= get_string(s
);
184 case 'T': /* TITLE */
185 dest
= (cue
->track_count
<= 0) ? cue
->title
:
186 cue
->tracks
[cue
->track_count
-1].title
;
189 case 'P': /* PERFORMER */
190 dest
= (cue
->track_count
<= 0) ? cue
->performer
:
191 cue
->tracks
[cue
->track_count
-1].performer
;
194 case 'S': /* SONGWRITER */
195 dest
= (cue
->track_count
<= 0) ? cue
->songwriter
:
196 cue
->tracks
[cue
->track_count
-1].songwriter
;
201 dest
= iso_decode(string
, dest
, -1, MIN(strlen(string
), MAX_NAME
));
208 /* If some songs don't have performer info, we copy the cuesheet performer */
210 for (i
= 0; i
< cue
->track_count
; i
++)
212 if (*(cue
->tracks
[i
].performer
) == '\0')
213 strncpy(cue
->tracks
[i
].performer
, cue
->performer
, MAX_NAME
);
215 if (*(cue
->tracks
[i
].songwriter
) == '\0')
216 strncpy(cue
->tracks
[i
].songwriter
, cue
->songwriter
, MAX_NAME
);
222 /* takes care of seeking to a track in a playlist
223 * returns false if audio isn't playing */
224 static bool seek(unsigned long pos
)
226 if (!(audio_status() & AUDIO_STATUS_PLAY
))
232 #if (CONFIG_CODEC == SWCODEC)
233 audio_pre_ff_rewind();
234 audio_ff_rewind(pos
);
237 audio_ff_rewind(pos
);
244 /* returns the index of the track currently being played
245 and updates the information about the current track. */
246 int cue_find_current_track(struct cuesheet
*cue
, unsigned long curpos
)
249 while (i
< cue
->track_count
-1 && cue
->tracks
[i
+1].offset
< curpos
)
252 cue
->curr_track_idx
= i
;
253 cue
->curr_track
= cue
->tracks
+ i
;
257 /* callback that gives list item titles for the cuesheet browser */
258 static char *list_get_name_cb(int selected_item
,
262 struct cuesheet
*cue
= (struct cuesheet
*)data
;
264 if (selected_item
& 1)
265 snprintf(buffer
, MAX_PATH
, "%s",
266 cue
->tracks
[selected_item
/2].title
);
268 snprintf(buffer
, MAX_PATH
, "%02d. %s", selected_item
/2+1,
269 cue
->tracks
[selected_item
/2].performer
);
274 void browse_cuesheet(struct cuesheet
*cue
)
276 struct gui_synclist lists
;
280 char title
[MAX_PATH
];
281 char cuepath
[MAX_PATH
];
282 struct mp3entry
*id3
= audio_current_track();
284 snprintf(title
, MAX_PATH
, "%s: %s", cue
->performer
, cue
->title
);
285 gui_synclist_init(&lists
, list_get_name_cb
, cue
, false, 2);
286 gui_synclist_set_nb_items(&lists
, 2*cue
->track_count
);
287 gui_synclist_set_title(&lists
, title
, 0);
289 if (id3
&& *id3
->path
&& strcmp(id3
->path
, "No file!"))
291 look_for_cuesheet_file(id3
->path
, cuepath
);
294 if (id3
&& id3
->cuesheet_type
&& !strcmp(cue
->path
, cuepath
))
296 gui_synclist_select_item(&lists
,
297 2*cue_find_current_track(cue
, id3
->elapsed
));
302 gui_synclist_draw(&lists
);
303 action
= get_action(CONTEXT_LIST
,TIMEOUT_BLOCK
);
304 if (gui_synclist_do_button(&lists
, &action
, LIST_WRAP_UNLESS_HELD
))
309 id3
= audio_current_track();
310 if (id3
&& *id3
->path
&& strcmp(id3
->path
, "No file!"))
312 look_for_cuesheet_file(id3
->path
, cuepath
);
313 if (id3
->cuesheet_type
&& !strcmp(cue
->path
, cuepath
))
315 sel
= gui_synclist_get_sel_pos(&lists
);
316 seek(cue
->tracks
[sel
/2].offset
);
320 case ACTION_STD_CANCEL
:
326 bool display_cuesheet_content(char* filename
)
329 struct cuesheet
*cue
= (struct cuesheet
*)plugin_get_buffer(&bufsize
);
330 if (!cue
|| bufsize
< sizeof(struct cuesheet
))
333 if (!parse_cuesheet(filename
, cue
))
336 browse_cuesheet(cue
);
340 /* skips backwards or forward in the current cuesheet
341 * the return value indicates whether we're still in a cusheet after skipping
342 * it also returns false if we weren't in a cuesheet.
343 * direction should be 1 or -1.
345 bool curr_cuesheet_skip(int direction
, unsigned long curr_pos
)
347 int track
= cue_find_current_track(curr_cue
, curr_pos
);
349 if (direction
>= 0 && track
== curr_cue
->track_count
- 1)
351 /* we want to get out of the cuesheet */
356 if (!(direction
<= 0 && track
== 0))
359 seek(curr_cue
->tracks
[track
].offset
);
365 void cue_spoof_id3(struct cuesheet
*cue
, struct mp3entry
*id3
)
367 if (!cue
|| !cue
->curr_track
)
370 struct cue_track_info
*track
= cue
->curr_track
;
372 id3
->title
= *track
->title
? track
->title
: NULL
;
373 id3
->artist
= *track
->performer
? track
->performer
: NULL
;
374 id3
->composer
= *track
->songwriter
? track
->songwriter
: NULL
;
375 id3
->album
= *cue
->title
? cue
->title
: NULL
;
377 /* if the album artist is the same as the track artist, we hide it. */
378 if (strcmp(cue
->performer
, track
->performer
))
379 id3
->albumartist
= *cue
->performer
? cue
->performer
: NULL
;
381 id3
->albumartist
= NULL
;
383 int i
= cue
->curr_track_idx
;
385 if (id3
->track_string
)
386 snprintf(id3
->track_string
, 10, "%d/%d", i
+1, cue
->track_count
);
389 #ifdef HAVE_LCD_BITMAP
390 static inline void draw_veritcal_line_mark(struct screen
* screen
,
393 screen
->set_drawmode(DRMODE_COMPLEMENT
);
394 screen
->vline(x
, y
, y
+h
-1);
397 /* draw the cuesheet markers for a track of length "tracklen",
398 between (x1,y) and (x2,y) */
399 void cue_draw_markers(struct screen
*screen
, unsigned long tracklen
,
400 int x1
, int x2
, int y
, int h
)
404 for (i
=1; i
< curr_cue
->track_count
; i
++)
406 xi
= x1
+ (w
* curr_cue
->tracks
[i
].offset
)/tracklen
;
407 draw_veritcal_line_mark(screen
, xi
, y
, h
);