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

Archive Download this file

Revision: 371