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