Checkpoint/3ds/source/main.cpp

203 lines
6.7 KiB
C++
Raw Normal View History

2018-05-14 08:52:41 +02:00
/*
2019-05-06 22:51:09 +02:00
* This file is part of Checkpoint
* Copyright (C) 2017-2019 Bernardo Giordano, FlagBrew
*
* 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.
*/
2017-09-29 09:45:56 +02:00
2019-04-21 18:05:26 +02:00
#include "main.hpp"
2019-04-22 22:02:33 +02:00
#include "thread.hpp"
#include "util.hpp"
2017-09-29 09:45:56 +02:00
2019-05-06 22:51:09 +02:00
int main()
{
2018-12-14 22:14:05 +01:00
if (R_FAILED(servicesInit())) {
servicesExit();
return -1;
}
2018-05-14 08:52:41 +02:00
int selectionTimer = 0;
2019-05-06 22:51:09 +02:00
int refreshTimer = 0;
2018-05-14 08:52:41 +02:00
Threads::create((ThreadFunc)Threads::titles);
2017-09-29 09:45:56 +02:00
2018-05-25 19:52:44 +02:00
u32 kHeld, kDown = hidKeysDown();
while (aptMainLoop() && !(kDown & KEY_START)) {
2018-05-14 08:52:41 +02:00
hidScanInput();
2018-05-25 19:52:44 +02:00
kDown = hidKeysDown();
kHeld = hidKeysHeld();
2019-03-07 21:13:15 +01:00
updateCard();
// Handle pressing A
// Backup list active: Backup/Restore
// Backup list inactive: Activate backup list only if multiple
// selections are enabled
2019-05-06 22:51:09 +02:00
if (kDown & KEY_A) {
// If backup list is active...
2019-05-06 22:51:09 +02:00
if (g_bottomScrollEnabled) {
// If the "New..." entry is selected...
2019-05-06 22:51:09 +02:00
if (0 == Gui::scrollableIndex()) {
io::backup(Gui::index());
}
2019-05-06 22:51:09 +02:00
else {
io::restore(Gui::index());
}
}
2019-05-06 22:51:09 +02:00
else {
// Activate backup list only if multiple selections are not enabled
2019-05-06 22:51:09 +02:00
if (!MS::multipleSelectionEnabled()) {
2019-04-21 18:05:26 +02:00
g_bottomScrollEnabled = true;
2019-04-22 12:40:06 +02:00
Gui::updateButtons();
}
}
2018-05-14 08:52:41 +02:00
}
2019-05-06 22:51:09 +02:00
if (kDown & KEY_B) {
2019-04-21 18:05:26 +02:00
g_bottomScrollEnabled = false;
2019-04-21 11:41:51 +02:00
MS::clearSelectedEntries();
2018-05-28 22:05:13 +02:00
Gui::resetScrollableIndex();
2019-04-22 12:40:06 +02:00
Gui::updateButtons();
2018-05-14 08:52:41 +02:00
}
2019-05-06 22:51:09 +02:00
if (kDown & KEY_X) {
if (g_bottomScrollEnabled) {
2018-05-14 08:52:41 +02:00
bool isSaveMode = Archive::mode() == MODE_SAVE;
2019-05-06 22:51:09 +02:00
size_t index = Gui::scrollableIndex();
2018-05-14 08:52:41 +02:00
// avoid actions if X is pressed on "New..."
2019-05-06 22:51:09 +02:00
if (index > 0 && Gui::askForConfirmation("Delete selected backup?")) {
2018-05-14 08:52:41 +02:00
Title title;
getTitle(title, Gui::index());
std::u16string path = isSaveMode ? title.fullSavePath(index) : title.fullExtdataPath(index);
io::deleteBackupFolder(path);
2018-05-14 08:52:41 +02:00
refreshDirectories(title.id());
Gui::scrollableIndex(index - 1);
}
}
2019-05-06 22:51:09 +02:00
else {
2018-05-14 08:52:41 +02:00
Gui::resetIndex();
Archive::mode(Archive::mode() == MODE_SAVE ? MODE_EXTDATA : MODE_SAVE);
2019-04-21 11:41:51 +02:00
MS::clearSelectedEntries();
Gui::resetScrollableIndex();
2018-05-14 08:52:41 +02:00
}
}
2019-05-06 22:51:09 +02:00
if (kDown & KEY_Y) {
if (g_bottomScrollEnabled) {
Gui::resetScrollableIndex();
2019-04-21 18:05:26 +02:00
g_bottomScrollEnabled = false;
}
2019-04-21 11:41:51 +02:00
MS::addSelectedEntry(Gui::index());
2019-04-22 12:40:06 +02:00
Gui::updateButtons(); // Do this last
2018-05-14 08:52:41 +02:00
}
2019-05-06 22:51:09 +02:00
if (kHeld & KEY_Y) {
2018-05-14 08:52:41 +02:00
selectionTimer++;
}
2019-05-06 22:51:09 +02:00
else {
2018-05-14 08:52:41 +02:00
selectionTimer = 0;
}
2019-05-06 22:51:09 +02:00
if (selectionTimer > 90) {
2019-04-21 11:41:51 +02:00
MS::clearSelectedEntries();
2019-05-06 22:51:09 +02:00
for (size_t i = 0, sz = getTitleCount(); i < sz; i++) {
2019-04-21 11:41:51 +02:00
MS::addSelectedEntry(i);
2018-05-14 08:52:41 +02:00
}
selectionTimer = 0;
}
2019-05-06 22:51:09 +02:00
if (kHeld & KEY_B) {
2018-05-14 08:52:41 +02:00
refreshTimer++;
}
2019-05-06 22:51:09 +02:00
else {
2018-05-14 08:52:41 +02:00
refreshTimer = 0;
}
2019-05-06 22:51:09 +02:00
if (refreshTimer > 90) {
Gui::resetIndex();
2019-04-21 11:41:51 +02:00
MS::clearSelectedEntries();
Gui::resetScrollableIndex();
2018-05-14 08:52:41 +02:00
Threads::create((ThreadFunc)Threads::titles);
refreshTimer = 0;
}
2019-05-06 22:51:09 +02:00
if (Gui::isBackupReleased() || (kDown & KEY_L)) {
if (MS::multipleSelectionEnabled()) {
2018-05-14 08:52:41 +02:00
Gui::resetScrollableIndex();
2019-04-21 11:41:51 +02:00
std::vector<size_t> list = MS::selectedEntries();
2019-05-06 22:51:09 +02:00
for (size_t i = 0, sz = list.size(); i < sz; i++) {
2018-05-14 08:52:41 +02:00
io::backup(list.at(i));
}
2019-04-21 11:41:51 +02:00
MS::clearSelectedEntries();
2019-04-22 12:40:06 +02:00
Gui::updateButtons();
2018-05-14 08:52:41 +02:00
}
2019-05-06 22:51:09 +02:00
else if (g_bottomScrollEnabled) {
2018-05-14 08:52:41 +02:00
io::backup(Gui::index());
}
}
2019-05-06 22:51:09 +02:00
if (Gui::isRestoreReleased() || (kDown & KEY_R)) {
if (MS::multipleSelectionEnabled()) {
2019-04-21 11:41:51 +02:00
MS::clearSelectedEntries();
2019-04-22 12:40:06 +02:00
Gui::updateButtons();
2019-04-21 11:41:51 +02:00
}
2019-05-06 22:51:09 +02:00
else if (g_bottomScrollEnabled) {
2019-04-21 11:41:51 +02:00
io::restore(Gui::index());
}
2018-05-14 08:52:41 +02:00
}
2019-05-06 22:51:09 +02:00
if (getTitleCount() > 0) {
2019-05-02 23:22:07 +02:00
Title title;
getTitle(title, Gui::index());
2019-05-06 22:51:09 +02:00
if (title.isActivityLog()) {
if (Gui::isPlayCoinsReleased()) {
if (!Archive::setPlayCoins()) {
2019-05-02 23:22:07 +02:00
Gui::showError(-1, "Failed to set play coins.");
}
}
2019-04-22 16:24:45 +02:00
}
2019-05-06 22:51:09 +02:00
else {
if (Gui::isCheatReleased() && CheatManager::loaded()) {
if (MS::multipleSelectionEnabled()) {
2019-05-02 23:22:07 +02:00
MS::clearSelectedEntries();
Gui::updateButtons();
}
2019-05-06 22:51:09 +02:00
else {
2019-05-02 23:22:07 +02:00
std::string key = StringUtils::format("%016llX", title.id());
2019-05-06 22:51:09 +02:00
if (CheatManager::availableCodes(key)) {
2019-05-02 23:22:07 +02:00
CheatManager::manageCheats(key);
}
2019-05-06 22:51:09 +02:00
else {
2019-05-02 23:22:07 +02:00
Gui::showInfo("No available cheat codes for this title.");
}
2019-05-06 22:51:09 +02:00
}
2019-04-22 16:24:45 +02:00
}
2019-05-02 23:22:07 +02:00
}
2019-04-22 12:40:06 +02:00
}
2018-05-14 08:52:41 +02:00
Gui::updateSelector();
Gui::draw();
}
2018-05-14 08:52:41 +02:00
Threads::destroy();
servicesExit();
2018-05-26 09:36:00 +02:00
}