Fix mangled msg.h file.
[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  *
31  * -->
32  *
33  * \version $Id: demo.c 18242 2007-10-08 17:35:23Z marco $
34  *
35  * \author Bernardo Innocenti <bernie@develer.com>
36  *
37  * \brief Windowing system test.
38  */
39
40 #include <emul/emul.h>
41 #include <kern/proc.h>
42 #include <kern/msg.h>
43 #include <drv/timer.h>
44 #include <drv/buzzer.h>
45 #include <drv/lcd_gfx.h>
46 #include <drv/kbd.h>
47 #include <gfx/gfx.h>
48 #include <gfx/win.h>
49 #include <gfx/text.h>
50 #include <gfx/font.h>
51 #include <gui/menu.h>
52 #include <icons/logo.h>
53 #include <cfg/macros.h>
54
55 /**
56  * Draw a pentacle in the provided bitmap.
57  */
58 void schedule(void)
59 {
60         lcd_blitBitmap(&lcd_bitmap);
61         emul_idle();
62 }
63
64 /**
65  * Draw a pentacle in the provided bitmap.
66  */
67 static void magic(struct Bitmap *bitmap, coord_t x, coord_t y)
68 {
69         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 };
70         unsigned int i;
71
72         gfx_moveTo(bitmap, coords[countof(coords)-2]/2 + x, coords[countof(coords)-1]/3 + y);
73         for (i = 0; i < countof(coords); i += 2)
74                 gfx_lineTo(bitmap, coords[i]/2 + x, coords[i+1]/3 + y);
75 }
76
77 static void hello_world(Bitmap *bm)
78 {
79         extern const Font font_ncenB18;
80     const Font *old_font = bm->font;
81
82         gfx_bitmapClear(bm);
83
84         /* Set big font */
85         gfx_setFont(bm, &font_ncenB18);
86
87         text_xprintf(bm, 1, 0, STYLEF_BOLD | TEXT_FILL | TEXT_CENTER,
88                         "Hello, world!");
89
90         lcd_blitBitmap(bm);
91         timer_delay(1000);
92
93         /* Restore old font */
94     gfx_setFont(bm, old_font);
95 }
96
97 /**
98  * Show the splash screen
99  */
100 static void bouncing_logo(Bitmap *bm)
101 {
102         const long SPEED_SCALE = 1000;
103         const long GRAVITY_ACCEL = 10;
104         const long BOUNCE_ELASTICITY = 2;
105         long h = (long)(-bertos_logo.height) * SPEED_SCALE;
106         long speed = 1000;
107
108         /* Repeat until logo stands still on the bottom edge */
109         while (!((speed == 0) && (h == 0)))
110         {
111                 /* Move */
112                 h += speed;
113
114                 /* Gravity acceleration */
115                 speed += GRAVITY_ACCEL;
116
117                 if (h > 0 && speed > 0)
118                 {
119                         /* Bounce */
120                         speed = - (speed / BOUNCE_ELASTICITY);
121
122                 }
123
124                 /* Update graphics */
125                 gfx_bitmapClear(bm);
126                 gfx_blitImage(bm,
127                         (bm->width - bertos_logo.width) / 2,
128                         h / SPEED_SCALE,
129                         &bertos_logo);
130                 lcd_blitBitmap(bm);
131
132                 timer_delay(10);
133         }
134 }
135
136 void win_demo(Bitmap *bm)
137 {
138         const coord_t small_left = 45, small_top = 30, small_width = 50, small_height = 30;
139         const coord_t large_left = -10, large_top = 10, large_width = 85, large_height = 41;
140
141         Window root_win, small_win, large_win;
142         Bitmap small_bm, large_bm;
143         uint8_t small_raster[RAST_SIZE(small_width, small_height)];
144         uint8_t large_raster[RAST_SIZE(large_width, large_height)];
145
146         win_create(&root_win, bm);
147
148         gfx_bitmapInit(&large_bm, large_raster, large_width, large_height);
149         win_create(&large_win, &large_bm);
150         win_open(&large_win, &root_win);
151         win_move(&large_win, large_left, large_top);
152
153         gfx_bitmapInit(&small_bm, small_raster, small_width, small_height);
154         win_create(&small_win, &small_bm);
155         win_open(&small_win, &root_win);
156         win_move(&small_win, small_left, small_top);
157
158
159         coord_t x = 0, y = LCD_WIDTH / 2;
160         coord_t xdir = +1, ydir = -1;
161         coord_t xdir_large = +1;
162         coord_t ydir_small = +1;
163         int raise_counter = 0;
164         int i;
165
166         for(;;)
167         {
168                 /* Background animation */
169                 bm = root_win.bitmap;
170                 gfx_bitmapClear(bm);
171 //              gfx_setClipRect(bm, 0, 0, bm->width, bm->height);
172 //              gfx_rectDraw(bm, 10, 10, bm->width-10, bm->height-10);
173 //              gfx_setClipRect(bm, 11, 11, bm->width-11, bm->height-11);
174                 magic(bm, x, y);
175                 x += xdir;
176                 y += ydir;
177                 if (x >= bm->width)  xdir = -1;
178                 if (x <= -50)        xdir = +1;
179                 if (y >= bm->height) ydir = -1;
180                 if (y <= -50)        ydir = +1;
181
182                 /* Large window animation */
183                 bm = large_win.bitmap;
184                 gfx_bitmapClear(bm);
185                 for (i = 0; i < bm->height / 2; i += 2)
186                         gfx_rectDraw(bm, 0 + i, 0 + i, bm->width - i, bm->height - i);
187
188
189                 /* Small window animation */
190                 bm = small_win.bitmap;
191                 gfx_bitmapClear(bm);
192                 gfx_rectDraw(bm, 0, 0, bm->width, bm->height);
193                 gfx_line(bm, 0, 0, bm->width, bm->height);
194                 gfx_line(bm, bm->width, 0, 0, bm->height);
195
196                 /* Move windows around */
197                 win_move(&large_win, large_win.geom.xmin + xdir_large, large_top);
198                 if (large_win.geom.xmin < -20) xdir_large = +1;
199                 if (large_win.geom.xmin > RECT_WIDTH(&root_win.geom) - 5) xdir_large = -1;
200
201                 win_move(&small_win, small_left, small_win.geom.ymin + ydir_small);
202                 if (small_win.geom.ymin < -20) ydir_small = +1;
203                 if (small_win.geom.ymin > RECT_HEIGHT(&root_win.geom) - 5) ydir_small = -1;
204
205                 ++raise_counter;
206                 if (raise_counter % 997 == 0)
207                         win_raise(&small_win);
208                 else if (raise_counter % 731 == 0)
209                         win_raise(&large_win);
210
211                 win_compose(&root_win);
212
213                 /* Also does LCD refresh, etc. */
214                 if (kbd_peek())
215                         break;
216         }
217 }
218
219 void proc_demo(void)
220 {
221         extern void proc_test(void);
222 // FIXME: proc_test() cause segmentation fault. 
223         proc_test();
224 }
225
226
227 /* SETTINGS SUBMENU */
228
229 static struct MenuItem settings_items[] =
230 {
231         { (const_iptr_t)"System",     0, (MenuHook)0,  (iptr_t)0 },
232         { (const_iptr_t)"Language",   0, (MenuHook)0,  (iptr_t)0 },
233         { (const_iptr_t)"Networking", 0, (MenuHook)0,  (iptr_t)0 },
234         { (const_iptr_t)"Date & Time",0, (MenuHook)0,  (iptr_t)0 },
235         { (const_iptr_t)"Power Saving", MIF_TOGGLE, (MenuHook)0, (iptr_t)0 },
236         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
237 };
238 static struct Menu settings_menu = { settings_items, "Settings Menu", MF_STICKY | MF_SAVESEL, &lcd_bitmap, 0 };
239
240
241 /* MX SUBMENU */
242
243 static struct MenuItem mx_items[] =
244 {
245         { (const_iptr_t)"Mouse",                  MIF_CHECKIT | MIF_EXCLUDE_1 | MIF_EXCLUDE_2, (MenuHook)0,  (iptr_t)0 },
246         { (const_iptr_t)"Keyboard", MIF_CHECKED | MIF_CHECKIT | MIF_EXCLUDE_0 | MIF_EXCLUDE_2, (MenuHook)0,  (iptr_t)0 },
247         { (const_iptr_t)"Joystick", MIF_CHECKIT | MIF_EXCLUDE_0 | MIF_EXCLUDE_1, (MenuHook)0,  (iptr_t)0 },
248         { (const_iptr_t)"Autosave", MIF_CHECKED | MIF_CHECKIT | MIF_TOGGLE, (MenuHook)0,  (iptr_t)0 },
249         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
250 };
251
252 static struct Menu mx_menu = { mx_items, (const_iptr_t)0, MF_STICKY | MF_SAVESEL, &lcd_bitmap, 0 };
253
254
255 /* DISPLAY SUBMENU */
256
257 static struct MenuItem display_items[] =
258 {
259         { (const_iptr_t)"Background", 0, (MenuHook)0, (iptr_t)0 },
260         { (const_iptr_t)"Colors",     0, (MenuHook)0, (iptr_t)0 },
261         { (const_iptr_t)"Style",      0, (MenuHook)0, (iptr_t)0 },
262         { (const_iptr_t)"Icon Theme", 0, (MenuHook)0, (iptr_t)0 },
263         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
264 };
265 static struct Menu display_menu = { display_items, "Display Menu", MF_SAVESEL, &lcd_bitmap, 0 };
266
267
268 /* MAIN MENU */
269
270 static struct MenuItem main_items[] =
271 {
272         { (const_iptr_t)"Win Fly",     0, (MenuHook)win_demo,     (iptr_t)&lcd_bitmap    },
273         { (const_iptr_t)"Bounce!",     0, (MenuHook)bouncing_logo,(iptr_t)&lcd_bitmap    },
274         { (const_iptr_t)"Hello World", 0, (MenuHook)hello_world,  (iptr_t)&lcd_bitmap    },
275         { (const_iptr_t)"Scheduling",  0, (MenuHook)proc_demo,    (iptr_t)&lcd_bitmap    },
276         { (const_iptr_t)"Menu MX",     0, (MenuHook)menu_handle,  (iptr_t)&mx_menu       },
277         { (const_iptr_t)"Display",     0, (MenuHook)menu_handle,  (iptr_t)&display_menu  },
278         { (const_iptr_t)"Settings",    0, (MenuHook)menu_handle,  (iptr_t)&settings_menu },
279         { (const_iptr_t)0, 0, NULL, (iptr_t)0 }
280 };
281 static struct Menu main_menu = { main_items, "Main Menu", MF_STICKY, &lcd_bitmap, 0 };
282
283
284 int main(int argc, char *argv[])
285 {
286         emul_init(&argc, argv);
287         timer_init();
288         buz_init();
289         kbd_init();
290         lcd_init();
291         proc_init();
292
293         menu_handle(&main_menu);
294
295         emul_cleanup();
296         return 0;
297 }