]> code.delx.au - refind/blob - libeg/screen.c
cd973975f05e3862ff8dc860445db6da295b303e
[refind] / libeg / screen.c
1 /*
2 * libeg/screen.c
3 * Screen handling functions
4 *
5 * Copyright (c) 2006 Christoph Pfisterer
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the
18 * distribution.
19 *
20 * * Neither the name of Christoph Pfisterer nor the names of the
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36 /*
37 * Modifications copyright (c) 2012 Roderick W. Smith
38 *
39 * Modifications distributed under the terms of the GNU General Public
40 * License (GPL) version 3 (GPLv3), a copy of which must be distributed
41 * with this source code or binaries made from it.
42 *
43 */
44
45 #include "libegint.h"
46 #include "../refind/screen.h"
47 #include "../refind/lib.h"
48 #include "../include/refit_call_wrapper.h"
49
50 #include <efiUgaDraw.h>
51 #include <efiConsoleControl.h>
52
53 #ifndef __MAKEWITH_GNUEFI
54 #define LibLocateProtocol EfiLibLocateProtocol
55 #endif
56
57 // Console defines and variables
58
59 static EFI_GUID ConsoleControlProtocolGuid = EFI_CONSOLE_CONTROL_PROTOCOL_GUID;
60 static EFI_CONSOLE_CONTROL_PROTOCOL *ConsoleControl = NULL;
61
62 static EFI_GUID UgaDrawProtocolGuid = EFI_UGA_DRAW_PROTOCOL_GUID;
63 static EFI_UGA_DRAW_PROTOCOL *UgaDraw = NULL;
64
65 static EFI_GUID GraphicsOutputProtocolGuid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
66 static EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput = NULL;
67
68 static BOOLEAN egHasGraphics = FALSE;
69 static UINTN egScreenWidth = 800;
70 static UINTN egScreenHeight = 600;
71
72 //
73 // Screen handling
74 //
75
76 // Make the necessary system calls to identify the current graphics mode.
77 // Stores the results in the file-global variables egScreenWidth,
78 // egScreenHeight, and egHasGraphics. The first two of these will be
79 // unchanged if neither GraphicsOutput nor UgaDraw is a valid pointer.
80 static VOID egDetermineScreenSize(VOID) {
81 EFI_STATUS Status = EFI_SUCCESS;
82 UINT32 UGAWidth, UGAHeight, UGADepth, UGARefreshRate;
83
84 // get screen size
85 egHasGraphics = FALSE;
86 if (GraphicsOutput != NULL) {
87 egScreenWidth = GraphicsOutput->Mode->Info->HorizontalResolution;
88 egScreenHeight = GraphicsOutput->Mode->Info->VerticalResolution;
89 egHasGraphics = TRUE;
90 } else if (UgaDraw != NULL) {
91 Status = refit_call5_wrapper(UgaDraw->GetMode, UgaDraw, &UGAWidth, &UGAHeight, &UGADepth, &UGARefreshRate);
92 if (EFI_ERROR(Status)) {
93 UgaDraw = NULL; // graphics not available
94 } else {
95 egScreenWidth = UGAWidth;
96 egScreenHeight = UGAHeight;
97 egHasGraphics = TRUE;
98 }
99 }
100 } // static VOID egDetermineScreenSize()
101
102 VOID egGetScreenSize(OUT UINTN *ScreenWidth, OUT UINTN *ScreenHeight)
103 {
104 egDetermineScreenSize();
105
106 if (ScreenWidth != NULL)
107 *ScreenWidth = egScreenWidth;
108 if (ScreenHeight != NULL)
109 *ScreenHeight = egScreenHeight;
110 }
111
112 VOID egInitScreen(VOID)
113 {
114 EFI_STATUS Status = EFI_SUCCESS;
115
116 // get protocols
117 Status = LibLocateProtocol(&ConsoleControlProtocolGuid, (VOID **) &ConsoleControl);
118 if (EFI_ERROR(Status))
119 ConsoleControl = NULL;
120
121 Status = LibLocateProtocol(&UgaDrawProtocolGuid, (VOID **) &UgaDraw);
122 if (EFI_ERROR(Status))
123 UgaDraw = NULL;
124
125 Status = LibLocateProtocol(&GraphicsOutputProtocolGuid, (VOID **) &GraphicsOutput);
126 if (EFI_ERROR(Status))
127 GraphicsOutput = NULL;
128
129 egDetermineScreenSize();
130 }
131
132 // Convert a graphics mode (in *ModeWidth) to a width and height (returned in
133 // *ModeWidth and *Height, respectively).
134 // Returns TRUE if successful, FALSE if not (invalid mode, typically)
135 BOOLEAN egGetResFromMode(UINTN *ModeWidth, UINTN *Height) {
136 UINTN Size;
137 EFI_STATUS Status;
138 EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info = NULL;
139
140 if ((ModeWidth != NULL) && (Height != NULL)) {
141 Status = refit_call4_wrapper(GraphicsOutput->QueryMode, GraphicsOutput, *ModeWidth, &Size, &Info);
142 if ((Status == EFI_SUCCESS) && (Info != NULL)) {
143 *ModeWidth = Info->HorizontalResolution;
144 *Height = Info->VerticalResolution;
145 return TRUE;
146 }
147 }
148 return FALSE;
149 } // BOOLEAN egGetResFromMode()
150
151 // Sets the screen resolution to the specified value, if possible. If *ScreenHeight
152 // is 0 and GOP mode is detected, assume that *ScreenWidth contains a GOP mode
153 // number rather than a horizontal resolution. If the specified resolution is not
154 // valid, displays a warning with the valid modes on GOP (UEFI) systems, or silently
155 // fails on UGA (EFI 1.x) systems. Note that this function attempts to set ANY screen
156 // resolution, even 0x0 or ridiculously large values.
157 // Upon success, returns actual screen resolution in *ScreenWidth and *ScreenHeight.
158 // These values are unchanged upon failure.
159 // Returns TRUE if successful, FALSE if not.
160 BOOLEAN egSetScreenSize(IN OUT UINTN *ScreenWidth, IN OUT UINTN *ScreenHeight) {
161 EFI_STATUS Status = EFI_SUCCESS;
162 EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info;
163 UINTN Size;
164 UINT32 ModeNum = 0;
165 UINT32 UGAWidth, UGAHeight, UGADepth, UGARefreshRate;
166 BOOLEAN ModeSet = FALSE;
167
168 if ((ScreenWidth == NULL) || (ScreenHeight == NULL))
169 return FALSE;
170
171 if (GraphicsOutput != NULL) { // GOP mode (UEFI)
172 if (*ScreenHeight == 0) { // User specified a mode number (stored in *ScreenWidth); use it directly
173 ModeNum = (UINT32) *ScreenWidth;
174 if (egGetResFromMode(ScreenWidth, ScreenHeight) &&
175 (refit_call2_wrapper(GraphicsOutput->SetMode, GraphicsOutput, ModeNum) == EFI_SUCCESS)) {
176 ModeSet = TRUE;
177 }
178
179 // User specified width & height; must find mode...
180 } else {
181 // Do a loop through the modes to see if the specified one is available;
182 // and if so, switch to it....
183 do {
184 Status = refit_call4_wrapper(GraphicsOutput->QueryMode, GraphicsOutput, ModeNum, &Size, &Info);
185 if ((Status == EFI_SUCCESS) && (Size >= sizeof(*Info) && (Info != NULL)) &&
186 (Info->HorizontalResolution == *ScreenWidth) && (Info->VerticalResolution == *ScreenHeight)) {
187 Status = refit_call2_wrapper(GraphicsOutput->SetMode, GraphicsOutput, ModeNum);
188 ModeSet = (Status == EFI_SUCCESS);
189 } // if
190 } while ((++ModeNum < GraphicsOutput->Mode->MaxMode) && !ModeSet);
191 } // if/else
192
193 if (ModeSet) {
194 egScreenWidth = *ScreenWidth;
195 egScreenHeight = *ScreenHeight;
196 } else {// If unsuccessful, display an error message for the user....
197 SwitchToText(FALSE);
198 Print(L"Error setting graphics mode %d x %d; using default mode!\nAvailable modes are:\n", *ScreenWidth, *ScreenHeight);
199 ModeNum = 0;
200 do {
201 Status = refit_call4_wrapper(GraphicsOutput->QueryMode, GraphicsOutput, ModeNum, &Size, &Info);
202 if ((Status == EFI_SUCCESS) && (Info != NULL)) {
203 Print(L"Mode %d: %d x %d\n", ModeNum, Info->HorizontalResolution, Info->VerticalResolution);
204 } // else
205 } while (++ModeNum < GraphicsOutput->Mode->MaxMode);
206 PauseForKey();
207 SwitchToGraphics();
208 } // if GOP mode (UEFI)
209
210 } else if (UgaDraw != NULL) { // UGA mode (EFI 1.x)
211 // Try to use current color depth & refresh rate for new mode. Maybe not the best choice
212 // in all cases, but I don't know how to probe for alternatives....
213 Status = refit_call5_wrapper(UgaDraw->GetMode, UgaDraw, &UGAWidth, &UGAHeight, &UGADepth, &UGARefreshRate);
214 Status = refit_call5_wrapper(UgaDraw->SetMode, UgaDraw, *ScreenWidth, *ScreenHeight, UGADepth, UGARefreshRate);
215 if (Status == EFI_SUCCESS) {
216 egScreenWidth = *ScreenWidth;
217 egScreenHeight = *ScreenHeight;
218 ModeSet = TRUE;
219 } else {
220 // TODO: Find a list of supported modes and display it.
221 // NOTE: Below doesn't actually appear unless we explicitly switch to text mode.
222 // This is just a placeholder until something better can be done....
223 Print(L"Error setting graphics mode %d x %d; unsupported mode!\n");
224 } // if/else
225 } // if/else if UGA mode (EFI 1.x)
226 return (ModeSet);
227 } // BOOLEAN egSetScreenSize()
228
229 // Set a text mode.
230 // Returns TRUE if the mode actually changed, FALSE otherwise.
231 // Note that a FALSE return value can mean either an error or no change
232 // necessary.
233 BOOLEAN egSetTextMode(UINT32 RequestedMode) {
234 UINTN i = 0, Width, Height;
235 EFI_STATUS Status;
236 BOOLEAN ChangedIt = FALSE;
237
238 if ((RequestedMode != DONT_CHANGE_TEXT_MODE) && (RequestedMode != ST->ConOut->Mode->Mode)) {
239 // SwitchToGraphics();
240 Status = refit_call2_wrapper(ST->ConOut->SetMode, ST->ConOut, RequestedMode);
241 if (Status == EFI_SUCCESS) {
242 ChangedIt = TRUE;
243 } else {
244 SwitchToText(FALSE);
245 Print(L"\nError setting text mode %d; available modes are:\n", RequestedMode);
246 do {
247 Status = refit_call4_wrapper(ST->ConOut->QueryMode, ST->ConOut, i, &Width, &Height);
248 if (Status == EFI_SUCCESS)
249 Print(L"Mode %d: %d x %d\n", i, Width, Height);
250 } while (++i < ST->ConOut->Mode->MaxMode);
251 Print(L"Mode %d: Use default mode\n", DONT_CHANGE_TEXT_MODE);
252
253 PauseForKey();
254 SwitchToGraphics();
255 } // if/else successful change
256 } // if need to change mode
257 return ChangedIt;
258 } // BOOLEAN egSetTextMode()
259
260 CHAR16 * egScreenDescription(VOID)
261 {
262 CHAR16 *GraphicsInfo, *TextInfo = NULL;
263
264 GraphicsInfo = AllocateZeroPool(256 * sizeof(CHAR16));
265 if (GraphicsInfo == NULL)
266 return L"memory allocation error";
267
268 if (egHasGraphics) {
269 if (GraphicsOutput != NULL) {
270 SPrint(GraphicsInfo, 255, L"Graphics Output (UEFI), %dx%d", egScreenWidth, egScreenHeight);
271 } else if (UgaDraw != NULL) {
272 GraphicsInfo = AllocateZeroPool(256 * sizeof(CHAR16));
273 SPrint(GraphicsInfo, 255, L"UGA Draw (EFI 1.10), %dx%d", egScreenWidth, egScreenHeight);
274 } else {
275 MyFreePool(GraphicsInfo);
276 MyFreePool(TextInfo);
277 return L"Internal Error";
278 }
279 if (!AllowGraphicsMode) { // graphics-capable HW, but in text mode
280 TextInfo = AllocateZeroPool(256 * sizeof(CHAR16));
281 SPrint(TextInfo, 255, L"(in %dx%d text mode)", ConWidth, ConHeight);
282 MergeStrings(&GraphicsInfo, TextInfo, L' ');
283 }
284 } else {
285 SPrint(GraphicsInfo, 255, L"Text-foo console, %dx%d", ConWidth, ConHeight);
286 }
287 MyFreePool(TextInfo);
288 return GraphicsInfo;
289 }
290
291 BOOLEAN egHasGraphicsMode(VOID)
292 {
293 return egHasGraphics;
294 }
295
296 BOOLEAN egIsGraphicsModeEnabled(VOID)
297 {
298 EFI_CONSOLE_CONTROL_SCREEN_MODE CurrentMode;
299
300 if (ConsoleControl != NULL) {
301 refit_call4_wrapper(ConsoleControl->GetMode, ConsoleControl, &CurrentMode, NULL, NULL);
302 return (CurrentMode == EfiConsoleControlScreenGraphics) ? TRUE : FALSE;
303 }
304
305 return FALSE;
306 }
307
308 VOID egSetGraphicsModeEnabled(IN BOOLEAN Enable)
309 {
310 EFI_CONSOLE_CONTROL_SCREEN_MODE CurrentMode;
311 EFI_CONSOLE_CONTROL_SCREEN_MODE NewMode;
312
313 if (ConsoleControl != NULL) {
314 refit_call4_wrapper(ConsoleControl->GetMode, ConsoleControl, &CurrentMode, NULL, NULL);
315
316 NewMode = Enable ? EfiConsoleControlScreenGraphics
317 : EfiConsoleControlScreenText;
318 if (CurrentMode != NewMode)
319 refit_call2_wrapper(ConsoleControl->SetMode, ConsoleControl, NewMode);
320 }
321 }
322
323 //
324 // Drawing to the screen
325 //
326
327 VOID egClearScreen(IN EG_PIXEL *Color)
328 {
329 EFI_UGA_PIXEL FillColor;
330
331 if (!egHasGraphics)
332 return;
333
334 if (Color != NULL) {
335 FillColor.Red = Color->r;
336 FillColor.Green = Color->g;
337 FillColor.Blue = Color->b;
338 } else {
339 FillColor.Red = 0x0;
340 FillColor.Green = 0x0;
341 FillColor.Blue = 0x0;
342 }
343 FillColor.Reserved = 0;
344
345 if (GraphicsOutput != NULL) {
346 // EFI_GRAPHICS_OUTPUT_BLT_PIXEL and EFI_UGA_PIXEL have the same
347 // layout, and the header from TianoCore actually defines them
348 // to be the same type.
349 refit_call10_wrapper(GraphicsOutput->Blt, GraphicsOutput, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *)&FillColor, EfiBltVideoFill,
350 0, 0, 0, 0, egScreenWidth, egScreenHeight, 0);
351 } else if (UgaDraw != NULL) {
352 refit_call10_wrapper(UgaDraw->Blt, UgaDraw, &FillColor, EfiUgaVideoFill, 0, 0, 0, 0, egScreenWidth, egScreenHeight, 0);
353 }
354 }
355
356 VOID egDrawImage(IN EG_IMAGE *Image, IN UINTN ScreenPosX, IN UINTN ScreenPosY)
357 {
358 EG_IMAGE *CompImage = NULL;
359
360 // NOTE: Weird seemingly redundant tests because some placement code can "wrap around" and
361 // send "negative" values, which of course become very large unsigned ints that can then
362 // wrap around AGAIN if values are added to them.....
363 if (!egHasGraphics || ((ScreenPosX + Image->Width) > egScreenWidth) || ((ScreenPosY + Image->Height) > egScreenHeight) ||
364 (ScreenPosX > egScreenWidth) || (ScreenPosY > egScreenHeight))
365 return;
366
367 // if (Image->HasAlpha) {
368 // Image->HasAlpha = FALSE;
369 // egSetPlane(PLPTR(Image, a), 0, Image->Width * Image->Height);
370 // }
371
372 if ((GlobalConfig.ScreenBackground == NULL) || ((Image->Width == egScreenWidth) && (Image->Height == egScreenHeight))) {
373 CompImage = Image;
374 } else if (GlobalConfig.ScreenBackground == Image) {
375 CompImage = GlobalConfig.ScreenBackground;
376 } else {
377 CompImage = egCropImage(GlobalConfig.ScreenBackground, ScreenPosX, ScreenPosY, Image->Width, Image->Height);
378 if (CompImage == NULL) {
379 Print(L"Error! Can't crop image in egDrawImage()!\n");
380 return;
381 }
382 egComposeImage(CompImage, Image, 0, 0);
383 }
384
385 if (GraphicsOutput != NULL) {
386 refit_call10_wrapper(GraphicsOutput->Blt, GraphicsOutput, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *)CompImage->PixelData,
387 EfiBltBufferToVideo, 0, 0, ScreenPosX, ScreenPosY, CompImage->Width, CompImage->Height, 0);
388 } else if (UgaDraw != NULL) {
389 refit_call10_wrapper(UgaDraw->Blt, UgaDraw, (EFI_UGA_PIXEL *)CompImage->PixelData, EfiUgaBltBufferToVideo,
390 0, 0, ScreenPosX, ScreenPosY, CompImage->Width, CompImage->Height, 0);
391 }
392 if ((CompImage != GlobalConfig.ScreenBackground) && (CompImage != Image))
393 egFreeImage(CompImage);
394 } /* VOID egDrawImage() */
395
396 // Display an unselected icon on the screen, so that the background image shows
397 // through the transparency areas. The BadgeImage may be NULL, in which case
398 // it's not composited in.
399 VOID egDrawImageWithTransparency(EG_IMAGE *Image, EG_IMAGE *BadgeImage, UINTN XPos, UINTN YPos, UINTN Width, UINTN Height) {
400 EG_IMAGE *Background;
401
402 Background = egCropImage(GlobalConfig.ScreenBackground, XPos, YPos, Width, Height);
403 if (Background != NULL) {
404 BltImageCompositeBadge(Background, Image, BadgeImage, XPos, YPos);
405 egFreeImage(Background);
406 }
407 } // VOID DrawImageWithTransparency()
408
409 VOID egDrawImageArea(IN EG_IMAGE *Image,
410 IN UINTN AreaPosX, IN UINTN AreaPosY,
411 IN UINTN AreaWidth, IN UINTN AreaHeight,
412 IN UINTN ScreenPosX, IN UINTN ScreenPosY)
413 {
414 if (!egHasGraphics)
415 return;
416
417 egRestrictImageArea(Image, AreaPosX, AreaPosY, &AreaWidth, &AreaHeight);
418 if (AreaWidth == 0)
419 return;
420
421 // if (Image->HasAlpha) {
422 // Image->HasAlpha = FALSE;
423 // egSetPlane(PLPTR(Image, a), 0, Image->Width * Image->Height);
424 // }
425
426 if (GraphicsOutput != NULL) {
427 refit_call10_wrapper(GraphicsOutput->Blt, GraphicsOutput, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *)Image->PixelData,
428 EfiBltBufferToVideo, AreaPosX, AreaPosY, ScreenPosX, ScreenPosY, AreaWidth, AreaHeight,
429 Image->Width * 4);
430 } else if (UgaDraw != NULL) {
431 refit_call10_wrapper(UgaDraw->Blt, UgaDraw, (EFI_UGA_PIXEL *)Image->PixelData, EfiUgaBltBufferToVideo,
432 AreaPosX, AreaPosY, ScreenPosX, ScreenPosY, AreaWidth, AreaHeight, Image->Width * 4);
433 }
434 }
435
436 // Display a message in the center of the screen, surrounded by a box of the
437 // specified color. For the moment, uses graphics calls only. (It still works
438 // in text mode on GOP/UEFI systems, but not on UGA/EFI 1.x systems.)
439 VOID egDisplayMessage(IN CHAR16 *Text, EG_PIXEL *BGColor) {
440 UINTN BoxWidth, BoxHeight;
441 EG_IMAGE *Box;
442
443 if ((Text != NULL) && (BGColor != NULL)) {
444 BoxWidth = (StrLen(Text) + 2) * FONT_CELL_WIDTH;
445 if (BoxWidth > egScreenWidth)
446 BoxWidth = egScreenWidth;
447 BoxHeight = 2 * FONT_CELL_HEIGHT;
448 Box = egCreateFilledImage(BoxWidth, BoxHeight, FALSE, BGColor);
449 egRenderText(Text, Box, FONT_CELL_WIDTH, FONT_CELL_HEIGHT / 2, (BGColor->r + BGColor->g + BGColor->b) / 3);
450 egDrawImage(Box, (egScreenWidth - BoxWidth) / 2, (egScreenHeight - BoxHeight) / 2);
451 } // if non-NULL inputs
452 } // VOID egDisplayMessage()
453
454 // Copy the current contents of the display into an EG_IMAGE....
455 // Returns pointer if successful, NULL if not.
456 EG_IMAGE * egCopyScreen(VOID) {
457 EG_IMAGE *Image = NULL;
458
459 if (!egHasGraphics)
460 return NULL;
461
462 // allocate a buffer for the whole screen
463 Image = egCreateImage(egScreenWidth, egScreenHeight, FALSE);
464 if (Image == NULL) {
465 return NULL;
466 }
467
468 // get full screen image
469 if (GraphicsOutput != NULL) {
470 refit_call10_wrapper(GraphicsOutput->Blt, GraphicsOutput, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *)Image->PixelData,
471 EfiBltVideoToBltBuffer, 0, 0, 0, 0, Image->Width, Image->Height, 0);
472 } else if (UgaDraw != NULL) {
473 refit_call10_wrapper(UgaDraw->Blt, UgaDraw, (EFI_UGA_PIXEL *)Image->PixelData, EfiUgaVideoToBltBuffer,
474 0, 0, 0, 0, Image->Width, Image->Height, 0);
475 }
476 return Image;
477 } // EG_IMAGE * egCopyScreen()
478
479 //
480 // Make a screenshot
481 //
482
483 VOID egScreenShot(VOID)
484 {
485 EFI_STATUS Status;
486 EG_IMAGE *Image;
487 UINT8 *FileData;
488 UINTN FileDataLength;
489 UINTN Index;
490
491 Image = egCopyScreen();
492 if (Image == NULL) {
493 Print(L"Error: Unable to take screen shot\n");
494 goto bailout_wait;
495 }
496
497 // encode as BMP
498 egEncodeBMP(Image, &FileData, &FileDataLength);
499 egFreeImage(Image);
500 if (FileData == NULL) {
501 Print(L"Error egEncodeBMP returned NULL\n");
502 goto bailout_wait;
503 }
504
505 // save to file on the ESP
506 Status = egSaveFile(NULL, L"screenshot.bmp", FileData, FileDataLength);
507 FreePool(FileData);
508 if (EFI_ERROR(Status)) {
509 Print(L"Error egSaveFile: %x\n", Status);
510 goto bailout_wait;
511 }
512
513 return;
514
515 // DEBUG: switch to text mode
516 bailout_wait:
517 egSetGraphicsModeEnabled(FALSE);
518 refit_call3_wrapper(BS->WaitForEvent, 1, &ST->ConIn->WaitForKey, &Index);
519 }
520
521 /* EOF */