Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/boot2/gui.c

1/*
2 * gui.c
3 *
4 *
5 * Created by Jasmin Fazlic on 18.12.08.
6 * Copyright 2008/09 Jasmin Fazlic All rights reserved.
7 * Copyright 2008/09 iNDi All rights reserved.
8 *
9 */
10
11#include "gui.h"
12#include "appleboot.h"
13#include "vers.h"
14
15#define IMG_REQUIRED -1
16#define THEME_NAME_DEFAULT"Default"
17static const char *theme_name = THEME_NAME_DEFAULT;
18
19#ifdef EMBED_THEME
20#include "art.h"
21#endif
22
23#define LOADPNG(img, alt_img) if (loadThemeImage(#img, alt_img) != 0) { return 1; }
24
25#define MIN(x, y) ((x) < (y) ? (x) : (y))
26#define MAX(x, y) ((x) > (y) ? (x) : (y))
27
28#define VIDEO(x) (bootArgs->Video.v_ ## x)
29
30#define vram VIDEO(baseAddr)
31
32int lasttime = 0; // we need this for animating maybe
33
34extern int gDeviceCount;
35
36
37/*
38 * ATTENTION: the enum and the following array images[] MUST match !!!
39 */
40enum {
41 iBackground = 0,
42 iLogo,
43
44 iDeviceGeneric,
45 iDeviceGeneric_o,
46 iDeviceHFS,
47 iDeviceHFS_o,
48 iDeviceHFSRAID,
49 iDeviceHFSRAID_o,
50 iDeviceEXT3,
51 iDeviceEXT3_o,
52 iDeviceFAT,
53 iDeviceFAT_o,
54 iDeviceFAT16,
55 iDeviceFAT16_o,
56 iDeviceFAT32,
57 iDeviceFAT32_o,
58 iDeviceNTFS,
59 iDeviceNTFS_o,
60 iDeviceCDROM,
61 iDeviceCDROM_o,
62
63 iSelection,
64 iDeviceScrollPrev,
65 iDeviceScrollNext,
66
67 iMenuBoot,
68 iMenuVerbose,
69 iMenuIgnoreCaches,
70 iMenuSingleUser,
71 iMenuMemoryInfo,
72 iMenuVideoInfo,
73 iMenuHelp,
74 iMenuVerboseDisabled,
75 iMenuIgnoreCachesDisabled,
76 iMenuSingleUserDisabled,
77 iMenuSelection,
78
79 iProgressBar,
80 iProgressBarBackground,
81
82 iTextScrollPrev,
83 iTextScrollNext,
84
85 iFontConsole,
86 iFontSmall,
87};
88
89image_t images[] = {
90 {.name = "background", .image = NULL},
91 {.name = "logo", .image = NULL},
92
93 {.name = "device_generic", .image = NULL},
94 {.name = "device_generic_o", .image = NULL},
95 {.name = "device_hfsplus", .image = NULL},
96 {.name = "device_hfsplus_o", .image = NULL},
97 {.name = "device_hfsraid", .image = NULL},
98 {.name = "device_hfsraid_o", .image = NULL},
99 {.name = "device_ext3", .image = NULL},
100 {.name = "device_ext3_o", .image = NULL},
101 {.name = "device_fat", .image = NULL},
102 {.name = "device_fat_o", .image = NULL},
103 {.name = "device_fat16", .image = NULL},
104 {.name = "device_fat16_o", .image = NULL},
105 {.name = "device_fat32", .image = NULL},
106 {.name = "device_fat32_o", .image = NULL},
107 {.name = "device_ntfs", .image = NULL},
108 {.name = "device_ntfs_o", .image = NULL},
109 {.name = "device_cdrom", .image = NULL},
110 {.name = "device_cdrom_o", .image = NULL},
111
112 {.name = "device_selection", .image = NULL},
113 {.name = "device_scroll_prev", .image = NULL},
114 {.name = "device_scroll_next", .image = NULL},
115
116 {.name = "menu_boot", .image = NULL},
117 {.name = "menu_verbose", .image = NULL},
118 {.name = "menu_ignore_caches", .image = NULL},
119 {.name = "menu_single_user", .image = NULL},
120 {.name = "menu_memory_info", .image = NULL},
121 {.name = "menu_video_info", .image = NULL},
122 {.name = "menu_help", .image = NULL},
123 {.name = "menu_verbose_disabled", .image = NULL},
124 {.name = "menu_ignore_caches_disabled", .image = NULL},
125 {.name = "menu_single_user_disabled", .image = NULL},
126 {.name = "menu_selection", .image = NULL},
127
128 {.name = "progress_bar", .image = NULL},
129 {.name = "progress_bar_background", .image = NULL},
130
131 {.name = "text_scroll_prev", .image = NULL},
132 {.name = "text_scroll_next", .image = NULL},
133
134 {.name = "font_console", .image = NULL},
135 {.name = "font_small", .image = NULL},
136};
137
138int imageCnt = 0;
139
140extern intgDeviceCount;
141extern intselectIndex;
142
143extern MenuItem *menuItems;
144
145char prompt[BOOT_STRING_LEN];
146
147int prompt_pos=0;
148
149char prompt_text[] = "boot: ";
150
151menuitem_t infoMenuItems[] =
152{
153{ .text = "Boot" },
154{ .text = "Boot Verbose" },
155{ .text = "Boot Ignore Caches" },
156{ .text = "Boot Single User" },
157{ .text = "Memory Info" },
158{ .text = "Video Info" },
159{ .text = "Help" }
160};
161
162int initFont(font_t *font, image_t *image);
163void colorFont(font_t *font, uint32_t color);
164void makeRoundedCorners(pixmap_t *p);
165
166static int infoMenuSelection = 0;
167static int infoMenuItemsCount = sizeof(infoMenuItems)/sizeof(infoMenuItems[0]);
168
169static bool infoMenuNativeBoot = false;
170
171static unsigned long screen_params[4] = {DEFAULT_SCREEN_WIDTH, DEFAULT_SCREEN_HEIGHT, 32, 0};// here we store the used screen resolution
172
173static int getImageIndexByName(const char *name)
174{
175 int i;
176for (i = 0; i < sizeof(images) / sizeof(images[0]); i++)
177{
178 if (strcmp(name, images[i].name) == 0)
179 return i; // found the name
180}
181return -1;
182}
183
184#ifdef EMBED_THEME
185static int getEmbeddedImageIndexByName(const char *name)
186{
187int upperLimit = sizeof(embeddedImages) / sizeof(embeddedImages[0]) - 1;
188int lowerLimit = 0;
189int compareIndex = (upperLimit - lowerLimit) >> 1; // Midpoint
190int result;
191
192// NOTE: This algorithm assumes that the embeddedImages is sorted.
193// This is currently done using the make file. If the array is every
194// manualy generated, this *will* fail to work properly.
195while((result = strcmp(name, embeddedImages[compareIndex].name)) != 0)
196{
197if(result > 0)// We need to search a HIGHER index
198{
199if(compareIndex != lowerLimit)
200{
201lowerLimit = compareIndex;
202}
203else
204{
205return -1;
206}
207compareIndex = (upperLimit + lowerLimit + 1) >> 1;// Midpoint, round up
208}
209else // We Need to search a LOWER index
210{
211if(compareIndex != upperLimit)
212{
213upperLimit = compareIndex;
214}
215else
216{
217return -1;
218}
219compareIndex = (upperLimit + lowerLimit) >> 1;// Midpoint, round down
220}
221}
222return compareIndex;
223}
224#endif
225
226static int loadThemeImage(const char *image, int alt_image)
227{
228chardirspec[256];
229int i;
230#ifdef EMBED_THEME
231int e;
232#endif
233uint16_twidth;
234uint16_theight;
235uint8_t*imagedata;
236
237if ((strlen(image) + strlen(theme_name) + 20 ) > sizeof(dirspec)) {
238return 1;
239}
240
241 if ((i = getImageIndexByName(image)) >= 0)
242 {
243 if (images[i].image == NULL) {
244 images[i].image = malloc(sizeof(pixmap_t));
245 }
246 sprintf(dirspec, "/Extra/Themes/%s/%s.png", theme_name, image);
247 width = 0;
248 height = 0;
249 imagedata = NULL;
250 if ((loadPngImage(dirspec, &width, &height, &imagedata)) == 0)
251 {
252 images[i].image->width = width;
253 images[i].image->height = height;
254 images[i].image->pixels = (pixel_t *)imagedata;
255 flipRB(images[i].image);
256 return 0;
257 }
258#ifdef EMBED_THEME
259 else if ((e = getEmbeddedImageIndexByName(image)) >= 0)
260 {
261 unsigned char *embed_data;
262 unsigned int embed_size;
263 embed_data = embeddedImages[e].pngdata;
264 embed_size = *embeddedImages[e].length;
265
266 if (loadEmbeddedPngImage(embed_data, embed_size, &width, &height, &imagedata) == 0)
267 {
268 images[i].image->width = width;
269 images[i].image->height = height;
270 images[i].image->pixels = (pixel_t *)imagedata;
271 flipRB(images[i].image);
272 return 0;
273 }
274
275 return 0;
276 }
277#endif
278 else if (alt_image != IMG_REQUIRED && images[alt_image].image->pixels != NULL)
279 {
280 // Using the passed alternate image for non-mandatory images.
281 // We don't clone the already existing pixmap, but using its properties instead!
282 images[i].image->width = images[alt_image].image->width;
283 images[i].image->height = images[alt_image].image->height;
284 images[i].image->pixels = images[alt_image].image->pixels;
285 return 0;
286 }
287 else
288 {
289#ifndef EMBED_THEME
290 printf("ERROR: GUI: could not open '%s/%s.png'!\n", theme_name, image);
291sleep(2);
292#endif
293 return 1;
294 }
295 }
296return 1;
297}
298
299static int loadGraphics(void)
300{
301LOADPNG(background, IMG_REQUIRED);
302LOADPNG(logo, IMG_REQUIRED);
303
304LOADPNG(device_generic, IMG_REQUIRED);
305LOADPNG(device_generic_o, iDeviceGeneric);
306LOADPNG(device_hfsplus, iDeviceGeneric);
307LOADPNG(device_hfsplus_o, iDeviceHFS);
308LOADPNG(device_hfsraid, iDeviceGeneric);
309LOADPNG(device_hfsraid_o, iDeviceHFSRAID);
310LOADPNG(device_ext3, iDeviceGeneric);
311LOADPNG(device_ext3_o, iDeviceEXT3);
312LOADPNG(device_fat, iDeviceGeneric);
313LOADPNG(device_fat_o, iDeviceFAT);
314LOADPNG(device_fat16, iDeviceFAT);
315LOADPNG(device_fat16_o, iDeviceFAT_o);
316LOADPNG(device_fat32, iDeviceFAT);
317LOADPNG(device_fat32_o, iDeviceFAT_o);
318LOADPNG(device_ntfs, iDeviceGeneric);
319LOADPNG(device_ntfs_o, iDeviceNTFS);
320LOADPNG(device_cdrom, iDeviceGeneric);
321LOADPNG(device_cdrom_o, iDeviceCDROM);
322
323LOADPNG(device_selection, IMG_REQUIRED);
324LOADPNG(device_scroll_prev, IMG_REQUIRED);
325LOADPNG(device_scroll_next, IMG_REQUIRED);
326
327LOADPNG(menu_boot, IMG_REQUIRED);
328LOADPNG(menu_verbose, IMG_REQUIRED);
329LOADPNG(menu_ignore_caches, IMG_REQUIRED);
330LOADPNG(menu_single_user, IMG_REQUIRED);
331LOADPNG(menu_memory_info, IMG_REQUIRED);
332LOADPNG(menu_video_info, IMG_REQUIRED);
333LOADPNG(menu_help, IMG_REQUIRED);
334LOADPNG(menu_verbose_disabled, IMG_REQUIRED);
335LOADPNG(menu_ignore_caches_disabled, IMG_REQUIRED);
336LOADPNG(menu_single_user_disabled, IMG_REQUIRED);
337LOADPNG(menu_selection, IMG_REQUIRED);
338
339LOADPNG(progress_bar, IMG_REQUIRED);
340LOADPNG(progress_bar_background, IMG_REQUIRED);
341
342LOADPNG(text_scroll_prev, IMG_REQUIRED);
343LOADPNG(text_scroll_next, IMG_REQUIRED);
344
345LOADPNG(font_console, IMG_REQUIRED);
346LOADPNG(font_small, IMG_REQUIRED);
347
348initFont( &font_console, &images[iFontConsole]);
349initFont( &font_small, &images[iFontSmall]);
350
351return 0;
352}
353
354pixmap_t *getCroppedPixmapAtPosition( pixmap_t *from, position_t pos, uint16_t width, uint16_t height )
355{
356
357pixmap_t *cropped = malloc( sizeof( pixmap_t ) );
358if( !cropped )
359return 0;
360cropped->pixels = malloc( width * height * 4 );
361if ( !cropped->pixels )
362return 0;
363
364cropped->width = width;
365cropped->height = height;
366
367int destx = 0, desty = 0;
368int srcx = pos.x, srcy = pos.y;
369
370for( ; desty < height; desty++, srcy++)
371{
372for( destx = 0, srcx = pos.x; destx < width; destx++, srcx++ )
373{
374pixel( cropped, destx, desty ).value = pixel( from, srcx, srcy ).value;
375}
376}
377return cropped;
378}
379
380int createBackBuffer( window_t *window )
381{
382gui.backbuffer = malloc(sizeof(pixmap_t));
383if(!gui.backbuffer)
384return 1;
385
386gui.backbuffer->pixels = malloc( window->width * window->height * 4 );
387if(!gui.backbuffer->pixels)
388{
389free(gui.backbuffer);
390gui.backbuffer = 0;
391return 1;
392}
393
394gui.backbuffer->width = gui.screen.width;
395gui.backbuffer->height = gui.screen.height;
396
397return 0;
398}
399
400int createWindowBuffer( window_t *window )
401{
402window->pixmap = malloc(sizeof(pixmap_t));
403if(!window->pixmap)
404return 1;
405
406window->pixmap->pixels = malloc( window->width * window->height * 4 );
407if(!window->pixmap->pixels)
408{
409free(window->pixmap);
410window->pixmap = 0;
411return 1;
412}
413
414window->pixmap->width = window->width;
415window->pixmap->height = window->height;
416
417return 0;
418}
419
420void fillPixmapWithColor(pixmap_t *pm, uint32_t color)
421{
422int x,y;
423
424// fill with given color AARRGGBB
425for( x=0; x < pm->width; x++ )
426for( y=0; y< pm->height; y++)
427pixel(pm,x,y).value = color;
428}
429
430void drawBackground()
431{
432// reset text cursor
433gui.screen.cursor.x = gui.screen.hborder;
434gui.screen.cursor.y = gui.screen.vborder;
435
436fillPixmapWithColor( gui.screen.pixmap, gui.screen.bgcolor);
437
438// draw background.png into background buffer
439blend( images[iBackground].image, gui.screen.pixmap, gui.background.pos );
440
441// draw logo.png into background buffer
442blend( images[iLogo].image, gui.screen.pixmap, gui.logo.pos);
443
444memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 );
445}
446
447void loadThemeValues(config_file_t *theme, bool overide)
448{
449unsigned int screen_width = gui.screen.width;
450unsigned int screen_height = gui.screen.height;
451unsigned int pixel;
452intalpha;// transparency level 0 (obligue) - 255 (transparent)
453uint32_t color;// color value formatted RRGGBB
454int val, len;
455const char *string;
456
457/*
458 * Parse screen parameters
459 */
460if(getColorForKey("screen_bgcolor", &color, theme ))
461gui.screen.bgcolor = (color & 0x00FFFFFF);
462
463if(getIntForKey("screen_textmargin_h", &val, theme))
464gui.screen.hborder = MIN( gui.screen.width , val );
465
466if(getIntForKey("screen_textmargin_v", &val, theme))
467gui.screen.vborder = MIN( gui.screen.height , val );
468
469/*
470 * Parse background parameters
471 */
472if(getDimensionForKey("background_pos_x", &pixel, theme, screen_width , images[iBackground].image->width ) )
473gui.background.pos.x = pixel;
474
475if(getDimensionForKey("background_pos_y", &pixel, theme, screen_height , images[iBackground].image->height ) )
476gui.background.pos.y = pixel;
477
478/*
479 * Parse logo parameters
480 */
481if(getDimensionForKey("logo_pos_x", &pixel, theme, screen_width , images[iLogo].image->width ) )
482gui.logo.pos.x = pixel;
483
484if(getDimensionForKey("logo_pos_y", &pixel, theme, screen_height , images[iLogo].image->height ) )
485gui.logo.pos.y = pixel;
486
487/*
488 * Parse progress bar parameters
489 */
490if(getDimensionForKey("progressbar_pos_x", &pixel, theme, screen_width , 0 ) )
491gui.progressbar.pos.x = pixel;
492
493if(getDimensionForKey("progressbar_pos_y", &pixel, theme, screen_height , 0 ) )
494gui.progressbar.pos.y = pixel;
495
496/*
497 * Parse countdown text parameters
498 */
499if(getDimensionForKey("countdown_pos_x", &pixel, theme, screen_width , 0 ) )
500gui.countdown.pos.x = pixel;
501
502if(getDimensionForKey("countdown_pos_y", &pixel, theme, screen_height , 0 ) )
503gui.countdown.pos.y = pixel;
504
505/*
506 * Parse devicelist parameters
507 */
508if(getIntForKey("devices_max_visible", &val, theme ))
509gui.maxdevices = MIN( val, gDeviceCount );
510
511if(getIntForKey("devices_iconspacing", &val, theme ))
512gui.devicelist.iconspacing = val;
513
514// check layout for horizontal or vertical
515gui.layout = HorizontalLayout;
516if(getValueForKey( "devices_layout", &string, &len, theme)) {
517if (!strcmp (string, "vertical")) {
518gui.layout = VerticalLayout;
519}
520}
521
522switch (gui.layout) {
523case VerticalLayout:
524gui.devicelist.height = ((images[iSelection].image->height + font_console.chars[0]->height + gui.devicelist.iconspacing) * MIN(gui.maxdevices, gDeviceCount) + (images[iDeviceScrollPrev].image->height + images[iDeviceScrollNext].image->height) + gui.devicelist.iconspacing);
525gui.devicelist.width = (images[iSelection].image->width + gui.devicelist.iconspacing);
526
527if(getDimensionForKey("devices_pos_x", &pixel, theme, gui.screen.width , images[iSelection].image->width ) )
528gui.devicelist.pos.x = pixel;
529
530if(getDimensionForKey("devices_pos_y", &pixel, theme, gui.screen.height , gui.devicelist.height ) )
531gui.devicelist.pos.y = pixel;
532break;
533
534case HorizontalLayout:
535default:
536gui.devicelist.width = ((images[iSelection].image->width + gui.devicelist.iconspacing) * MIN(gui.maxdevices, gDeviceCount) + (images[iDeviceScrollPrev].image->width + images[iDeviceScrollNext].image->width) + gui.devicelist.iconspacing);
537gui.devicelist.height = (images[iSelection].image->height + font_console.chars[0]->height + gui.devicelist.iconspacing);
538
539if(getDimensionForKey("devices_pos_x", &pixel, theme, gui.screen.width , gui.devicelist.width ) )
540gui.devicelist.pos.x = pixel;
541else
542gui.devicelist.pos.x = ( gui.screen.width - gui.devicelist.width ) / 2;
543
544if(getDimensionForKey("devices_pos_y", &pixel, theme, gui.screen.height , images[iSelection].image->height ) )
545gui.devicelist.pos.y = pixel;
546else
547gui.devicelist.pos.y = ( gui.screen.height - gui.devicelist.height ) / 2;
548break;
549}
550
551if(getColorForKey("devices_bgcolor", &color, theme))
552gui.devicelist.bgcolor = (color & 0x00FFFFFF);
553
554if(getIntForKey("devices_transparency", &alpha, theme))
555gui.devicelist.bgcolor = gui.devicelist.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
556
557/*
558 * Parse infobox parameters
559 */
560if(getIntForKey("infobox_width", &val, theme))
561gui.infobox.width = MIN( screen_width , val );
562
563if(getIntForKey("infobox_height", &val, theme))
564gui.infobox.height = MIN( screen_height , val );
565
566if(getDimensionForKey("infobox_pos_x", &pixel, theme, screen_width , gui.infobox.width ) )
567gui.infobox.pos.x = pixel;
568
569if(getDimensionForKey("infobox_pos_y", &pixel, theme, screen_height , gui.infobox.height ) )
570gui.infobox.pos.y = pixel;
571
572if(getIntForKey("infobox_textmargin_h", &val, theme))
573gui.infobox.hborder = MIN( gui.infobox.width , val );
574
575if(getIntForKey("infobox_textmargin_v", &val, theme))
576gui.infobox.vborder = MIN( gui.infobox.height , val );
577
578if(getColorForKey("infobox_bgcolor", &color, theme))
579gui.infobox.bgcolor = (color & 0x00FFFFFF);
580
581if(getIntForKey("infobox_transparency", &alpha, theme))
582gui.infobox.bgcolor = gui.infobox.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
583
584/*
585 * Parse menu parameters
586 */
587if(getDimensionForKey("menu_width", &pixel, theme, gui.screen.width , 0 ) )
588gui.menu.width = pixel;
589else
590gui.menu.width = images[iMenuSelection].image->width;
591
592if(getDimensionForKey("menu_height", &pixel, theme, gui.screen.height , 0 ) )
593gui.menu.height = pixel;
594else
595gui.menu.height = (infoMenuItemsCount) * images[iMenuSelection].image->height;
596
597if(getDimensionForKey("menu_pos_x", &pixel, theme, screen_width , gui.menu.width ) )
598gui.menu.pos.x = pixel;
599
600if(getDimensionForKey("menu_pos_y", &pixel, theme, screen_height , gui.menu.height ) )
601gui.menu.pos.y = pixel;
602
603if(getIntForKey("menu_textmargin_h", &val, theme))
604gui.menu.hborder = MIN( gui.menu.width , val );
605
606if(getIntForKey("menu_textmargin_v", &val, theme))
607gui.menu.vborder = MIN( gui.menu.height , val );
608
609if(getColorForKey("menu_bgcolor", &color, theme))
610gui.menu.bgcolor = (color & 0x00FFFFFF);
611
612if(getIntForKey("menu_transparency", &alpha, theme))
613gui.menu.bgcolor = gui.menu.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
614
615/*
616 * Parse bootprompt parameters
617 */
618if(getDimensionForKey("bootprompt_width", &pixel, theme, screen_width , 0 ) )
619gui.bootprompt.width = pixel;
620
621if(getIntForKey("bootprompt_height", &val, theme))
622gui.bootprompt.height = MIN( screen_height , val );
623
624if(getDimensionForKey("bootprompt_pos_x", &pixel, theme, screen_width , gui.bootprompt.width ) )
625gui.bootprompt.pos.x = pixel;
626
627if(getDimensionForKey("bootprompt_pos_y", &pixel, theme, screen_height , gui.bootprompt.height ) )
628gui.bootprompt.pos.y = pixel;
629
630if(getIntForKey("bootprompt_textmargin_h", &val, theme))
631gui.bootprompt.hborder = MIN( gui.bootprompt.width , val );
632
633if(getIntForKey("bootprompt_textmargin_v", &val, theme))
634gui.bootprompt.vborder = MIN( gui.bootprompt.height , val );
635
636if(getColorForKey("bootprompt_bgcolor", &color, theme))
637gui.bootprompt.bgcolor = (color & 0x00FFFFFF);
638
639if(getIntForKey("bootprompt_transparency", &alpha, theme))
640gui.bootprompt.bgcolor = gui.bootprompt.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
641
642if(getColorForKey("font_small_color", &color, theme))
643gui.screen.font_small_color = (color & 0x00FFFFFF);
644
645if(getColorForKey("font_console_color", &color, theme))
646gui.screen.font_console_color = (color & 0x00FFFFFF);
647}
648
649int initGUI(void)
650{
651intval;
652intlen;
653chardirspec[256];
654
655getValueForKey( "Theme", &theme_name, &len, &bootInfo->bootConfig );
656if ((strlen(theme_name) + 27) > sizeof(dirspec)) {
657return 1;
658}
659sprintf(dirspec, "/Extra/Themes/%s/theme.plist", theme_name);
660if (loadConfigFile(dirspec, &bootInfo->themeConfig) != 0) {
661#ifdef EMBED_THEME
662 config_file_t*config;
663
664 config = &bootInfo->themeConfig;
665 if (ParseXMLFile((char *)__theme_plist, &config->dictionary) != 0) {
666 return 1;
667 }
668#else
669return 1;
670#endif
671}
672// parse display size parameters
673if (getIntForKey("screen_width", &val, &bootInfo->themeConfig) && val > 0) {
674screen_params[0] = val;
675}
676if (getIntForKey("screen_height", &val, &bootInfo->themeConfig) && val > 0) {
677screen_params[1] = val;
678}
679
680// Initalizing GUI strucutre.
681bzero(&gui, sizeof(gui_t));
682
683// find best matching vesa mode for our requested width & height
684getGraphicModeParams(screen_params);
685
686// set our screen structure with the mode width & height
687gui.screen.width = screen_params[0];
688gui.screen.height = screen_params[1];
689
690// load graphics otherwise fail and return
691if (loadGraphics() == 0) {
692loadThemeValues(&bootInfo->themeConfig, true);
693colorFont(&font_small, gui.screen.font_small_color);
694colorFont(&font_console, gui.screen.font_console_color);
695
696// create the screen & window buffers
697if (createBackBuffer(&gui.screen) == 0) {
698if (createWindowBuffer(&gui.screen) == 0) {
699if (createWindowBuffer(&gui.devicelist) == 0) {
700if (createWindowBuffer(&gui.bootprompt) == 0) {
701if (createWindowBuffer(&gui.infobox) == 0) {
702if (createWindowBuffer(&gui.menu) == 0) {
703drawBackground();
704// lets copy the screen into the back buffer
705memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 );
706setVideoMode( GRAPHICS_MODE, 0 );
707gui.initialised = true;
708return 0;
709}
710}
711}
712}
713}
714}
715}
716return 1;
717}
718
719void drawDeviceIcon(BVRef device, pixmap_t *buffer, position_t p, bool isSelected)
720{
721int devicetype;
722
723if( diskIsCDROM(device) )
724devicetype = iDeviceCDROM;// Use CDROM icon
725else
726{
727switch (device->part_type)
728{
729case kPartitionTypeHFS:
730
731// Use HFS or HFSRAID icon depending on bvr flags.
732devicetype = (device->flags & kBVFlagBooter) ? iDeviceHFSRAID : iDeviceHFS;
733break;
734
735case kPartitionTypeHPFS:
736devicetype = iDeviceNTFS;// Use HPFS / NTFS icon
737break;
738
739case kPartitionTypeFAT16:
740devicetype = iDeviceFAT16;// Use FAT16 icon
741break;
742
743case kPartitionTypeFAT32:
744devicetype = iDeviceFAT32;// Use FAT32 icon
745break;
746
747case kPartitionTypeEXT3:
748devicetype = iDeviceEXT3;// Use EXT2/3 icon
749break;
750
751default:
752devicetype = iDeviceGeneric;// Use Generic icon
753break;
754}
755}
756
757// Use the next (device_*_o) image for the selected item.
758 if (isSelected) devicetype++;
759
760// draw icon
761blend( images[devicetype].image, buffer, centeredAt( images[devicetype].image, p ));
762
763p.y += (images[iSelection].image->height / 2) + font_console.chars[0]->height;
764
765// draw volume label
766drawStrCenteredAt( device->label, &font_small, buffer, p);
767
768}
769
770void drawDeviceList (int start, int end, int selection)
771{
772int i;
773position_t p, p_prev, p_next;
774
775//uint8_tmaxDevices = MIN( gui.maxdevices, menucount );
776
777fillPixmapWithColor( gui.devicelist.pixmap, gui.devicelist.bgcolor);
778
779makeRoundedCorners( gui.devicelist.pixmap);
780
781switch (gui.layout)
782{
783
784case VerticalLayout:
785p.x = (gui.devicelist.width /2);
786p.y = ( ( images[iSelection].image->height / 2 ) + images[iDeviceScrollPrev].image->height + gui.devicelist.iconspacing );
787
788// place scroll indicators at top & bottom edges
789p_prev = pos ( gui.devicelist.width / 2 , gui.devicelist.iconspacing );
790p_next = pos ( p_prev.x, gui.devicelist.height - gui.devicelist.iconspacing );
791
792break;
793
794default:// use Horizontal layout as the default
795
796case HorizontalLayout:
797p.x = (gui.devicelist.width - ( gui.devicelist.width / gui.maxdevices ) * gui.maxdevices ) / 2 + ( images[iSelection].image->width / 2) + images[iDeviceScrollPrev].image->width + gui.devicelist.iconspacing;
798p.y = ((gui.devicelist.height - font_console.chars[0]->height ) - images[iSelection].image->height) / 2 + ( images[iSelection].image->height / 2 );
799
800// place scroll indicators at left & right edges
801p_prev = pos ( images[iDeviceScrollPrev].image->width / 2 + gui.devicelist.iconspacing / 2, gui.devicelist.height / 2 );
802p_next = pos ( gui.devicelist.width - ( images[iDeviceScrollNext].image->width / 2 + gui.devicelist.iconspacing / 2), gui.devicelist.height / 2 );
803
804break;
805
806}
807
808// draw visible device icons
809for (i = 0; i < gui.maxdevices; i++)
810{
811BVRef param = menuItems[start + i].param;
812
813 bool isSelected = ((start + i) == selection) ? true : false;
814if (isSelected)
815{
816 if (param->flags & kBVFlagNativeBoot)
817 {
818 infoMenuNativeBoot = true;
819 }
820 else
821 {
822 infoMenuNativeBoot = false;
823 if(infoMenuSelection >= INFOMENU_NATIVEBOOT_START && infoMenuSelection <= INFOMENU_NATIVEBOOT_END)
824 infoMenuSelection = 0;
825 }
826
827if(gui.menu.draw)
828drawInfoMenuItems();
829
830blend( images[iSelection].image, gui.devicelist.pixmap, centeredAt( images[iSelection].image, p ) );
831
832#if DEBUG
833 gui.debug.cursor = pos( 10, 100);
834 dprintf( &gui.screen, "label %s\n", param->label );
835 dprintf( &gui.screen, "biosdev 0x%x\n", param->biosdev );
836 dprintf(&gui.screen, "width %d\n", gui.screen.width);
837 dprintf(&gui.screen, "height %d\n", gui.screen.height);
838 dprintf( &gui.screen, "type 0x%x\n", param->type );
839 dprintf( &gui.screen, "flags 0x%x\n", param->flags );
840 dprintf( &gui.screen, "part_no %d\n", param->part_no );
841 dprintf( &gui.screen, "part_boff 0x%x\n", param->part_boff );
842 dprintf( &gui.screen, "part_type 0x%x\n", param->part_type );
843 dprintf( &gui.screen, "bps 0x%x\n", param->bps );
844 dprintf( &gui.screen, "name %s\n", param->name );
845 dprintf( &gui.screen, "type_name %s\n", param->type_name );
846 dprintf( &gui.screen, "modtime %d\n", param->modTime );
847#endif
848}
849
850drawDeviceIcon( param, gui.devicelist.pixmap, p, isSelected);
851
852if (gui.layout == HorizontalLayout)
853{
854p.x += images[iSelection].image->width + gui.devicelist.iconspacing;
855}
856if (gui.layout == VerticalLayout)
857{
858p.y += ( images[iSelection].image->height + font_console.chars[0]->height + gui.devicelist.iconspacing );
859}
860}
861
862// draw prev indicator
863if(start)
864blend( images[iDeviceScrollPrev].image, gui.devicelist.pixmap, centeredAt( images[iDeviceScrollPrev].image, p_prev ) );
865
866// draw next indicator
867if( end < gDeviceCount - 1 )
868blend( images[iDeviceScrollNext].image, gui.devicelist.pixmap, centeredAt( images[iDeviceScrollNext].image, p_next ) );
869
870gui.redraw = true;
871
872updateVRAM();
873
874}
875
876void clearGraphicBootPrompt()
877{
878// clear text buffer
879prompt[0] = '\0';
880prompt_pos=0;
881
882
883if(gui.bootprompt.draw == true )
884{
885gui.bootprompt.draw = false;
886gui.redraw = true;
887// this causes extra frames to be drawn
888//updateVRAM();
889}
890
891return;
892}
893
894void updateGraphicBootPrompt(int key)
895{
896if ( key == kBackspaceKey )
897prompt[--prompt_pos] = '\0';
898else
899{
900prompt[prompt_pos] = key;
901prompt_pos++;
902prompt[prompt_pos] = '\0';
903}
904
905fillPixmapWithColor( gui.bootprompt.pixmap, gui.bootprompt.bgcolor);
906
907makeRoundedCorners( gui.bootprompt.pixmap);
908
909position_t p_text = pos( gui.bootprompt.hborder , ( ( gui.bootprompt.height - font_console.chars[0]->height) ) / 2 );
910
911// print the boot prompt text
912drawStr(prompt_text, &font_console, gui.bootprompt.pixmap, p_text);
913
914// get the position of the end of the boot prompt text to display user input
915position_t p_prompt = pos( p_text.x + ( ( strlen(prompt_text) ) * font_console.chars[0]->width ), p_text.y );
916
917// calculate the position of the cursor
918intoffset = ( prompt_pos - ( ( gui.bootprompt.width / font_console.chars[0]->width ) - strlen(prompt_text) - 2 ) );
919
920if ( offset < 0)
921offset = 0;
922
923drawStr( prompt+offset, &font_console, gui.bootprompt.pixmap, p_prompt);
924
925gui.menu.draw = false;
926gui.bootprompt.draw = true;
927gui.redraw = true;
928
929updateVRAM();
930
931return;
932}
933
934inline
935void vramwrite (void *data, int width, int height)
936{
937if (VIDEO (depth) == 32 && VIDEO (rowBytes) == gui.backbuffer->width * 4)
938memcpy((uint8_t *)vram, gui.backbuffer->pixels, VIDEO (rowBytes)*VIDEO (height));
939else
940{
941uint32_t r, g, b;
942int i, j;
943for (i = 0; i < VIDEO (height); i++)
944for (j = 0; j < VIDEO (width); j++)
945{
946b = ((uint8_t *) data)[4*i*width + 4*j];
947g = ((uint8_t *) data)[4*i*width + 4*j + 1];
948r = ((uint8_t *) data)[4*i*width + 4*j + 2];
949switch (VIDEO (depth))
950{
951case 32:
952*(uint32_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*4) = (b&0xff) | ((g&0xff)<<8) | ((r&0xff)<<16);
953break;
954case 24:
955*(uint32_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*3) = ((*(uint32_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*3))&0xff000000)
956| (b&0xff) | ((g&0xff)<<8) | ((r&0xff)<<16);
957break;
958case 16:
959// Somehow 16-bit is always 15-bits really
960//*(uint16_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*2) = ((b&0xf8)>>3) | ((g&0xfc)<<3) | ((r&0xf8)<<8);
961//break;
962case 15:
963*(uint16_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*2) = ((b&0xf8)>>3) | ((g&0xf8)<<2) | ((r&0xf8)<<7);
964break;
965}
966}
967}
968}
969
970void updateVRAM()
971{
972if (gui.redraw)
973{
974if (gui.devicelist.draw)
975blend( gui.devicelist.pixmap, gui.backbuffer, gui.devicelist.pos );
976
977if (gui.bootprompt.draw)
978blend( gui.bootprompt.pixmap, gui.backbuffer, gui.bootprompt.pos );
979
980if (gui.menu.draw)
981blend( gui.menu.pixmap, gui.backbuffer, gui.menu.pos );
982
983if (gui.infobox.draw)
984blend( gui.infobox.pixmap, gui.backbuffer, gui.infobox.pos );
985}
986
987vramwrite ( gui.backbuffer->pixels, gui.backbuffer->width, gui.backbuffer->height );
988
989if (gui.redraw)
990{
991memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 );
992gui.redraw = false;
993}
994}
995
996struct putc_info {
997 char * str;
998 char * last_str;
999};
1000
1001static void
1002sputc(int c, struct putc_info * pi)
1003{
1004 if (pi->last_str)
1005 if (pi->str == pi->last_str) {
1006 *(pi->str) = '\0';
1007 return;
1008 }
1009 *(pi->str)++ = c;
1010}
1011
1012int gprintf( window_t * window, const char * fmt, ...)
1013{
1014char *formattedtext;
1015
1016va_list ap;
1017
1018struct putc_info pi;
1019
1020if ((formattedtext = malloc(1024)) != NULL) {
1021// format the text
1022va_start(ap, fmt);
1023pi.str = formattedtext;
1024pi.last_str = 0;
1025prf(fmt, ap, sputc, &pi);
1026*pi.str = '\0';
1027va_end(ap);
1028
1029position_torigin, cursor, bounds;
1030
1031int i;
1032int character;
1033
1034origin.x = MAX( window->cursor.x, window->hborder );
1035origin.y = MAX( window->cursor.y, window->vborder );
1036
1037bounds.x = ( window->width - window->hborder );
1038bounds.y = ( window->height - window->vborder );
1039
1040cursor = origin;
1041
1042font_t *font = &font_console;
1043
1044for( i=0; i< strlen(formattedtext); i++ )
1045{
1046character = formattedtext[i];
1047
1048character -= 32;
1049
1050// newline ?
1051if( formattedtext[i] == '\n' )
1052{
1053cursor.x = window->hborder;
1054cursor.y += font->height;
1055
1056if ( cursor.y > bounds.y )
1057cursor.y = origin.y;
1058
1059continue;
1060}
1061
1062// tab ?
1063if( formattedtext[i] == '\t' )
1064cursor.x += ( font->chars[0]->width * 5 );
1065
1066// draw the character
1067if( font->chars[character])
1068blend(font->chars[character], window->pixmap, cursor);
1069
1070cursor.x += font->chars[character]->width;
1071
1072// check x pos and do newline
1073if ( cursor.x > bounds.x )
1074{
1075cursor.x = origin.x;
1076cursor.y += font->height;
1077}
1078
1079// check y pos and reset to origin.y
1080if ( cursor.y > bounds.y )
1081cursor.y = origin.y;
1082}
1083
1084// update cursor postition
1085window->cursor = cursor;
1086
1087free(formattedtext);
1088
1089return 0;
1090
1091}
1092return 1;
1093}
1094
1095int dprintf( window_t * window, const char * fmt, ...)
1096{
1097char *formattedtext;
1098
1099va_list ap;
1100
1101//window = &gui.debug;
1102
1103struct putc_info pi;
1104
1105if ((formattedtext = malloc(1024)) != NULL) {
1106// format the text
1107va_start(ap, fmt);
1108pi.str = formattedtext;
1109pi.last_str = 0;
1110prf(fmt, ap, sputc, &pi);
1111*pi.str = '\0';
1112va_end(ap);
1113
1114position_torigin, cursor, bounds;
1115
1116int i;
1117int character;
1118
1119origin.x = MAX( gui.debug.cursor.x, window->hborder );
1120origin.y = MAX( gui.debug.cursor.y, window->vborder );
1121
1122bounds.x = ( window->width - window->hborder );
1123bounds.y = ( window->height - window->vborder );
1124
1125cursor = origin;
1126
1127font_t *font = &font_console;
1128
1129for( i=0; i< strlen(formattedtext); i++ )
1130{
1131character = formattedtext[i];
1132
1133character -= 32;
1134
1135// newline ?
1136if( formattedtext[i] == '\n' )
1137{
1138cursor.x = window->hborder;
1139cursor.y += font->height;
1140
1141if ( cursor.y > bounds.y )
1142cursor.y = origin.y;
1143
1144continue;
1145}
1146
1147// tab ?
1148if( formattedtext[i] == '\t' )
1149cursor.x += ( font->chars[0]->width * 5 );
1150
1151// draw the character
1152if( font->chars[character])
1153blend(font->chars[character], gui.backbuffer, cursor);
1154
1155cursor.x += font->chars[character]->width;
1156
1157// check x pos and do newline
1158if ( cursor.x > bounds.x )
1159{
1160cursor.x = origin.x;
1161cursor.y += font->height;
1162}
1163
1164// check y pos and reset to origin.y
1165if ( cursor.y > bounds.y )
1166cursor.y = origin.y;
1167}
1168
1169// update cursor postition
1170gui.debug.cursor = cursor;
1171
1172free(formattedtext);
1173
1174return 0;
1175
1176}
1177return 1;
1178}
1179
1180int vprf(const char * fmt, va_list ap)
1181{
1182int i;
1183int character;
1184
1185char *formattedtext;
1186window_t *window = &gui.screen;
1187struct putc_info pi;
1188
1189position_torigin, cursor, bounds;
1190font_t *font = &font_console;
1191
1192if ((formattedtext = malloc(1024)) != NULL) {
1193// format the text
1194pi.str = formattedtext;
1195pi.last_str = 0;
1196prf(fmt, ap, sputc, &pi);
1197*pi.str = '\0';
1198
1199origin.x = MAX( window->cursor.x, window->hborder );
1200origin.y = MAX( window->cursor.y, window->vborder );
1201bounds.x = ( window->width - ( window->hborder * 2 ) );
1202bounds.y = ( window->height - ( window->vborder * 2 ) );
1203cursor = origin;
1204
1205for( i=0; i< strlen(formattedtext); i++ )
1206{
1207character = formattedtext[i];
1208character -= 32;
1209
1210// newline ?
1211if( formattedtext[i] == '\n' )
1212{
1213cursor.x = window->hborder;
1214cursor.y += font->height;
1215if ( cursor.y > bounds.y )
1216{
1217gui.redraw = true;
1218updateVRAM();
1219cursor.y = window->vborder;
1220}
1221window->cursor.y = cursor.y;
1222continue;
1223}
1224
1225// tab ?
1226if( formattedtext[i] == '\t' )
1227{
1228cursor.x = ( cursor.x / ( font->chars[0]->width * 8 ) + 1 ) * ( font->chars[0]->width * 8 );
1229continue;
1230}
1231cursor.x += font->chars[character]->width;
1232
1233// check x pos and do newline
1234if ( cursor.x > bounds.x )
1235{
1236cursor.x = origin.x;
1237cursor.y += font->height;
1238}
1239
1240// check y pos and reset to origin.y
1241if ( cursor.y > ( bounds.y + font->chars[0]->height) )
1242{
1243gui.redraw = true;
1244updateVRAM();
1245cursor.y = window->vborder;
1246}
1247// draw the character
1248if( font->chars[character])
1249blend(font->chars[character], gui.backbuffer, cursor);
1250}
1251// save cursor postition
1252window->cursor.x = cursor.x;
1253updateVRAM();
1254free(formattedtext);
1255return 0;
1256}
1257return 1;
1258}
1259
1260void drawStr(char *ch, font_t *font, pixmap_t *blendInto, position_t p)
1261{
1262int i=0;
1263int y=0; // we need this to support multilines '\n'
1264int x=0;
1265
1266for(i=0;i<strlen(ch);i++)
1267{
1268int cha=(int)ch[i];
1269
1270cha-=32;
1271
1272// newline ?
1273if( ch[i] == '\n' )
1274{
1275x = 0;
1276y += font->height;
1277continue;
1278}
1279
1280// tab ?
1281if( ch[i] == '\t' )
1282x+=(font->chars[0]->width*5);
1283
1284if(font->chars[cha])
1285blend(font->chars[cha], blendInto, pos(p.x+x, p.y+y));
1286
1287x += font->chars[cha]->width;
1288}
1289}
1290
1291void drawStrCenteredAt(char *text, font_t *font, pixmap_t *blendInto, position_t p)
1292{
1293int i = 0;
1294int width = 0;
1295
1296// calculate the width in pixels
1297for(i=0;i<strlen(text);i++)
1298width += font->chars[text[i]-32]->width;
1299
1300p.x = ( p.x - ( width / 2 ) );
1301p.y = ( p.y - ( font->height / 2 ) );
1302
1303if ( p.x == -6 )
1304{
1305p.x = 0;
1306}
1307
1308for(i=0;i<strlen(text);i++)
1309{
1310int cha=(int)text[i];
1311
1312cha-=32;
1313
1314if(font->chars[cha])
1315{
1316blend(font->chars[cha], blendInto, p);
1317p.x += font->chars[cha]->width;
1318}
1319}
1320
1321}
1322
1323int initFont(font_t *font, image_t *data)
1324{
1325unsigned int x = 0, y = 0, x2 = 0, x3 = 0;
1326
1327int start = 0, end = 0, count = 0, space = 0;
1328
1329bool monospaced = false;
1330
1331font->height = data->image->height;
1332
1333for( x = 0; x < data->image->width; x++)
1334{
1335start = end;
1336
1337// if the pixel is red we've reached the end of the char
1338if( pixel( data->image, x, 0 ).value == 0xFFFF0000)
1339{
1340end = x + 1;
1341
1342if( (font->chars[count] = malloc(sizeof(pixmap_t)) ) )
1343{
1344font->chars[count]->width = ( end - start) - 1;
1345font->chars[count]->height = font->height;
1346
1347if ( ( font->chars[count]->pixels = malloc( font->chars[count]->width * data->image->height * 4) ) )
1348{
1349space += ( font->chars[count]->width * data->image->height * 4 );
1350// we skip the first line because there are just the red pixels for the char width
1351for( y = 1; y< (font->height); y++)
1352{
1353for( x2 = start, x3 = 0; x2 < end; x2++, x3++)
1354{
1355pixel( font->chars[count], x3, y ) = pixel( data->image, x2, y );
1356}
1357}
1358
1359// check if font is monospaced
1360if( ( count > 0 ) && ( font->width != font->chars[count]->width ) )
1361monospaced = true;
1362
1363font->width = font->chars[count]->width;
1364
1365count++;
1366}
1367}
1368}
1369}
1370
1371if(monospaced)
1372font->width = 0;
1373
1374return 0;
1375}
1376
1377void colorFont(font_t *font, uint32_t color)
1378{
1379if( !color )
1380return;
1381
1382int x, y, width, height;
1383int count = 0;
1384pixel_t *buff;
1385
1386while( font->chars[count++] )
1387{
1388width = font->chars[count-1]->width;
1389height = font->chars[count-1]->height;
1390for( y = 0; y < height; y++ )
1391{
1392for( x = 0; x < width; x++ )
1393{
1394buff = &(pixel( font->chars[count-1], x, y ));
1395if( buff->ch.a )
1396{
1397buff->ch.r = (color & 0xFFFF0000) >> 16;
1398buff->ch.g = (color & 0xFF00FF00) >> 8;
1399buff->ch.b = (color & 0xFF0000FF);
1400}
1401}
1402}
1403}
1404}
1405
1406void makeRoundedCorners(pixmap_t *p)
1407{
1408int x,y;
1409int width=p->width-1;
1410int height=p->height-1;
1411
1412// 10px rounded corner alpha values
1413uint8_t roundedCorner[10][10] =
1414{
1415{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x80, 0xC0, 0xFF},
1416{ 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF},
1417{ 0x00, 0x00, 0x00, 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1418{ 0x00, 0x00, 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1419{ 0x00, 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1420{ 0x00, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1421{ 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1422{ 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1423{ 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1424{ 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}
1425};
1426
1427uint8_t alpha=0;
1428
1429for( y=0; y<10; y++)
1430{
1431for( x=0; x<10; x++)
1432{
1433// skip if the pixel should be visible
1434if(roundedCorner[y][x] != 0xFF)
1435{
1436alpha = ( roundedCorner[y][x] ? (uint8_t) (roundedCorner[y][x] * pixel(p, x, y).ch.a) / 255 : 0 );
1437// Upper left corner
1438pixel(p, x, y).ch.a = alpha;
1439
1440// upper right corner
1441pixel(p, width-x,y).ch.a = alpha;
1442
1443// lower left corner
1444pixel(p, x, height-y).ch.a = alpha;
1445
1446// lower right corner
1447pixel(p, width-x, height-y).ch.a = alpha;
1448}
1449}
1450}
1451}
1452
1453void showInfoBox(char *title, char *text)
1454{
1455int i, key, lines, visiblelines;
1456
1457int currentline=0;
1458int cnt=0;
1459int offset=0;
1460
1461if( !title || !text )
1462return;
1463
1464position_t pos_title = pos ( gui.infobox.vborder, gui.infobox.vborder );
1465
1466// calculate number of lines in the title
1467for ( i = 0, lines = 1; i<strlen(title); i++ )
1468if( title[i] == '\n')
1469lines++;
1470
1471// y position of text is lines in title * height of font
1472position_t pos_text = pos( pos_title.x , pos_title.y + ( font_console.height * lines ));
1473
1474// calculate number of lines in the text
1475for ( i=0, lines = 1; i<strlen(text); i++ )
1476if( text[i] == '\n')
1477lines++;
1478
1479// if text ends with \n strip off
1480if( text[i] == '\n' || text[i] == '\0')
1481lines--;
1482
1483visiblelines = ( ( gui.infobox.height - ( gui.infobox.vborder * 2 ) ) / font_console.height ) - 1;
1484
1485// lets display the text and allow scroll thru using up down / arrows
1486while(1)
1487{
1488// move to current line in text
1489for( offset = 0, i = 0; offset < strlen(text); offset++ )
1490{
1491if( currentline == i)
1492break;
1493if( text[offset] =='\n')
1494i++;
1495}
1496
1497// find last visible line in text and place \0
1498for( i = offset, cnt = 0; i < strlen(text); i++)
1499{
1500if(text[i]=='\n')
1501cnt++;
1502if ( cnt == visiblelines )
1503{
1504text[i]='\0';
1505break;
1506}
1507}
1508
1509fillPixmapWithColor( gui.infobox.pixmap, gui.infobox.bgcolor);
1510
1511makeRoundedCorners( gui.infobox.pixmap);
1512
1513// print the title if present
1514if( title )
1515drawStr(title, &font_console, gui.infobox.pixmap, pos_title);
1516
1517// print the text
1518drawStr( text + offset, &font_console, gui.infobox.pixmap, pos_text);
1519
1520// restore \n in text
1521if ( cnt == visiblelines )
1522text[i] = '\n';
1523
1524position_t pos_indicator = pos( gui.infobox.width - ( images[iTextScrollPrev].image->width - ( gui.infobox.vborder / 2) ), pos_text.y );
1525
1526// draw prev indicator
1527if(offset)
1528{
1529blend( images[iTextScrollPrev].image, gui.infobox.pixmap, centeredAt( images[iTextScrollPrev].image, pos_indicator ));
1530}
1531
1532// draw next indicator
1533if( lines > ( currentline + visiblelines ) )
1534{
1535pos_indicator.y = ( gui.infobox.height - ( ( images[iTextScrollNext].image->width + gui.infobox.vborder ) / 2 ) );
1536blend( images[iTextScrollNext].image, gui.infobox.pixmap, centeredAt( images[iTextScrollNext].image, pos_indicator ) );
1537}
1538
1539gui.bootprompt.draw = false;
1540gui.infobox.draw = true;
1541gui.redraw = true;
1542
1543updateVRAM();
1544
1545key = getc();
1546
1547if( key == kUpArrowkey )
1548if( currentline > 0 )
1549currentline--;
1550
1551if( key == kDownArrowkey )
1552if( lines > ( currentline + visiblelines ) )
1553currentline++;
1554
1555if( key == kEscapeKey || key == 'q' || key == 'Q')
1556{
1557gui.infobox.draw = false;
1558gui.redraw = true;
1559updateVRAM();
1560break;
1561}
1562}
1563}
1564
1565void animateProgressBar()
1566{
1567int y;
1568
1569if( time18() > lasttime)
1570{
1571lasttime = time18();
1572
1573pixmap_t *buffBar = images[iProgressBar].image;
1574
1575uint32_t buff = buffBar->pixels[0].value;
1576
1577memcpy( buffBar->pixels, buffBar->pixels + 1, ( (buffBar->width*buffBar->height) - 1 ) * 4 );
1578
1579for( y = buffBar->height - 1; y > 0; y--)
1580pixel(buffBar, buffBar->width - 1, y) = pixel(buffBar, buffBar->width - 1, y - 1);
1581
1582pixel(buffBar, buffBar->width-1, 0).value = buff;
1583}
1584}
1585
1586void drawProgressBar(pixmap_t *blendInto, uint16_t width, position_t p, uint8_t progress)
1587{
1588if(progress>100)
1589return;
1590
1591p.x = ( p.x - ( width / 2 ) );
1592
1593int todraw = (width * progress) / 100;
1594
1595pixmap_t *buff = images[iProgressBar].image;
1596pixmap_t *buffBG = images[iProgressBarBackground].image;
1597if(!buff || !buffBG)
1598return;
1599
1600pixmap_t progressbar;
1601progressbar.pixels=malloc(width * 4 * buff->height);
1602if(!progressbar.pixels)
1603return;
1604
1605progressbar.width = width;
1606progressbar.height = buff->height;
1607
1608int x=0,x2=0,y=0;
1609
1610for(y=0; y<buff->height; y++)
1611{
1612for(x=0; x<todraw; x++, x2++)
1613{
1614if(x2 == (buff->width-1)) x2=0;
1615pixel(&progressbar, x,y).value = pixel(buff, x2,y).value;
1616}
1617x2=0;
1618}
1619
1620for(y=0; y<buff->height; y++)
1621{
1622for(x=todraw, x2 = 0; x < width - 1; x++, x2++)
1623{
1624if(x2 == (buffBG->width -2 )) x2 = 0;
1625pixel(&progressbar, x,y).value = pixel(buffBG, x2,y).value;
1626}
1627if(progress < 100)
1628pixel(&progressbar, width - 1, y).value = pixel(buffBG, buffBG->width - 1, y).value;
1629if(progress == 0)
1630pixel(&progressbar, 0, y).value = pixel(buffBG, buffBG->width - 1, y).value;
1631x2=0;
1632}
1633
1634blend(&progressbar, blendInto, p);
1635animateProgressBar();
1636free(progressbar.pixels);
1637}
1638
1639void drawInfoMenuItems()
1640{
1641int i,n;
1642
1643position_t position;
1644
1645pixmap_t *selection = images[iMenuSelection].image;
1646
1647pixmap_t *pbuff;
1648
1649fillPixmapWithColor(gui.menu.pixmap, gui.menu.bgcolor);
1650
1651makeRoundedCorners(gui.menu.pixmap);
1652
1653uint8_t offset = infoMenuNativeBoot ? 0 : infoMenuItemsCount - 1;
1654
1655position = pos(0,0);
1656
1657for ( i = 0, n = iMenuBoot; i < infoMenuItemsCount; i++, n++)
1658{
1659if (i == infoMenuSelection)
1660blend(selection, gui.menu.pixmap, position);
1661
1662pbuff = images[n].image;
1663if (offset && i >= INFOMENU_NATIVEBOOT_START && i <= INFOMENU_NATIVEBOOT_END)
1664blend( images[n + (iMenuHelp - iMenuBoot)].image , gui.menu.pixmap,
1665pos((position.x + (gui.menu.hborder / 2)), position.y + ((selection->height - pbuff->height) / 2)));
1666else
1667blend( pbuff, gui.menu.pixmap,
1668pos((position.x + (gui.menu.hborder / 2)), position.y + ((selection->height - pbuff->height) / 2)));
1669
1670drawStr(infoMenuItems[i].text, &font_console, gui.menu.pixmap,
1671pos(position.x + (pbuff->width + gui.menu.hborder),
1672position.y + ((selection->height - font_console.height) / 2)));
1673position.y += images[iMenuSelection].image->height;
1674
1675}
1676
1677gui.redraw = true;
1678}
1679
1680int drawInfoMenu()
1681{
1682drawInfoMenuItems();
1683
1684gui.menu.draw = true;
1685
1686updateVRAM();
1687
1688return 1;
1689}
1690
1691int updateInfoMenu(int key)
1692{
1693switch (key)
1694{
1695
1696case kUpArrowkey:// up arrow
1697if (infoMenuSelection > 0)
1698{
1699if(!infoMenuNativeBoot && infoMenuSelection == INFOMENU_NATIVEBOOT_END + 1)
1700infoMenuSelection -= 4;
1701
1702else
1703infoMenuSelection--;
1704drawInfoMenuItems();
1705updateVRAM();
1706
1707} else {
1708
1709gui.menu.draw = false;
1710gui.redraw = true;
1711
1712updateVRAM();
1713
1714return CLOSE_INFO_MENU;
1715}
1716break;
1717
1718case kDownArrowkey:// down arrow
1719if (infoMenuSelection < infoMenuItemsCount - 1)
1720{
1721if(!infoMenuNativeBoot && infoMenuSelection == INFOMENU_NATIVEBOOT_START - 1)
1722infoMenuSelection += 4;
1723else
1724infoMenuSelection++;
1725drawInfoMenuItems();
1726updateVRAM();
1727}
1728break;
1729
1730case kReturnKey:
1731key = 0;
1732if( infoMenuSelection == MENU_SHOW_MEMORY_INFO )
1733showInfoBox( "Memory Info. Press q to quit.\n", getMemoryInfoString());
1734
1735else if( infoMenuSelection == MENU_SHOW_VIDEO_INFO )
1736showInfoBox( getVBEInfoString(), getVBEModeInfoString() );
1737
1738else if( infoMenuSelection == MENU_SHOW_HELP )
1739showHelp();
1740
1741else
1742{
1743int buff = infoMenuSelection;
1744infoMenuSelection = 0;
1745return buff;
1746}
1747break;
1748}
1749return DO_NOT_BOOT;
1750}
1751
1752uint16_t bootImageWidth = 0;
1753uint16_t bootImageHeight = 0;
1754uint8_t *bootImageData = NULL;
1755static bool usePngImage = true;
1756
1757//==========================================================================
1758// loadBootGraphics
1759static void loadBootGraphics(void)
1760{
1761if (bootImageData != NULL) {
1762return;
1763}
1764
1765char dirspec[256];
1766
1767if ((strlen(theme_name) + 24) > sizeof(dirspec)) {
1768usePngImage = false;
1769return;
1770}
1771sprintf(dirspec, "/Extra/Themes/%s/boot.png", theme_name);
1772if (loadPngImage(dirspec, &bootImageWidth, &bootImageHeight, &bootImageData) != 0) {
1773#ifdef EMBED_THEME
1774 if ((loadEmbeddedPngImage(__boot_png, __boot_png_len, &bootImageWidth, &bootImageHeight, &bootImageData)) != 0)
1775#endif
1776usePngImage = false;
1777}
1778}
1779
1780//==========================================================================
1781// drawBootGraphics
1782void drawBootGraphics(void)
1783{
1784int pos;
1785int length;
1786const char *dummyVal;
1787bool legacy_logo;
1788uint16_t x, y;
1789
1790if (getBoolForKey("Legacy Logo", &legacy_logo, &bootInfo->bootConfig) && legacy_logo) {
1791usePngImage = false;
1792} else if (bootImageData == NULL) {
1793loadBootGraphics();
1794}
1795
1796// parse screen size parameters
1797if (getIntForKey("boot_width", &pos, &bootInfo->themeConfig) && pos > 0) {
1798screen_params[0] = pos;
1799} else {
1800screen_params[0] = DEFAULT_SCREEN_WIDTH;
1801}
1802if (getIntForKey("boot_height", &pos, &bootInfo->themeConfig) && pos > 0) {
1803screen_params[1] = pos;
1804} else {
1805screen_params[1] = DEFAULT_SCREEN_HEIGHT;
1806}
1807
1808gui.screen.width = screen_params[0];
1809gui.screen.height = screen_params[1];
1810
1811// find best matching vesa mode for our requested width & height
1812getGraphicModeParams(screen_params);
1813
1814if (bootArgs->Video.v_display == VGA_TEXT_MODE) {
1815setVideoMode(GRAPHICS_MODE, 0);
1816}
1817
1818if (getValueForKey("-checkers", &dummyVal, &length, &bootInfo->bootConfig)) {
1819drawCheckerBoard();
1820} else {
1821// Fill the background to 75% grey (same as BootX).
1822drawColorRectangle(0, 0, screen_params[0], screen_params[1], 0x01);
1823}
1824if ((bootImageData) && (usePngImage)) {
1825x = (screen_params[0] - MIN(bootImageWidth, screen_params[0])) / 2;
1826y = (screen_params[1] - MIN(bootImageHeight, screen_params[1])) / 2;
1827
1828// Draw the image in the center of the display.
1829blendImage(x, y, bootImageWidth, bootImageHeight, bootImageData);
1830} else {
1831uint8_t *appleBootPict;
1832bootImageData = NULL;
1833bootImageWidth = kAppleBootWidth;
1834bootImageHeight = kAppleBootHeight;
1835
1836// Prepare the data for the default Apple boot image.
1837appleBootPict = (uint8_t *) decodeRLE(gAppleBootPictRLE, kAppleBootRLEBlocks, bootImageWidth * bootImageHeight);
1838if (appleBootPict) {
1839convertImage(bootImageWidth, bootImageHeight, appleBootPict, &bootImageData);
1840if (bootImageData) {
1841x = (screen_params[0] - MIN(kAppleBootWidth, screen_params[0])) / 2;
1842y = (screen_params[1] - MIN(kAppleBootHeight, screen_params[1])) / 2;
1843drawDataRectangle(x, y, kAppleBootWidth, kAppleBootHeight, bootImageData);
1844free(bootImageData);
1845}
1846free(appleBootPict);
1847}
1848}
1849}
1850

Archive Download this file

Revision: 254