1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2008-2009 Teruaki Kawashima
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "lib/playback_control.h"
23 #include "lib/configfile.h"
24 #include "lib/helper.h"
29 #define MAX_LINE_LEN 256
30 #define LRC_BUFFER_SIZE 0x3000 /* 12 kiB */
31 #if PLUGIN_BUFFER_SIZE >= 0x10000 /* no id3 support for low mem targets */
32 /* define this to read lyrics in id3 tag */
33 #define LRC_SUPPORT_ID3
35 /* define this to show debug info in menu */
36 /* #define LRC_DEBUG */
60 off_t file_offset
; /* offset of time tag in file */
63 short nline
[NB_SCREENS
];
64 struct lrc_line
*next
;
65 struct lrc_word
*words
;
69 /* display settings */
71 unsigned active_color
;
72 unsigned inactive_color
;
74 #ifdef HAVE_LCD_BITMAP
78 int align
; /* 0: left, 1: center, 2: right */
86 char lrc_directory
[64];
88 #ifdef LRC_SUPPORT_ID3
93 static struct preferences prefs
, old_prefs
;
94 static unsigned char *lrc_buffer
;
95 static size_t lrc_buffer_size
;
96 static size_t lrc_buffer_used
, lrc_buffer_end
;
97 enum extention_types
{LRC
, LRC8
, SNC
, TXT
, NUM_TYPES
, ID3_SYLT
, ID3_USLT
};
98 static const char *extentions
[NUM_TYPES
] = {
99 ".lrc", ".lrc8", ".snc", ".txt",
101 static struct lrc_info
{
102 struct mp3entry
*id3
;
107 char mp3_file
[MAX_PATH
];
108 char lrc_file
[MAX_PATH
];
109 char *title
; /* use lrc_buffer */
110 char *artist
; /* use lrc_buffer */
111 enum extention_types type
;
112 long offset
; /* msec */
113 off_t offset_file_offset
; /* offset of offset tag in file */
116 struct lrc_line
*ll_head
, **ll_tail
;
120 bool too_many_lines
; /* true if nlrcline >= max_lrclines after calc pos */
121 #ifdef HAVE_LCD_BITMAP
122 bool wipe
; /* false if lyrics is unsynched */
125 static char temp_buf
[MAX(MAX_LINE_LEN
,MAX_PATH
)];
126 #ifdef HAVE_LCD_BITMAP
127 static int font_ui_height
= 1;
128 static struct viewport vp_info
[NB_SCREENS
];
130 static struct viewport vp_lyrics
[NB_SCREENS
];
132 #define AUDIO_PAUSE (current.audio_status & AUDIO_STATUS_PAUSE)
133 #define AUDIO_PLAY (current.audio_status & AUDIO_STATUS_PLAY)
134 #define AUDIO_STOP (!(current.audio_status & AUDIO_STATUS_PLAY))
136 /*******************************
138 *******************************/
139 #define LST_SET_MSEC 0x00010000
140 #define LST_SET_SEC 0x00020000
141 #define LST_SET_MIN 0x00040000
142 #define LST_SET_HOUR 0x00080000
144 #include "lib/pluginlib_actions.h"
145 #define LST_SET_TIME (LST_SET_MSEC|LST_SET_SEC|LST_SET_MIN|LST_SET_HOUR)
146 #ifdef HAVE_LCD_CHARCELLS
148 #else /* HAVE_LCD_BITMAP */
151 int lrc_set_time(const char *title
, const char *unit
, long *pval
,
152 int step
, int min
, int max
, int flags
)
154 const struct button_mapping
*lst_contexts
[] = {
156 #ifdef HAVE_REMOTE_LCD
161 const unsigned char formats
[4][8] = {"%03ld.", "%02ld.", "%02ld:", "%02ld:"};
162 const unsigned int maxs
[4] = {1000, 60, 60, 24};
163 const unsigned int scls
[4] = {1, 1000, 60*1000, 60*60*1000};
165 long value
= *pval
, scl_step
= step
, i
= 0;
166 int pos
= 0, last_pos
= 0, pos_min
= 3, pos_max
= 0;
167 int x
= 0, y
= 0, p_start
= 0, p_end
= 0;
170 if (!(flags
&LST_SET_TIME
))
173 for (i
= 0; i
< 4; i
++)
175 if (flags
&(LST_SET_MSEC
<<i
))
177 if (pos_min
> i
) pos_min
= i
;
178 if (pos_max
< i
) pos_max
= i
;
183 rb
->button_clear_queue();
184 rb
->lcd_clear_display();
185 rb
->lcd_puts_scroll(0, LST_OFF_Y
, title
);
189 long abs_val
= value
;
190 long segvals
[4] = {-1, -1, -1, -1};
191 /* show negative value like -00:01 but 00:-1 */
198 /* calc value of each segments */
199 for (i
= pos_min
; i
<= pos_max
; i
++)
201 segvals
[i
] = abs_val
% maxs
[i
];
204 segvals
[i
-1] += abs_val
* maxs
[i
-1];
205 for (i
= pos_max
; i
>= pos_min
; i
--)
209 rb
->lcd_getstringsize(buffer
, &x
, &y
);
212 rb
->snprintf(&buffer
[len
], 32-len
, formats
[i
], segvals
[i
]);
213 len
+= rb
->strlen(&buffer
[len
]);
217 buffer
[len
-1] = 0; /* remove last separater */
220 rb
->snprintf(&buffer
[len
], 32-len
, " (%s)", unit
);
222 rb
->lcd_puts(0, LST_OFF_Y
+1, buffer
);
223 if (pos_min
!= pos_max
)
227 #ifdef HAVE_LCD_BITMAP
228 rb
->lcd_set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
229 rb
->lcd_putsxy(x
, y
*(1+LST_OFF_Y
), &buffer
[p_start
]);
230 rb
->lcd_set_drawmode(DRMODE_SOLID
);
232 rb
->lcd_put_cursor(x
+rb
->utf8length(&buffer
[p_start
])-1, y
, 0x7F);
236 int button
= pluginlib_getaction(TIMEOUT_BLOCK
, lst_contexts
, ARRAYLEN(lst_contexts
));
238 #ifdef HAVE_LCD_CHARCELLS
239 if (pos_min
!= pos_max
)
240 rb
->lcd_remove_cursor();
245 case PLA_DOWN_REPEAT
:
249 if (button
== PLA_DOWN_REPEAT
|| button
== PLA_DOWN
)
253 scl_step
= ((scls
[pos
]/scls
[pos_min
]+step
-1)/step
) * step
;
256 value
+= scl_step
* mult
;
263 case PLA_LEFT_REPEAT
:
268 case PLA_RIGHT_REPEAT
:
278 rb
->splash(HZ
, "Cancelled");
282 if (rb
->default_event_handler(button
) == SYS_USB_CONNECTED
)
287 rb
->lcd_clear_display();
292 /*******************************
294 *******************************/
295 static void reset_current_data(void)
297 current
.title
= NULL
;
298 current
.artist
= NULL
;
300 current
.offset_file_offset
= -1;
301 current
.nlrcbrpos
= 0;
302 current
.nlrcline
= 0;
303 current
.ll_head
= NULL
;
304 current
.ll_tail
= ¤t
.ll_head
;
305 current
.loaded_lrc
= false;
306 current
.changed_lrc
= false;
307 current
.too_many_lines
= false;
309 lrc_buffer_end
= lrc_buffer_size
;
312 /* check space and add str to lrc_buffer.
313 * return NULL if there is not enough buffer. */
314 static char *lrcbufadd(const char*str
, bool join
)
316 if (join
) lrc_buffer_used
--;
317 size_t siz
= rb
->strlen(str
)+1;
318 char *pos
= &lrc_buffer
[lrc_buffer_used
];
319 if (lrc_buffer_used
+ siz
> lrc_buffer_end
)
321 rb
->strcpy(pos
, str
);
322 lrc_buffer_used
+= siz
;
325 static void *alloc_buf(size_t siz
)
328 if (lrc_buffer_used
+ siz
> lrc_buffer_end
)
330 lrc_buffer_end
-= siz
;
331 return &lrc_buffer
[lrc_buffer_end
];
333 static void *new_lrc_word(long time_start
, char *word
, bool join
)
335 struct lrc_word
*lrc_word
;
336 if ((lrc_word
= alloc_buf(sizeof(struct lrc_word
))) == NULL
)
338 if ((lrc_word
->word
= lrcbufadd(word
, join
)) == NULL
)
340 lrc_word
->time_start
= time_start
;
343 static bool add_lrc_line(struct lrc_line
*lrc_line
, char *word
)
346 lrc_line
->next
= NULL
;
347 lrc_line
->words
= NULL
;
350 if ((lrc_line
->words
= new_lrc_word(-1, word
, false)) == NULL
)
354 *current
.ll_tail
= lrc_line
;
355 current
.ll_tail
= &(lrc_line
->next
);
359 static struct lrc_line
*get_lrc_line(int idx
)
361 static struct lrc_line
*lrc_line
= NULL
;
365 lrc_line
= current
.ll_head
;
368 while (n
< idx
&& lrc_line
)
370 lrc_line
= lrc_line
->next
;
375 static char *get_lrc_str(struct lrc_line
*lrc_line
)
377 return lrc_line
->words
[lrc_line
->nword
-1].word
;
379 static long get_time_start(struct lrc_line
*lrc_line
)
381 if (!lrc_line
) return current
.length
+20;
382 long time
= lrc_line
->time_start
+ current
.offset
;
383 return time
< 0? 0: time
;
385 static void set_time_start(struct lrc_line
*lrc_line
, long time_start
)
387 time_start
-= current
.offset
;
388 time_start
-= time_start
%10;
389 if (lrc_line
->time_start
!= time_start
)
391 lrc_line
->time_start
= time_start
;
392 current
.changed_lrc
= true;
395 #define get_word_time_start(x) get_time_start((struct lrc_line *)(x))
396 #define set_word_time_start(x, t) set_time_start((struct lrc_line *)(x), (t))
398 static int format_time_tag(char *buf
, long t
)
400 return rb
->snprintf(buf
, 16, "%02ld:%02ld.%02ld",
401 t
/60000, (t
/1000)%60, (t
/10)%100);
403 /* find start of next line */
404 static const char *lrc_skip_space(const char *str
)
406 #ifdef HAVE_LCD_BITMAP
409 while (*str
&& *str
!= '\n' && isspace(*str
))
418 /* calculate how many lines is needed to display and store it.
419 * create cache if there is enough space in lrc_buffer. */
420 static struct lrc_brpos
*calc_brpos(struct lrc_line
*lrc_line
, int i
)
422 struct lrc_brpos
*lrc_brpos
;
423 struct lrc_word
*lrc_word
;
424 int nlrcbrpos
= 0, max_lrcbrpos
;
425 #ifdef HAVE_LCD_BITMAP
426 struct font
* pf
= rb
->font_get(FONT_UI
);
432 int word_count
, word_width
;
433 const unsigned char *str
;
436 lrc_buffer_used
= (lrc_buffer_used
+3)&~3; /* 4 bytes aligned */
437 lrc_brpos
= (struct lrc_brpos
*) &lrc_buffer
[lrc_buffer_used
];
438 max_lrcbrpos
= (lrc_buffer_end
-lrc_buffer_used
) / sizeof(struct lrc_brpos
);
442 /* calc info for all lrcs and store them if possible */
443 size_t buffer_used
= lrc_buffer_used
;
444 bool too_many_lines
= false;
445 current
.too_many_lines
= true;
446 for (lrc_line
= current
.ll_head
; lrc_line
; lrc_line
= lrc_line
->next
)
450 lrc_brpos
= calc_brpos(lrc_line
, i
);
453 lrc_buffer_used
+= lrc_line
->nline
[i
]*sizeof(struct lrc_brpos
);
454 if (nlrcbrpos
+ lrc_line
->nline
[i
] >= max_lrcbrpos
)
456 too_many_lines
= true;
457 lrc_buffer_used
= buffer_used
;
458 calc_brpos(lrc_line
, i
);
461 nlrcbrpos
+= lrc_line
->nline
[i
];
464 current
.too_many_lines
= too_many_lines
;
465 lrc_buffer_used
= buffer_used
;
466 current
.nlrcbrpos
= nlrcbrpos
;
470 if (!current
.too_many_lines
)
472 /* use stored infos. */
473 struct lrc_line
*temp_lrc
= current
.ll_head
;
474 for (; temp_lrc
!= lrc_line
; temp_lrc
= temp_lrc
->next
)
476 lrc_brpos
+= temp_lrc
->nline
[SCREEN_MAIN
];
477 #ifdef HAVE_REMOTE_LCD
478 lrc_brpos
+= temp_lrc
->nline
[SCREEN_REMOTE
];
483 lrc_brpos
+= lrc_line
->nline
[--i
];
488 /* calculate number of lines, line width and char count for each line. */
490 cr
.nword
= lrc_line
->nword
;
491 lrc_word
= lrc_line
->words
+cr
.nword
;
492 cr
.str
= (lrc_word
-1)->word
;
505 while(cr
.nword
> 0 && cr
.str
>= (lrc_word
-1)->word
)
512 if (*cr
.str
== 0 || *cr
.str
== '\n')
516 #ifdef HAVE_LCD_CHARCELLS
517 c
= rb
->utf8seek(cr
.str
, 1);
520 c
= ((long)rb
->utf8decode(cr
.str
, &ch
) - (long)cr
.str
);
521 w
= rb
->font_get_width(pf
, ch
);
522 if (cr
.count
&& isspace(*cr
.str
))
524 /* remember position of last space */
525 rb
->memcpy(&sp
, &cr
, sizeof(struct snap
));
526 sp
.word_count
= lrc_word
->count
;
527 sp
.word_width
= lrc_word
->width
;
529 if (cr
.count
&& cr
.width
+w
> vp_lyrics
[i
].width
)
531 if (prefs
.wrap
&& sp
.str
!= NULL
) /* wrap */
533 rb
->memcpy(&cr
, &sp
, sizeof(struct snap
));
534 lrc_word
= lrc_line
->words
+cr
.nword
;
535 lrc_word
->count
= sp
.word_count
;
536 lrc_word
->width
= sp
.word_width
;
543 lrc_word
->count
+= c
;
544 lrc_word
->width
+= w
;
547 lrc_line
->width
+= cr
.width
;
548 lrc_brpos
->count
= cr
.count
;
549 lrc_brpos
->width
= cr
.width
;
552 cr
.str
= lrc_skip_space(cr
.str
);
553 } while (*cr
.str
&& nlrcbrpos
< max_lrcbrpos
);
554 lrc_line
->nline
[i
] = nlrcbrpos
;
563 return lrc_brpos
-nlrcbrpos
;
566 /* sort lyrics by time using stable sort. */
567 static void sort_lrcs(void)
569 struct lrc_line
*p
= current
.ll_head
, **q
= NULL
, *t
;
572 current
.ll_head
= NULL
;
573 current
.ll_tail
= ¤t
.ll_head
;
577 /* remove problematic lrc_lines.
578 * it would cause problem in display_lrc_line() if nword is 0. */
581 q
= p
->time_start
>= time_max
? current
.ll_tail
: ¤t
.ll_head
;
582 while ((*q
) && (*q
)->time_start
<= p
->time_start
)
588 time_max
= p
->time_start
;
589 current
.ll_tail
= &p
->next
;
594 if (!current
.too_many_lines
)
595 calc_brpos(NULL
, 0); /* stored data depends on order of lrcs if exist */
597 static void init_time_tag(void)
599 struct lrc_line
*lrc_line
= current
.ll_head
;
601 if (current
.type
== TXT
|| current
.type
== ID3_USLT
)
603 /* set time tag according to length of audio and total line count
604 * for not synched lyrics, so that scroll speed is almost constant. */
605 for (; lrc_line
; lrc_line
= lrc_line
->next
)
607 lrc_line
->time_start
= nline
* current
.length
/ current
.nlrcbrpos
;
608 lrc_line
->time_start
-= lrc_line
->time_start
%10;
609 lrc_line
->old_time_start
= -1;
610 nline
+= lrc_line
->nline
[SCREEN_MAIN
];
611 #ifdef HAVE_REMOTE_LCD
612 nline
+= lrc_line
->nline
[SCREEN_REMOTE
];
618 /* reset timetags to the value read from file */
619 for (; lrc_line
; lrc_line
= lrc_line
->next
)
621 lrc_line
->time_start
= lrc_line
->old_time_start
;
625 current
.changed_lrc
= false;
628 /*******************************
630 *******************************/
632 /* search in same or parent directries of playing file.
633 * assume playing file is /aaa/bbb/ccc/ddd.mp3,
634 * this function searchs lrc file following order.
635 * /aaa/bbb/ccc/ddd.lrc
641 /* taken from apps/recorder/albumart.c */
642 static void fix_filename(char* name
)
644 static const char invalid_chars
[] = "*/:<>?\\|";
652 else if (rb
->strchr(invalid_chars
, *name
))
657 static bool find_lrc_file_helper(const char *base_dir
)
659 char fname
[MAX_PATH
];
660 char *names
[3] = {NULL
, NULL
, NULL
};
663 /* /aaa/bbb/ccc/ddd.mp3
667 /* assuming file name starts with '/' */
668 rb
->strcpy(temp_buf
, current
.mp3_file
);
669 /* get file name and remove extension */
670 names
[0] = rb
->strrchr(temp_buf
, '/')+1;
671 if ((p
= rb
->strrchr(names
[0], '.')) != NULL
)
673 if (current
.id3
->title
&& rb
->strcmp(names
[0], current
.id3
->title
))
675 rb
->strlcpy(fname
, current
.id3
->title
, sizeof(fname
));
689 len
= rb
->snprintf(current
.lrc_file
, MAX_PATH
, "%s%s/",
694 /* check file in subfolder named prefs.lrc_directory
695 * in the directory of mp3 file. */
696 if (prefs
.lrc_directory
[0] == '/')
698 len
= rb
->snprintf(current
.lrc_file
, MAX_PATH
, "%s%s/",
699 dir
, prefs
.lrc_directory
);
706 DEBUGF("check file in %s\n", current
.lrc_file
);
707 if (!rb
->dir_exists(current
.lrc_file
))
709 for (current
.type
= 0; current
.type
< NUM_TYPES
; current
.type
++)
711 for (i
= 0; names
[i
] != NULL
; i
++)
713 rb
->snprintf(¤t
.lrc_file
[len
], MAX_PATH
-len
,
714 "%s%s", names
[i
], extentions
[current
.type
]);
715 if (rb
->file_exists(current
.lrc_file
))
717 DEBUGF("found: `%s'\n", current
.lrc_file
);
723 } while ((p
= rb
->strrchr(dir
, '/')) != NULL
);
727 /* return true if a lrc file is found */
728 static bool find_lrc_file(void)
730 reset_current_data();
732 DEBUGF("find lrc file for `%s'\n", current
.mp3_file
);
734 if (find_lrc_file_helper(""))
736 if (prefs
.lrc_directory
[0] == '/' && rb
->dir_exists(prefs
.lrc_directory
))
738 if (find_lrc_file_helper(prefs
.lrc_directory
))
742 current
.lrc_file
[0] = 0;
746 /*******************************
748 *******************************/
750 /* check tag format and calculate value of the tag.
751 * supported tag: ti, ar, offset
752 * supported format of time tag: [mm:ss], [mm:ss.xx], [mm:ss.xxx]
753 * returns value of timega if tag is time tag, -1 if tag is supported tag,
756 static char *parse_int(char *ptr
, int *val
)
758 *val
= rb
->atoi(ptr
);
759 while (isdigit(*ptr
)) ptr
++;
762 static long get_time_value(char *tag
, bool read_id_tags
, off_t file_offset
)
770 if (!rb
->strncmp(tag
, "ti:", 3))
772 if (!current
.id3
->title
|| rb
->strcmp(&tag
[3], current
.id3
->title
))
773 current
.title
= lrcbufadd(&tag
[3], false);
776 if (!rb
->strncmp(tag
, "ar:", 3))
778 if (!current
.id3
->artist
|| rb
->strcmp(&tag
[3], current
.id3
->artist
))
779 current
.artist
= lrcbufadd(&tag
[3], false);
782 if (!rb
->strncmp(tag
, "offset:", 7))
784 current
.offset
= rb
->atoi(&tag
[7]);
785 current
.offset_file_offset
= file_offset
;
791 ptr
= parse_int(tag
, &val
);
792 if (ptr
-tag
< 1 || ptr
-tag
> 2 || *ptr
!= ':')
797 ptr
= parse_int(tag
, &val
);
798 if (ptr
-tag
!= 2 || (*ptr
!= '.' && *ptr
!= ':' && *ptr
!= '\0'))
806 ptr
= parse_int(tag
, &val
);
807 if (ptr
-tag
< 2 || ptr
-tag
> 3 || *ptr
!= '\0')
809 time
+= ((ptr
-tag
)==3 ?val
: val
*10);
817 * [time tag]...[time tag]line
818 * [time tag]<word time tag>word<word time tag>...<word time tag>
820 static bool parse_lrc_line(char *line
, off_t file_offset
)
822 struct lrc_line
*lrc_line
= NULL
, *first_lrc_line
= NULL
;
823 long time
, time_start
;
824 char *str
, *tagstart
, *tagend
;
825 struct lrc_word
*lrc_word
;
828 /* parse [time tag]...[time tag] type tags */
832 if (*str
!= '[') break;
833 tagend
= rb
->strchr(str
, ']');
834 if (tagend
== NULL
) break;
836 time
= get_time_value(str
+1, !lrc_line
, file_offset
);
840 lrc_line
= alloc_buf(sizeof(struct lrc_line
));
841 if (lrc_line
== NULL
)
844 first_lrc_line
= lrc_line
;
845 lrc_line
->file_offset
= file_offset
;
846 lrc_line
->time_start
= (time
/10)*10;
847 lrc_line
->old_time_start
= lrc_line
->time_start
;
848 add_lrc_line(lrc_line
, NULL
);
849 file_offset
+= (long)tagend
- (long)str
;
853 return true; /* no time tag in line */
855 lrc_line
= first_lrc_line
;
856 if (lrcbufadd("", false) == NULL
)
859 /* parse <word time tag>...<word time tag> type tags */
860 /* [time tag]...[time tag]line type tags share lrc_line->words and can't
861 * use lrc_line->words->timestart. use lrc_line->time_start instead. */
866 tagstart
= rb
->strchr(tagstart
, '<');
867 if (!tagstart
) break;
868 tagend
= rb
->strchr(tagstart
, '>');
871 time
= get_time_value(tagstart
+1, false,
872 file_offset
+ ((long)tagstart
- (long)str
));
880 /* found word time tag. */
881 if (*str
|| time_start
!= -1)
883 if ((lrc_word
= new_lrc_word(time_start
, str
, true)) == NULL
)
887 file_offset
+= (long)tagend
- (long)str
;
888 tagstart
= str
= tagend
;
891 if ((lrc_word
= new_lrc_word(time_start
, str
, true)) == NULL
)
895 /* duplicate lrc_lines */
898 lrc_line
->nword
= nword
;
899 lrc_line
->words
= lrc_word
;
900 lrc_line
= lrc_line
->next
;
907 * \xa2\xe2hhmmssxx\xa2\xd0
910 * \xa2\xe2hhmmssxx\xa2\xd0
914 static bool parse_snc_line(char *line
, off_t file_offset
)
916 #define SNC_TAG_START "\xa2\xe2"
917 #define SNC_TAG_END "\xa2\xd0"
919 /* SNC_TAG can be dencoded, so use
920 * temp_buf which contains native data */
921 if (!rb
->memcmp(temp_buf
, SNC_TAG_START
, 2)
922 && !rb
->memcmp(temp_buf
+10, SNC_TAG_END
, 2)) /* time tag */
924 const char *pos
= temp_buf
+2; /* skip SNC_TAG_START */
927 hh
= (pos
[0]-'0')*10+(pos
[1]-'0'); pos
+= 2;
928 mm
= (pos
[0]-'0')*10+(pos
[1]-'0'); pos
+= 2;
929 ss
= (pos
[0]-'0')*10+(pos
[1]-'0'); pos
+= 2;
930 xx
= (pos
[0]-'0')*10+(pos
[1]-'0'); pos
+= 2;
931 pos
+= 2; /* skip SNC_TAG_END */
934 struct lrc_line
*lrc_line
= alloc_buf(sizeof(struct lrc_line
));
935 if (lrc_line
== NULL
)
937 lrc_line
->file_offset
= file_offset
+2;
938 lrc_line
->time_start
= hh
*3600000+mm
*60000+ss
*1000+xx
*10;
939 lrc_line
->old_time_start
= lrc_line
->time_start
;
940 if (!add_lrc_line(lrc_line
, ""))
945 /* encode rest of line and add to buffer */
946 rb
->iso_decode(pos
, line
, prefs
.encoding
, rb
->strlen(pos
)+1);
950 rb
->strcat(line
, "\n");
951 if (lrcbufadd(line
, true) == NULL
)
957 static bool parse_txt_line(char *line
, off_t file_offset
)
960 struct lrc_line
*lrc_line
= alloc_buf(sizeof(struct lrc_line
));
961 if (lrc_line
== NULL
)
963 lrc_line
->file_offset
= file_offset
;
964 lrc_line
->time_start
= 0;
965 lrc_line
->old_time_start
= -1;
966 if (!add_lrc_line(lrc_line
, line
))
971 static void load_lrc_file(void)
973 char utf8line
[MAX_LINE_LEN
*3];
975 int encoding
= prefs
.encoding
;
976 bool (*line_parser
)(char *line
, off_t
) = NULL
;
977 off_t file_offset
, readsize
;
982 encoding
= UTF_8
; /* .lrc8 is utf8 */
985 line_parser
= parse_lrc_line
;
988 line_parser
= parse_snc_line
;
991 line_parser
= parse_txt_line
;
997 fd
= rb
->open(current
.lrc_file
, O_RDONLY
);
1001 /* check encoding */
1002 #define BOM "\xef\xbb\xbf"
1004 unsigned char header
[BOM_SIZE
];
1005 unsigned char* (*utf_decode
)(const unsigned char *,
1006 unsigned char *, int) = NULL
;
1007 rb
->read(fd
, header
, BOM_SIZE
);
1008 if (!rb
->memcmp(header
, BOM
, BOM_SIZE
)) /* UTF-8 */
1012 else if (!rb
->memcmp(header
, "\xff\xfe", 2)) /* UTF-16LE */
1014 utf_decode
= rb
->utf16LEdecode
;
1016 else if (!rb
->memcmp(header
, "\xfe\xff", 2)) /* UTF-16BE */
1018 utf_decode
= rb
->utf16BEdecode
;
1022 rb
->lseek(fd
, 0, SEEK_SET
);
1027 /* convert encoding of file from UTF-16 to UTF-8 */
1028 char temp_file
[MAX_PATH
];
1030 rb
->lseek(fd
, 2, SEEK_SET
);
1031 rb
->snprintf(temp_file
, MAX_PATH
, "%s~", current
.lrc_file
);
1032 fe
= rb
->creat(temp_file
, 0666);
1038 rb
->write(fe
, BOM
, BOM_SIZE
);
1039 while ((readsize
= rb
->read(fd
, temp_buf
, MAX_LINE_LEN
)) > 0)
1041 char *end
= utf_decode(temp_buf
, utf8line
, readsize
/2);
1042 rb
->write(fe
, utf8line
, end
-utf8line
);
1046 rb
->remove(current
.lrc_file
);
1047 rb
->rename(temp_file
, current
.lrc_file
);
1048 fd
= rb
->open(current
.lrc_file
, O_RDONLY
);
1050 rb
->lseek(fd
, BOM_SIZE
, SEEK_SET
); /* skip bom */
1055 file_offset
= rb
->lseek(fd
, 0, SEEK_CUR
); /* used in line_parser */
1056 while ((readsize
= rb
->read_line(fd
, temp_buf
, MAX_LINE_LEN
)) > 0)
1058 /* note: parse_snc_line() reads temp_buf for native data. */
1059 rb
->iso_decode(temp_buf
, utf8line
, encoding
, readsize
+1);
1060 if (!line_parser(utf8line
, file_offset
))
1062 file_offset
+= readsize
;
1066 current
.loaded_lrc
= true;
1067 calc_brpos(NULL
, 0);
1073 #ifdef LRC_SUPPORT_ID3
1074 /*******************************
1075 * read lyrics from id3
1076 *******************************/
1077 /* taken from apps/metadata/mp3.c */
1078 static unsigned long unsync(unsigned long b0
, unsigned long b1
,
1079 unsigned long b2
, unsigned long b3
)
1081 return (((long)(b0
& 0x7F) << (3*7)) |
1082 ((long)(b1
& 0x7F) << (2*7)) |
1083 ((long)(b2
& 0x7F) << (1*7)) |
1084 ((long)(b3
& 0x7F) << (0*7)));
1087 static unsigned long bytes2int(unsigned long b0
, unsigned long b1
,
1088 unsigned long b2
, unsigned long b3
)
1090 return (((long)(b0
& 0xFF) << (3*8)) |
1091 ((long)(b1
& 0xFF) << (2*8)) |
1092 ((long)(b2
& 0xFF) << (1*8)) |
1093 ((long)(b3
& 0xFF) << (0*8)));
1096 static int unsynchronize(char* tag
, int len
, bool *ff_found
)
1100 unsigned char *rp
, *wp
;
1101 bool _ff_found
= false;
1102 if(ff_found
) _ff_found
= *ff_found
;
1104 wp
= rp
= (unsigned char *)tag
;
1106 rp
= (unsigned char *)tag
;
1107 for(i
= 0; i
<len
; i
++) {
1108 /* Read the next byte and write it back, but don't increment the
1113 /* Increment the write pointer if it isn't an unsynch pattern */
1123 if(ff_found
) *ff_found
= _ff_found
;
1124 return (long)wp
- (long)tag
;
1127 static int read_unsynched(int fd
, void *buf
, int len
, bool *ff_found
)
1131 int remaining
= len
;
1137 rc
= rb
->read(fd
, wp
, remaining
);
1141 i
= unsynchronize(wp
, remaining
, ff_found
);
1149 static unsigned char* utf8cpy(const unsigned char *src
,
1150 unsigned char *dst
, int count
)
1152 rb
->strlcpy(dst
, src
, count
+1);
1153 return dst
+rb
->strlen(dst
);
1156 static void parse_id3v2(int fd
)
1163 unsigned char version
;
1165 unsigned char global_flags
;
1168 bool global_unsynch
= false;
1169 bool global_ff_found
= false;
1170 bool unsynch
= false;
1172 enum {NOLT
, SYLT
, USLT
} type
= NOLT
;
1174 /* Bail out if the tag is shorter than 10 bytes */
1175 if(current
.id3
->id3v2len
< 10)
1178 /* Read the ID3 tag version from the header */
1179 if(10 != rb
->read(fd
, header
, 10))
1182 /* Get the total ID3 tag size */
1183 size
= current
.id3
->id3v2len
- 10;
1185 version
= current
.id3
->id3version
;
1201 /* unsupported id3 version */
1205 global_flags
= header
[5];
1207 /* Skip the extended header if it is present */
1208 if(global_flags
& 0x40) {
1211 if(version
== ID3_VER_2_3
) {
1212 if(10 != rb
->read(fd
, header
, 10))
1214 /* The 2.3 extended header size doesn't include the header size
1215 field itself. Also, it is not unsynched. */
1217 bytes2int(header
[0], header
[1], header
[2], header
[3]) + 4;
1219 /* Skip the rest of the header */
1220 rb
->lseek(fd
, framelen
- 10, SEEK_CUR
);
1223 if(version
>= ID3_VER_2_4
) {
1224 if(4 != rb
->read(fd
, header
, 4))
1227 /* The 2.4 extended header size does include the entire header,
1228 so here we can just skip it. This header is unsynched. */
1229 framelen
= unsync(header
[0], header
[1],
1230 header
[2], header
[3]);
1232 rb
->lseek(fd
, framelen
- 4, SEEK_CUR
);
1236 /* Is unsynchronization applied? */
1237 if(global_flags
& 0x80) {
1238 global_unsynch
= true;
1241 /* We must have at least minframesize bytes left for the
1242 * remaining frames to be interesting */
1243 while (size
>= minframesize
) {
1246 /* Read frame header and check length */
1247 if(version
>= ID3_VER_2_3
) {
1248 if(global_unsynch
&& version
<= ID3_VER_2_3
)
1249 rc
= read_unsynched(fd
, header
, 10, &global_ff_found
);
1251 rc
= rb
->read(fd
, header
, 10);
1254 /* Adjust for the 10 bytes we read */
1257 flags
= bytes2int(0, 0, header
[8], header
[9]);
1259 if (version
>= ID3_VER_2_4
) {
1260 framelen
= unsync(header
[4], header
[5],
1261 header
[6], header
[7]);
1263 /* version .3 files don't use synchsafe ints for
1265 framelen
= bytes2int(header
[4], header
[5],
1266 header
[6], header
[7]);
1269 if(6 != rb
->read(fd
, header
, 6))
1271 /* Adjust for the 6 bytes we read */
1274 framelen
= bytes2int(0, header
[3], header
[4], header
[5]);
1278 if (header
[0] == 0 && header
[1] == 0 && header
[2] == 0)
1288 if (version
>= ID3_VER_2_4
) {
1289 if(flags
& 0x0040) { /* Grouping identity */
1290 rb
->lseek(fd
, 1, SEEK_CUR
); /* Skip 1 byte */
1294 if(flags
& 0x0020) { /* Grouping identity */
1295 rb
->lseek(fd
, 1, SEEK_CUR
); /* Skip 1 byte */
1300 if(flags
& 0x000c) /* Compression or encryption */
1304 rb
->lseek(fd
, framelen
, SEEK_CUR
);
1308 if(flags
& 0x0002) /* Unsynchronization */
1311 if (version
>= ID3_VER_2_4
) {
1312 if(flags
& 0x0001) { /* Data length indicator */
1313 if(4 != rb
->read(fd
, tmp
, 4))
1316 /* We don't need the data length */
1328 if(!rb
->memcmp( header
, "SLT", 3 ) ||
1329 !rb
->memcmp( header
, "SYLT", 4 ))
1331 /* found a supported tag */
1335 else if(!rb
->memcmp( header
, "ULT", 3 ) ||
1336 !rb
->memcmp( header
, "USLT", 4 ))
1338 /* found a supported tag */
1344 /* not a supported tag*/
1345 if(global_unsynch
&& version
<= ID3_VER_2_3
) {
1346 size
-= read_unsynched(fd
, lrc_buffer
, framelen
, &global_ff_found
);
1349 if( rb
->lseek(fd
, framelen
, SEEK_CUR
) == -1 )
1357 int encoding
= 0, chsiz
;
1358 char *tag
, *p
, utf8line
[MAX_LINE_LEN
*3];
1359 unsigned char* (*utf_decode
)(const unsigned char *,
1360 unsigned char *, int) = NULL
;
1361 /* use middle of lrc_buffer to store tag data. */
1362 if(framelen
>= LRC_BUFFER_SIZE
/3)
1363 framelen
= LRC_BUFFER_SIZE
/3-1;
1364 tag
= lrc_buffer
+LRC_BUFFER_SIZE
*2/3-framelen
-1;
1365 if(global_unsynch
&& version
<= ID3_VER_2_3
)
1366 bytesread
= read_unsynched(fd
, tag
, framelen
, &global_ff_found
);
1368 bytesread
= rb
->read(fd
, tag
, framelen
);
1370 if( bytesread
!= framelen
)
1373 if(unsynch
|| (global_unsynch
&& version
>= ID3_VER_2_4
))
1374 bytesread
= unsynchronize(tag
, bytesread
, NULL
);
1379 /* skip some data */
1386 /* check encoding and skip content descriptor */
1388 case 0x01: /* Unicode with or without BOM */
1391 /* Now check if there is a BOM
1392 (zero-width non-breaking space, 0xfeff)
1393 and if it is in little or big endian format */
1394 if(!rb
->memcmp(p
, "\xff\xfe", 2)) { /* Little endian? */
1395 utf_decode
= rb
->utf16LEdecode
;
1396 } else if(!rb
->memcmp(p
, "\xfe\xff", 2)) { /* Big endian? */
1397 utf_decode
= rb
->utf16BEdecode
;
1401 encoding
= NUM_CODEPAGES
;
1410 utf_decode
= utf8cpy
;
1411 if(encoding
== 0x03) /* UTF-8 encoded string */
1414 encoding
= prefs
.encoding
;
1415 p
+= rb
->strlen(p
)+1;
1419 if(encoding
== NUM_CODEPAGES
)
1421 /* check if there is a BOM */
1422 if(!rb
->memcmp(p
, "\xff\xfe", 2)) { /* Little endian? */
1423 utf_decode
= rb
->utf16LEdecode
;
1425 } else if(!rb
->memcmp(p
, "\xfe\xff", 2)) { /* Big endian? */
1426 utf_decode
= rb
->utf16BEdecode
;
1428 } else if(!utf_decode
) {
1429 /* If there is no BOM (which is a specification violation),
1430 let's try to guess it. If one of the bytes is 0x00, it is
1431 probably the most significant one. */
1433 utf_decode
= rb
->utf16LEdecode
;
1435 utf_decode
= rb
->utf16BEdecode
;
1438 bytesread
-= (long)p
- (long)tag
;
1441 while ( bytesread
> 0
1442 && lrc_buffer_used
+bytesread
< LRC_BUFFER_SIZE
*2/3
1443 && LRC_BUFFER_SIZE
*2/3 < lrc_buffer_end
)
1445 bool is_crlf
= false;
1446 struct lrc_line
*lrc_line
= alloc_buf(sizeof(struct lrc_line
));
1449 lrc_line
->file_offset
= -1;
1452 /* replace 0x0a and 0x0d with 0x00 */
1455 utf_decode(p
, tmp
, 2);
1457 if(tmp
[0] == 0x0d || tmp
[0] == 0x0a)
1459 if(tmp
[0] == 0x0d && tmp
[1] == 0x0a)
1468 if(encoding
== NUM_CODEPAGES
)
1470 unsigned char* utf8
= utf8line
;
1473 utf8
= utf_decode(p
, utf8
, 1);
1479 size
= rb
->strlen(tag
)+1;
1480 rb
->iso_decode(tag
, utf8line
, encoding
, size
);
1484 if(type
== SYLT
) { /* timestamp */
1485 lrc_line
->time_start
= bytes2int(p
[0], p
[1], p
[2], p
[3]);
1486 lrc_line
->old_time_start
= lrc_line
->time_start
;
1488 utf_decode(p
, tmp
, 1);
1492 lrc_line
->time_start
= 0;
1493 lrc_line
->old_time_start
= -1;
1494 if(is_crlf
) p
+= chsiz
;
1496 bytesread
-= (long)p
- (long)tag
;
1498 if(!add_lrc_line(lrc_line
, utf8line
))
1502 current
.type
= ID3_SYLT
-SYLT
+type
;
1503 rb
->strcpy(current
.lrc_file
, current
.mp3_file
);
1505 current
.loaded_lrc
= true;
1506 calc_brpos(NULL
, 0);
1512 static bool read_id3(void)
1516 if(current
.id3
->codectype
!= AFMT_MPA_L1
1517 && current
.id3
->codectype
!= AFMT_MPA_L2
1518 && current
.id3
->codectype
!= AFMT_MPA_L3
)
1521 fd
= rb
->open(current
.mp3_file
, O_RDONLY
);
1522 if(fd
< 0) return false;
1523 current
.loaded_lrc
= false;
1526 return current
.loaded_lrc
;
1528 #endif /* LRC_SUPPORT_ID3 */
1530 /*******************************
1531 * Display information
1532 *******************************/
1533 static void display_state(void)
1535 const char *str
= NULL
;
1538 str
= "Audio Stopped";
1539 else if (current
.found_lrc
)
1541 if (!current
.loaded_lrc
)
1542 str
= "Loading lrc";
1543 else if (!current
.ll_head
)
1547 #ifdef HAVE_LCD_BITMAP
1548 const char *info
= NULL
;
1550 if (AUDIO_PLAY
&& prefs
.display_title
)
1552 char *title
= (current
.title
? current
.title
: current
.id3
->title
);
1553 char *artist
= (current
.artist
? current
.artist
: current
.id3
->artist
);
1555 if (artist
!= NULL
&& title
!= NULL
)
1557 rb
->snprintf(temp_buf
, MAX_LINE_LEN
, "%s/%s", title
, artist
);
1560 else if (title
!= NULL
)
1562 else if (current
.mp3_file
[0] == '/')
1563 info
= rb
->strrchr(current
.mp3_file
, '/')+1;
1569 struct screen
* display
;
1572 display
= rb
->screens
[i
];
1573 display
->set_viewport(&vp_info
[i
]);
1574 display
->clear_viewport();
1576 display
->puts_scroll(0, 0, info
);
1579 display
->set_viewport(&vp_lyrics
[i
]);
1580 display
->clear_viewport();
1581 display
->getstringsize(str
, &w
, &h
);
1582 if (vp_lyrics
[i
].width
- w
< 0)
1583 display
->puts_scroll(0, vp_lyrics
[i
].height
/font_ui_height
/2,
1586 display
->putsxy((vp_lyrics
[i
].width
- w
)*prefs
.align
/2,
1587 (vp_lyrics
[i
].height
-font_ui_height
)/2, str
);
1588 display
->set_viewport(&vp_info
[i
]);
1590 display
->update_viewport();
1591 display
->set_viewport(NULL
);
1594 /* there is no place to display title or artist. */
1595 rb
->lcd_clear_display();
1597 rb
->lcd_puts_scroll(0, 0, str
);
1599 #endif /* HAVE_LCD_BITMAP */
1602 static void display_time(void)
1604 rb
->snprintf(temp_buf
, MAX_LINE_LEN
, "%ld:%02ld/%ld:%02ld",
1605 current
.elapsed
/60000, (current
.elapsed
/1000)%60,
1606 current
.length
/60000, (current
.length
)/1000%60);
1607 #ifdef HAVE_LCD_BITMAP
1608 int y
= (prefs
.display_title
? font_ui_height
:0), i
;
1611 struct screen
* display
= rb
->screens
[i
];
1612 display
->set_viewport(&vp_info
[i
]);
1613 display
->setfont(FONT_SYSFIXED
);
1614 display
->putsxy(0, y
, temp_buf
);
1615 rb
->gui_scrollbar_draw(display
, 0, y
+SYSFONT_HEIGHT
+1,
1616 vp_info
[i
].width
, SYSFONT_HEIGHT
-2,
1617 current
.length
, 0, current
.elapsed
, HORIZONTAL
);
1618 display
->update_viewport_rect(0, y
, vp_info
[i
].width
, SYSFONT_HEIGHT
*2);
1619 display
->setfont(FONT_UI
);
1620 display
->set_viewport(NULL
);
1623 rb
->lcd_puts(0, 0, temp_buf
);
1625 #endif /* HAVE_LCD_BITMAP */
1628 /*******************************
1630 *******************************/
1631 #ifdef HAVE_LCD_BITMAP
1632 static inline void set_to_default(struct screen
*display
)
1635 #ifdef HAVE_LCD_REMOTE
1636 if (display
->screen_type
!= SCREEN_REMOTE
)
1638 display
->set_foreground(prefs
.active_color
);
1640 display
->set_drawmode(DRMODE_SOLID
);
1642 static inline void set_to_active(struct screen
*display
)
1645 #ifdef HAVE_LCD_REMOTE
1646 if (display
->screen_type
== SCREEN_REMOTE
)
1647 display
->set_drawmode(DRMODE_INVERSEVID
);
1651 display
->set_foreground(prefs
.active_color
);
1652 display
->set_drawmode(DRMODE_SOLID
);
1654 #else /* LCD_DEPTH == 1 */
1655 display
->set_drawmode(DRMODE_INVERSEVID
);
1658 static inline void set_to_inactive(struct screen
*display
)
1661 #ifdef HAVE_LCD_REMOTE
1662 if (display
->screen_type
!= SCREEN_REMOTE
)
1664 display
->set_foreground(prefs
.inactive_color
);
1666 display
->set_drawmode(DRMODE_SOLID
);
1669 static int display_lrc_line(struct lrc_line
*lrc_line
, int ypos
, int i
)
1671 struct screen
*display
= rb
->screens
[i
];
1672 struct lrc_word
*lrc_word
;
1673 struct lrc_brpos
*lrc_brpos
;
1674 long time_start
, time_end
, elapsed
;
1675 int count
, width
, nword
;
1680 time_start
= get_time_start(lrc_line
);
1681 time_end
= get_time_start(lrc_line
->next
);
1682 active_line
= (time_start
<= current
.elapsed
1683 && time_end
> current
.elapsed
);
1685 if (!lrc_line
->width
)
1687 /* empty line. draw bar during interval. */
1688 long rin
= current
.elapsed
- time_start
;
1689 long len
= time_end
- time_start
;
1690 if (current
.wipe
&& active_line
&& len
>= 3500)
1692 elapsed
= rin
* vp_lyrics
[i
].width
/ len
;
1693 set_to_active(display
);
1694 display
->drawrect(0, ypos
+font_ui_height
/4,
1695 vp_lyrics
[i
].width
, font_ui_height
/2);
1696 display
->fillrect(1, ypos
+font_ui_height
/4+1,
1697 elapsed
-1, font_ui_height
/2-2);
1698 set_to_inactive(display
);
1699 display
->fillrect(elapsed
, ypos
+font_ui_height
/4+1,
1700 vp_lyrics
[i
].width
-elapsed
-1, font_ui_height
/2-2);
1701 set_to_default(display
);
1703 return ypos
+ font_ui_height
;
1706 lrc_brpos
= calc_brpos(lrc_line
, i
);
1707 /* initialize line */
1708 xpos
= (vp_lyrics
[i
].width
- lrc_brpos
->width
)*prefs
.align
/2;
1712 active_line
= active_line
|| !prefs
.active_one_line
;
1713 nword
= lrc_line
->nword
-1;
1714 lrc_word
= lrc_line
->words
+ nword
;
1715 str
= lrc_word
->word
;
1716 /* only time_start of first word could be -1 */
1717 if (lrc_word
->time_start
!= -1)
1718 time_end
= get_word_time_start(lrc_word
);
1720 time_end
= time_start
;
1722 time_start
= time_end
;
1724 time_end
= get_word_time_start(lrc_word
-1);
1726 time_end
= get_time_start(lrc_line
->next
);
1728 if (time_start
> current
.elapsed
|| !active_line
)
1733 else if (!current
.wipe
|| time_end
<= current
.elapsed
)
1735 /* active whole word */
1736 elapsed
= lrc_word
->width
;
1741 long rin
= current
.elapsed
- time_start
;
1742 long len
= time_end
- time_start
;
1743 elapsed
= rin
* lrc_word
->width
/ len
;
1746 int word_count
= lrc_word
->count
;
1747 int word_width
= lrc_word
->width
;
1748 set_to_active(display
);
1749 while (word_count
> 0 && word_width
> 0)
1751 int c
= lrc_brpos
->count
- count
;
1752 int w
= lrc_brpos
->width
- width
;
1753 if (c
> word_count
|| w
> word_width
)
1760 set_to_inactive(display
);
1762 else if (elapsed
< w
)
1765 display
->fillrect(xpos
, ypos
, elapsed
, font_ui_height
);
1766 set_to_inactive(display
);
1767 display
->fillrect(xpos
+elapsed
, ypos
,
1768 w
-elapsed
, font_ui_height
);
1770 #ifdef HAVE_LCD_REMOTE
1771 if (display
->screen_type
== SCREEN_REMOTE
)
1772 display
->set_drawmode(DRMODE_INVERSEVID
);
1775 display
->set_drawmode(DRMODE_BG
);
1777 display
->set_drawmode(DRMODE_INVERSEVID
);
1780 rb
->strlcpy(temp_buf
, str
, c
+1);
1781 display
->putsxy(xpos
, ypos
, temp_buf
);
1789 if (count
>= lrc_brpos
->count
|| width
>= lrc_brpos
->width
)
1791 /* prepare for next line */
1793 str
= lrc_skip_space(str
);
1794 xpos
= (vp_lyrics
[i
].width
- lrc_brpos
->width
)*prefs
.align
/2;
1795 ypos
+= font_ui_height
;
1802 set_to_default(display
);
1805 #endif /* HAVE_LCD_BITMAP */
1807 static void display_lrcs(void)
1809 long time_start
, time_end
, rin
, len
;
1810 int i
, nline
[NB_SCREENS
] = {0};
1811 struct lrc_line
*lrc_center
= current
.ll_head
;
1813 if (!lrc_center
) return;
1815 while (get_time_start(lrc_center
->next
) <= current
.elapsed
)
1817 nline
[SCREEN_MAIN
] += lrc_center
->nline
[SCREEN_MAIN
];
1818 #ifdef HAVE_REMOTE_LCD
1819 nline
[SCREEN_REMOTE
] += lrc_center
->nline
[SCREEN_REMOTE
];
1821 lrc_center
= lrc_center
->next
;
1824 time_start
= get_time_start(lrc_center
);
1825 time_end
= get_time_start(lrc_center
->next
);
1826 rin
= current
.elapsed
- time_start
;
1827 len
= time_end
- time_start
;
1829 struct screen
*display
;
1832 display
= rb
->screens
[i
];
1833 /* display current line at the center of the viewport */
1834 display
->set_viewport(&vp_lyrics
[i
]);
1835 display
->clear_viewport();
1836 #ifdef HAVE_LCD_BITMAP
1837 struct lrc_line
*lrc_line
;
1838 int y
, ypos
= 0, nblines
= vp_lyrics
[i
].height
/font_ui_height
;
1842 /* current.elapsed < time of first lrc */
1844 ypos
= (time_start
- current
.elapsed
)
1845 * font_ui_height
/ time_start
;
1852 ypos
= - rin
* lrc_center
->nline
[i
] * font_ui_height
/ len
;
1855 long elapsed
= rin
* lrc_center
->width
/ len
;
1856 struct lrc_brpos
*lrc_brpos
= calc_brpos(lrc_center
, i
);
1857 while (elapsed
> lrc_brpos
->width
)
1859 elapsed
-= lrc_brpos
->width
;
1866 /* find first line to display */
1868 lrc_line
= current
.ll_head
;
1869 while (y
< -lrc_line
->nline
[i
])
1871 y
+= lrc_line
->nline
[i
];
1872 lrc_line
= lrc_line
->next
;
1875 ypos
+= y
*font_ui_height
;
1876 while (lrc_line
&& ypos
< vp_lyrics
[i
].height
)
1878 ypos
= display_lrc_line(lrc_line
, ypos
, i
);
1879 lrc_line
= lrc_line
->next
;
1881 if (!lrc_line
&& ypos
< vp_lyrics
[i
].height
)
1882 display
->putsxy(0, ypos
, "[end]");
1883 #else /* HAVE_LCD_CHARCELLS */
1884 struct lrc_line
*lrc_line
= lrc_center
;
1885 struct lrc_brpos
*lrc_brpos
= calc_brpos(lrc_line
, i
);
1887 const char *str
= get_lrc_str(lrc_line
);
1888 int x
= vp_lyrics
[i
].width
/2, y
= 0;
1890 if (rin
>= 0 && len
> 0)
1892 elapsed
= rin
* lrc_center
->width
/ len
;
1893 while (elapsed
> lrc_brpos
->width
)
1895 elapsed
-= lrc_brpos
->width
;
1896 str
= lrc_skip_space(str
+lrc_brpos
->count
);
1900 rb
->strlcpy(temp_buf
, str
, lrc_brpos
->count
+1);
1904 display
->puts(0, y
, temp_buf
+ rb
->utf8seek(temp_buf
, -x
));
1906 display
->puts(x
, y
, temp_buf
);
1907 x
+= rb
->utf8length(temp_buf
)+1;
1908 lrc_line
= lrc_line
->next
;
1909 if (!lrc_line
&& x
< vp_lyrics
[i
].width
)
1911 if (x
< vp_lyrics
[i
].width
/2)
1912 x
= vp_lyrics
[i
].width
/2;
1913 display
->puts(x
, y
, "[end]");
1915 #endif /* HAVE_LCD_BITMAP */
1916 display
->update_viewport();
1917 display
->set_viewport(NULL
);
1921 /*******************************
1922 * Browse lyrics and edit time.
1923 *******************************/
1924 /* point playing line in lyrics */
1925 static enum themable_icons
get_icon(int selected
, void * data
)
1928 struct lrc_line
*lrc_line
= get_lrc_line(selected
);
1931 long time_start
= get_time_start(lrc_line
);
1932 long time_end
= get_time_start(lrc_line
->next
);
1933 long elapsed
= current
.id3
->elapsed
;
1934 if (time_start
<= elapsed
&& time_end
> elapsed
)
1939 static const char *get_lrc_timeline(int selected
, void *data
,
1940 char *buffer
, size_t buffer_len
)
1943 struct lrc_line
*lrc_line
= get_lrc_line(selected
);
1946 format_time_tag(temp_buf
, get_time_start(lrc_line
));
1947 rb
->snprintf(buffer
, buffer_len
, "[%s]%s",
1948 temp_buf
, get_lrc_str(lrc_line
));
1954 static void save_changes(void)
1956 char new_file
[MAX_PATH
], *p
;
1957 bool success
= false;
1959 if (!current
.changed_lrc
)
1961 rb
->splash(HZ
/2, "Saving changes...");
1962 if (current
.type
> NUM_TYPES
)
1964 /* save changes to new .lrc8 file */
1965 rb
->strcpy(new_file
, current
.lrc_file
);
1966 p
= rb
->strrchr(new_file
, '.');
1967 rb
->strcpy(p
, extentions
[LRC8
]);
1969 else if (current
.type
== TXT
)
1971 /* save changes to new .lrc file */
1972 rb
->strcpy(new_file
, current
.lrc_file
);
1973 p
= rb
->strrchr(new_file
, '.');
1974 rb
->strcpy(p
, extentions
[LRC
]);
1978 /* file already exists. use temp file. */
1979 rb
->snprintf(new_file
, MAX_PATH
, "%s~", current
.lrc_file
);
1981 fd
= rb
->creat(new_file
, 0666);
1982 fe
= rb
->open(current
.lrc_file
, O_RDONLY
);
1983 if (fd
>= 0 && fe
>= 0)
1985 struct lrc_line
*lrc_line
, *temp_lrc
;
1986 off_t curr
= 0, next
= 0, size
= 0, offset
= 0;
1987 for (lrc_line
= current
.ll_head
; lrc_line
;
1988 lrc_line
= lrc_line
->next
)
1990 /* apply offset and set old_time_start -1 to indicate
1991 that time tag is not saved yet. */
1992 lrc_line
->time_start
= get_time_start(lrc_line
);
1993 lrc_line
->old_time_start
= -1;
1996 if (current
.type
> NUM_TYPES
)
1999 size
= rb
->filesize(fe
);
2002 /* find offset of next tag */
2004 for (temp_lrc
= current
.ll_head
, next
= size
;
2005 temp_lrc
; temp_lrc
= temp_lrc
->next
)
2007 offset
= temp_lrc
->file_offset
;
2009 (offset
< next
&& temp_lrc
->old_time_start
== -1))
2011 lrc_line
= temp_lrc
;
2013 if (offset
<= curr
) break;
2016 offset
= current
.offset_file_offset
;
2017 if (offset
>= curr
&& offset
< next
)
2021 current
.offset_file_offset
= -1;
2025 if (curr
== -1) curr
= 0;
2026 /* copy before the next tag */
2029 ssize_t count
= next
-curr
;
2030 if (count
> MAX_LINE_LEN
)
2031 count
= MAX_LINE_LEN
;
2032 if (rb
->read(fe
, temp_buf
, count
)!=count
)
2034 rb
->write(fd
, temp_buf
, count
);
2037 if (curr
< next
|| curr
>= size
) break;
2039 /* write tag to new file and skip tag in backup */
2040 if (lrc_line
!= NULL
)
2042 lrc_line
->file_offset
= rb
->lseek(fd
, 0, SEEK_CUR
);
2043 lrc_line
->old_time_start
= lrc_line
->time_start
;
2044 long t
= lrc_line
->time_start
;
2045 if (current
.type
== SNC
)
2047 rb
->fdprintf(fd
, "%02ld%02ld%02ld%02ld", (t
/3600000)%100,
2048 (t
/60000)%60, (t
/1000)%60, (t
/10)%100);
2050 curr
+= rb
->read(fe
, temp_buf
, 8);
2052 else /* LRC || LRC8 */
2054 format_time_tag(temp_buf
, t
);
2055 rb
->fdprintf(fd
, "[%s]", temp_buf
);
2059 rb
->fdprintf(fd
, "%s\n", get_lrc_str(lrc_line
));
2062 if (current
.type
== LRC
|| current
.type
== LRC8
)
2064 /* skip both time tag and offset tag */
2065 while (curr
++<size
&& rb
->read(fe
, temp_buf
, 1)==1)
2066 if (temp_buf
[0]==']') break;
2069 success
= (curr
>=size
);
2071 if (fe
>= 0) rb
->close(fe
);
2072 if (fd
>= 0) rb
->close(fd
);
2076 if (current
.type
== TXT
)
2079 rb
->strcpy(current
.lrc_file
, new_file
);
2081 else if (current
.type
> NUM_TYPES
)
2083 current
.type
= LRC8
;
2084 rb
->strcpy(current
.lrc_file
, new_file
);
2088 rb
->remove(current
.lrc_file
);
2089 rb
->rename(new_file
, current
.lrc_file
);
2094 rb
->remove(new_file
);
2095 rb
->splash(HZ
, "Could not save changes.");
2097 rb
->reload_directory();
2098 current
.changed_lrc
= false;
2100 static int timetag_editor(void)
2102 struct gui_synclist gui_editor
;
2103 struct lrc_line
*lrc_line
;
2105 int button
, idx
, selected
= 0;
2107 if (current
.id3
== NULL
|| !current
.ll_head
)
2109 rb
->splash(HZ
, "No lyrics");
2110 return LRC_GOTO_MAIN
;
2113 get_lrc_line(-1); /* initialize static variables */
2115 for (lrc_line
= current
.ll_head
, idx
= 0;
2116 lrc_line
; lrc_line
= lrc_line
->next
, idx
++)
2118 long time_start
= get_time_start(lrc_line
);
2119 long time_end
= get_time_start(lrc_line
->next
);
2120 long elapsed
= current
.id3
->elapsed
;
2121 if (time_start
<= elapsed
&& time_end
> elapsed
)
2125 rb
->gui_synclist_init(&gui_editor
, &get_lrc_timeline
, NULL
, false, 1, NULL
);
2126 rb
->gui_synclist_set_nb_items(&gui_editor
, current
.nlrcline
);
2127 rb
->gui_synclist_set_icon_callback(&gui_editor
, get_icon
);
2128 rb
->gui_synclist_set_title(&gui_editor
, "Timetag Editor",
2129 Icon_Menu_functioncall
);
2130 rb
->gui_synclist_select_item(&gui_editor
, selected
);
2131 rb
->gui_synclist_draw(&gui_editor
);
2135 button
= rb
->get_action(CONTEXT_TREE
, TIMEOUT_BLOCK
);
2136 if (rb
->gui_synclist_do_button(&gui_editor
, &button
,
2137 LIST_WRAP_UNLESS_HELD
))
2143 idx
= rb
->gui_synclist_get_sel_pos(&gui_editor
);
2144 lrc_line
= get_lrc_line(idx
);
2147 set_time_start(lrc_line
, current
.id3
->elapsed
-500);
2148 rb
->gui_synclist_draw(&gui_editor
);
2151 case ACTION_STD_CONTEXT
:
2152 idx
= rb
->gui_synclist_get_sel_pos(&gui_editor
);
2153 lrc_line
= get_lrc_line(idx
);
2156 long temp_time
= get_time_start(lrc_line
);
2157 if (lrc_set_time(get_lrc_str(lrc_line
), NULL
,
2158 &temp_time
, 10, 0, current
.length
,
2159 LST_SET_MSEC
|LST_SET_SEC
|LST_SET_MIN
) == 1)
2160 return PLUGIN_USB_CONNECTED
;
2161 set_time_start(lrc_line
, temp_time
);
2162 rb
->gui_synclist_draw(&gui_editor
);
2165 case ACTION_TREE_STOP
:
2166 case ACTION_STD_CANCEL
:
2170 if (rb
->default_event_handler(button
) == SYS_USB_CONNECTED
)
2171 return PLUGIN_USB_CONNECTED
;
2177 rb
->screens
[idx
]->stop_scroll();
2179 if (current
.changed_lrc
)
2181 MENUITEM_STRINGLIST(save_menu
, "Save Changes?", NULL
,
2182 "Yes", "No (save later)", "Discard All Changes")
2187 switch (rb
->do_menu(&save_menu
, &button
, NULL
, false))
2202 case MENU_ATTACHED_USB
:
2203 return PLUGIN_USB_CONNECTED
;
2207 return LRC_GOTO_MAIN
;
2210 /*******************************
2212 *******************************/
2213 static void load_or_save_settings(bool save
)
2215 static const char config_file
[] = "lrcplayer.cfg";
2216 static struct configdata config
[] = {
2217 #ifdef HAVE_LCD_COLOR
2218 { TYPE_INT
, 0, 0xffffff, { .int_p
= &prefs
.inactive_color
},
2219 "inactive color", NULL
},
2221 #ifdef HAVE_LCD_BITMAP
2222 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.wrap
}, "wrap", NULL
},
2223 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.wipe
}, "wipe", NULL
},
2224 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.active_one_line
},
2225 "active one line", NULL
},
2226 { TYPE_INT
, 0, 2, { .int_p
= &prefs
.align
}, "align", NULL
},
2227 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.statusbar_on
},
2228 "statusbar on", NULL
},
2229 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.display_title
},
2230 "display title", NULL
},
2232 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.display_time
},
2233 "display time", NULL
},
2234 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.backlight_on
},
2235 "backlight on", NULL
},
2237 { TYPE_STRING
, 0, sizeof(prefs
.lrc_directory
),
2238 { .string
= prefs
.lrc_directory
}, "lrc directory", NULL
},
2239 { TYPE_INT
, -1, NUM_CODEPAGES
-1, { .int_p
= &prefs
.encoding
},
2241 #ifdef LRC_SUPPORT_ID3
2242 { TYPE_BOOL
, 0, 1, { .bool_p
= &prefs
.read_id3
}, "read id3", NULL
},
2248 /* initialize setting */
2250 prefs
.active_color
= rb
->lcd_get_foreground();
2251 prefs
.inactive_color
= LCD_LIGHTGRAY
;
2253 #ifdef HAVE_LCD_BITMAP
2256 prefs
.active_one_line
= false;
2257 prefs
.align
= 1; /* center */
2258 prefs
.statusbar_on
= false;
2259 prefs
.display_title
= true;
2261 prefs
.display_time
= true;
2262 prefs
.backlight_on
= false;
2263 #ifdef LRC_SUPPORT_ID3
2264 prefs
.read_id3
= true;
2266 rb
->strcpy(prefs
.lrc_directory
, "/Lyrics");
2267 prefs
.encoding
= -1; /* default codepage */
2269 configfile_load(config_file
, config
, ARRAYLEN(config
), 0);
2271 else if (rb
->memcmp(&old_prefs
, &prefs
, sizeof(prefs
)))
2273 rb
->splash(0, "Saving Settings");
2274 configfile_save(config_file
, config
, ARRAYLEN(config
), 0);
2276 rb
->memcpy(&old_prefs
, &prefs
, sizeof(prefs
));
2279 static bool lrc_theme_menu(void)
2282 #ifdef HAVE_LCD_BITMAP
2284 LRC_MENU_DISP_TITLE
,
2287 #ifdef HAVE_LCD_COLOR
2288 LRC_MENU_INACTIVE_COLOR
,
2294 bool exit
= false, usb
= false;
2296 MENUITEM_STRINGLIST(menu
, "Theme Settings", NULL
,
2297 #ifdef HAVE_LCD_BITMAP
2298 "Show Statusbar", "Display Title",
2301 #ifdef HAVE_LCD_COLOR
2304 "Backlight Force On");
2306 while (!exit
&& !usb
)
2308 switch (rb
->do_menu(&menu
, &selected
, NULL
, false))
2310 #ifdef HAVE_LCD_BITMAP
2311 case LRC_MENU_STATUSBAR
:
2312 usb
= rb
->set_bool("Show Statusbar", &prefs
.statusbar_on
);
2314 case LRC_MENU_DISP_TITLE
:
2315 usb
= rb
->set_bool("Display Title", &prefs
.display_title
);
2318 case LRC_MENU_DISP_TIME
:
2319 usb
= rb
->set_bool("Display Time", &prefs
.display_time
);
2321 #ifdef HAVE_LCD_COLOR
2322 case LRC_MENU_INACTIVE_COLOR
:
2323 usb
= rb
->set_color(NULL
, "Inactive Color",
2324 &prefs
.inactive_color
, -1);
2327 case LRC_MENU_BACKLIGHT
:
2328 usb
= rb
->set_bool("Backlight Force On", &prefs
.backlight_on
);
2330 case MENU_ATTACHED_USB
:
2342 #ifdef HAVE_LCD_BITMAP
2343 static bool lrc_display_menu(void)
2353 bool exit
= false, usb
= false;
2355 MENUITEM_STRINGLIST(menu
, "Display Settings", NULL
,
2356 "Wrap", "Wipe", "Align",
2357 "Activate Only Current Line");
2359 struct opt_items align_names
[] = {
2360 {"Left", -1}, {"Center", -1}, {"Right", -1},
2363 while (!exit
&& !usb
)
2365 switch (rb
->do_menu(&menu
, &selected
, NULL
, false))
2368 usb
= rb
->set_bool("Wrap", &prefs
.wrap
);
2371 usb
= rb
->set_bool("Wipe", &prefs
.wipe
);
2373 case LRC_MENU_ALIGN
:
2374 usb
= rb
->set_option("Align", &prefs
.align
, INT
,
2375 align_names
, 3, NULL
);
2377 case LRC_MENU_LINE_MODE
:
2378 usb
= rb
->set_bool("Activate Only Current Line",
2379 &prefs
.active_one_line
);
2381 case MENU_ATTACHED_USB
:
2392 #endif /* HAVE_LCD_BITMAP */
2394 static bool lrc_lyrics_menu(void)
2398 #ifdef LRC_SUPPORT_ID3
2405 bool exit
= false, usb
= false;
2407 struct opt_items cp_names
[NUM_CODEPAGES
+1];
2410 MENUITEM_STRINGLIST(menu
, "Lyrics Settings", NULL
,
2412 #ifdef LRC_SUPPORT_ID3
2417 cp_names
[0].string
= "Use default codepage";
2418 cp_names
[0].voice_id
= -1;
2419 for (old_val
= 1; old_val
< NUM_CODEPAGES
+1; old_val
++)
2421 cp_names
[old_val
].string
= rb
->get_codepage_name(old_val
-1);
2422 cp_names
[old_val
].voice_id
= -1;
2425 while (!exit
&& !usb
)
2427 switch (rb
->do_menu(&menu
, &selected
, NULL
, false))
2429 case LRC_MENU_ENCODING
:
2431 old_val
= prefs
.encoding
;
2432 usb
= rb
->set_option("Encoding", &prefs
.encoding
, INT
,
2433 cp_names
, NUM_CODEPAGES
+1, NULL
);
2434 if (prefs
.encoding
!= old_val
)
2437 if (current
.type
< NUM_TYPES
)
2439 /* let reload lrc file to apply encoding setting */
2440 reset_current_data();
2445 #ifdef LRC_SUPPORT_ID3
2446 case LRC_MENU_READ_ID3
:
2447 usb
= rb
->set_bool("Read ID3 tag", &prefs
.read_id3
);
2450 case LRC_MENU_LRC_DIR
:
2451 rb
->strcpy(temp_buf
, prefs
.lrc_directory
);
2452 if (!rb
->kbd_input(temp_buf
, sizeof(prefs
.lrc_directory
)))
2453 rb
->strcpy(prefs
.lrc_directory
, temp_buf
);
2455 case MENU_ATTACHED_USB
:
2468 static const char* lrc_debug_data(int selected
, void * data
,
2469 char * buffer
, size_t buffer_len
)
2475 rb
->strlcpy(buffer
, current
.mp3_file
, buffer_len
);
2478 rb
->strlcpy(buffer
, current
.lrc_file
, buffer_len
);
2481 rb
->snprintf(buffer
, buffer_len
, "buf usage: %d,%d/%d",
2482 (int)lrc_buffer_used
, (int)lrc_buffer_end
,
2483 (int)lrc_buffer_size
);
2486 rb
->snprintf(buffer
, buffer_len
, "line count: %d,%d",
2487 current
.nlrcline
, current
.nlrcbrpos
);
2490 rb
->snprintf(buffer
, buffer_len
, "loaded lrc? %s",
2491 current
.loaded_lrc
?"yes":"no");
2494 rb
->snprintf(buffer
, buffer_len
, "too many lines? %s",
2495 current
.too_many_lines
?"yes":"no");
2503 static bool lrc_debug_menu(void)
2505 struct simplelist_info info
;
2506 rb
->simplelist_info_init(&info
, "Debug Menu", 6, NULL
);
2507 info
.hide_selection
= true;
2508 info
.scroll_all
= true;
2509 info
.get_name
= lrc_debug_data
;
2510 return rb
->simplelist_show_list(&info
);
2514 /* returns one of enum lrc_screen or enum plugin_status */
2515 static int lrc_menu(void)
2519 #ifdef HAVE_LCD_BITMAP
2528 LRC_MENU_TIMETAG_EDITOR
,
2532 MENUITEM_STRINGLIST(menu
, "Lrcplayer Menu", NULL
,
2534 #ifdef HAVE_LCD_BITMAP
2542 "Time Offset", "Timetag Editor",
2544 int selected
= 0, ret
= LRC_GOTO_MENU
;
2547 while (ret
== LRC_GOTO_MENU
)
2549 switch (rb
->do_menu(&menu
, &selected
, NULL
, false))
2551 case LRC_MENU_THEME
:
2552 usb
= lrc_theme_menu();
2554 #ifdef HAVE_LCD_BITMAP
2555 case LRC_MENU_DISPLAY
:
2556 usb
= lrc_display_menu();
2559 case LRC_MENU_LYRICS
:
2560 usb
= lrc_lyrics_menu();
2562 case LRC_MENU_PLAYBACK
:
2563 usb
= playback_control(NULL
);
2564 ret
= LRC_GOTO_MAIN
;
2567 case LRC_MENU_DEBUG
:
2568 usb
= lrc_debug_menu();
2569 ret
= LRC_GOTO_MAIN
;
2572 case LRC_MENU_OFFSET
:
2573 usb
= (lrc_set_time("Time Offset", "sec", ¤t
.offset
,
2574 10, -60*1000, 60*1000,
2575 LST_SET_MSEC
|LST_SET_SEC
) == 1);
2576 ret
= LRC_GOTO_MAIN
;
2578 case LRC_MENU_TIMETAG_EDITOR
:
2579 ret
= LRC_GOTO_EDITOR
;
2584 case MENU_ATTACHED_USB
:
2588 ret
= LRC_GOTO_MAIN
;
2592 ret
= PLUGIN_USB_CONNECTED
;
2597 /*******************************
2599 *******************************/
2600 /* returns true if song has changed to know when to load new lyrics. */
2601 static bool check_audio_status(void)
2603 static int last_audio_status
= 0;
2604 if (current
.ff_rewind
== -1)
2605 current
.audio_status
= rb
->audio_status();
2606 current
.id3
= rb
->audio_current_track();
2607 if ((last_audio_status
^current
.audio_status
)&AUDIO_STATUS_PLAY
)
2609 last_audio_status
= current
.audio_status
;
2612 if (AUDIO_STOP
|| current
.id3
== NULL
)
2614 if (rb
->strcmp(current
.mp3_file
, current
.id3
->path
))
2620 static void ff_rewind(long time
, bool resume
)
2629 rb
->audio_ff_rewind(time
);
2630 rb
->sleep(HZ
/10); /* take affect seeking */
2636 static int handle_button(void)
2638 int ret
= LRC_GOTO_MAIN
;
2639 static int step
= 0;
2640 int limit
, button
= rb
->get_action(CONTEXT_WPS
, HZ
/10);
2643 case ACTION_WPS_BROWSE
:
2644 #if CONFIG_KEYPAD == ONDIO_PAD
2645 /* ondio doesn't have ACTION_WPS_MENU,
2646 so use ACTION_WPS_BROWSE for menu */
2647 ret
= LRC_GOTO_MENU
;
2650 case ACTION_WPS_STOP
:
2654 case ACTION_WPS_PLAY
:
2655 if (AUDIO_STOP
&& rb
->global_status
->resume_index
!= -1)
2657 if (rb
->playlist_resume() != -1)
2659 rb
->playlist_start(rb
->global_status
->resume_index
,
2660 rb
->global_status
->resume_offset
);
2663 else if (AUDIO_PAUSE
)
2668 case ACTION_WPS_SEEKFWD
:
2669 case ACTION_WPS_SEEKBACK
:
2672 if (current
.ff_rewind
> -1)
2674 if (button
== ACTION_WPS_SEEKFWD
)
2675 /* fast forwarding, calc max step relative to end */
2676 limit
= (current
.length
- current
.ff_rewind
) * 3 / 100;
2678 /* rewinding, calc max step relative to start */
2679 limit
= (current
.ff_rewind
) * 3 / 100;
2680 limit
= MAX(limit
, 500);
2685 if (button
== ACTION_WPS_SEEKFWD
)
2686 current
.ff_rewind
+= step
;
2688 current
.ff_rewind
-= step
;
2690 if (current
.ff_rewind
> current
.length
-100)
2691 current
.ff_rewind
= current
.length
-100;
2692 if (current
.ff_rewind
< 0)
2693 current
.ff_rewind
= 0;
2695 /* smooth seeking by multiplying step by: 1 + (2 ^ -accel) */
2696 step
+= step
>> (rb
->global_settings
->ff_rewind_accel
+ 3);
2700 current
.ff_rewind
= current
.elapsed
;
2703 step
= 1000 * rb
->global_settings
->ff_rewind_min_step
;
2706 case ACTION_WPS_STOPSEEK
:
2707 if (current
.ff_rewind
== -1)
2709 ff_rewind(current
.ff_rewind
, !AUDIO_PAUSE
);
2710 current
.elapsed
= current
.ff_rewind
;
2711 current
.ff_rewind
= -1;
2713 case ACTION_WPS_SKIPNEXT
:
2716 case ACTION_WPS_SKIPPREV
:
2717 if (current
.elapsed
< 3000)
2720 ff_rewind(0, false);
2722 case ACTION_WPS_VOLDOWN
:
2723 limit
= rb
->sound_min(SOUND_VOLUME
);
2724 if (--rb
->global_settings
->volume
< limit
)
2725 rb
->global_settings
->volume
= limit
;
2726 rb
->sound_set(SOUND_VOLUME
, rb
->global_settings
->volume
);
2728 case ACTION_WPS_VOLUP
:
2729 limit
= rb
->sound_max(SOUND_VOLUME
);
2730 if (++rb
->global_settings
->volume
> limit
)
2731 rb
->global_settings
->volume
= limit
;
2732 rb
->sound_set(SOUND_VOLUME
, rb
->global_settings
->volume
);
2734 case ACTION_WPS_CONTEXT
:
2735 ret
= LRC_GOTO_EDITOR
;
2737 case ACTION_WPS_MENU
:
2738 ret
= LRC_GOTO_MENU
;
2741 if(rb
->default_event_handler(button
) == SYS_USB_CONNECTED
)
2742 ret
= PLUGIN_USB_CONNECTED
;
2748 static int lrc_main(void)
2750 int ret
= LRC_GOTO_MAIN
;
2752 long id3_timeout
= 0;
2753 bool update_display_state
= true;
2755 #ifdef HAVE_LCD_BITMAP
2756 /* y offset of vp_lyrics */
2757 int h
= (prefs
.display_title
?font_ui_height
:0)+
2758 (prefs
.display_time
?SYSFONT_HEIGHT
*2:0);
2764 #ifdef HAVE_LCD_BITMAP
2765 rb
->viewportmanager_theme_enable(i
, prefs
.statusbar_on
, &vp_info
[i
]);
2766 vp_lyrics
[i
] = vp_info
[i
];
2767 vp_lyrics
[i
].flags
&= ~VP_FLAG_ALIGNMENT_MASK
;
2768 vp_lyrics
[i
].y
+= h
;
2769 vp_lyrics
[i
].height
-= h
;
2771 rb
->viewport_set_defaults(&vp_lyrics
[i
], i
);
2772 if (prefs
.display_time
)
2774 vp_lyrics
[i
].y
+= 1; /* time */
2775 vp_lyrics
[i
].height
-= 1;
2780 if (prefs
.backlight_on
)
2781 backlight_force_on();
2783 #ifdef HAVE_LCD_BITMAP
2784 /* in case settings that may affect break position
2785 * are changed (statusbar_on and wrap). */
2786 if (!current
.too_many_lines
)
2787 calc_brpos(NULL
, 0);
2790 while (ret
== LRC_GOTO_MAIN
)
2792 if (check_audio_status())
2794 update_display_state
= true;
2800 else if (rb
->strcmp(current
.mp3_file
, current
.id3
->path
))
2803 reset_current_data();
2804 rb
->strcpy(current
.mp3_file
, current
.id3
->path
);
2805 id3_timeout
= *rb
->current_tick
+HZ
*3;
2806 current
.found_lrc
= false;
2809 if (current
.id3
&& current
.id3
->length
)
2811 if (current
.ff_rewind
== -1)
2813 long di
= current
.id3
->elapsed
- current
.elapsed
;
2814 if (di
< -250 || di
> 0)
2815 current
.elapsed
= current
.id3
->elapsed
;
2818 current
.elapsed
= current
.ff_rewind
;
2819 current
.length
= current
.id3
->length
;
2820 if (current
.elapsed
> current
.length
)
2821 current
.elapsed
= current
.length
;
2825 current
.elapsed
= 0;
2829 if (current
.id3
&& id3_timeout
&&
2830 (TIME_AFTER(*rb
->current_tick
, id3_timeout
) ||
2831 current
.id3
->artist
))
2833 update_display_state
= true;
2836 current
.found_lrc
= find_lrc_file();
2837 #ifdef LRC_SUPPORT_ID3
2838 if (!current
.found_lrc
&& prefs
.read_id3
)
2840 /* no lyrics file found. try to read from id3 tag. */
2841 current
.found_lrc
= read_id3();
2845 else if (current
.found_lrc
&& !current
.loaded_lrc
)
2847 /* current.loaded_lrc is false after changing encode setting */
2848 update_display_state
= true;
2852 if (update_display_state
)
2854 #ifdef HAVE_LCD_BITMAP
2855 if (current
.type
== TXT
|| current
.type
== ID3_USLT
)
2856 current
.wipe
= false;
2858 current
.wipe
= prefs
.wipe
;
2861 update_display_state
= false;
2865 if (prefs
.display_time
)
2871 ret
= handle_button();
2874 #ifdef HAVE_LCD_BITMAP
2876 rb
->viewportmanager_theme_undo(i
, false);
2878 if (prefs
.backlight_on
)
2879 backlight_use_settings();
2884 /* this is the plugin entry point */
2885 enum plugin_status
plugin_start(const void* parameter
)
2887 int ret
= LRC_GOTO_MAIN
;
2889 /* initialize settings. */
2890 load_or_save_settings(false);
2892 #ifdef HAVE_LCD_BITMAP
2893 rb
->lcd_getstringsize("O", NULL
, &font_ui_height
);
2896 lrc_buffer
= rb
->plugin_get_buffer(&lrc_buffer_size
);
2897 lrc_buffer
= (void *)(((long)lrc_buffer
+3)&~3); /* 4 bytes aligned */
2898 lrc_buffer_size
= (lrc_buffer_size
- 4)&~3;
2900 reset_current_data();
2902 current
.mp3_file
[0] = 0;
2903 current
.lrc_file
[0] = 0;
2904 current
.ff_rewind
= -1;
2905 current
.found_lrc
= false;
2906 if (parameter
&& check_audio_status())
2909 rb
->strcpy(current
.mp3_file
, current
.id3
->path
);
2910 /* use passed parameter as lrc file. */
2911 rb
->strcpy(current
.lrc_file
, parameter
);
2912 if (!rb
->file_exists(current
.lrc_file
))
2914 rb
->splash(HZ
, "Specified file dose not exist.");
2915 return PLUGIN_ERROR
;
2917 ext
= rb
->strrchr(current
.lrc_file
, '.');
2918 for (current
.type
= 0; ext
&& current
.type
< NUM_TYPES
; current
.type
++)
2920 if (!rb
->strcmp(ext
, extentions
[current
.type
]))
2923 if (!ext
|| current
.type
== NUM_TYPES
)
2925 rb
->splashf(HZ
, "%s is not supported", ext
? ext
: current
.lrc_file
);
2926 return PLUGIN_ERROR
;
2928 current
.found_lrc
= true;
2931 while (ret
>= PLUGIN_OTHER
)
2941 case LRC_GOTO_EDITOR
:
2942 ret
= timetag_editor();
2950 load_or_save_settings(true);