Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 452