X-Git-Url: https://code.delx.au/refind/blobdiff_plain/f5b5cdef011a3c64904632224c07c01d62050a40..4220e9754e288a5aedee79dc8440dc20afab2eea:/libeg/screen.c diff --git a/libeg/screen.c b/libeg/screen.c index 9049d85..506355e 100644 --- a/libeg/screen.c +++ b/libeg/screen.c @@ -34,18 +34,34 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* - * Modifications copyright (c) 2012 Roderick W. Smith + * Modifications copyright (c) 2012-2014 Roderick W. Smith * * Modifications distributed under the terms of the GNU General Public - * License (GPL) version 3 (GPLv3), a copy of which must be distributed - * with this source code or binaries made from it. + * License (GPL) version 3 (GPLv3), or (at your option) any later version. * */ +/* + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ #include "libegint.h" #include "../refind/screen.h" #include "../refind/lib.h" +#include "../refind/mystrings.h" #include "../include/refit_call_wrapper.h" +#include "libeg.h" +#include "../include/Handle.h" #include #include @@ -477,6 +493,9 @@ VOID egScreenShot(VOID) UINT8 *FileData; UINTN FileDataLength; UINTN Index; + UINTN ssNum; + CHAR16 Filename[80]; + EFI_FILE* BaseDir; Image = egCopyScreen(); if (Image == NULL) { @@ -492,11 +511,20 @@ VOID egScreenShot(VOID) goto bailout_wait; } + Status = egFindESP(&BaseDir); + if (EFI_ERROR(Status)) + return; + + // Search for existing screen shot files; increment number to an unused value... + ssNum = 001; + do { + SPrint(Filename, 80, L"screenshot_%03d.bmp", ssNum++); + } while (FileExists(BaseDir, Filename)); + // save to file on the ESP - Status = egSaveFile(NULL, L"screenshot.bmp", FileData, FileDataLength); + Status = egSaveFile(BaseDir, Filename, FileData, FileDataLength); FreePool(FileData); - if (EFI_ERROR(Status)) { - Print(L"Error egSaveFile: %x\n", Status); + if (CheckError(Status, L"in egSaveFile()")) { goto bailout_wait; }