Use a more natural guard for the callback definition
[kugel-rb.git] / apps / plugins / bounce.c
bloba7f8e1847d85bbc3ca8a04dd00add594a35de8f1
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 Daniel 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 "plugin.h"
22 #include "time.h"
23 #include "lib/fixedpoint.h"
25 PLUGIN_HEADER
27 #define SS_TITLE "Bouncer"
29 #define YSPEED 2
30 #define XSPEED 3
31 #define YADD -4
33 /* variable button definitions */
34 #if CONFIG_KEYPAD == RECORDER_PAD
35 #define BOUNCE_LEFT BUTTON_LEFT
36 #define BOUNCE_RIGHT BUTTON_RIGHT
37 #define BOUNCE_UP BUTTON_UP
38 #define BOUNCE_DOWN BUTTON_DOWN
39 #define BOUNCE_QUIT (BUTTON_OFF | BUTTON_REL)
40 #define BOUNCE_MODE (BUTTON_ON | BUTTON_REL)
42 #elif CONFIG_KEYPAD == ARCHOS_AV300_PAD
43 #define BOUNCE_LEFT BUTTON_LEFT
44 #define BOUNCE_RIGHT BUTTON_RIGHT
45 #define BOUNCE_UP BUTTON_UP
46 #define BOUNCE_DOWN BUTTON_DOWN
47 #define BOUNCE_QUIT (BUTTON_OFF | BUTTON_REL)
48 #define BOUNCE_MODE (BUTTON_ON | BUTTON_REL)
50 #elif CONFIG_KEYPAD == ONDIO_PAD
51 #define BOUNCE_LEFT BUTTON_LEFT
52 #define BOUNCE_RIGHT BUTTON_RIGHT
53 #define BOUNCE_UP BUTTON_UP
54 #define BOUNCE_DOWN BUTTON_DOWN
55 #define BOUNCE_QUIT (BUTTON_OFF | BUTTON_REL)
56 #define BOUNCE_MODE (BUTTON_MENU | BUTTON_REL)
58 #elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
59 (CONFIG_KEYPAD == IRIVER_H300_PAD)
60 #define BOUNCE_LEFT BUTTON_LEFT
61 #define BOUNCE_RIGHT BUTTON_RIGHT
62 #define BOUNCE_UP BUTTON_UP
63 #define BOUNCE_DOWN BUTTON_DOWN
64 #define BOUNCE_QUIT (BUTTON_OFF | BUTTON_REL)
65 #define BOUNCE_MODE (BUTTON_SELECT | BUTTON_REL)
67 #define BOUNCE_RC_QUIT (BUTTON_RC_STOP | BUTTON_REL)
69 #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
70 (CONFIG_KEYPAD == IPOD_3G_PAD) || \
71 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
72 #define BOUNCE_LEFT BUTTON_LEFT
73 #define BOUNCE_RIGHT BUTTON_RIGHT
74 #define BOUNCE_UP BUTTON_SCROLL_BACK
75 #define BOUNCE_DOWN BUTTON_SCROLL_FWD
76 #define BOUNCE_QUIT (BUTTON_MENU | BUTTON_REL)
77 #define BOUNCE_MODE (BUTTON_SELECT | BUTTON_REL)
79 #elif (CONFIG_KEYPAD == IAUDIO_X5M5_PAD)
80 #define BOUNCE_LEFT BUTTON_LEFT
81 #define BOUNCE_RIGHT BUTTON_RIGHT
82 #define BOUNCE_UP BUTTON_UP
83 #define BOUNCE_DOWN BUTTON_DOWN
84 #define BOUNCE_QUIT BUTTON_POWER
85 #define BOUNCE_MODE BUTTON_PLAY
87 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
88 #define BOUNCE_LEFT BUTTON_LEFT
89 #define BOUNCE_RIGHT BUTTON_RIGHT
90 #define BOUNCE_UP BUTTON_UP
91 #define BOUNCE_DOWN BUTTON_DOWN
92 #define BOUNCE_QUIT BUTTON_POWER
93 #define BOUNCE_MODE BUTTON_A
95 #elif (CONFIG_KEYPAD == SANSA_E200_PAD)
96 #define BOUNCE_LEFT BUTTON_LEFT
97 #define BOUNCE_RIGHT BUTTON_RIGHT
98 #define BOUNCE_UP BUTTON_SCROLL_BACK
99 #define BOUNCE_DOWN BUTTON_SCROLL_FWD
100 #define BOUNCE_QUIT BUTTON_POWER
101 #define BOUNCE_MODE BUTTON_SELECT
103 #elif (CONFIG_KEYPAD == SANSA_FUZE_PAD)
104 #define BOUNCE_LEFT BUTTON_LEFT
105 #define BOUNCE_RIGHT BUTTON_RIGHT
106 #define BOUNCE_UP BUTTON_SCROLL_BACK
107 #define BOUNCE_DOWN BUTTON_SCROLL_FWD
108 #define BOUNCE_QUIT (BUTTON_HOME|BUTTON_REPEAT)
109 #define BOUNCE_MODE BUTTON_SELECT
111 #elif CONFIG_KEYPAD == SANSA_C200_PAD || \
112 CONFIG_KEYPAD == SANSA_CLIP_PAD || \
113 CONFIG_KEYPAD == SANSA_M200_PAD
114 #define BOUNCE_LEFT BUTTON_LEFT
115 #define BOUNCE_RIGHT BUTTON_RIGHT
116 #define BOUNCE_UP BUTTON_UP
117 #define BOUNCE_DOWN BUTTON_DOWN
118 #define BOUNCE_QUIT BUTTON_POWER
119 #define BOUNCE_MODE BUTTON_SELECT
121 #elif (CONFIG_KEYPAD == IRIVER_H10_PAD)
122 #define BOUNCE_LEFT BUTTON_LEFT
123 #define BOUNCE_RIGHT BUTTON_RIGHT
124 #define BOUNCE_UP BUTTON_SCROLL_UP
125 #define BOUNCE_DOWN BUTTON_SCROLL_DOWN
126 #define BOUNCE_QUIT BUTTON_POWER
127 #define BOUNCE_MODE BUTTON_PLAY
129 #elif (CONFIG_KEYPAD == GIGABEAT_S_PAD)
130 #define BOUNCE_LEFT BUTTON_LEFT
131 #define BOUNCE_RIGHT BUTTON_RIGHT
132 #define BOUNCE_UP BUTTON_UP
133 #define BOUNCE_DOWN BUTTON_DOWN
134 #define BOUNCE_QUIT BUTTON_BACK
135 #define BOUNCE_MODE BUTTON_MENU
137 #elif (CONFIG_KEYPAD == MROBE100_PAD)
138 #define BOUNCE_LEFT BUTTON_LEFT
139 #define BOUNCE_RIGHT BUTTON_RIGHT
140 #define BOUNCE_UP BUTTON_UP
141 #define BOUNCE_DOWN BUTTON_DOWN
142 #define BOUNCE_QUIT BUTTON_POWER
143 #define BOUNCE_MODE BUTTON_DISPLAY
145 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
146 #define BOUNCE_LEFT BUTTON_RC_REW
147 #define BOUNCE_RIGHT BUTTON_RC_FF
148 #define BOUNCE_UP BUTTON_RC_VOL_UP
149 #define BOUNCE_DOWN BUTTON_RC_VOL_DOWN
150 #define BOUNCE_QUIT BUTTON_RC_REC
151 #define BOUNCE_MODE BUTTON_RC_MODE
153 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
154 #define BOUNCE_QUIT BUTTON_POWER
155 #define BOUNCE_MODE BUTTON_MENU
157 #elif CONFIG_KEYPAD == CREATIVEZVM_PAD
158 #define BOUNCE_LEFT BUTTON_LEFT
159 #define BOUNCE_RIGHT BUTTON_RIGHT
160 #define BOUNCE_UP BUTTON_UP
161 #define BOUNCE_DOWN BUTTON_DOWN
162 #define BOUNCE_QUIT BUTTON_BACK
163 #define BOUNCE_MODE BUTTON_MENU
165 #elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
166 #define BOUNCE_LEFT BUTTON_LEFT
167 #define BOUNCE_RIGHT BUTTON_RIGHT
168 #define BOUNCE_UP BUTTON_UP
169 #define BOUNCE_DOWN BUTTON_DOWN
170 #define BOUNCE_QUIT BUTTON_POWER
171 #define BOUNCE_MODE BUTTON_MENU
173 #elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
174 #define BOUNCE_LEFT BUTTON_PREV
175 #define BOUNCE_RIGHT BUTTON_NEXT
176 #define BOUNCE_UP BUTTON_UP
177 #define BOUNCE_DOWN BUTTON_DOWN
178 #define BOUNCE_QUIT BUTTON_POWER
179 #define BOUNCE_MODE BUTTON_MENU
181 #elif (CONFIG_KEYPAD == ONDAVX747_PAD)
182 #define BOUNCE_QUIT BUTTON_POWER
183 #define BOUNCE_MODE BUTTON_MENU
185 #elif (CONFIG_KEYPAD == ONDAVX777_PAD)
186 #define BOUNCE_QUIT BUTTON_POWER
188 #elif CONFIG_KEYPAD == MROBE500_PAD
189 #define BOUNCE_QUIT BUTTON_POWER
191 #elif CONFIG_KEYPAD == SAMSUNG_YH_PAD
192 #define BOUNCE_LEFT BUTTON_LEFT
193 #define BOUNCE_RIGHT BUTTON_RIGHT
194 #define BOUNCE_UP BUTTON_UP
195 #define BOUNCE_DOWN BUTTON_DOWN
196 #define BOUNCE_QUIT BUTTON_FFWD
197 #define BOUNCE_MODE BUTTON_PLAY
199 #elif CONFIG_KEYPAD == PBELL_VIBE500_PAD
200 #define BOUNCE_LEFT BUTTON_PREV
201 #define BOUNCE_RIGHT BUTTON_NEXT
202 #define BOUNCE_UP BUTTON_UP
203 #define BOUNCE_DOWN BUTTON_DOWN
204 #define BOUNCE_QUIT BUTTON_REC
205 #define BOUNCE_MODE BUTTON_MENU
207 #else
208 #error No keymap defined!
209 #endif
211 #ifdef HAVE_TOUCHSCREEN
212 #ifndef BOUNCE_LEFT
213 #define BOUNCE_LEFT BUTTON_MIDLEFT
214 #endif
215 #ifndef BOUNCE_RIGHT
216 #define BOUNCE_RIGHT BUTTON_MIDRIGHT
217 #endif
218 #ifndef BOUNCE_UP
219 #define BOUNCE_UP BUTTON_TOPMIDDLE
220 #endif
221 #ifndef BOUNCE_DOWN
222 #define BOUNCE_DOWN BUTTON_BOTTOMMIDDLE
223 #endif
224 #ifndef BOUNCE_QUIT
225 #define BOUNCE_QUIT BUTTON_TOPLEFT
226 #endif
227 #ifndef BOUNCE_MODE
228 #define BOUNCE_MODE BUTTON_CENTER
229 #endif
230 #endif
232 #define LETTER_WIDTH 11
233 #define LETTER_HEIGHT 16
235 const unsigned char char_gen_12x16[][22] =
237 { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
238 { 0x00,0x00,0x00,0x7c,0xff,0xff,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x33,0x00,0x00,0x00,0x00,0x00 },
239 { 0x00,0x00,0x3c,0x3c,0x00,0x00,0x3c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
240 { 0x00,0x10,0x90,0xf0,0x7e,0x1e,0x90,0xf0,0x7e,0x1e,0x10,0x02,0x1e,0x1f,0x03,0x02,0x1e,0x1f,0x03,0x02,0x00,0x00 },
241 { 0x00,0x78,0xfc,0xcc,0xff,0xff,0xcc,0xcc,0x88,0x00,0x00,0x00,0x04,0x0c,0x0c,0x3f,0x3f,0x0c,0x0f,0x07,0x00,0x00 },
242 { 0x00,0x38,0x38,0x38,0x00,0x80,0xc0,0xe0,0x70,0x38,0x1c,0x30,0x38,0x1c,0x0e,0x07,0x03,0x01,0x38,0x38,0x38,0x00 },
243 { 0x00,0x00,0xb8,0xfc,0xc6,0xe2,0x3e,0x1c,0x00,0x00,0x00,0x00,0x1f,0x3f,0x31,0x21,0x37,0x1e,0x1c,0x36,0x22,0x00 },
244 { 0x00,0x00,0x00,0x27,0x3f,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
245 { 0x00,0x00,0xf0,0xfc,0xfe,0x07,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x0f,0x1f,0x38,0x20,0x20,0x00,0x00,0x00 },
246 { 0x00,0x00,0x01,0x01,0x07,0xfe,0xfc,0xf0,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x38,0x1f,0x0f,0x03,0x00,0x00,0x00 },
247 { 0x00,0x98,0xb8,0xe0,0xf8,0xf8,0xe0,0xb8,0x98,0x00,0x00,0x00,0x0c,0x0e,0x03,0x0f,0x0f,0x03,0x0e,0x0c,0x00,0x00 },
248 { 0x00,0x80,0x80,0x80,0xf0,0xf0,0x80,0x80,0x80,0x00,0x00,0x00,0x01,0x01,0x01,0x0f,0x0f,0x01,0x01,0x01,0x00,0x00 },
249 { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb8,0xf8,0x78,0x00,0x00,0x00,0x00,0x00 },
250 { 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00 },
251 { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x38,0x00,0x00,0x00,0x00,0x00 },
252 { 0x00,0x00,0x00,0x00,0x80,0xc0,0xe0,0x70,0x38,0x1c,0x0e,0x18,0x1c,0x0e,0x07,0x03,0x01,0x00,0x00,0x00,0x00,0x00 },
253 { 0xf8,0xfe,0x06,0x03,0x83,0xc3,0x63,0x33,0x1e,0xfe,0xf8,0x07,0x1f,0x1e,0x33,0x31,0x30,0x30,0x30,0x18,0x1f,0x07 },
254 { 0x00,0x00,0x0c,0x0c,0x0e,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x3f,0x3f,0x30,0x30,0x30,0x00 },
255 { 0x1c,0x1e,0x07,0x03,0x03,0x83,0xc3,0xe3,0x77,0x3e,0x1c,0x30,0x38,0x3c,0x3e,0x37,0x33,0x31,0x30,0x30,0x30,0x30 },
256 { 0x0c,0x0e,0x07,0xc3,0xc3,0xc3,0xc3,0xc3,0xe7,0x7e,0x3c,0x0c,0x1c,0x38,0x30,0x30,0x30,0x30,0x30,0x39,0x1f,0x0e },
257 { 0xc0,0xe0,0x70,0x38,0x1c,0x0e,0x07,0xff,0xff,0x00,0x00,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x3f,0x3f,0x03,0x03 },
258 { 0x3f,0x7f,0x63,0x63,0x63,0x63,0x63,0x63,0xe3,0xc3,0x83,0x0c,0x1c,0x38,0x30,0x30,0x30,0x30,0x30,0x38,0x1f,0x0f },
259 { 0xc0,0xf0,0xf8,0xdc,0xce,0xc7,0xc3,0xc3,0xc3,0x80,0x00,0x0f,0x1f,0x39,0x30,0x30,0x30,0x30,0x30,0x39,0x1f,0x0f },
260 { 0x03,0x03,0x03,0x03,0x03,0x03,0xc3,0xf3,0x3f,0x0f,0x03,0x00,0x00,0x00,0x30,0x3c,0x0f,0x03,0x00,0x00,0x00,0x00 },
261 { 0x00,0xbc,0xfe,0xe7,0xc3,0xc3,0xc3,0xe7,0xfe,0xbc,0x00,0x0f,0x1f,0x39,0x30,0x30,0x30,0x30,0x30,0x39,0x1f,0x0f },
262 { 0x3c,0x7e,0xe7,0xc3,0xc3,0xc3,0xc3,0xc3,0xe7,0xfe,0xfc,0x00,0x00,0x30,0x30,0x30,0x38,0x1c,0x0e,0x07,0x03,0x00 },
263 { 0x00,0x00,0x00,0x70,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00 },
264 { 0x00,0x00,0x00,0x70,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0xfc,0x7c,0x00,0x00,0x00,0x00,0x00 },
265 { 0x00,0xc0,0xe0,0xf0,0x38,0x1c,0x0e,0x07,0x03,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0e,0x1c,0x38,0x30,0x00,0x00 },
266 { 0x00,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x00,0x00,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00 },
267 { 0x00,0x03,0x07,0x0e,0x1c,0x38,0xf0,0xe0,0xc0,0x00,0x00,0x00,0x30,0x38,0x1c,0x0e,0x07,0x03,0x01,0x00,0x00,0x00 },
268 { 0x1c,0x1e,0x07,0x03,0x83,0xc3,0xe3,0x77,0x3e,0x1c,0x00,0x00,0x00,0x00,0x00,0x37,0x37,0x00,0x00,0x00,0x00,0x00 },
269 { 0xf8,0xfe,0x07,0xf3,0xfb,0x1b,0xfb,0xfb,0x07,0xfe,0xf8,0x0f,0x1f,0x18,0x33,0x37,0x36,0x37,0x37,0x36,0x03,0x01 },
270 { 0x00,0x00,0xe0,0xfc,0x1f,0x1f,0xfc,0xe0,0x00,0x00,0x00,0x38,0x3f,0x07,0x06,0x06,0x06,0x06,0x07,0x3f,0x38,0x00 },
271 { 0xff,0xff,0xc3,0xc3,0xc3,0xc3,0xe7,0xfe,0xbc,0x00,0x00,0x3f,0x3f,0x30,0x30,0x30,0x30,0x30,0x39,0x1f,0x0f,0x00 },
272 { 0xf0,0xfc,0x0e,0x07,0x03,0x03,0x03,0x07,0x0e,0x0c,0x00,0x03,0x0f,0x1c,0x38,0x30,0x30,0x30,0x38,0x1c,0x0c,0x00 },
273 { 0xff,0xff,0x03,0x03,0x03,0x03,0x07,0x0e,0xfc,0xf0,0x00,0x3f,0x3f,0x30,0x30,0x30,0x30,0x38,0x1c,0x0f,0x03,0x00 },
274 { 0xff,0xff,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0x03,0x03,0x00,0x3f,0x3f,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00 },
275 { 0xff,0xff,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0x03,0x03,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
276 { 0xf0,0xfc,0x0e,0x07,0x03,0xc3,0xc3,0xc3,0xc7,0xc6,0x00,0x03,0x0f,0x1c,0x38,0x30,0x30,0x30,0x30,0x3f,0x3f,0x00 },
277 { 0xff,0xff,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xff,0xff,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00 },
278 { 0x00,0x00,0x03,0x03,0xff,0xff,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x3f,0x3f,0x30,0x30,0x00,0x00,0x00 },
279 { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0e,0x1e,0x38,0x30,0x30,0x30,0x30,0x38,0x1f,0x07,0x00 },
280 { 0xff,0xff,0xc0,0xe0,0xf0,0x38,0x1c,0x0e,0x07,0x03,0x00,0x3f,0x3f,0x00,0x01,0x03,0x07,0x0e,0x1c,0x38,0x30,0x00 },
281 { 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00 },
282 { 0xff,0xff,0x1e,0x78,0xe0,0xe0,0x78,0x1e,0xff,0xff,0x00,0x3f,0x3f,0x00,0x00,0x01,0x01,0x00,0x00,0x3f,0x3f,0x00 },
283 { 0xff,0xff,0x0e,0x38,0xf0,0xc0,0x00,0x00,0xff,0xff,0x00,0x3f,0x3f,0x00,0x00,0x00,0x03,0x07,0x1c,0x3f,0x3f,0x00 },
284 { 0xf0,0xfc,0x0e,0x07,0x03,0x03,0x07,0x0e,0xfc,0xf0,0x00,0x03,0x0f,0x1c,0x38,0x30,0x30,0x38,0x1c,0x0f,0x03,0x00 },
285 { 0xff,0xff,0x83,0x83,0x83,0x83,0x83,0xc7,0xfe,0x7c,0x00,0x3f,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00 },
286 { 0xf0,0xfc,0x0e,0x07,0x03,0x03,0x07,0x0e,0xfc,0xf0,0x00,0x03,0x0f,0x1c,0x38,0x30,0x36,0x3e,0x1c,0x3f,0x33,0x00 },
287 { 0xff,0xff,0x83,0x83,0x83,0x83,0x83,0xc7,0xfe,0x7c,0x00,0x3f,0x3f,0x01,0x01,0x03,0x07,0x0f,0x1d,0x38,0x30,0x00 },
288 { 0x3c,0x7e,0xe7,0xc3,0xc3,0xc3,0xc3,0xc7,0x8e,0x0c,0x00,0x0c,0x1c,0x38,0x30,0x30,0x30,0x30,0x39,0x1f,0x0f,0x00 },
289 { 0x00,0x03,0x03,0x03,0xff,0xff,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00 },
290 { 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x07,0x1f,0x38,0x30,0x30,0x30,0x30,0x38,0x1f,0x07,0x00 },
291 { 0x07,0x3f,0xf8,0xc0,0x00,0x00,0xc0,0xf8,0x3f,0x07,0x00,0x00,0x00,0x01,0x0f,0x3e,0x3e,0x0f,0x01,0x00,0x00,0x00 },
292 { 0xff,0xff,0x00,0x00,0x80,0x80,0x00,0x00,0xff,0xff,0x00,0x3f,0x3f,0x1c,0x06,0x03,0x03,0x06,0x1c,0x3f,0x3f,0x00 },
293 { 0x03,0x0f,0x1c,0x30,0xe0,0xe0,0x30,0x1c,0x0f,0x03,0x00,0x30,0x3c,0x0e,0x03,0x01,0x01,0x03,0x0e,0x3c,0x30,0x00 },
294 { 0x03,0x0f,0x3c,0xf0,0xc0,0xc0,0xf0,0x3c,0x0f,0x03,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00 },
295 { 0x03,0x03,0x03,0x03,0xc3,0xe3,0x33,0x1f,0x0f,0x03,0x00,0x30,0x3c,0x3e,0x33,0x31,0x30,0x30,0x30,0x30,0x30,0x00 },
296 { 0x00,0x00,0xff,0xff,0x03,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x30,0x30,0x30,0x30,0x00,0x00,0x00 },
297 { 0x0e,0x1c,0x38,0x70,0xe0,0xc0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0e,0x1c,0x18 },
298 { 0x00,0x00,0x03,0x03,0x03,0x03,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x3f,0x3f,0x00,0x00,0x00 },
299 { 0x60,0x70,0x38,0x1c,0x0e,0x07,0x0e,0x1c,0x38,0x70,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
300 { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0 },
301 { 0x00,0x00,0x00,0x00,0x3e,0x7e,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
302 { 0x00,0x40,0x60,0x60,0x60,0x60,0x60,0x60,0xe0,0xc0,0x00,0x1c,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x3f,0x3f,0x00 },
303 { 0xff,0xff,0xc0,0x60,0x60,0x60,0x60,0xe0,0xc0,0x80,0x00,0x3f,0x3f,0x30,0x30,0x30,0x30,0x30,0x38,0x1f,0x0f,0x00 },
304 { 0x80,0xc0,0xe0,0x60,0x60,0x60,0x60,0x60,0xc0,0x80,0x00,0x0f,0x1f,0x38,0x30,0x30,0x30,0x30,0x30,0x18,0x08,0x00 },
305 { 0x80,0xc0,0xe0,0x60,0x60,0x60,0xe0,0xc0,0xff,0xff,0x00,0x0f,0x1f,0x38,0x30,0x30,0x30,0x30,0x30,0x3f,0x3f,0x00 },
306 { 0x80,0xc0,0xe0,0x60,0x60,0x60,0x60,0x60,0xc0,0x80,0x00,0x0f,0x1f,0x3b,0x33,0x33,0x33,0x33,0x33,0x13,0x01,0x00 },
307 { 0xc0,0xc0,0xfc,0xfe,0xc7,0xc3,0xc3,0x03,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
308 { 0x80,0xc0,0xe0,0x60,0x60,0x60,0x60,0x60,0xe0,0xe0,0x00,0x03,0xc7,0xce,0xcc,0xcc,0xcc,0xcc,0xe6,0x7f,0x3f,0x00 },
309 { 0xff,0xff,0xc0,0x60,0x60,0x60,0xe0,0xc0,0x80,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00,0x00 },
310 { 0x00,0x00,0x00,0x60,0xec,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x3f,0x3f,0x30,0x30,0x00,0x00,0x00 },
311 { 0x00,0x00,0x00,0x00,0x00,0x60,0xec,0xec,0x00,0x00,0x00,0x00,0x00,0x60,0xe0,0xc0,0xc0,0xff,0x7f,0x00,0x00,0x00 },
312 { 0x00,0xff,0xff,0x00,0x80,0xc0,0xe0,0x60,0x00,0x00,0x00,0x00,0x3f,0x3f,0x03,0x07,0x0f,0x1c,0x38,0x30,0x00,0x00 },
313 { 0x00,0x00,0x00,0x03,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x3f,0x3f,0x30,0x30,0x00,0x00,0x00 },
314 { 0xe0,0xc0,0xe0,0xe0,0xc0,0xc0,0xe0,0xe0,0xc0,0x80,0x00,0x3f,0x3f,0x00,0x00,0x3f,0x3f,0x00,0x00,0x3f,0x3f,0x00 },
315 { 0x00,0xe0,0xe0,0x60,0x60,0x60,0x60,0xe0,0xc0,0x80,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00 },
316 { 0x80,0xc0,0xe0,0x60,0x60,0x60,0x60,0xe0,0xc0,0x80,0x00,0x0f,0x1f,0x38,0x30,0x30,0x30,0x30,0x38,0x1f,0x0f,0x00 },
317 { 0xe0,0xe0,0x60,0x60,0x60,0x60,0x60,0xe0,0xc0,0x80,0x00,0xff,0xff,0x0c,0x18,0x18,0x18,0x18,0x1c,0x0f,0x07,0x00 },
318 { 0x80,0xc0,0xe0,0x60,0x60,0x60,0x60,0x60,0xe0,0xe0,0x00,0x07,0x0f,0x1c,0x18,0x18,0x18,0x18,0x0c,0xff,0xff,0x00 },
319 { 0x00,0xe0,0xe0,0xc0,0x60,0x60,0x60,0x60,0xe0,0xc0,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
320 { 0xc0,0xe0,0x60,0x60,0x60,0x60,0x60,0x40,0x00,0x00,0x00,0x11,0x33,0x33,0x33,0x33,0x33,0x3f,0x1e,0x00,0x00,0x00 },
321 { 0x60,0x60,0xfe,0xfe,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x3f,0x30,0x30,0x30,0x30,0x00,0x00,0x00 },
322 { 0xe0,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0xe0,0x00,0x0f,0x1f,0x38,0x30,0x30,0x30,0x30,0x18,0x3f,0x3f,0x00 },
323 { 0x60,0xe0,0x80,0x00,0x00,0x00,0x00,0x80,0xe0,0x60,0x00,0x00,0x01,0x07,0x1e,0x38,0x38,0x1e,0x07,0x01,0x00,0x00 },
324 { 0xe0,0xe0,0x00,0x00,0xe0,0xe0,0x00,0x00,0xe0,0xe0,0x00,0x07,0x1f,0x38,0x1c,0x0f,0x0f,0x1c,0x38,0x1f,0x07,0x00 },
325 { 0x60,0xe0,0xc0,0x80,0x00,0x80,0xc0,0xe0,0x60,0x00,0x00,0x30,0x38,0x1d,0x0f,0x07,0x0f,0x1d,0x38,0x30,0x00,0x00 },
326 { 0x00,0x60,0xe0,0x80,0x00,0x00,0x80,0xe0,0x60,0x00,0x00,0x00,0x00,0x81,0xe7,0x7e,0x1e,0x07,0x01,0x00,0x00,0x00 },
327 { 0x60,0x60,0x60,0x60,0x60,0xe0,0xe0,0x60,0x20,0x00,0x00,0x30,0x38,0x3c,0x36,0x33,0x31,0x30,0x30,0x30,0x00,0x00 },
328 { 0x00,0x80,0xc0,0xfc,0x7e,0x07,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x01,0x1f,0x3f,0x70,0x60,0x60,0x60,0x00,0x00 },
329 { 0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00 },
330 { 0x00,0x03,0x03,0x03,0x07,0x7e,0xfc,0xc0,0x80,0x00,0x00,0x00,0x60,0x60,0x60,0x70,0x3f,0x1f,0x01,0x00,0x00,0x00 },
331 { 0x10,0x18,0x0c,0x04,0x0c,0x18,0x10,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },
332 { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x00 }
335 static signed char speed[]={
336 1,2,3,3,3,2,1,0,-1,-2,-2,-2,-1,0,0,1,
339 #if LCD_WIDTH > LCD_HEIGHT /* landscape LCD */
341 #define TABLE_SIZE LCD_HEIGHT
342 #define RADIUS_MINUTE (3*LCD_HEIGHT/8)
343 #define RADIUS_HOUR (LCD_HEIGHT/4)
345 #else /* portrait (or square) LCD */
347 #define TABLE_SIZE LCD_WIDTH
348 #define RADIUS_MINUTE (3*LCD_WIDTH/8)
349 #define RADIUS_HOUR (LCD_WIDTH/4)
351 #endif /* LCD orientation */
353 #define RADIUS_X ((LCD_WIDTH-LETTER_WIDTH)/2)
354 #define RADIUS_Y ((LCD_HEIGHT-LETTER_HEIGHT)/2)
356 #define PHASE_STEP (0xffffffff/TABLE_SIZE)
357 #define PHASE_FRAC (0xffffffff%TABLE_SIZE)
358 #define DIV_X (0x7ffffffe/RADIUS_X+1)
359 #define DIV_Y (0x7ffffffe/RADIUS_Y+1)
361 static int xtable[TABLE_SIZE];
362 static int ytable[TABLE_SIZE];
364 static void init_tables(void)
366 int i;
367 int pfrac;
368 unsigned long phase;
369 long sin;
371 phase = pfrac = 0;
373 for (i = 0; i < TABLE_SIZE; i++) {
374 sin = fp_sincos(phase, NULL);
375 xtable[i] = RADIUS_X + sin / DIV_X;
376 ytable[i] = RADIUS_Y + sin / DIV_Y;
378 phase += PHASE_STEP;
379 pfrac += PHASE_FRAC;
380 if (pfrac >= TABLE_SIZE) {
381 pfrac -= TABLE_SIZE;
382 phase++;
387 enum {
388 NUM_XSANKE,
389 NUM_YSANKE,
390 NUM_XADD,
391 NUM_YADD,
392 NUM_XDIST,
393 NUM_YDIST,
395 NUM_LAST
398 struct counter {
399 char *what;
400 int num;
403 struct counter values[]={
404 {"xsanke", 1},
405 {"ysanke", 1},
406 {"xadd", 1},
407 {"yadd", 2},
408 {"xdist", -4},
409 {"ydist", -6},
412 #if CONFIG_RTC
414 #define CLOCK_STEP (0xffffffff/60)
415 #define CLOCK_FRAC (0xffffffff%60)
417 #define DIV_MY (0x7ffffffe/RADIUS_MINUTE+1)
418 #define DIV_HY (0x7ffffffe/RADIUS_HOUR+1)
420 #if LCD_WIDTH == 112 && LCD_HEIGHT == 64 /* Archos LCD: non-square pixels */
421 #define DIV_MX (0x7ffffffe/(5*RADIUS_MINUTE/4)+1)
422 #define DIV_HX (0x7ffffffe/(5*RADIUS_HOUR/4)+1)
423 #else /* Square pixels */
424 #define DIV_MX DIV_MY
425 #define DIV_HX DIV_HY
426 #endif
428 static int xminute[60], yminute[60];
429 static int xhour[60], yhour[60];
431 static void init_clock(void)
433 int i;
434 int pfrac;
435 unsigned long phase;
436 long sin, cos;
438 phase = pfrac = 0;
440 for (i = 0; i < 60; i++) {
441 sin = fp_sincos(phase, &cos);
442 xminute[i] = LCD_WIDTH/2 + sin / DIV_MX;
443 yminute[i] = LCD_HEIGHT/2 - cos / DIV_MY;
444 xhour[i] = LCD_WIDTH/2 + sin / DIV_HX;
445 yhour[i] = LCD_HEIGHT/2 - cos / DIV_HY;
447 phase += CLOCK_STEP;
448 pfrac += CLOCK_FRAC;
449 if (pfrac >= 60) {
450 pfrac -= 60;
451 phase++;
456 static void addclock(void)
458 int i;
459 int hour;
460 int minute;
462 struct tm* current_time = rb->get_time();
463 hour = current_time->tm_hour;
464 minute = current_time->tm_min;
466 rb->lcd_drawline(LCD_WIDTH/2, LCD_HEIGHT/2,
467 xminute[minute], yminute[minute]);
469 hour = (hour % 12) * 5 + minute / 12;
471 rb->lcd_drawline(LCD_WIDTH/2, LCD_HEIGHT/2, xhour[hour], yhour[hour]);
473 /* draw a circle */
474 for(i = 1; i < 60; i += 3)
475 rb->lcd_drawline(xminute[i], yminute[i],
476 xminute[(i+1)%60], yminute[(i+1)%60]);
478 #endif /* CONFIG_RTC */
480 #if LCD_DEPTH > 1
481 static const unsigned face_colors[] =
483 #ifdef HAVE_LCD_COLOR
484 LCD_BLACK, LCD_RGBPACK(0, 0, 255), LCD_RGBPACK(255, 0, 0)
485 #else
486 LCD_BLACK, LCD_LIGHTGRAY, LCD_DARKGRAY
487 #endif
489 #endif
491 static int scrollit(void)
493 int b;
494 unsigned int y=100;
495 unsigned int yy;
496 int x = LCD_WIDTH;
497 int xx;
498 unsigned int i;
499 unsigned int textpos=0;
501 char* rock="Rockbox! Pure pleasure. Pure fun. Oooh. What fun! ;-) ";
502 unsigned int rocklen = rb->strlen(rock);
503 int letter;
504 #if LCD_DEPTH > 1
505 unsigned prev_color;
506 #endif
508 rb->lcd_clear_display();
509 while(1)
511 b = rb->button_get_w_tmo(HZ/10);
512 switch(b)
514 #ifdef BOUNCE_RC_QUIT
515 case BOUNCE_RC_QUIT :
516 #endif
517 case BOUNCE_QUIT :
518 return 0;
519 case BOUNCE_MODE :
520 return 1;
521 default:
522 if ( rb->default_event_handler(b) == SYS_USB_CONNECTED )
523 return -1;
525 rb->lcd_clear_display();
526 #if CONFIG_RTC
527 addclock();
528 #endif
530 #if LCD_DEPTH > 1
531 prev_color = rb->lcd_get_foreground();
532 #endif
534 for(i=0, yy=y, xx=x; xx < LCD_WIDTH; i++) {
535 letter = rock[(i+textpos) % rocklen ];
536 #if LCD_DEPTH > 1
537 rb->lcd_set_foreground(face_colors[letter % 3]);
538 #endif
539 rb->lcd_mono_bitmap(char_gen_12x16[letter-0x20],
540 xx, ytable[yy % TABLE_SIZE],
541 LETTER_WIDTH, LETTER_HEIGHT);
542 yy += YADD;
543 xx += LETTER_WIDTH;
545 #if LCD_DEPTH > 1
546 rb->lcd_set_foreground(prev_color);
547 #endif
548 rb->lcd_update();
550 x-= XSPEED;
552 if(x < -LETTER_WIDTH) {
553 x += LETTER_WIDTH;
554 y += YADD;
555 textpos++;
558 y+=YSPEED;
562 static int loopit(void)
564 int b;
565 unsigned int y=100;
566 unsigned int x=100;
567 unsigned int yy,xx;
568 unsigned int i;
569 unsigned int ysanke=0;
570 unsigned int xsanke=0;
572 char* rock="ROCKbox";
573 unsigned int rocklen = rb->strlen(rock);
575 int show=0;
576 int timeout=0;
577 char buffer[30];
579 rb->lcd_clear_display();
580 while(1)
582 b = rb->button_get_w_tmo(HZ/10);
583 if ( b == BOUNCE_QUIT )
584 return 0;
586 if ( b == BOUNCE_MODE )
587 return 1;
589 if ( rb->default_event_handler(b) == SYS_USB_CONNECTED )
590 return -1;
592 if ( b != BUTTON_NONE )
593 timeout=20;
595 y+= speed[ysanke&15] + values[NUM_YADD].num;
596 x+= speed[xsanke&15] + values[NUM_XADD].num;
598 rb->lcd_clear_display();
599 #if CONFIG_RTC
600 addclock();
601 #endif
602 if(timeout) {
603 switch(b) {
604 case BOUNCE_LEFT:
605 case BOUNCE_LEFT|BUTTON_REPEAT:
606 values[show].num--;
607 break;
608 case BOUNCE_RIGHT:
609 case BOUNCE_RIGHT|BUTTON_REPEAT:
610 values[show].num++;
611 break;
612 case BOUNCE_UP:
613 case BOUNCE_UP|BUTTON_REPEAT:
614 if(++show == NUM_LAST)
615 show=0;
616 break;
617 case BOUNCE_DOWN:
618 case BOUNCE_DOWN|BUTTON_REPEAT:
619 if(--show < 0)
620 show=NUM_LAST-1;
621 break;
623 rb->snprintf(buffer, 30, "%s: %d",
624 values[show].what, values[show].num);
625 rb->lcd_putsxy(0, LCD_HEIGHT - 8, (unsigned char *)buffer);
626 timeout--;
628 for(i=0, yy=y, xx=x;
629 i<rocklen;
630 i++, yy+=values[NUM_YDIST].num, xx+=values[NUM_XDIST].num)
631 rb->lcd_mono_bitmap(char_gen_12x16[rock[i]-0x20],
632 xtable[xx % TABLE_SIZE],
633 ytable[yy % TABLE_SIZE],
634 LETTER_WIDTH, LETTER_HEIGHT);
635 rb->lcd_update();
637 ysanke+= values[NUM_YSANKE].num;
638 xsanke+= values[NUM_XSANKE].num;
643 enum plugin_status plugin_start(const void* parameter)
645 int w, h;
646 char *off = "[Off] to stop";
648 (void)(parameter);
650 rb->lcd_setfont(FONT_SYSFIXED);
651 rb->lcd_clear_display();
653 /* Get horizontel centering for text */
654 rb->lcd_getstringsize((unsigned char *)SS_TITLE, &w, &h);
655 rb->lcd_putsxy((LCD_WIDTH/2) - w / 2, (LCD_HEIGHT/2) - h / 2,
656 (unsigned char *)SS_TITLE);
658 /* Get horizontel centering for text */
659 rb->lcd_getstringsize((unsigned char *)off, &w, &h);
660 rb->lcd_putsxy((LCD_WIDTH/2) - w / 2, LCD_HEIGHT - 2 * h,
661 (unsigned char *)off);
663 rb->lcd_update();
664 rb->sleep(HZ);
665 rb->lcd_set_drawmode(DRMODE_FG);
666 init_tables();
667 #if CONFIG_RTC
668 init_clock();
669 #endif
671 do {
672 h = loopit();
673 if (h > 0)
674 h = scrollit();
675 } while(h > 0);
677 rb->lcd_set_drawmode(DRMODE_SOLID);
678 rb->lcd_setfont(FONT_UI);
680 return (h == 0) ? PLUGIN_OK : PLUGIN_USB_CONNECTED;