clean up some debugging output.
[Rockbox.git] / firmware / scroll_engine.c
blob200695b5d64bb3d93ca3ceb15e1ccc68200797cf
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 by Michael Sevakis
12 * LCD scrolling driver and scheduler
14 * Much collected and combined from the various Rockbox LCD drivers.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied.
24 ****************************************************************************/
25 #include "config.h"
26 #include "cpu.h"
27 #include "kernel.h"
28 #include "thread.h"
29 #include "usb.h"
30 #include "lcd.h"
31 #include "font.h"
32 #ifdef HAVE_REMOTE_LCD
33 #include "lcd-remote.h"
34 #endif
35 #include "scroll_engine.h"
37 static const char scroll_tick_table[16] = {
38 /* Hz values:
39 1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33 */
40 100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3
43 static void scroll_thread(void);
44 static char scroll_stack[DEFAULT_STACK_SIZE*3];
45 static const char scroll_name[] = "scroll";
47 static struct scrollinfo lcd_scroll[LCD_SCROLLABLE_LINES];
49 #ifdef HAVE_REMOTE_LCD
50 struct scrollinfo lcd_remote_scroll[LCD_REMOTE_SCROLLABLE_LINES];
51 struct event_queue scroll_queue;
52 #endif
54 struct scroll_screen_info lcd_scroll_info =
56 .scroll = lcd_scroll,
57 .lines = 0,
58 .ticks = 12,
59 .delay = HZ/2,
60 .bidir_limit = 50,
61 #ifdef HAVE_LCD_BITMAP
62 .step = 6,
63 #endif
64 #ifdef HAVE_LCD_CHARCELLS
65 .jump_scroll_delay = HZ/4,
66 .jump_scroll = 0,
67 #endif
70 #ifdef HAVE_REMOTE_LCD
71 struct scroll_screen_info lcd_remote_scroll_info =
73 .scroll = lcd_remote_scroll,
74 .lines = 0,
75 .ticks = 12,
76 .delay = HZ/2,
77 .bidir_limit = 50,
78 .step = 6,
80 #endif /* HAVE_REMOTE_LCD */
82 void lcd_stop_scroll(void)
84 lcd_scroll_info.lines = 0;
87 /* Stop scrolling line y in the specified viewport, or all lines if y < 0 */
88 void lcd_scroll_stop_line(struct viewport* current_vp, int y)
90 int i = 0;
92 while (i < lcd_scroll_info.lines)
94 if ((lcd_scroll_info.scroll[i].vp == current_vp) &&
95 ((y < 0) || (lcd_scroll_info.scroll[i].y == y)))
97 /* If i is not the last active line in the array, then move
98 the last item to position i */
99 if ((i + 1) != lcd_scroll_info.lines)
101 lcd_scroll_info.scroll[i] = lcd_scroll_info.scroll[lcd_scroll_info.lines-1];
103 lcd_scroll_info.lines--;
105 /* A line can only appear once, so we're done. */
106 return ;
108 else
110 i++;
115 /* Stop all scrolling lines in the specified viewport */
116 void lcd_scroll_stop(struct viewport* vp)
118 lcd_scroll_stop_line(vp, -1);
121 void lcd_scroll_speed(int speed)
123 lcd_scroll_info.ticks = scroll_tick_table[speed];
126 #if defined(HAVE_LCD_BITMAP)
127 void lcd_scroll_step(int step)
129 lcd_scroll_info.step = step;
131 #endif
133 void lcd_scroll_delay(int ms)
135 lcd_scroll_info.delay = ms / (HZ / 10);
138 void lcd_bidir_scroll(int percent)
140 lcd_scroll_info.bidir_limit = percent;
143 #ifdef HAVE_LCD_CHARCELLS
144 void lcd_jump_scroll(int mode) /* 0=off, 1=once, ..., JUMP_SCROLL_ALWAYS */
146 lcd_scroll_info.jump_scroll = mode;
149 void lcd_jump_scroll_delay(int ms)
151 lcd_scroll_info.jump_scroll_delay = ms / (HZ / 10);
153 #endif
155 #ifdef HAVE_REMOTE_LCD
156 void lcd_remote_stop_scroll(void)
158 lcd_remote_scroll_info.lines = 0;
161 /* Stop scrolling line y in the specified viewport, or all lines if y < 0 */
162 void lcd_remote_scroll_stop_line(struct viewport* current_vp, int y)
164 int i = 0;
166 while (i < lcd_remote_scroll_info.lines)
168 if ((lcd_remote_scroll_info.scroll[i].vp == current_vp) &&
169 ((y < 0) || (lcd_remote_scroll_info.scroll[i].y == y)))
171 /* If i is not the last active line in the array, then move
172 the last item to position i */
173 if ((i + 1) != lcd_remote_scroll_info.lines)
175 lcd_remote_scroll_info.scroll[i] = lcd_remote_scroll_info.scroll[lcd_remote_scroll_info.lines-1];
177 lcd_remote_scroll_info.lines--;
179 /* A line can only appear once, so we're done. */
180 return ;
182 else
184 i++;
189 /* Stop all scrolling lines in the specified viewport */
190 void lcd_remote_scroll_stop(struct viewport* vp)
192 lcd_remote_scroll_stop_line(vp, -1);
195 void lcd_remote_scroll_speed(int speed)
197 lcd_remote_scroll_info.ticks = scroll_tick_table[speed];
200 void lcd_remote_scroll_step(int step)
202 lcd_remote_scroll_info.step = step;
205 void lcd_remote_scroll_delay(int ms)
207 lcd_remote_scroll_info.delay = ms / (HZ / 10);
210 void lcd_remote_bidir_scroll(int percent)
212 lcd_remote_scroll_info.bidir_limit = percent;
215 static void sync_display_ticks(void)
217 lcd_scroll_info.last_scroll =
218 lcd_remote_scroll_info.last_scroll = current_tick;
221 static bool scroll_process_message(int delay)
223 struct queue_event ev;
227 long tick = current_tick;
228 queue_wait_w_tmo(&scroll_queue, &ev, delay);
230 switch (ev.id)
232 case SYS_TIMEOUT:
233 return false;
234 case SYS_USB_CONNECTED:
235 usb_acknowledge(SYS_USB_CONNECTED_ACK);
236 usb_wait_for_disconnect(&scroll_queue);
237 sync_display_ticks();
238 return true;
239 #ifndef SIMULATOR
240 case SYS_REMOTE_PLUGGED:
241 if (!remote_initialized)
242 sync_display_ticks();
243 #endif
246 delay -= current_tick - tick;
248 while (delay > 0);
250 return false;
252 #endif /* HAVE_REMOTE_LCD */
254 static void scroll_thread(void) __attribute__((noreturn));
255 #ifdef HAVE_REMOTE_LCD
257 static void scroll_thread(void)
259 enum
261 SCROLL_LCD = 0x1,
262 SCROLL_LCD_REMOTE = 0x2,
265 sync_display_ticks();
267 while ( 1 )
269 long delay;
270 int scroll;
271 long tick_lcd, tick_remote;
273 tick_lcd = lcd_scroll_info.last_scroll + lcd_scroll_info.ticks;
274 delay = current_tick;
276 if (
277 #ifndef SIMULATOR
278 !remote_initialized ||
279 #endif
280 (tick_remote = lcd_remote_scroll_info.last_scroll +
281 lcd_remote_scroll_info.ticks,
282 TIME_BEFORE(tick_lcd, tick_remote)))
284 scroll = SCROLL_LCD;
285 delay = tick_lcd - delay;
287 /* TIME_BEFORE(tick_remote, tick_lcd) */
288 else if (tick_lcd != tick_remote)
290 scroll = SCROLL_LCD_REMOTE;
291 delay = tick_remote - delay;
293 else
295 scroll = SCROLL_LCD | SCROLL_LCD_REMOTE;
296 delay = tick_lcd - delay;
299 if (scroll_process_message(delay))
300 continue;
302 if (scroll & SCROLL_LCD)
304 #ifdef HAVE_LCD_ENABLE
305 if (lcd_enabled())
306 #endif
307 lcd_scroll_fn();
308 lcd_scroll_info.last_scroll = current_tick;
311 if (scroll == (SCROLL_LCD | SCROLL_LCD_REMOTE))
312 yield();
314 if (scroll & SCROLL_LCD_REMOTE)
316 lcd_remote_scroll_fn();
317 lcd_remote_scroll_info.last_scroll = current_tick;
321 #else
322 static void scroll_thread(void)
324 while (1)
326 sleep(lcd_scroll_info.ticks);
327 #ifdef HAVE_LCD_ENABLE
328 if (lcd_enabled())
329 #endif
330 lcd_scroll_fn();
333 #endif /* HAVE_REMOTE_LCD */
335 void scroll_init(void)
337 #ifdef HAVE_REMOTE_LCD
338 queue_init(&scroll_queue, true);
339 #endif
340 create_thread(scroll_thread, scroll_stack,
341 sizeof(scroll_stack), 0, scroll_name
342 IF_PRIO(, PRIORITY_USER_INTERFACE)
343 IF_COP(, CPU));