Updated copiright notice.
[bertos.git] / app / demo / demo.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
30  * This file is part of DevLib - See README.devlib for information.
31  * -->
32  *
33  * \version $Id$
34  *
35  * \author Bernardo Innocenti <bernie@develer.com>
36  *
37  * \brief Windowing system test.
38  */
39
40 /*#*
41  *#* $Log$
42  *#* Revision 1.10  2007/09/29 16:30:37  bernie
43  *#* RASTER_SIZE(): Remove obsolete macro.
44  *#*
45  *#* Revision 1.9  2006/09/20 14:29:34  marco
46  *#* Add proc demo (not yet working).
47  *#*
48  *#* Revision 1.8  2006/06/02 12:27:36  bernie
49  *#* Tweak apparence; enable assertions.
50  *#*
51  *#* Revision 1.7  2006/05/27 22:31:18  bernie
52  *#* Clean it up a bit more.
53  *#*
54  *#* Revision 1.6  2006/05/27 17:16:38  bernie
55  *#* Make demos a bit more interesting.
56  *#*
57  *#* Revision 1.5  2006/05/15 07:25:29  bernie
58  *#* Move menu to gui/.
59  *#*
60  *#* Revision 1.4  2006/04/27 05:43:07  bernie
61  *#* Fix naming conventions.
62  *#*
63  *#* Revision 1.3  2006/04/11 00:07:32  bernie
64  *#* Implemenent MF_SAVESEL flag.
65  *#*
66  *#* Revision 1.2  2006/03/27 04:49:50  bernie
67  *#* Add bouncing logo demo.
68  *#*
69  *#* Revision 1.1  2006/03/22 09:52:13  bernie
70  *#* Add demo application.
71  *#*
72  *#* Revision 1.1  2006/01/23 23:14:29  bernie
73  *#* Implement simple, but impressive windowing system.
74  *#*
75  *#*/
76
77 #include <emul/emul.h>
78 #include <kern/proc.h>
79 #include <drv/timer.h>
80 #include <drv/buzzer.h>
81 #include <drv/lcd_gfx.h>
82 #include <drv/kbd.h>
83 #include <gfx/gfx.h>
84 #include <gfx/win.h>
85 #include <gfx/text.h>
86 #include <gfx/font.h>
87 #include <gui/menu.h>
88 #include <icons/logo.h>
89 #include <cfg/macros.h>
90
91 /**
92  * Draw a pentacle in the provided bitmap.
93  */
94 void schedule(void)
95 {
96         lcd_blitBitmap(&lcd_bitmap);
97         emul_idle();
98 }
99
100 /**
101  * Draw a pentacle in the provided bitmap.
102  */
103 static void magic(struct Bitmap *bitmap, coord_t x, coord_t y)
104 {
105         static const coord_t coords[] = { 120, 34, 90, 90, 30, 90, 0, 34, 60, 0, 90, 90, 0, 34, 120, 34, 30, 90, 60, 0 };
106         unsigned int i;
107
108         gfx_moveTo(bitmap, coords[countof(coords)-2]/2 + x, coords[countof(coords)-1]/3 + y);
109         for (i = 0; i < countof(coords); i += 2)
110                 gfx_lineTo(bitmap, coords[i]/2 + x, coords[i+1]/3 + y);
111 }
112
113 static void hello_world(Bitmap *bm)
114 {
115         extern const Font font_ncenB18;
116     const Font *old_font = bm->font;
117
118         gfx_bitmapClear(bm);
119
120         /* Set big font */
121         gfx_setFont(bm, &font_ncenB18);
122
123         text_xprintf(bm, 1, 0, STYLEF_BOLD | TEXT_FILL | TEXT_CENTER,
124                         "Hello, world!");
125
126         lcd_blitBitmap(bm);
127         timer_delay(1000);
128
129         /* Restore old font */
130     gfx_setFont(bm, old_font);
131 }
132
133 /**
134  * Show the splash screen
135  */
136 static void bouncing_logo(Bitmap *bm)
137 {
138         const long SPEED_SCALE = 1000;
139         const long GRAVITY_ACCEL = 10;
140         const long BOUNCE_ELASTICITY = 2;
141         long h = (long)(-project_grl_logo.height) * SPEED_SCALE;
142         long speed = 1000;
143
144         /* Repeat until logo stands still on the bottom edge */
145         while (!((speed == 0) && (h == 0)))
146         {
147                 /* Move */
148                 h += speed;
149
150                 /* Gravity acceleration */
151                 speed += GRAVITY_ACCEL;
152
153                 if (h > 0 && speed > 0)
154                 {
155                         /* Bounce */
156                         speed = - (speed / BOUNCE_ELASTICITY);
157
158                 }
159
160                 /* Update graphics */
161                 gfx_bitmapClear(bm);
162                 gfx_blitImage(bm,
163                         (bm->width - project_grl_logo.width) / 2,
164                         h / SPEED_SCALE,
165                         &project_grl_logo);
166                 lcd_blitBitmap(bm);
167
168                 timer_delay(10);
169         }
170 }
171
172 void win_demo(Bitmap *bm)
173 {
174         const coord_t small_left = 45, small_top = 30, small_width = 50, small_height = 30;
175         const coord_t large_left = -10, large_top = 10, large_width = 85, large_height = 41;
176
177         Window root_win, small_win, large_win;
178         Bitmap small_bm, large_bm;
179         uint8_t small_raster[RAST_SIZE(small_width, small_height)];
180         uint8_t large_raster[RAST_SIZE(large_width, large_height)];
181
182         win_create(&root_win, bm);
183
184         gfx_bitmapInit(&large_bm, large_raster, large_width, large_height);
185         win_create(&large_win, &large_bm);
186         win_open(&large_win, &root_win);
187         win_move(&large_win, large_left, large_top);
188
189         gfx_bitmapInit(&small_bm, small_raster, small_width, small_height);
190         win_create(&small_win, &small_bm);
191         win_open(&small_win, &root_win);
192         win_move(&small_win, small_left, small_top);
193
194
195         coord_t x = 0, y = LCD_WIDTH / 2;
196         coord_t xdir = +1, ydir = -1;
197         coord_t xdir_large = +1;
198         coord_t ydir_small = +1;
199         int raise_counter = 0;
200         int i;
201
202         for(;;)
203         {
204                 /* Background animation */
205                 bm = root_win.bitmap;
206                 gfx_bitmapClear(bm);
207 //              gfx_setClipRect(bm, 0, 0, bm->width, bm->height);
208 //              gfx_rectDraw(bm, 10, 10, bm->width-10, bm->height-10);
209 //              gfx_setClipRect(bm, 11, 11, bm->width-11, bm->height-11);
210                 magic(bm, x, y);
211                 x += xdir;
212                 y += ydir;
213                 if (x >= bm->width)  xdir = -1;
214                 if (x <= -50)        xdir = +1;
215                 if (y >= bm->height) ydir = -1;
216                 if (y <= -50)        ydir = +1;
217
218                 /* Large window animation */
219                 bm = large_win.bitmap;
220                 gfx_bitmapClear(bm);
221                 for (i = 0; i < bm->height / 2; i += 2)
222                         gfx_rectDraw(bm, 0 + i, 0 + i, bm->width - i, bm->height - i);
223
224
225                 /* Small window animation */
226                 bm = small_win.bitmap;
227                 gfx_bitmapClear(bm);
228                 gfx_rectDraw(bm, 0, 0, bm->width, bm->height);
229                 gfx_line(bm, 0, 0, bm->width, bm->height);
230                 gfx_line(bm, bm->width, 0, 0, bm->height);
231
232                 /* Move windows around */
233                 win_move(&large_win, large_win.geom.xmin + xdir_large, large_top);
234                 if (large_win.geom.xmin < -20) xdir_large = +1;
235                 if (large_win.geom.xmin > RECT_WIDTH(&root_win.geom) - 5) xdir_large = -1;
236
237                 win_move(&small_win, small_left, small_win.geom.ymin + ydir_small);
238                 if (small_win.geom.ymin < -20) ydir_small = +1;
239                 if (small_win.geom.ymin > RECT_HEIGHT(&root_win.geom) - 5) ydir_small = -1;
240
241                 ++raise_counter;
242                 if (raise_counter % 997 == 0)
243                         win_raise(&small_win);
244                 else if (raise_counter % 731 == 0)
245                         win_raise(&large_win);
246
247                 win_compose(&root_win);
248
249                 /* Also does LCD refresh, etc. */
250                 if (kbd_peek())
251                         break;
252         }
253 }
254
255 void proc_demo(void)
256 {
257         extern void proc_test(void);
258 // FIXME: proc_test() cause segmentation fault. 
259         proc_test();
260 }
261
262
263 /* SETTINGS SUBMENU */
264
265 static struct MenuItem settings_items[] =
266 {
267         { (const_iptr_t)"System",     0, (MenuHook)0,  (iptr_t)0 },
268         { (const_iptr_t)"Language",   0, (MenuHook)0,  (iptr_t)0 },
269         { (const_iptr_t)"Networking", 0, (MenuHook)0,  (iptr_t)0 },
270         { (const_iptr_t)"Date & Time",0, (MenuHook)0,  (iptr_t)0 },
271         { (const_iptr_t)"Power Saving", MIF_TOGGLE, (MenuHook)0, (iptr_t)0 },
272         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
273 };
274 static struct Menu settings_menu = { settings_items, "Settings Menu", MF_STICKY | MF_SAVESEL, &lcd_bitmap, 0 };
275
276
277 /* MX SUBMENU */
278
279 static struct MenuItem mx_items[] =
280 {
281         { (const_iptr_t)"Mouse",                  MIF_CHECKIT | MIF_EXCLUDE_1 | MIF_EXCLUDE_2, (MenuHook)0,  (iptr_t)0 },
282         { (const_iptr_t)"Keyboard", MIF_CHECKED | MIF_CHECKIT | MIF_EXCLUDE_0 | MIF_EXCLUDE_2, (MenuHook)0,  (iptr_t)0 },
283         { (const_iptr_t)"Joystick", MIF_CHECKIT | MIF_EXCLUDE_0 | MIF_EXCLUDE_1, (MenuHook)0,  (iptr_t)0 },
284         { (const_iptr_t)"Autosave", MIF_CHECKED | MIF_CHECKIT | MIF_TOGGLE, (MenuHook)0,  (iptr_t)0 },
285         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
286 };
287
288 static struct Menu mx_menu = { mx_items, (const_iptr_t)0, MF_STICKY | MF_SAVESEL, &lcd_bitmap, 0 };
289
290
291 /* DISPLAY SUBMENU */
292
293 static struct MenuItem display_items[] =
294 {
295         { (const_iptr_t)"Background", 0, (MenuHook)0, (iptr_t)0 },
296         { (const_iptr_t)"Colors",     0, (MenuHook)0, (iptr_t)0 },
297         { (const_iptr_t)"Style",      0, (MenuHook)0, (iptr_t)0 },
298         { (const_iptr_t)"Icon Theme", 0, (MenuHook)0, (iptr_t)0 },
299         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
300 };
301 static struct Menu display_menu = { display_items, "Display Menu", MF_SAVESEL, &lcd_bitmap, 0 };
302
303
304 /* MAIN MENU */
305
306 static struct MenuItem main_items[] =
307 {
308         { (const_iptr_t)"Win Fly",     0, (MenuHook)win_demo,     (iptr_t)&lcd_bitmap    },
309         { (const_iptr_t)"Bounce!",     0, (MenuHook)bouncing_logo,(iptr_t)&lcd_bitmap    },
310         { (const_iptr_t)"Hello World", 0, (MenuHook)hello_world,  (iptr_t)&lcd_bitmap    },
311         { (const_iptr_t)"Scheduling",  0, (MenuHook)proc_demo,    (iptr_t)&lcd_bitmap    },
312         { (const_iptr_t)"Menu MX",     0, (MenuHook)menu_handle,  (iptr_t)&mx_menu       },
313         { (const_iptr_t)"Display",     0, (MenuHook)menu_handle,  (iptr_t)&display_menu  },
314         { (const_iptr_t)"Settings",    0, (MenuHook)menu_handle,  (iptr_t)&settings_menu },
315         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
316 };
317 static struct Menu main_menu = { main_items, "Main Menu", MF_STICKY, &lcd_bitmap, 0 };
318
319
320 int main(int argc, char *argv[])
321 {
322         emul_init(&argc, argv);
323         timer_init();
324         buz_init();
325         kbd_init();
326         lcd_init();
327         proc_init();
328
329         menu_handle(&main_menu);
330
331         emul_cleanup();
332         return 0;
333 }