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
442if (gui.logo.draw)
443{
444 blend( images[iLogo].image, gui.screen.pixmap, gui.logo.pos);
445}
446
447memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 );
448}
449
450void loadThemeValues(config_file_t *theme)
451{
452unsigned int screen_width = gui.screen.width;
453unsigned int screen_height = gui.screen.height;
454unsigned int pixel;
455intalpha;// transparency level 0 (obligue) - 255 (transparent)
456uint32_t color;// color value formatted RRGGBB
457int val, len;
458const char *string;
459
460/*
461 * Parse screen parameters
462 */
463if(getColorForKey("screen_bgcolor", &color, theme ))
464gui.screen.bgcolor = (color & 0x00FFFFFF);
465
466if(getIntForKey("screen_textmargin_h", &val, theme))
467gui.screen.hborder = MIN( gui.screen.width , val );
468
469if(getIntForKey("screen_textmargin_v", &val, theme))
470gui.screen.vborder = MIN( gui.screen.height , val );
471
472/*
473 * Parse background parameters
474 */
475if(getDimensionForKey("background_pos_x", &pixel, theme, screen_width , images[iBackground].image->width ) )
476gui.background.pos.x = pixel;
477
478if(getDimensionForKey("background_pos_y", &pixel, theme, screen_height , images[iBackground].image->height ) )
479gui.background.pos.y = pixel;
480
481/*
482 * Parse logo parameters
483 */
484if(getDimensionForKey("logo_pos_x", &pixel, theme, screen_width , images[iLogo].image->width ) )
485gui.logo.pos.x = pixel;
486
487if(getDimensionForKey("logo_pos_y", &pixel, theme, screen_height , images[iLogo].image->height ) )
488gui.logo.pos.y = pixel;
489
490/*
491 * Parse progress bar parameters
492 */
493if(getDimensionForKey("progressbar_pos_x", &pixel, theme, screen_width , 0 ) )
494gui.progressbar.pos.x = pixel;
495
496if(getDimensionForKey("progressbar_pos_y", &pixel, theme, screen_height , 0 ) )
497gui.progressbar.pos.y = pixel;
498
499/*
500 * Parse countdown text parameters
501 */
502if(getDimensionForKey("countdown_pos_x", &pixel, theme, screen_width , 0 ) )
503gui.countdown.pos.x = pixel;
504
505if(getDimensionForKey("countdown_pos_y", &pixel, theme, screen_height , 0 ) )
506gui.countdown.pos.y = pixel;
507
508/*
509 * Parse devicelist parameters
510 */
511if(getIntForKey("devices_max_visible", &val, theme ))
512gui.maxdevices = MIN( val, gDeviceCount );
513
514if(getIntForKey("devices_iconspacing", &val, theme ))
515gui.devicelist.iconspacing = val;
516
517// check layout for horizontal or vertical
518gui.layout = HorizontalLayout;
519if(getValueForKey( "devices_layout", &string, &len, theme)) {
520if (!strcmp (string, "vertical")) {
521gui.layout = VerticalLayout;
522}
523}
524
525switch (gui.layout) {
526case VerticalLayout:
527gui.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);
528gui.devicelist.width = (images[iSelection].image->width + gui.devicelist.iconspacing);
529
530if(getDimensionForKey("devices_pos_x", &pixel, theme, gui.screen.width , images[iSelection].image->width ) )
531gui.devicelist.pos.x = pixel;
532
533if(getDimensionForKey("devices_pos_y", &pixel, theme, gui.screen.height , gui.devicelist.height ) )
534gui.devicelist.pos.y = pixel;
535break;
536
537case HorizontalLayout:
538default:
539gui.devicelist.width = ((images[iSelection].image->width + gui.devicelist.iconspacing) * MIN(gui.maxdevices, gDeviceCount) + (images[iDeviceScrollPrev].image->width + images[iDeviceScrollNext].image->width) + gui.devicelist.iconspacing);
540gui.devicelist.height = (images[iSelection].image->height + font_console.chars[0]->height + gui.devicelist.iconspacing);
541
542if(getDimensionForKey("devices_pos_x", &pixel, theme, gui.screen.width , gui.devicelist.width ) )
543gui.devicelist.pos.x = pixel;
544else
545gui.devicelist.pos.x = ( gui.screen.width - gui.devicelist.width ) / 2;
546
547if(getDimensionForKey("devices_pos_y", &pixel, theme, gui.screen.height , images[iSelection].image->height ) )
548gui.devicelist.pos.y = pixel;
549else
550gui.devicelist.pos.y = ( gui.screen.height - gui.devicelist.height ) / 2;
551break;
552}
553
554if(getColorForKey("devices_bgcolor", &color, theme))
555gui.devicelist.bgcolor = (color & 0x00FFFFFF);
556
557if(getIntForKey("devices_transparency", &alpha, theme))
558gui.devicelist.bgcolor = gui.devicelist.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
559
560/*
561 * Parse infobox parameters
562 */
563if(getIntForKey("infobox_width", &val, theme))
564gui.infobox.width = MIN( screen_width , val );
565
566if(getIntForKey("infobox_height", &val, theme))
567gui.infobox.height = MIN( screen_height , val );
568
569if(getDimensionForKey("infobox_pos_x", &pixel, theme, screen_width , gui.infobox.width ) )
570gui.infobox.pos.x = pixel;
571
572if(getDimensionForKey("infobox_pos_y", &pixel, theme, screen_height , gui.infobox.height ) )
573gui.infobox.pos.y = pixel;
574
575if(getIntForKey("infobox_textmargin_h", &val, theme))
576gui.infobox.hborder = MIN( gui.infobox.width , val );
577
578if(getIntForKey("infobox_textmargin_v", &val, theme))
579gui.infobox.vborder = MIN( gui.infobox.height , val );
580
581if(getColorForKey("infobox_bgcolor", &color, theme))
582gui.infobox.bgcolor = (color & 0x00FFFFFF);
583
584if(getIntForKey("infobox_transparency", &alpha, theme))
585gui.infobox.bgcolor = gui.infobox.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
586
587/*
588 * Parse menu parameters
589 */
590if(getDimensionForKey("menu_width", &pixel, theme, gui.screen.width , 0 ) )
591gui.menu.width = pixel;
592else
593gui.menu.width = images[iMenuSelection].image->width;
594
595if(getDimensionForKey("menu_height", &pixel, theme, gui.screen.height , 0 ) )
596gui.menu.height = pixel;
597else
598gui.menu.height = (infoMenuItemsCount) * images[iMenuSelection].image->height;
599
600if(getDimensionForKey("menu_pos_x", &pixel, theme, screen_width , gui.menu.width ) )
601gui.menu.pos.x = pixel;
602
603if(getDimensionForKey("menu_pos_y", &pixel, theme, screen_height , gui.menu.height ) )
604gui.menu.pos.y = pixel;
605
606if(getIntForKey("menu_textmargin_h", &val, theme))
607gui.menu.hborder = MIN( gui.menu.width , val );
608
609if(getIntForKey("menu_textmargin_v", &val, theme))
610gui.menu.vborder = MIN( gui.menu.height , val );
611
612if(getColorForKey("menu_bgcolor", &color, theme))
613gui.menu.bgcolor = (color & 0x00FFFFFF);
614
615if(getIntForKey("menu_transparency", &alpha, theme))
616gui.menu.bgcolor = gui.menu.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
617
618/*
619 * Parse bootprompt parameters
620 */
621if(getDimensionForKey("bootprompt_width", &pixel, theme, screen_width , 0 ) )
622gui.bootprompt.width = pixel;
623
624if(getIntForKey("bootprompt_height", &val, theme))
625gui.bootprompt.height = MIN( screen_height , val );
626
627if(getDimensionForKey("bootprompt_pos_x", &pixel, theme, screen_width , gui.bootprompt.width ) )
628gui.bootprompt.pos.x = pixel;
629
630if(getDimensionForKey("bootprompt_pos_y", &pixel, theme, screen_height , gui.bootprompt.height ) )
631gui.bootprompt.pos.y = pixel;
632
633if(getIntForKey("bootprompt_textmargin_h", &val, theme))
634gui.bootprompt.hborder = MIN( gui.bootprompt.width , val );
635
636if(getIntForKey("bootprompt_textmargin_v", &val, theme))
637gui.bootprompt.vborder = MIN( gui.bootprompt.height , val );
638
639if(getColorForKey("bootprompt_bgcolor", &color, theme))
640gui.bootprompt.bgcolor = (color & 0x00FFFFFF);
641
642if(getIntForKey("bootprompt_transparency", &alpha, theme))
643gui.bootprompt.bgcolor = gui.bootprompt.bgcolor | (( 255 - ( alpha & 0xFF) ) << 24);
644
645if(getColorForKey("font_small_color", &color, theme))
646gui.screen.font_small_color = (color & 0x00FFFFFF);
647
648if(getColorForKey("font_console_color", &color, theme))
649gui.screen.font_console_color = (color & 0x00FFFFFF);
650
651if (gui.devicelist.pixmap)
652{
653 free(gui.devicelist.pixmap);
654 createWindowBuffer(&gui.devicelist);
655 }
656}
657
658int initGUI(void)
659{
660intval;
661intlen;
662chardirspec[256];
663
664getValueForKey( "Theme", &theme_name, &len, &bootInfo->bootConfig );
665if ((strlen(theme_name) + 27) > sizeof(dirspec)) {
666return 1;
667}
668sprintf(dirspec, "/Extra/Themes/%s/theme.plist", theme_name);
669if (loadConfigFile(dirspec, &bootInfo->themeConfig) != 0) {
670#ifdef EMBED_THEME
671 config_file_t*config;
672
673 config = &bootInfo->themeConfig;
674 if (ParseXMLFile((char *)__theme_plist, &config->dictionary) != 0) {
675 return 1;
676 }
677#else
678return 1;
679#endif
680}
681// parse display size parameters
682if (getIntForKey("screen_width", &val, &bootInfo->themeConfig) && val > 0) {
683screen_params[0] = val;
684}
685if (getIntForKey("screen_height", &val, &bootInfo->themeConfig) && val > 0) {
686screen_params[1] = val;
687}
688
689// Initalizing GUI strucutre.
690bzero(&gui, sizeof(gui_t));
691
692// find best matching vesa mode for our requested width & height
693getGraphicModeParams(screen_params);
694
695// set our screen structure with the mode width & height
696gui.screen.width = screen_params[0];
697gui.screen.height = screen_params[1];
698
699// load graphics otherwise fail and return
700if (loadGraphics() == 0) {
701loadThemeValues(&bootInfo->themeConfig);
702colorFont(&font_small, gui.screen.font_small_color);
703colorFont(&font_console, gui.screen.font_console_color);
704
705// create the screen & window buffers
706if (createBackBuffer(&gui.screen) == 0) {
707if (createWindowBuffer(&gui.screen) == 0) {
708if (createWindowBuffer(&gui.devicelist) == 0) {
709if (createWindowBuffer(&gui.bootprompt) == 0) {
710if (createWindowBuffer(&gui.infobox) == 0) {
711if (createWindowBuffer(&gui.menu) == 0) {
712 gui.logo.draw = true;
713drawBackground();
714// lets copy the screen into the back buffer
715memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 );
716setVideoMode( GRAPHICS_MODE, 0 );
717gui.initialised = true;
718return 0;
719}
720}
721}
722}
723}
724}
725}
726return 1;
727}
728
729void drawDeviceIcon(BVRef device, pixmap_t *buffer, position_t p, bool isSelected)
730{
731int devicetype;
732
733if( diskIsCDROM(device) )
734devicetype = iDeviceCDROM;// Use CDROM icon
735else
736{
737switch (device->part_type)
738{
739case kPartitionTypeHFS:
740
741// Use HFS or HFSRAID icon depending on bvr flags.
742devicetype = (device->flags & kBVFlagBooter) ? iDeviceHFSRAID : iDeviceHFS;
743break;
744
745case kPartitionTypeHPFS:
746devicetype = iDeviceNTFS;// Use HPFS / NTFS icon
747break;
748
749case kPartitionTypeFAT16:
750devicetype = iDeviceFAT16;// Use FAT16 icon
751break;
752
753case kPartitionTypeFAT32:
754devicetype = iDeviceFAT32;// Use FAT32 icon
755break;
756
757case kPartitionTypeEXT3:
758devicetype = iDeviceEXT3;// Use EXT2/3 icon
759break;
760
761default:
762devicetype = iDeviceGeneric;// Use Generic icon
763break;
764}
765}
766
767// Draw the selection image and use the next (device_*_o) image for the selected item.
768 if (isSelected)
769{
770blend(images[iSelection].image, buffer, centeredAt(images[iSelection].image, p));
771devicetype++;
772}
773
774// draw icon
775blend( images[devicetype].image, buffer, centeredAt( images[devicetype].image, p ));
776
777p.y += (images[iSelection].image->height / 2) + font_console.chars[0]->height;
778
779// draw volume label
780drawStrCenteredAt( device->label, &font_small, buffer, p);
781
782}
783
784void drawDeviceList (int start, int end, int selection)
785{
786int i;
787position_t p, p_prev, p_next;
788
789//uint8_tmaxDevices = MIN( gui.maxdevices, menucount );
790
791fillPixmapWithColor( gui.devicelist.pixmap, gui.devicelist.bgcolor);
792
793makeRoundedCorners( gui.devicelist.pixmap);
794
795switch (gui.layout)
796{
797
798case VerticalLayout:
799p.x = (gui.devicelist.width /2);
800p.y = ( ( images[iSelection].image->height / 2 ) + images[iDeviceScrollPrev].image->height + gui.devicelist.iconspacing );
801
802// place scroll indicators at top & bottom edges
803p_prev = pos ( gui.devicelist.width / 2 , gui.devicelist.iconspacing );
804p_next = pos ( p_prev.x, gui.devicelist.height - gui.devicelist.iconspacing );
805
806break;
807
808default:// use Horizontal layout as the default
809
810case HorizontalLayout:
811p.x = (gui.devicelist.width - ( gui.devicelist.width / gui.maxdevices ) * gui.maxdevices ) / 2 + ( images[iSelection].image->width / 2) + images[iDeviceScrollPrev].image->width + gui.devicelist.iconspacing;
812p.y = ((gui.devicelist.height - font_console.chars[0]->height ) - images[iSelection].image->height) / 2 + ( images[iSelection].image->height / 2 );
813
814// place scroll indicators at left & right edges
815p_prev = pos ( images[iDeviceScrollPrev].image->width / 2 + gui.devicelist.iconspacing / 2, gui.devicelist.height / 2 );
816p_next = pos ( gui.devicelist.width - ( images[iDeviceScrollNext].image->width / 2 + gui.devicelist.iconspacing / 2), gui.devicelist.height / 2 );
817
818break;
819
820}
821
822// draw visible device icons
823for (i = 0; i < gui.maxdevices; i++)
824{
825BVRef param = menuItems[start + i].param;
826
827 bool isSelected = ((start + i) == selection) ? true : false;
828if (isSelected)
829{
830 if (param->flags & kBVFlagNativeBoot)
831 {
832 infoMenuNativeBoot = true;
833 }
834 else
835 {
836 infoMenuNativeBoot = false;
837 if(infoMenuSelection >= INFOMENU_NATIVEBOOT_START && infoMenuSelection <= INFOMENU_NATIVEBOOT_END)
838 infoMenuSelection = 0;
839 }
840
841if(gui.menu.draw)
842drawInfoMenuItems();
843
844#if DEBUG
845 gui.debug.cursor = pos( 10, 100);
846 dprintf( &gui.screen, "label %s\n", param->label );
847 dprintf( &gui.screen, "biosdev 0x%x\n", param->biosdev );
848 dprintf(&gui.screen, "width %d\n", gui.screen.width);
849 dprintf(&gui.screen, "height %d\n", gui.screen.height);
850 dprintf( &gui.screen, "type 0x%x\n", param->type );
851 dprintf( &gui.screen, "flags 0x%x\n", param->flags );
852 dprintf( &gui.screen, "part_no %d\n", param->part_no );
853 dprintf( &gui.screen, "part_boff 0x%x\n", param->part_boff );
854 dprintf( &gui.screen, "part_type 0x%x\n", param->part_type );
855 dprintf( &gui.screen, "bps 0x%x\n", param->bps );
856 dprintf( &gui.screen, "name %s\n", param->name );
857 dprintf( &gui.screen, "type_name %s\n", param->type_name );
858 dprintf( &gui.screen, "modtime %d\n", param->modTime );
859#endif
860}
861
862drawDeviceIcon( param, gui.devicelist.pixmap, p, isSelected);
863
864if (gui.layout == HorizontalLayout)
865{
866p.x += images[iSelection].image->width + gui.devicelist.iconspacing;
867}
868if (gui.layout == VerticalLayout)
869{
870p.y += ( images[iSelection].image->height + font_console.chars[0]->height + gui.devicelist.iconspacing );
871}
872}
873
874// draw prev indicator
875if(start)
876blend( images[iDeviceScrollPrev].image, gui.devicelist.pixmap, centeredAt( images[iDeviceScrollPrev].image, p_prev ) );
877
878// draw next indicator
879if( end < gDeviceCount - 1 )
880blend( images[iDeviceScrollNext].image, gui.devicelist.pixmap, centeredAt( images[iDeviceScrollNext].image, p_next ) );
881
882gui.redraw = true;
883
884updateVRAM();
885
886}
887
888void clearGraphicBootPrompt()
889{
890// clear text buffer
891prompt[0] = '\0';
892prompt_pos=0;
893
894
895if(gui.bootprompt.draw == true )
896{
897gui.bootprompt.draw = false;
898gui.redraw = true;
899// this causes extra frames to be drawn
900//updateVRAM();
901}
902
903return;
904}
905
906void updateGraphicBootPrompt(int key)
907{
908if ( key == kBackspaceKey )
909prompt[--prompt_pos] = '\0';
910else
911{
912prompt[prompt_pos] = key;
913prompt_pos++;
914prompt[prompt_pos] = '\0';
915}
916
917fillPixmapWithColor( gui.bootprompt.pixmap, gui.bootprompt.bgcolor);
918
919makeRoundedCorners( gui.bootprompt.pixmap);
920
921position_t p_text = pos( gui.bootprompt.hborder , ( ( gui.bootprompt.height - font_console.chars[0]->height) ) / 2 );
922
923// print the boot prompt text
924drawStr(prompt_text, &font_console, gui.bootprompt.pixmap, p_text);
925
926// get the position of the end of the boot prompt text to display user input
927position_t p_prompt = pos( p_text.x + ( ( strlen(prompt_text) ) * font_console.chars[0]->width ), p_text.y );
928
929// calculate the position of the cursor
930intoffset = ( prompt_pos - ( ( gui.bootprompt.width / font_console.chars[0]->width ) - strlen(prompt_text) - 2 ) );
931
932if ( offset < 0)
933offset = 0;
934
935drawStr( prompt+offset, &font_console, gui.bootprompt.pixmap, p_prompt);
936
937gui.menu.draw = false;
938gui.bootprompt.draw = true;
939gui.redraw = true;
940
941updateVRAM();
942
943return;
944}
945
946inline
947void vramwrite (void *data, int width, int height)
948{
949if (VIDEO (depth) == 32 && VIDEO (rowBytes) == gui.backbuffer->width * 4)
950memcpy((uint8_t *)vram, gui.backbuffer->pixels, VIDEO (rowBytes)*VIDEO (height));
951else
952{
953uint32_t r, g, b;
954int i, j;
955for (i = 0; i < VIDEO (height); i++)
956for (j = 0; j < VIDEO (width); j++)
957{
958b = ((uint8_t *) data)[4*i*width + 4*j];
959g = ((uint8_t *) data)[4*i*width + 4*j + 1];
960r = ((uint8_t *) data)[4*i*width + 4*j + 2];
961switch (VIDEO (depth))
962{
963case 32:
964*(uint32_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*4) = (b&0xff) | ((g&0xff)<<8) | ((r&0xff)<<16);
965break;
966case 24:
967*(uint32_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*3) = ((*(uint32_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*3))&0xff000000)
968| (b&0xff) | ((g&0xff)<<8) | ((r&0xff)<<16);
969break;
970case 16:
971// Somehow 16-bit is always 15-bits really
972//*(uint16_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*2) = ((b&0xf8)>>3) | ((g&0xfc)<<3) | ((r&0xf8)<<8);
973//break;
974case 15:
975*(uint16_t *)(((uint8_t *)vram)+i*VIDEO (rowBytes) + j*2) = ((b&0xf8)>>3) | ((g&0xf8)<<2) | ((r&0xf8)<<7);
976break;
977}
978}
979}
980}
981
982void updateVRAM()
983{
984if (gui.redraw)
985{
986if (gui.devicelist.draw)
987blend( gui.devicelist.pixmap, gui.backbuffer, gui.devicelist.pos );
988
989if (gui.bootprompt.draw)
990blend( gui.bootprompt.pixmap, gui.backbuffer, gui.bootprompt.pos );
991
992if (gui.menu.draw)
993blend( gui.menu.pixmap, gui.backbuffer, gui.menu.pos );
994
995if (gui.infobox.draw)
996blend( gui.infobox.pixmap, gui.backbuffer, gui.infobox.pos );
997}
998
999vramwrite ( gui.backbuffer->pixels, gui.backbuffer->width, gui.backbuffer->height );
1000
1001if (gui.redraw)
1002{
1003memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 );
1004gui.redraw = false;
1005}
1006}
1007
1008struct putc_info {
1009 char * str;
1010 char * last_str;
1011};
1012
1013static void
1014sputc(int c, struct putc_info * pi)
1015{
1016 if (pi->last_str)
1017 if (pi->str == pi->last_str) {
1018 *(pi->str) = '\0';
1019 return;
1020 }
1021 *(pi->str)++ = c;
1022}
1023
1024int gprintf( window_t * window, const char * fmt, ...)
1025{
1026char *formattedtext;
1027
1028va_list ap;
1029
1030struct putc_info pi;
1031
1032if ((formattedtext = malloc(1024)) != NULL) {
1033// format the text
1034va_start(ap, fmt);
1035pi.str = formattedtext;
1036pi.last_str = 0;
1037prf(fmt, ap, sputc, &pi);
1038*pi.str = '\0';
1039va_end(ap);
1040
1041position_torigin, cursor, bounds;
1042
1043int i;
1044int character;
1045
1046origin.x = MAX( window->cursor.x, window->hborder );
1047origin.y = MAX( window->cursor.y, window->vborder );
1048
1049bounds.x = ( window->width - window->hborder );
1050bounds.y = ( window->height - window->vborder );
1051
1052cursor = origin;
1053
1054font_t *font = &font_console;
1055
1056for( i=0; i< strlen(formattedtext); i++ )
1057{
1058character = formattedtext[i];
1059
1060character -= 32;
1061
1062// newline ?
1063if( formattedtext[i] == '\n' )
1064{
1065cursor.x = window->hborder;
1066cursor.y += font->height;
1067
1068if ( cursor.y > bounds.y )
1069cursor.y = origin.y;
1070
1071continue;
1072}
1073
1074// tab ?
1075if( formattedtext[i] == '\t' )
1076cursor.x += ( font->chars[0]->width * 5 );
1077
1078// draw the character
1079if( font->chars[character])
1080blend(font->chars[character], window->pixmap, cursor);
1081
1082cursor.x += font->chars[character]->width;
1083
1084// check x pos and do newline
1085if ( cursor.x > bounds.x )
1086{
1087cursor.x = origin.x;
1088cursor.y += font->height;
1089}
1090
1091// check y pos and reset to origin.y
1092if ( cursor.y > bounds.y )
1093cursor.y = origin.y;
1094}
1095
1096// update cursor postition
1097window->cursor = cursor;
1098
1099free(formattedtext);
1100
1101return 0;
1102
1103}
1104return 1;
1105}
1106
1107int dprintf( window_t * window, const char * fmt, ...)
1108{
1109char *formattedtext;
1110
1111va_list ap;
1112
1113//window = &gui.debug;
1114
1115struct putc_info pi;
1116
1117if ((formattedtext = malloc(1024)) != NULL) {
1118// format the text
1119va_start(ap, fmt);
1120pi.str = formattedtext;
1121pi.last_str = 0;
1122prf(fmt, ap, sputc, &pi);
1123*pi.str = '\0';
1124va_end(ap);
1125
1126position_torigin, cursor, bounds;
1127
1128int i;
1129int character;
1130
1131origin.x = MAX( gui.debug.cursor.x, window->hborder );
1132origin.y = MAX( gui.debug.cursor.y, window->vborder );
1133
1134bounds.x = ( window->width - window->hborder );
1135bounds.y = ( window->height - window->vborder );
1136
1137cursor = origin;
1138
1139font_t *font = &font_console;
1140
1141for( i=0; i< strlen(formattedtext); i++ )
1142{
1143character = formattedtext[i];
1144
1145character -= 32;
1146
1147// newline ?
1148if( formattedtext[i] == '\n' )
1149{
1150cursor.x = window->hborder;
1151cursor.y += font->height;
1152
1153if ( cursor.y > bounds.y )
1154cursor.y = origin.y;
1155
1156continue;
1157}
1158
1159// tab ?
1160if( formattedtext[i] == '\t' )
1161cursor.x += ( font->chars[0]->width * 5 );
1162
1163// draw the character
1164if( font->chars[character])
1165blend(font->chars[character], gui.backbuffer, cursor);
1166
1167cursor.x += font->chars[character]->width;
1168
1169// check x pos and do newline
1170if ( cursor.x > bounds.x )
1171{
1172cursor.x = origin.x;
1173cursor.y += font->height;
1174}
1175
1176// check y pos and reset to origin.y
1177if ( cursor.y > bounds.y )
1178cursor.y = origin.y;
1179}
1180
1181// update cursor postition
1182gui.debug.cursor = cursor;
1183
1184free(formattedtext);
1185
1186return 0;
1187
1188}
1189return 1;
1190}
1191
1192int vprf(const char * fmt, va_list ap)
1193{
1194int i;
1195int character;
1196
1197char *formattedtext;
1198window_t *window = &gui.screen;
1199struct putc_info pi;
1200
1201position_torigin, cursor, bounds;
1202font_t *font = &font_console;
1203
1204if ((formattedtext = malloc(1024)) != NULL) {
1205// format the text
1206pi.str = formattedtext;
1207pi.last_str = 0;
1208prf(fmt, ap, sputc, &pi);
1209*pi.str = '\0';
1210
1211origin.x = MAX( window->cursor.x, window->hborder );
1212origin.y = MAX( window->cursor.y, window->vborder );
1213bounds.x = ( window->width - ( window->hborder * 2 ) );
1214bounds.y = ( window->height - ( window->vborder * 2 ) );
1215cursor = origin;
1216
1217for( i=0; i< strlen(formattedtext); i++ )
1218{
1219character = formattedtext[i];
1220character -= 32;
1221
1222// newline ?
1223if( formattedtext[i] == '\n' )
1224{
1225cursor.x = window->hborder;
1226cursor.y += font->height;
1227if ( cursor.y > bounds.y )
1228{
1229gui.redraw = true;
1230updateVRAM();
1231cursor.y = window->vborder;
1232}
1233window->cursor.y = cursor.y;
1234continue;
1235}
1236
1237// tab ?
1238if( formattedtext[i] == '\t' )
1239{
1240cursor.x = ( cursor.x / ( font->chars[0]->width * 8 ) + 1 ) * ( font->chars[0]->width * 8 );
1241continue;
1242}
1243cursor.x += font->chars[character]->width;
1244
1245// check x pos and do newline
1246if ( cursor.x > bounds.x )
1247{
1248cursor.x = origin.x;
1249cursor.y += font->height;
1250}
1251
1252// check y pos and reset to origin.y
1253if ( cursor.y > ( bounds.y + font->chars[0]->height) )
1254{
1255gui.redraw = true;
1256updateVRAM();
1257cursor.y = window->vborder;
1258}
1259// draw the character
1260if( font->chars[character])
1261blend(font->chars[character], gui.backbuffer, cursor);
1262}
1263// save cursor postition
1264window->cursor.x = cursor.x;
1265updateVRAM();
1266free(formattedtext);
1267return 0;
1268}
1269return 1;
1270}
1271
1272void drawStr(char *ch, font_t *font, pixmap_t *blendInto, position_t p)
1273{
1274int i=0;
1275int y=0; // we need this to support multilines '\n'
1276int x=0;
1277
1278for(i=0;i<strlen(ch);i++)
1279{
1280int cha=(int)ch[i];
1281
1282cha-=32;
1283
1284// newline ?
1285if( ch[i] == '\n' )
1286{
1287x = 0;
1288y += font->height;
1289continue;
1290}
1291
1292// tab ?
1293if( ch[i] == '\t' )
1294x+=(font->chars[0]->width*5);
1295
1296if(font->chars[cha])
1297blend(font->chars[cha], blendInto, pos(p.x+x, p.y+y));
1298
1299x += font->chars[cha]->width;
1300}
1301}
1302
1303void drawStrCenteredAt(char *text, font_t *font, pixmap_t *blendInto, position_t p)
1304{
1305int i = 0;
1306int width = 0;
1307
1308// calculate the width in pixels
1309for(i=0;i<strlen(text);i++)
1310width += font->chars[text[i]-32]->width;
1311
1312p.x = ( p.x - ( width / 2 ) );
1313p.y = ( p.y - ( font->height / 2 ) );
1314
1315if ( p.x == -6 )
1316{
1317p.x = 0;
1318}
1319
1320for(i=0;i<strlen(text);i++)
1321{
1322int cha=(int)text[i];
1323
1324cha-=32;
1325
1326if(font->chars[cha])
1327{
1328blend(font->chars[cha], blendInto, p);
1329p.x += font->chars[cha]->width;
1330}
1331}
1332
1333}
1334
1335int initFont(font_t *font, image_t *data)
1336{
1337unsigned int x = 0, y = 0, x2 = 0, x3 = 0;
1338
1339int start = 0, end = 0, count = 0, space = 0;
1340
1341bool monospaced = false;
1342
1343font->height = data->image->height;
1344
1345for( x = 0; x < data->image->width; x++)
1346{
1347start = end;
1348
1349// if the pixel is red we've reached the end of the char
1350if( pixel( data->image, x, 0 ).value == 0xFFFF0000)
1351{
1352end = x + 1;
1353
1354if( (font->chars[count] = malloc(sizeof(pixmap_t)) ) )
1355{
1356font->chars[count]->width = ( end - start) - 1;
1357font->chars[count]->height = font->height;
1358
1359if ( ( font->chars[count]->pixels = malloc( font->chars[count]->width * data->image->height * 4) ) )
1360{
1361space += ( font->chars[count]->width * data->image->height * 4 );
1362// we skip the first line because there are just the red pixels for the char width
1363for( y = 1; y< (font->height); y++)
1364{
1365for( x2 = start, x3 = 0; x2 < end; x2++, x3++)
1366{
1367pixel( font->chars[count], x3, y ) = pixel( data->image, x2, y );
1368}
1369}
1370
1371// check if font is monospaced
1372if( ( count > 0 ) && ( font->width != font->chars[count]->width ) )
1373monospaced = true;
1374
1375font->width = font->chars[count]->width;
1376
1377count++;
1378}
1379}
1380}
1381}
1382
1383if(monospaced)
1384font->width = 0;
1385
1386return 0;
1387}
1388
1389void colorFont(font_t *font, uint32_t color)
1390{
1391if( !color )
1392return;
1393
1394int x, y, width, height;
1395int count = 0;
1396pixel_t *buff;
1397
1398while( font->chars[count++] )
1399{
1400width = font->chars[count-1]->width;
1401height = font->chars[count-1]->height;
1402for( y = 0; y < height; y++ )
1403{
1404for( x = 0; x < width; x++ )
1405{
1406buff = &(pixel( font->chars[count-1], x, y ));
1407if( buff->ch.a )
1408{
1409buff->ch.r = (color & 0xFFFF0000) >> 16;
1410buff->ch.g = (color & 0xFF00FF00) >> 8;
1411buff->ch.b = (color & 0xFF0000FF);
1412}
1413}
1414}
1415}
1416}
1417
1418void makeRoundedCorners(pixmap_t *p)
1419{
1420int x,y;
1421int width=p->width-1;
1422int height=p->height-1;
1423
1424// 10px rounded corner alpha values
1425uint8_t roundedCorner[10][10] =
1426{
1427{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x80, 0xC0, 0xFF},
1428{ 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF},
1429{ 0x00, 0x00, 0x00, 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1430{ 0x00, 0x00, 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1431{ 0x00, 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1432{ 0x00, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1433{ 0x40, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1434{ 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1435{ 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
1436{ 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}
1437};
1438
1439uint8_t alpha=0;
1440
1441for( y=0; y<10; y++)
1442{
1443for( x=0; x<10; x++)
1444{
1445// skip if the pixel should be visible
1446if(roundedCorner[y][x] != 0xFF)
1447{
1448alpha = ( roundedCorner[y][x] ? (uint8_t) (roundedCorner[y][x] * pixel(p, x, y).ch.a) / 255 : 0 );
1449// Upper left corner
1450pixel(p, x, y).ch.a = alpha;
1451
1452// upper right corner
1453pixel(p, width-x,y).ch.a = alpha;
1454
1455// lower left corner
1456pixel(p, x, height-y).ch.a = alpha;
1457
1458// lower right corner
1459pixel(p, width-x, height-y).ch.a = alpha;
1460}
1461}
1462}
1463}
1464
1465void showInfoBox(char *title, char *text)
1466{
1467int i, key, lines, visiblelines;
1468
1469int currentline=0;
1470int cnt=0;
1471int offset=0;
1472
1473if( !title || !text )
1474return;
1475
1476position_t pos_title = pos ( gui.infobox.vborder, gui.infobox.vborder );
1477
1478// calculate number of lines in the title
1479for ( i = 0, lines = 1; i<strlen(title); i++ )
1480if( title[i] == '\n')
1481lines++;
1482
1483// y position of text is lines in title * height of font
1484position_t pos_text = pos( pos_title.x , pos_title.y + ( font_console.height * lines ));
1485
1486// calculate number of lines in the text
1487for ( i=0, lines = 1; i<strlen(text); i++ )
1488if( text[i] == '\n')
1489lines++;
1490
1491// if text ends with \n strip off
1492if( text[i] == '\n' || text[i] == '\0')
1493lines--;
1494
1495visiblelines = ( ( gui.infobox.height - ( gui.infobox.vborder * 2 ) ) / font_console.height ) - 1;
1496
1497// lets display the text and allow scroll thru using up down / arrows
1498while(1)
1499{
1500// move to current line in text
1501for( offset = 0, i = 0; offset < strlen(text); offset++ )
1502{
1503if( currentline == i)
1504break;
1505if( text[offset] =='\n')
1506i++;
1507}
1508
1509// find last visible line in text and place \0
1510for( i = offset, cnt = 0; i < strlen(text); i++)
1511{
1512if(text[i]=='\n')
1513cnt++;
1514if ( cnt == visiblelines )
1515{
1516text[i]='\0';
1517break;
1518}
1519}
1520
1521fillPixmapWithColor( gui.infobox.pixmap, gui.infobox.bgcolor);
1522
1523makeRoundedCorners( gui.infobox.pixmap);
1524
1525// print the title if present
1526if( title )
1527drawStr(title, &font_console, gui.infobox.pixmap, pos_title);
1528
1529// print the text
1530drawStr( text + offset, &font_console, gui.infobox.pixmap, pos_text);
1531
1532// restore \n in text
1533if ( cnt == visiblelines )
1534text[i] = '\n';
1535
1536position_t pos_indicator = pos( gui.infobox.width - ( images[iTextScrollPrev].image->width - ( gui.infobox.vborder / 2) ), pos_text.y );
1537
1538// draw prev indicator
1539if(offset)
1540{
1541blend( images[iTextScrollPrev].image, gui.infobox.pixmap, centeredAt( images[iTextScrollPrev].image, pos_indicator ));
1542}
1543
1544// draw next indicator
1545if( lines > ( currentline + visiblelines ) )
1546{
1547pos_indicator.y = ( gui.infobox.height - ( ( images[iTextScrollNext].image->width + gui.infobox.vborder ) / 2 ) );
1548blend( images[iTextScrollNext].image, gui.infobox.pixmap, centeredAt( images[iTextScrollNext].image, pos_indicator ) );
1549}
1550
1551gui.bootprompt.draw = false;
1552gui.infobox.draw = true;
1553gui.redraw = true;
1554
1555updateVRAM();
1556
1557key = getc();
1558
1559if( key == kUpArrowkey )
1560if( currentline > 0 )
1561currentline--;
1562
1563if( key == kDownArrowkey )
1564if( lines > ( currentline + visiblelines ) )
1565currentline++;
1566
1567if( key == kEscapeKey || key == 'q' || key == 'Q')
1568{
1569gui.infobox.draw = false;
1570gui.redraw = true;
1571updateVRAM();
1572break;
1573}
1574}
1575}
1576
1577void animateProgressBar()
1578{
1579int y;
1580
1581if( time18() > lasttime)
1582{
1583lasttime = time18();
1584
1585pixmap_t *buffBar = images[iProgressBar].image;
1586
1587uint32_t buff = buffBar->pixels[0].value;
1588
1589memcpy( buffBar->pixels, buffBar->pixels + 1, ( (buffBar->width*buffBar->height) - 1 ) * 4 );
1590
1591for( y = buffBar->height - 1; y > 0; y--)
1592pixel(buffBar, buffBar->width - 1, y) = pixel(buffBar, buffBar->width - 1, y - 1);
1593
1594pixel(buffBar, buffBar->width-1, 0).value = buff;
1595}
1596}
1597
1598void drawProgressBar(pixmap_t *blendInto, uint16_t width, position_t p, uint8_t progress)
1599{
1600if(progress>100)
1601return;
1602
1603p.x = ( p.x - ( width / 2 ) );
1604
1605int todraw = (width * progress) / 100;
1606
1607pixmap_t *buff = images[iProgressBar].image;
1608pixmap_t *buffBG = images[iProgressBarBackground].image;
1609if(!buff || !buffBG)
1610return;
1611
1612pixmap_t progressbar;
1613progressbar.pixels=malloc(width * 4 * buff->height);
1614if(!progressbar.pixels)
1615return;
1616
1617progressbar.width = width;
1618progressbar.height = buff->height;
1619
1620int x=0,x2=0,y=0;
1621
1622for(y=0; y<buff->height; y++)
1623{
1624for(x=0; x<todraw; x++, x2++)
1625{
1626if(x2 == (buff->width-1)) x2=0;
1627pixel(&progressbar, x,y).value = pixel(buff, x2,y).value;
1628}
1629x2=0;
1630}
1631
1632for(y=0; y<buff->height; y++)
1633{
1634for(x=todraw, x2 = 0; x < width - 1; x++, x2++)
1635{
1636if(x2 == (buffBG->width -2 )) x2 = 0;
1637pixel(&progressbar, x,y).value = pixel(buffBG, x2,y).value;
1638}
1639if(progress < 100)
1640pixel(&progressbar, width - 1, y).value = pixel(buffBG, buffBG->width - 1, y).value;
1641if(progress == 0)
1642pixel(&progressbar, 0, y).value = pixel(buffBG, buffBG->width - 1, y).value;
1643x2=0;
1644}
1645
1646blend(&progressbar, blendInto, p);
1647animateProgressBar();
1648free(progressbar.pixels);
1649}
1650
1651void drawInfoMenuItems()
1652{
1653int i,n;
1654
1655position_t position;
1656
1657pixmap_t *selection = images[iMenuSelection].image;
1658
1659pixmap_t *pbuff;
1660
1661fillPixmapWithColor(gui.menu.pixmap, gui.menu.bgcolor);
1662
1663makeRoundedCorners(gui.menu.pixmap);
1664
1665uint8_t offset = infoMenuNativeBoot ? 0 : infoMenuItemsCount - 1;
1666
1667position = pos(0,0);
1668
1669for ( i = 0, n = iMenuBoot; i < infoMenuItemsCount; i++, n++)
1670{
1671if (i == infoMenuSelection)
1672blend(selection, gui.menu.pixmap, position);
1673
1674pbuff = images[n].image;
1675if (offset && i >= INFOMENU_NATIVEBOOT_START && i <= INFOMENU_NATIVEBOOT_END)
1676blend( images[n + (iMenuHelp - iMenuBoot)].image , gui.menu.pixmap,
1677pos((position.x + (gui.menu.hborder / 2)), position.y + ((selection->height - pbuff->height) / 2)));
1678else
1679blend( pbuff, gui.menu.pixmap,
1680pos((position.x + (gui.menu.hborder / 2)), position.y + ((selection->height - pbuff->height) / 2)));
1681
1682drawStr(infoMenuItems[i].text, &font_console, gui.menu.pixmap,
1683pos(position.x + (pbuff->width + gui.menu.hborder),
1684position.y + ((selection->height - font_console.height) / 2)));
1685position.y += images[iMenuSelection].image->height;
1686
1687}
1688
1689gui.redraw = true;
1690}
1691
1692int drawInfoMenu()
1693{
1694drawInfoMenuItems();
1695
1696gui.menu.draw = true;
1697
1698updateVRAM();
1699
1700return 1;
1701}
1702
1703int updateInfoMenu(int key)
1704{
1705switch (key)
1706{
1707
1708case kUpArrowkey:// up arrow
1709if (infoMenuSelection > 0)
1710{
1711if(!infoMenuNativeBoot && infoMenuSelection == INFOMENU_NATIVEBOOT_END + 1)
1712infoMenuSelection -= 4;
1713
1714else
1715infoMenuSelection--;
1716drawInfoMenuItems();
1717updateVRAM();
1718
1719} else {
1720
1721gui.menu.draw = false;
1722gui.redraw = true;
1723
1724updateVRAM();
1725
1726return CLOSE_INFO_MENU;
1727}
1728break;
1729
1730case kDownArrowkey:// down arrow
1731if (infoMenuSelection < infoMenuItemsCount - 1)
1732{
1733if(!infoMenuNativeBoot && infoMenuSelection == INFOMENU_NATIVEBOOT_START - 1)
1734infoMenuSelection += 4;
1735else
1736infoMenuSelection++;
1737drawInfoMenuItems();
1738updateVRAM();
1739}
1740break;
1741
1742case kReturnKey:
1743key = 0;
1744if( infoMenuSelection == MENU_SHOW_MEMORY_INFO )
1745showInfoBox( "Memory Info. Press q to quit.\n", getMemoryInfoString());
1746
1747else if( infoMenuSelection == MENU_SHOW_VIDEO_INFO )
1748showInfoBox( getVBEInfoString(), getVBEModeInfoString() );
1749
1750else if( infoMenuSelection == MENU_SHOW_HELP )
1751showHelp();
1752
1753else
1754{
1755int buff = infoMenuSelection;
1756infoMenuSelection = 0;
1757return buff;
1758}
1759break;
1760}
1761return DO_NOT_BOOT;
1762}
1763
1764uint16_t bootImageWidth = 0;
1765uint16_t bootImageHeight = 0;
1766uint8_t *bootImageData = NULL;
1767static bool usePngImage = true;
1768
1769//==========================================================================
1770// loadBootGraphics
1771static void loadBootGraphics(void)
1772{
1773if (bootImageData != NULL) {
1774return;
1775}
1776
1777char dirspec[256];
1778
1779if ((strlen(theme_name) + 24) > sizeof(dirspec)) {
1780usePngImage = false;
1781return;
1782}
1783sprintf(dirspec, "/Extra/Themes/%s/boot.png", theme_name);
1784if (loadPngImage(dirspec, &bootImageWidth, &bootImageHeight, &bootImageData) != 0) {
1785#ifdef EMBED_THEME
1786 if ((loadEmbeddedPngImage(__boot_png, __boot_png_len, &bootImageWidth, &bootImageHeight, &bootImageData)) != 0)
1787#endif
1788usePngImage = false;
1789}
1790}
1791
1792//==========================================================================
1793// drawBootGraphics
1794void drawBootGraphics(void)
1795{
1796int pos;
1797int length;
1798const char *dummyVal;
1799int oldScreenWidth, oldScreenHeight;
1800bool legacy_logo;
1801uint16_t x, y;
1802
1803if (getBoolForKey("Legacy Logo", &legacy_logo, &bootInfo->bootConfig) && legacy_logo) {
1804usePngImage = false;
1805} else if (bootImageData == NULL) {
1806loadBootGraphics();
1807}
1808
1809// parse screen size parameters
1810if (getIntForKey("boot_width", &pos, &bootInfo->themeConfig) && pos > 0) {
1811screen_params[0] = pos;
1812} else {
1813screen_params[0] = DEFAULT_SCREEN_WIDTH;
1814}
1815if (getIntForKey("boot_height", &pos, &bootInfo->themeConfig) && pos > 0) {
1816screen_params[1] = pos;
1817} else {
1818screen_params[1] = DEFAULT_SCREEN_HEIGHT;
1819}
1820
1821 // Save current screen resolution.
1822oldScreenWidth = gui.screen.width;
1823oldScreenHeight = gui.screen.height;
1824
1825gui.screen.width = screen_params[0];
1826gui.screen.height = screen_params[1];
1827
1828// find best matching vesa mode for our requested width & height
1829getGraphicModeParams(screen_params);
1830
1831 // Set graphics mode if the booter was in text mode or the screen resolution has changed.
1832if (bootArgs->Video.v_display == VGA_TEXT_MODE
1833|| (screen_params[0] != oldScreenWidth && screen_params[1] != oldScreenHeight) )
1834{
1835setVideoMode(GRAPHICS_MODE, 0);
1836}
1837
1838if (getValueForKey("-checkers", &dummyVal, &length, &bootInfo->bootConfig)) {
1839drawCheckerBoard();
1840} else {
1841// Fill the background to 75% grey (same as BootX).
1842drawColorRectangle(0, 0, screen_params[0], screen_params[1], 0x01);
1843}
1844if ((bootImageData) && (usePngImage)) {
1845x = (screen_params[0] - MIN(bootImageWidth, screen_params[0])) / 2;
1846y = (screen_params[1] - MIN(bootImageHeight, screen_params[1])) / 2;
1847
1848// Draw the image in the center of the display.
1849blendImage(x, y, bootImageWidth, bootImageHeight, bootImageData);
1850} else {
1851uint8_t *appleBootPict;
1852bootImageData = NULL;
1853bootImageWidth = kAppleBootWidth;
1854bootImageHeight = kAppleBootHeight;
1855
1856// Prepare the data for the default Apple boot image.
1857appleBootPict = (uint8_t *) decodeRLE(gAppleBootPictRLE, kAppleBootRLEBlocks, bootImageWidth * bootImageHeight);
1858if (appleBootPict) {
1859convertImage(bootImageWidth, bootImageHeight, appleBootPict, &bootImageData);
1860if (bootImageData) {
1861x = (screen_params[0] - MIN(kAppleBootWidth, screen_params[0])) / 2;
1862y = (screen_params[1] - MIN(kAppleBootHeight, screen_params[1])) / 2;
1863drawDataRectangle(x, y, kAppleBootWidth, kAppleBootHeight, bootImageData);
1864free(bootImageData);
1865}
1866free(appleBootPict);
1867}
1868}
1869}
1870

Archive Download this file

Revision: 370