2017-06-05 02:02:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of Luma3DS
|
|
|
|
* Copyright (C) 2016-2017 Aurora Wright, TuxSH
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
|
|
|
|
* * Requiring preservation of specified reasonable legal notices or
|
|
|
|
* author attributions in that material or in the Appropriate Legal
|
|
|
|
* Notices displayed by works containing it.
|
|
|
|
* * Prohibiting misrepresentation of the origin of that material,
|
|
|
|
* or requiring that modified versions of such material be marked in
|
|
|
|
* reasonable ways as different from the original version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <3ds.h>
|
2017-11-18 16:37:35 +01:00
|
|
|
#include <3ds/os.h>
|
2017-06-05 02:02:04 +02:00
|
|
|
#include "menus.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "draw.h"
|
|
|
|
#include "menus/process_list.h"
|
|
|
|
#include "menus/process_patches.h"
|
|
|
|
#include "menus/n3ds.h"
|
|
|
|
#include "menus/debugger.h"
|
|
|
|
#include "menus/miscellaneous.h"
|
2017-07-24 04:44:14 +02:00
|
|
|
#include "menus/sysconfig.h"
|
2017-06-05 02:02:04 +02:00
|
|
|
#include "ifile.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "fmt.h"
|
|
|
|
|
|
|
|
Menu rosalinaMenu = {
|
|
|
|
"Rosalina menu",
|
2017-11-02 21:52:14 +01:00
|
|
|
.nbItems = 9,
|
2017-06-05 02:02:04 +02:00
|
|
|
{
|
|
|
|
{ "Process list", METHOD, .method = &RosalinaMenu_ProcessList },
|
|
|
|
{ "Take screenshot (slow!)", METHOD, .method = &RosalinaMenu_TakeScreenshot },
|
|
|
|
{ "New 3DS menu...", MENU, .menu = &N3DSMenu },
|
|
|
|
{ "Debugger options...", MENU, .menu = &debuggerMenu },
|
2017-07-24 04:44:14 +02:00
|
|
|
{ "System configuration...", MENU, .menu = &sysconfigMenu },
|
2017-06-05 02:02:04 +02:00
|
|
|
{ "Miscellaneous options...", MENU, .menu = &miscellaneousMenu },
|
2017-07-24 04:44:14 +02:00
|
|
|
{ "Power off", METHOD, .method = &RosalinaMenu_PowerOff },
|
|
|
|
{ "Reboot", METHOD, .method = &RosalinaMenu_Reboot },
|
2017-06-05 02:02:04 +02:00
|
|
|
{ "Credits", METHOD, .method = &RosalinaMenu_ShowCredits }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void RosalinaMenu_ShowCredits(void)
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_ClearFramebuffer();
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_DrawString(10, 10, COLOR_TITLE, "Rosalina -- Luma3DS credits");
|
|
|
|
|
|
|
|
u32 posY = Draw_DrawString(10, 30, COLOR_WHITE, "Luma3DS (c) 2016-2017 AuroraWright, TuxSH") + SPACING_Y;
|
|
|
|
|
|
|
|
posY = Draw_DrawString(10, posY + SPACING_Y, COLOR_WHITE, "3DSX loading code by fincs");
|
|
|
|
posY = Draw_DrawString(10, posY + SPACING_Y, COLOR_WHITE, "Networking code & basic GDB functionality by Stary");
|
|
|
|
posY = Draw_DrawString(10, posY + SPACING_Y, COLOR_WHITE, "InputRedirection by Stary (PoC by ShinyQuagsire)");
|
|
|
|
|
|
|
|
posY += 2 * SPACING_Y;
|
|
|
|
|
|
|
|
Draw_DrawString(10, posY, COLOR_WHITE,
|
|
|
|
(
|
|
|
|
"Special thanks to:\n"
|
|
|
|
" Bond697, WinterMute, yifanlu,\n"
|
|
|
|
" Luma3DS contributors, ctrulib contributors,\n"
|
|
|
|
" other people"
|
|
|
|
));
|
|
|
|
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
}
|
|
|
|
while(!(waitInput() & BUTTON_B) && !terminationRequest);
|
|
|
|
}
|
|
|
|
|
2017-07-24 04:44:14 +02:00
|
|
|
void RosalinaMenu_Reboot(void)
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_ClearFramebuffer();
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_DrawString(10, 10, COLOR_TITLE, "Rosalina menu");
|
|
|
|
Draw_DrawString(10, 30, COLOR_WHITE, "Press A to reboot, press B to go back.");
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
|
|
|
|
u32 pressed = waitInputWithTimeout(1000);
|
|
|
|
|
|
|
|
if(pressed & BUTTON_A)
|
2017-11-24 02:32:26 +01:00
|
|
|
{
|
|
|
|
APT_HardwareResetAsync();
|
|
|
|
menuLeave();
|
|
|
|
} else if(pressed & BUTTON_B)
|
2017-07-24 04:44:14 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while(!terminationRequest);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RosalinaMenu_PowerOff(void) // Soft shutdown.
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_ClearFramebuffer();
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_DrawString(10, 10, COLOR_TITLE, "Rosalina menu");
|
|
|
|
Draw_DrawString(10, 30, COLOR_WHITE, "Press A to power off, press B to go back.");
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
|
|
|
|
u32 pressed = waitInputWithTimeout(1000);
|
|
|
|
|
|
|
|
if(pressed & BUTTON_A)
|
|
|
|
{
|
|
|
|
menuLeave();
|
|
|
|
srvPublishToSubscriber(0x203, 0);
|
|
|
|
}
|
|
|
|
else if(pressed & BUTTON_B)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while(!terminationRequest);
|
|
|
|
}
|
|
|
|
|
2017-06-20 16:14:36 +02:00
|
|
|
extern u8 framebufferCache[FB_BOTTOM_SIZE];
|
2017-06-05 02:02:04 +02:00
|
|
|
void RosalinaMenu_TakeScreenshot(void)
|
|
|
|
{
|
|
|
|
#define TRY(expr) if(R_FAILED(res = (expr))) goto end;
|
|
|
|
|
|
|
|
u64 total;
|
|
|
|
IFile file;
|
|
|
|
Result res;
|
|
|
|
|
|
|
|
char filename[64];
|
|
|
|
|
|
|
|
FS_Archive archive;
|
|
|
|
FS_ArchiveID archiveId;
|
|
|
|
s64 out;
|
|
|
|
bool isSdMode;
|
2017-06-18 22:31:21 +02:00
|
|
|
|
|
|
|
if(R_FAILED(svcGetSystemInfo(&out, 0x10000, 0x203))) svcBreak(USERBREAK_ASSERT);
|
2017-06-05 02:02:04 +02:00
|
|
|
isSdMode = (bool)out;
|
|
|
|
|
|
|
|
archiveId = isSdMode ? ARCHIVE_SDMC : ARCHIVE_NAND_RW;
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_RestoreFramebuffer();
|
|
|
|
|
2017-06-20 16:14:36 +02:00
|
|
|
svcFlushEntireDataCache();
|
|
|
|
|
2017-06-05 02:02:04 +02:00
|
|
|
res = FSUSER_OpenArchive(&archive, archiveId, fsMakePath(PATH_EMPTY, ""));
|
|
|
|
if(R_SUCCEEDED(res))
|
|
|
|
{
|
|
|
|
res = FSUSER_CreateDirectory(archive, fsMakePath(PATH_ASCII, "/luma/screenshots"), 0);
|
|
|
|
if((u32)res == 0xC82044BE) // directory already exists
|
|
|
|
res = 0;
|
|
|
|
FSUSER_CloseArchive(archive);
|
|
|
|
}
|
|
|
|
|
2017-11-18 16:37:35 +01:00
|
|
|
u32 seconds, minutes, hours, days, year, month;
|
|
|
|
u64 milliseconds = osGetTime();
|
|
|
|
seconds = milliseconds/1000;
|
|
|
|
milliseconds %= 1000;
|
|
|
|
minutes = seconds / 60;
|
|
|
|
seconds %= 60;
|
|
|
|
hours = minutes / 60;
|
|
|
|
minutes %= 60;
|
|
|
|
days = hours / 24;
|
|
|
|
hours %= 24;
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2017-11-18 16:37:35 +01:00
|
|
|
year = 1900; // osGetTime starts in 1900
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2017-12-19 02:32:51 +01:00
|
|
|
while(true)
|
2017-11-18 16:37:35 +01:00
|
|
|
{
|
|
|
|
bool leapYear = (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0));
|
2017-12-19 02:32:51 +01:00
|
|
|
u16 daysInYear = leapYear ? 366 : 365;
|
|
|
|
if(days >= daysInYear)
|
2017-11-18 16:37:35 +01:00
|
|
|
{
|
|
|
|
days -= daysInYear;
|
|
|
|
++year;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-19 02:32:51 +01:00
|
|
|
static const u8 daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
|
2017-11-18 16:37:35 +01:00
|
|
|
for(month = 0; month < 12; ++month)
|
|
|
|
{
|
2017-12-19 02:32:51 +01:00
|
|
|
u8 dim = daysInMonth[month];
|
2017-11-18 16:37:35 +01:00
|
|
|
|
|
|
|
if (month == 1 && leapYear)
|
|
|
|
++dim;
|
|
|
|
|
|
|
|
if (days >= dim)
|
|
|
|
days -= dim;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2017-06-05 02:02:04 +02:00
|
|
|
break;
|
2017-11-18 16:37:35 +01:00
|
|
|
}
|
2017-06-05 02:02:04 +02:00
|
|
|
}
|
2017-11-18 16:37:35 +01:00
|
|
|
days++;
|
|
|
|
month++;
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2017-11-18 16:37:35 +01:00
|
|
|
sprintf(filename, "/luma/screenshots/%04u-%02u-%02u_%02u-%02u-%02u.%03u_top.bmp", year, month, days, hours, minutes, seconds, milliseconds);
|
2017-06-05 02:02:04 +02:00
|
|
|
TRY(IFile_Open(&file, archiveId, fsMakePath(PATH_EMPTY, ""), fsMakePath(PATH_ASCII, filename), FS_OPEN_CREATE | FS_OPEN_WRITE));
|
2017-06-20 16:14:36 +02:00
|
|
|
Draw_CreateBitmapHeader(framebufferCache, 400, 240);
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2017-06-20 16:14:36 +02:00
|
|
|
for(u32 y = 0; y < 120; y++)
|
|
|
|
Draw_ConvertFrameBufferLine(framebufferCache + 54 + 3 * 400 * y, true, true, y);
|
|
|
|
|
|
|
|
TRY(IFile_Write(&file, &total, framebufferCache, 54 + 3 * 400 * 120, 0));
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2017-06-20 16:14:36 +02:00
|
|
|
for(u32 y = 120; y < 240; y++)
|
|
|
|
Draw_ConvertFrameBufferLine(framebufferCache + 3 * 400 * (y - 120), true, true, y);
|
|
|
|
|
|
|
|
TRY(IFile_Write(&file, &total, framebufferCache, 3 * 400 * 120, 0));
|
2017-06-05 02:02:04 +02:00
|
|
|
TRY(IFile_Close(&file));
|
|
|
|
|
2017-11-18 16:37:35 +01:00
|
|
|
sprintf(filename, "/luma/screenshots/%04u-%02u-%02u_%02u-%02u-%02u.%03u_bot.bmp", year, month, days, hours, minutes, seconds, milliseconds);
|
2017-06-05 02:02:04 +02:00
|
|
|
TRY(IFile_Open(&file, archiveId, fsMakePath(PATH_EMPTY, ""), fsMakePath(PATH_ASCII, filename), FS_OPEN_CREATE | FS_OPEN_WRITE));
|
2017-06-20 16:14:36 +02:00
|
|
|
Draw_CreateBitmapHeader(framebufferCache, 320, 240);
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2017-06-20 16:14:36 +02:00
|
|
|
for(u32 y = 0; y < 120; y++)
|
|
|
|
Draw_ConvertFrameBufferLine(framebufferCache + 54 + 3 * 320 * y, false, true, y);
|
|
|
|
|
|
|
|
TRY(IFile_Write(&file, &total, framebufferCache, 54 + 3 * 320 * 120, 0));
|
|
|
|
|
|
|
|
for(u32 y = 120; y < 240; y++)
|
|
|
|
Draw_ConvertFrameBufferLine(framebufferCache + 3 * 320 * (y - 120), false, true, y);
|
|
|
|
|
|
|
|
TRY(IFile_Write(&file, &total, framebufferCache, 3 * 320 * 120, 0));
|
|
|
|
TRY(IFile_Close(&file));
|
2017-06-05 02:02:04 +02:00
|
|
|
|
|
|
|
if((GPU_FB_TOP_FMT & 0x20) && (Draw_GetCurrentFramebufferAddress(true, true) != Draw_GetCurrentFramebufferAddress(true, false)))
|
|
|
|
{
|
2017-11-18 16:37:35 +01:00
|
|
|
sprintf(filename, "/luma/screenshots/%04u-%02u-%02u_%02u-%02u-%02u.%03u_top_right.bmp", year, month, days, hours, minutes, seconds, milliseconds);
|
2017-06-05 02:02:04 +02:00
|
|
|
TRY(IFile_Open(&file, archiveId, fsMakePath(PATH_EMPTY, ""), fsMakePath(PATH_ASCII, filename), FS_OPEN_CREATE | FS_OPEN_WRITE));
|
2017-06-20 16:14:36 +02:00
|
|
|
Draw_CreateBitmapHeader(framebufferCache, 400, 240);
|
|
|
|
|
|
|
|
for(u32 y = 0; y < 120; y++)
|
|
|
|
Draw_ConvertFrameBufferLine(framebufferCache + 54 + 3 * 400 * y, true, false, y);
|
|
|
|
|
|
|
|
TRY(IFile_Write(&file, &total, framebufferCache, 54 + 3 * 400 * 120, 0));
|
|
|
|
|
|
|
|
for(u32 y = 120; y < 240; y++)
|
|
|
|
Draw_ConvertFrameBufferLine(framebufferCache + 3 * 400 * (y - 120), true, false, y);
|
|
|
|
|
|
|
|
TRY(IFile_Write(&file, &total, framebufferCache, 3 * 400 * 120, 0));
|
|
|
|
TRY(IFile_Close(&file));
|
2017-06-05 02:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
end:
|
|
|
|
IFile_Close(&file);
|
2017-06-20 16:14:36 +02:00
|
|
|
svcFlushEntireDataCache();
|
2017-06-05 02:02:04 +02:00
|
|
|
Draw_SetupFramebuffer();
|
|
|
|
Draw_ClearFramebuffer();
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Draw_Lock();
|
|
|
|
Draw_DrawString(10, 10, COLOR_TITLE, "Screenshot");
|
|
|
|
if(R_FAILED(res))
|
|
|
|
Draw_DrawFormattedString(10, 30, COLOR_WHITE, "Operation failed (0x%08x).", (u32)res);
|
|
|
|
else
|
|
|
|
Draw_DrawString(10, 30, COLOR_WHITE, "Operation succeeded.");
|
|
|
|
|
|
|
|
Draw_FlushFramebuffer();
|
|
|
|
Draw_Unlock();
|
|
|
|
}
|
|
|
|
while(!(waitInput() & BUTTON_B) && !terminationRequest);
|
|
|
|
|
|
|
|
#undef TRY
|
|
|
|
}
|