FS#10365 - Optional debug output for albumart.c
[kugel-rb.git] / apps / player / keyboard.c
blob114b3fdf24452f8eec2d0f79bd539d1e9724ed6e
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Björn Stenberg
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 ****************************************************************************/
21 #include "lcd.h"
22 #include "button.h"
23 #include "kernel.h"
24 #include "system.h"
25 #include "version.h"
26 #include "sprintf.h"
27 #include <string.h>
28 #include "settings.h"
29 #include "statusbar.h"
30 #include "talk.h"
31 #include "misc.h"
32 #include "rbunicode.h"
33 #include "lang.h"
34 #include "keyboard.h"
36 #define KBD_BUF_SIZE 64
37 #define KEYBOARD_PAGES 3
39 static unsigned short *kbd_setupkeys(int page, int* len)
41 static unsigned short kbdline[KBD_BUF_SIZE];
42 const unsigned char *p;
43 int i = 0;
45 switch (page)
47 case 0: /* Capitals */
48 p = "ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅ"
49 "ÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝ";
50 break;
52 case 1: /* Small */
53 p = "abcdefghijklmnopqrstuvwxyzßàáâãä"
54 "åçèéêëìíîïñòóôõöøùúûüýÿ";
55 break;
57 default: /* Others */
58 p = " !\"#$%&'()*+,-./0123456789:;<=>?@[]_{}~";
59 break;
62 while (*p)
63 p = utf8decode(p, &kbdline[i++]);
65 *len = i;
67 return kbdline;
70 /* Delimiters for highlighting the character selected for insertion */
71 #define KEYBOARD_INSERT_LEFT 0xe110
72 #define KEYBOARD_INSERT_RIGHT 0xe10f
74 #define KEYBOARD_CURSOR 0x7f
75 #define KEYBOARD_ARROW 0xe10c
77 /* helper function to spell a char if voice UI is enabled */
78 static void kbd_spellchar(unsigned short c)
80 if (global_settings.talk_menu) /* voice UI? */
82 unsigned char tmp[5];
83 /* store char to pass to talk_spell */
84 unsigned char* utf8 = utf8encode(c, tmp);
85 *utf8 = 0;
87 if(c == ' ')
88 talk_id(VOICE_BLANK, false);
89 else
90 talk_spell(tmp, false);
94 static void say_edit(void)
96 if (global_settings.talk_menu)
97 talk_id(VOICE_EDIT, false);
100 int kbd_input(char* text, int buflen)
102 bool done = false;
103 bool redraw = true;
104 bool line_edit = false;
105 int page = 0, x = 0;
106 int linelen;
108 int len, len_utf8, i, j;
109 int editpos, curpos, leftpos;
110 unsigned short *line = kbd_setupkeys(page, &linelen);
111 unsigned char temptext[36];
112 unsigned char *utf8;
114 int button, lastbutton = 0;
116 editpos = utf8length(text);
118 if (global_settings.talk_menu) /* voice UI? */
119 talk_spell(text, true); /* spell initial text */
121 while (!done)
123 len = strlen(text);
124 len_utf8 = utf8length(text);
126 if (redraw)
128 if (line_edit)
130 lcd_putc(0, 0, ' ');
131 lcd_putc(0, 1, KEYBOARD_ARROW);
133 else
135 lcd_putc(0, 0, KEYBOARD_ARROW);
136 lcd_putc(0, 1, ' ');
139 lcd_putc(1, 0, KEYBOARD_INSERT_LEFT);
140 lcd_putc(2, 0, line[x]);
141 lcd_putc(3, 0, KEYBOARD_INSERT_RIGHT);
142 for (i = 1; i < 8; i++)
144 lcd_putc(i + 3, 0, line[(x+i)%linelen]);
147 /* write out the text */
148 curpos = MIN(MIN(editpos, 10 - MIN(len_utf8 - editpos, 3)), 9);
149 leftpos = editpos - curpos;
150 if (!leftpos) {
151 utf8 = text + utf8seek(text, leftpos);
152 i = 0;
153 j = 0;
154 } else {
155 temptext[0] = '<';
156 i = 1;
157 j = 1;
158 utf8 = text + utf8seek(text, leftpos+1);
160 while (*utf8 && i < 10) {
161 temptext[j++] = *utf8++;
162 if ((*utf8 & MASK) != COMP)
163 i++;
165 temptext[j] = 0;
168 if (len_utf8 - leftpos > 10) {
169 utf8 = temptext + utf8seek(temptext, 9);
170 *utf8++ = '>';
171 *utf8 = 0;
174 lcd_remove_cursor();
175 lcd_puts(1, 1, temptext);
176 lcd_put_cursor(curpos + 1, 1, KEYBOARD_CURSOR);
178 gui_syncstatusbar_draw(&statusbars, true);
181 /* The default action is to redraw */
182 redraw = true;
184 button = button_get_w_tmo(HZ/2);
185 switch (button)
187 case BUTTON_STOP: /* abort */
188 return -1;
189 break;
191 case BUTTON_MENU: /* page flip */
192 if (++page == KEYBOARD_PAGES)
193 page = 0;
194 line = kbd_setupkeys(page, &linelen);
195 if (x > linelen - 1)
196 x = linelen - 1;
197 kbd_spellchar(line[x]);
198 break;
200 case BUTTON_ON: /* toggle mode */
201 line_edit = !line_edit;
202 if (line_edit)
203 say_edit();
204 else
205 kbd_spellchar(line[x]);
206 break;
208 case BUTTON_RIGHT:
209 case BUTTON_RIGHT | BUTTON_REPEAT:
210 if (line_edit)
212 if (editpos < len_utf8)
214 editpos++;
215 int c = utf8seek(text, editpos);
216 kbd_spellchar(text[c]);
219 else
221 if (++x >= linelen)
222 x = 0;
223 kbd_spellchar(line[x]);
225 break;
227 case BUTTON_LEFT:
228 case BUTTON_LEFT | BUTTON_REPEAT:
229 if (line_edit)
231 if (editpos)
233 editpos--;
234 int c = utf8seek(text, editpos);
235 kbd_spellchar(text[c]);
238 else
240 if (--x < 0)
241 x = linelen - 1;
242 kbd_spellchar(line[x]);
244 break;
246 case BUTTON_PLAY | BUTTON_REPEAT:
247 /* accepts what was entered and continues */
248 done = true;
249 break;
251 case BUTTON_PLAY | BUTTON_REL:
252 if (lastbutton != BUTTON_PLAY)
253 break;
254 if (line_edit) /* backspace in line_edit */
256 if (editpos > 0)
258 utf8 = text + utf8seek(text, editpos);
259 i = 0;
260 do {
261 i++;
262 utf8--;
263 } while ((*utf8 & MASK) == COMP);
264 while (utf8[i]) {
265 *utf8 = utf8[i];
266 utf8++;
268 *utf8 = 0;
269 editpos--;
272 else /* inserts the selected char */
274 utf8 = utf8encode(line[x], temptext);
275 *utf8 = 0;
276 j = strlen(temptext);
277 if (len + j < buflen)
279 int k = len_utf8;
280 for (i = len+j; k >= editpos; i--) {
281 text[i] = text[i-j];
282 if ((text[i] & MASK) != COMP)
283 k--;
285 while (j--)
286 text[i--] = temptext[j];
287 editpos++;
290 if (global_settings.talk_menu) /* voice UI? */
291 talk_spell(text, false); /* speak revised text */
292 break;
294 case BUTTON_NONE:
295 gui_syncstatusbar_draw(&statusbars, false);
296 redraw = false;
297 break;
299 default:
300 default_event_handler(button);
301 break;
303 if (button != BUTTON_NONE)
304 lastbutton = button;
307 return 0;