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 #if PLUGIN_BUFFER_SIZE > 0x45000
25 #define MAX_CHARS 0x40000 /* 256 kiB */
27 #define MAX_CHARS 0x5FE0 /* a bit less than 24 kiB */
29 #define MAX_LINE_LEN 2048
32 static char buffer
[MAX_CHARS
];
34 static int char_count
= 0;
35 static int line_count
= 0;
36 static int last_action_line
= 0;
37 static int last_char_index
= 0;
39 #define ACTION_INSERT 0
41 #define ACTION_REMOVE 2
42 #define ACTION_UPDATE 3
43 #define ACTION_CONCAT 4
45 int _do_action(int action
, char* str
, int line
);
46 #ifndef HAVE_ADJUSTABLE_CPU_FREQ
47 #define do_action _do_action
49 int do_action(int action
, char* str
, int line
)
53 r
= _do_action(action
,str
,line
);
59 int _do_action(int action
, char* str
, int line
)
63 if (line
>=last_action_line
)
68 while (i
<line
&& i
<line_count
)
70 c
+= rb
->strlen(&buffer
[c
])+1;
76 len
= rb
->strlen(str
)+1;
77 if ( char_count
+ len
> MAX_CHARS
)
79 rb
->memmove(&buffer
[c
+len
],&buffer
[c
],char_count
-c
);
80 rb
->strcpy(&buffer
[c
],str
);
85 if (line
> line_count
)
92 if (line
> line_count
)
94 len
= rb
->strlen(&buffer
[c
])+1;
95 rb
->memmove(&buffer
[c
],&buffer
[c
+len
],char_count
-c
-len
);
100 if (line
> line_count
)
102 len
= rb
->strlen(&buffer
[c
])+1;
103 lennew
= rb
->strlen(str
)+1;
104 if ( char_count
+ lennew
-len
> MAX_CHARS
)
106 rb
->memmove(&buffer
[c
+lennew
],&buffer
[c
+len
],char_count
-c
-len
);
107 rb
->strcpy(&buffer
[c
],str
);
108 char_count
+= lennew
-len
;
111 if (line
> line_count
)
113 rb
->memmove(&buffer
[c
-1],&buffer
[c
],char_count
-c
);
120 last_action_line
= i
;
124 char *list_get_name_cb(int selected_item
, void* data
,
125 char* buf
, size_t buf_len
)
128 char *b
= &buffer
[do_action(ACTION_GET
,0,selected_item
)];
129 if (rb
->strlen(b
) >= buf_len
)
131 char t
= b
[buf_len
-10];
132 b
[buf_len
-10] = '\0';
133 rb
->snprintf(buf
, buf_len
, "%s ...", b
);
136 else rb
->strlcpy(buf
, b
, buf_len
);
140 char filename
[MAX_PATH
];
142 int get_eol_string(char* fn
)
149 fd
= rb
->open(fn
,O_RDONLY
);
157 if (!rb
->read(fd
,&t
,1))
159 rb
->strcpy(eol
,"\n");
164 if (rb
->read(fd
,&t
,1) && t
=='\n')
165 rb
->strcpy(eol
,"\r\n");
167 rb
->strcpy(eol
,"\r");
171 rb
->strcpy(eol
,"\n");
178 bool save_changes(int overwrite
)
183 if (newfile
|| !overwrite
)
185 if(rb
->kbd_input(filename
,MAX_PATH
) < 0)
192 fd
= rb
->open(filename
,O_WRONLY
|O_CREAT
|O_TRUNC
);
196 rb
->splash(HZ
*2, "Changes NOT saved");
201 /* current directory may have changed */
202 rb
->reload_directory();
204 rb
->lcd_clear_display();
205 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
208 for (i
=0;i
<line_count
;i
++)
210 rb
->fdprintf(fd
,"%s%s",&buffer
[do_action(ACTION_GET
,0,i
)],eol
);
212 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
220 void setup_lists(struct gui_synclist
*lists
, int sel
)
222 rb
->gui_synclist_init(lists
,list_get_name_cb
,0, false, 1, NULL
);
223 rb
->gui_synclist_set_icon_callback(lists
,NULL
);
224 rb
->gui_synclist_set_nb_items(lists
,line_count
);
225 rb
->gui_synclist_limit_scroll(lists
,true);
226 rb
->gui_synclist_select_item(lists
, sel
);
227 rb
->gui_synclist_draw(lists
);
234 int do_item_menu(int cur_sel
, char* copy_buffer
)
237 MENUITEM_STRINGLIST(menu
, "Line Options", NULL
,
238 "Cut/Delete", "Copy",
239 "Insert Above", "Insert Below",
240 "Concat To Above", "Save",
241 "Show Playback Menu",);
243 switch (rb
->do_menu(&menu
, NULL
, NULL
, false))
246 rb
->strcpy(copy_buffer
,&buffer
[do_action(ACTION_GET
,0,cur_sel
)]);
247 do_action(ACTION_REMOVE
,0,cur_sel
);
248 ret
= MENU_RET_UPDATE
;
251 rb
->strcpy(copy_buffer
,&buffer
[do_action(ACTION_GET
,0,cur_sel
)]);
252 ret
= MENU_RET_NO_UPDATE
;
254 case 2: /* insert above */
255 if (!rb
->kbd_input(copy_buffer
,MAX_LINE_LEN
))
257 do_action(ACTION_INSERT
,copy_buffer
,cur_sel
);
259 ret
= MENU_RET_UPDATE
;
262 case 3: /* insert below */
263 if (!rb
->kbd_input(copy_buffer
,MAX_LINE_LEN
))
265 do_action(ACTION_INSERT
,copy_buffer
,cur_sel
+1);
267 ret
= MENU_RET_UPDATE
;
270 case 4: /* cat to above */
273 do_action(ACTION_CONCAT
,0,cur_sel
);
274 ret
= MENU_RET_UPDATE
;
280 case 6: /* playback menu */
281 playback_control(NULL
);
282 ret
= MENU_RET_NO_UPDATE
;
285 ret
= MENU_RET_NO_UPDATE
;
291 #ifdef HAVE_LCD_COLOR
292 /* in misc.h but no need to polute the api */
293 #define toupper(c) (((c >= 'a') && (c <= 'z'))?c+'A':c)
294 #define isxdigit(c) ((c>='a' && c<= 'f') || (c>='A' && c<= 'F') \
295 || (c>='0' && c<= '9'))
296 #define hex2dec(c) (((c) >= '0' && ((c) <= '9')) ? (toupper(c)) - '0' : \
297 (toupper(c)) - 'A' + 10)
298 int hex_to_rgb(const char* hex
, int* color
)
301 int red
, green
, blue
;
303 if (rb
->strlen(hex
) == 6) {
304 for (i
=0; i
< 6; i
++ ) {
305 if (!isxdigit(hex
[i
])) {
312 red
= (hex2dec(hex
[0]) << 4) | hex2dec(hex
[1]);
313 green
= (hex2dec(hex
[2]) << 4) | hex2dec(hex
[3]);
314 blue
= (hex2dec(hex
[4]) << 4) | hex2dec(hex
[5]);
315 *color
= LCD_RGBPACK(red
,green
,blue
);
322 #endif /* HAVE_LCD_COLOR */
324 /* this is the plugin entry point */
325 enum plugin_status
plugin_start(const void* parameter
)
328 static char temp_line
[MAX_LINE_LEN
];
330 struct gui_synclist lists
;
333 bool changed
= false;
335 static char copy_buffer
[MAX_LINE_LEN
];
336 #ifdef HAVE_LCD_COLOR
337 bool edit_colors_file
= false;
343 rb
->lcd_set_backdrop(NULL
);
346 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
351 #ifdef HAVE_LCD_COLOR
354 rb
->strcpy(filename
,(char*)parameter
);
355 if (!get_eol_string(filename
))
357 rb
->strcpy(eol
,"\n");
359 fd
= rb
->open(filename
,O_RDONLY
);
362 rb
->splashf(HZ
*2,"Couldnt open file: %s",(char*)parameter
);
365 #ifdef HAVE_LCD_COLOR
366 c
= rb
->strrchr(filename
, '.');
367 if (c
&& !rb
->strcmp(c
, ".colours"))
368 edit_colors_file
= true;
370 /* read in the file */
371 while (rb
->read_line(fd
,temp_line
,MAX_LINE_LEN
))
373 if (!do_action(ACTION_INSERT
,temp_line
,line_count
))
375 rb
->splashf(HZ
*2,"Error reading file: %s",(char*)parameter
);
385 rb
->strcpy(filename
,"/");
386 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
->strcpy(temp_line
,&buffer
[do_action(ACTION_GET
,0,cur_sel
)]);
408 #ifdef HAVE_LCD_COLOR
409 if (edit_colors_file
&& line_count
)
411 char *name
= temp_line
, *value
= NULL
;
412 char extension
[MAX_LINE_LEN
];
413 int color
, old_color
;
415 rb
->settings_parseline(temp_line
, &name
, &value
);
418 MENUITEM_STRINGLIST(menu
, "Edit What?", NULL
,
419 "Extension", "Colour",);
420 rb
->strcpy(extension
, name
);
422 hex_to_rgb(value
, &color
);
426 switch (rb
->do_menu(&menu
, NULL
, NULL
, false))
429 temp_changed
= !rb
->kbd_input(extension
,MAX_LINE_LEN
);
433 rb
->set_color(rb
->screens
[SCREEN_MAIN
], name
, &color
, -1);
434 temp_changed
= (value
== NULL
) || (color
!= old_color
);
437 /* Should never happen but makes compiler happy */
438 temp_changed
= false;
443 rb
->snprintf(temp_line
, MAX_LINE_LEN
, "%s: %02X%02X%02X",
444 extension
, RGB_UNPACK_RED(color
),
445 RGB_UNPACK_GREEN(color
),
446 RGB_UNPACK_BLUE(color
));
447 do_action(ACTION_UPDATE
, temp_line
, cur_sel
);
454 if (!rb
->kbd_input(temp_line
,MAX_LINE_LEN
))
457 do_action(ACTION_UPDATE
,temp_line
,cur_sel
);
459 do_action(ACTION_INSERT
,temp_line
,cur_sel
);
464 case ACTION_STD_CONTEXT
:
465 if (!line_count
) break;
466 rb
->strcpy(copy_buffer
,&buffer
[do_action(ACTION_GET
,0,cur_sel
)]);
467 do_action(ACTION_REMOVE
,0,cur_sel
);
470 case ACTION_STD_MENU
:
471 { /* do the item menu */
472 switch (do_item_menu(cur_sel
, copy_buffer
))
478 case MENU_RET_UPDATE
:
481 case MENU_RET_NO_UPDATE
:
486 case ACTION_STD_CANCEL
:
489 MENUITEM_STRINGLIST(menu
, "Do What?", NULL
,
491 "Show Playback Menu", "Save Changes",
492 "Save As...", "Save and Exit",
493 "Ignore Changes and Exit");
494 switch (rb
->do_menu(&menu
, NULL
, NULL
, false))
499 playback_control(NULL
);
501 case 2: //save to disk
522 rb
->gui_synclist_set_nb_items(&lists
,line_count
);
523 if(line_count
> 0 && line_count
<= cur_sel
)
524 rb
->gui_synclist_select_item(&lists
,line_count
-1);