1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 Jonathan Gordon
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"
24 #define MAX_LINE_LEN 2048
27 static unsigned char *buffer
;
28 static size_t buffer_size
;
29 static size_t char_count
= 0;
30 static int line_count
= 0;
31 static int last_action_line
= 0;
32 static int last_char_index
= 0;
33 static bool audio_buf
= false;
35 static char temp_line
[MAX_LINE_LEN
];
36 static char copy_buffer
[MAX_LINE_LEN
];
37 static char filename
[MAX_PATH
];
41 #define ACTION_INSERT 0
43 #define ACTION_REMOVE 2
44 #define ACTION_UPDATE 3
45 #define ACTION_CONCAT 4
47 static char* _do_action(int action
, char* str
, int line
);
48 #ifndef HAVE_ADJUSTABLE_CPU_FREQ
49 #define do_action _do_action
51 static char* do_action(int action
, char* str
, int line
)
55 r
= _do_action(action
,str
,line
);
61 static char* _do_action(int action
, char* str
, int line
)
65 if (line
>=last_action_line
)
70 while (i
<line
&& i
<line_count
)
72 c
+= rb
->strlen(&buffer
[c
])+1;
78 len
= rb
->strlen(str
)+1;
79 if ( char_count
+ len
> buffer_size
)
81 rb
->memmove(&buffer
[c
+len
],&buffer
[c
],char_count
-c
);
82 rb
->strcpy(&buffer
[c
],str
);
87 if (line
> line_count
)
91 if (line
> line_count
)
93 len
= rb
->strlen(&buffer
[c
])+1;
94 rb
->memmove(&buffer
[c
],&buffer
[c
+len
],char_count
-c
-len
);
99 if (line
> line_count
)
101 len
= rb
->strlen(&buffer
[c
])+1;
102 lennew
= rb
->strlen(str
)+1;
103 if ( char_count
+ lennew
-len
> buffer_size
)
105 rb
->memmove(&buffer
[c
+lennew
],&buffer
[c
+len
],char_count
-c
-len
);
106 rb
->strcpy(&buffer
[c
],str
);
107 char_count
+= lennew
-len
;
110 if (line
> line_count
)
112 rb
->memmove(&buffer
[c
-1],&buffer
[c
],char_count
-c
);
119 last_action_line
= i
;
123 static const char* list_get_name_cb(int selected_item
, void* data
,
124 char* buf
, size_t buf_len
)
127 char *b
= do_action(ACTION_GET
, 0, selected_item
);
128 /* strlcpy(dst, src, siz) returns strlen(src) */
129 if (rb
->strlcpy(buf
, b
, buf_len
) >= buf_len
)
131 rb
->strcpy(&buf
[buf_len
-10], " ...");
136 static void get_eol_string(char* fn
)
141 /* assume LF first */
142 rb
->strcpy(eol
,"\n");
146 fd
= rb
->open(fn
,O_RDONLY
);
152 if (!rb
->read(fd
,&t
,1) || t
== '\n')
158 if (rb
->read(fd
,&t
,1) && t
=='\n')
159 rb
->strcpy(eol
,"\r\n");
161 rb
->strcpy(eol
,"\r");
169 static bool save_changes(int overwrite
)
174 if (newfile
|| !overwrite
)
176 if(rb
->kbd_input(filename
,MAX_PATH
) < 0)
183 fd
= rb
->open(filename
,O_WRONLY
|O_CREAT
|O_TRUNC
, 0666);
187 rb
->splash(HZ
*2, "Changes NOT saved");
191 rb
->lcd_clear_display();
192 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
195 for (i
=0;i
<line_count
;i
++)
197 rb
->fdprintf(fd
,"%s%s", do_action(ACTION_GET
, 0, i
), eol
);
199 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
204 if (newfile
|| !overwrite
)
205 /* current directory may have changed */
206 rb
->reload_directory();
212 static void setup_lists(struct gui_synclist
*lists
, int sel
)
214 rb
->gui_synclist_init(lists
,list_get_name_cb
,0, false, 1, NULL
);
215 rb
->gui_synclist_set_icon_callback(lists
,NULL
);
216 rb
->gui_synclist_set_nb_items(lists
,line_count
);
217 rb
->gui_synclist_limit_scroll(lists
,true);
218 rb
->gui_synclist_select_item(lists
, sel
);
219 rb
->gui_synclist_draw(lists
);
227 static int do_item_menu(int cur_sel
)
229 int ret
= MENU_RET_NO_UPDATE
;
230 MENUITEM_STRINGLIST(menu
, "Line Options", NULL
,
231 "Cut/Delete", "Copy",
232 "Insert Above", "Insert Below",
234 "Save", "Playback Control");
236 switch (rb
->do_menu(&menu
, NULL
, NULL
, false))
239 rb
->strlcpy(copy_buffer
, do_action(ACTION_GET
, 0, cur_sel
),
241 do_action(ACTION_REMOVE
, 0, cur_sel
);
242 ret
= MENU_RET_UPDATE
;
245 rb
->strlcpy(copy_buffer
, do_action(ACTION_GET
, 0, cur_sel
),
247 ret
= MENU_RET_NO_UPDATE
;
249 case 2: /* insert above */
250 if (!rb
->kbd_input(copy_buffer
,MAX_LINE_LEN
))
252 do_action(ACTION_INSERT
,copy_buffer
,cur_sel
);
254 ret
= MENU_RET_UPDATE
;
257 case 3: /* insert below */
258 if (!rb
->kbd_input(copy_buffer
,MAX_LINE_LEN
))
260 do_action(ACTION_INSERT
,copy_buffer
,cur_sel
+1);
262 ret
= MENU_RET_UPDATE
;
265 case 4: /* cat to above */
268 do_action(ACTION_CONCAT
,0,cur_sel
);
269 ret
= MENU_RET_UPDATE
;
275 case 6: /* playback menu */
277 playback_control(NULL
);
279 rb
->splash(HZ
, "Cannot restart playback");
280 ret
= MENU_RET_NO_UPDATE
;
283 ret
= MENU_RET_NO_UPDATE
;
289 #ifdef HAVE_LCD_COLOR
290 /* in misc.h but no need to polute the api */
291 #define toupper(c) (((c >= 'a') && (c <= 'z'))?c+'A':c)
292 #define isxdigit(c) ((c>='a' && c<= 'f') || (c>='A' && c<= 'F') \
293 || (c>='0' && c<= '9'))
294 #define hex2dec(c) (((c) >= '0' && ((c) <= '9')) ? (toupper(c)) - '0' : \
295 (toupper(c)) - 'A' + 10)
296 static int my_hex_to_rgb(const char* hex
, int* color
)
299 int red
, green
, blue
;
301 if (rb
->strlen(hex
) == 6) {
302 for (i
=0; i
< 6; i
++ ) {
303 if (!isxdigit(hex
[i
])) {
310 red
= (hex2dec(hex
[0]) << 4) | hex2dec(hex
[1]);
311 green
= (hex2dec(hex
[2]) << 4) | hex2dec(hex
[3]);
312 blue
= (hex2dec(hex
[4]) << 4) | hex2dec(hex
[5]);
313 *color
= LCD_RGBPACK(red
,green
,blue
);
320 #endif /* HAVE_LCD_COLOR */
322 /* this is the plugin entry point */
323 enum plugin_status
plugin_start(const void* parameter
)
327 struct gui_synclist lists
;
330 bool changed
= false;
332 #ifdef HAVE_LCD_COLOR
333 bool edit_colors_file
= false;
339 rb
->lcd_set_backdrop(NULL
);
341 buffer
= rb
->plugin_get_buffer(&buffer_size
);
343 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
348 #ifdef HAVE_LCD_COLOR
351 rb
->strlcpy(filename
, (char*)parameter
, MAX_PATH
);
352 get_eol_string(filename
);
353 fd
= rb
->open(filename
,O_RDONLY
);
356 rb
->splashf(HZ
*2, "Couldnt open file: %s", filename
);
359 #ifdef HAVE_LCD_COLOR
360 c
= rb
->strrchr(filename
, '.');
361 if (c
&& !rb
->strcmp(c
, ".colours"))
362 edit_colors_file
= true;
364 if (buffer_size
<= (size_t)rb
->filesize(fd
) + 0x400)
366 buffer
= rb
->plugin_get_audio_buffer(&buffer_size
);
369 /* read in the file */
370 while (rb
->read_line(fd
,temp_line
,MAX_LINE_LEN
) > 0)
372 if (!do_action(ACTION_INSERT
,temp_line
,line_count
))
374 rb
->splashf(HZ
*2,"Error reading file: %s",(char*)parameter
);
384 rb
->strcpy(filename
,"/");
385 rb
->strcpy(eol
,"\n");
389 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
392 /* now dump it in the list */
393 setup_lists(&lists
,0);
397 rb
->gui_synclist_draw(&lists
);
398 cur_sel
= rb
->gui_synclist_get_sel_pos(&lists
);
399 button
= rb
->get_action(CONTEXT_LIST
,TIMEOUT_BLOCK
);
400 if (rb
->gui_synclist_do_button(&lists
,&button
,LIST_WRAP_UNLESS_HELD
))
407 rb
->strlcpy(temp_line
, do_action(ACTION_GET
, 0, cur_sel
),
409 #ifdef HAVE_LCD_COLOR
410 if (edit_colors_file
&& line_count
)
412 char *name
= temp_line
, *value
= NULL
;
414 int color
, old_color
;
415 bool temp_changed
= false;
417 MENUITEM_STRINGLIST(menu
, "Edit What?", NULL
,
418 "Extension", "Colour");
420 rb
->settings_parseline(temp_line
, &name
, &value
);
421 rb
->strlcpy(extension
, name
, sizeof(extension
));
423 my_hex_to_rgb(value
, &color
);
427 switch (rb
->do_menu(&menu
, NULL
, NULL
, false))
430 temp_changed
= !rb
->kbd_input(extension
, sizeof(extension
));
434 rb
->set_color(rb
->screens
[SCREEN_MAIN
], name
, &color
, -1);
435 temp_changed
= (value
== NULL
) || (color
!= old_color
);
441 rb
->snprintf(temp_line
, MAX_LINE_LEN
, "%s: %02X%02X%02X",
442 extension
, RGB_UNPACK_RED(color
),
443 RGB_UNPACK_GREEN(color
),
444 RGB_UNPACK_BLUE(color
));
445 do_action(ACTION_UPDATE
, temp_line
, cur_sel
);
451 if (!rb
->kbd_input(temp_line
,MAX_LINE_LEN
))
454 do_action(ACTION_UPDATE
,temp_line
,cur_sel
);
456 do_action(ACTION_INSERT
,temp_line
,cur_sel
);
461 case ACTION_STD_CONTEXT
:
462 if (!line_count
) break;
463 rb
->strlcpy(copy_buffer
, do_action(ACTION_GET
, 0, cur_sel
),
465 do_action(ACTION_REMOVE
, 0, cur_sel
);
468 case ACTION_STD_MENU
:
470 /* do the item menu */
471 switch (do_item_menu(cur_sel
))
477 case MENU_RET_UPDATE
:
480 case MENU_RET_NO_UPDATE
:
485 case ACTION_STD_CANCEL
:
488 MENUITEM_STRINGLIST(menu
, "Do What?", NULL
,
490 "Playback Control", "Save Changes",
491 "Save As...", "Save and Exit",
492 "Ignore Changes and Exit");
493 switch (rb
->do_menu(&menu
, NULL
, NULL
, false))
499 playback_control(NULL
);
501 rb
->splash(HZ
, "Cannot restart playback");
503 case 2: //save to disk
523 rb
->gui_synclist_set_nb_items(&lists
,line_count
);
524 if(line_count
> 0 && line_count
<= cur_sel
)
525 rb
->gui_synclist_select_item(&lists
,line_count
-1);