Checkpoint/3ds/source/main.cpp

159 lines
4.7 KiB
C++
Raw Normal View History

2018-05-14 06:52:41 +00:00
/*
* This file is part of Checkpoint
* Copyright (C) 2017-2018 Bernardo Giordano
*
* 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 07:45:56 +00:00
*/
2018-05-14 06:52:41 +00:00
#include "thread.hpp"
#include "util.hpp"
2017-09-29 07:45:56 +00:00
int main() {
2018-05-14 06:52:41 +00:00
servicesInit();
int selectionTimer = 0;
int refreshTimer = 0;
Threads::create((ThreadFunc)Threads::titles);
2017-09-29 07:45:56 +00:00
2018-05-25 17:52:44 +00:00
u32 kHeld, kDown = hidKeysDown();
while (aptMainLoop() && !(kDown & KEY_START)) {
2018-05-14 06:52:41 +00:00
hidScanInput();
2018-05-25 17:52:44 +00:00
kDown = hidKeysDown();
kHeld = hidKeysHeld();
2018-05-14 06:52:41 +00:00
2018-05-25 17:52:44 +00:00
if (kDown & KEY_A)
2018-05-14 06:52:41 +00:00
{
Gui::bottomScroll(true);
Gui::updateButtonsColor();
}
2018-05-25 17:52:44 +00:00
if (kDown & KEY_B)
2018-05-14 06:52:41 +00:00
{
Gui::bottomScroll(false);
Gui::updateButtonsColor();
Gui::clearSelectedEntries();
2018-05-28 20:05:13 +00:00
Gui::resetScrollableIndex();
2018-05-14 06:52:41 +00:00
}
2018-05-25 17:52:44 +00:00
if (kDown & KEY_X)
2018-05-14 06:52:41 +00:00
{
if (Gui::bottomScroll())
{
bool isSaveMode = Archive::mode() == MODE_SAVE;
size_t index = Gui::scrollableIndex();
// avoid actions if X is pressed on "New..."
if (index > 0 && Gui::askForConfirmation("Delete selected backup?"))
{
Title title;
getTitle(title, Gui::index());
std::u16string path = isSaveMode ? title.fullSavePath(index) : title.fullExtdataPath(index);
io::deleteBackupFolder(path);
2018-05-14 06:52:41 +00:00
refreshDirectories(title.id());
Gui::scrollableIndex(index - 1);
}
}
else
{
Gui::resetIndex();
Archive::mode(Archive::mode() == MODE_SAVE ? MODE_EXTDATA : MODE_SAVE);
Gui::clearSelectedEntries();
Gui::resetScrollableIndex();
2018-05-14 06:52:41 +00:00
}
}
2018-05-25 17:52:44 +00:00
if (kDown & KEY_Y)
2018-05-14 06:52:41 +00:00
{
Gui::addSelectedEntry(Gui::index());
}
2018-05-25 17:52:44 +00:00
if (kHeld & KEY_Y)
2018-05-14 06:52:41 +00:00
{
selectionTimer++;
}
else
{
selectionTimer = 0;
}
if (selectionTimer > 90)
{
Gui::clearSelectedEntries();
for (size_t i = 0, sz = getTitleCount(); i < sz; i++)
{
Gui::addSelectedEntry(i);
}
selectionTimer = 0;
}
2018-05-25 17:52:44 +00:00
if (kHeld & KEY_B)
2018-05-14 06:52:41 +00:00
{
refreshTimer++;
}
else
{
refreshTimer = 0;
}
2018-05-14 06:52:41 +00:00
if (refreshTimer > 90)
{
Threads::create((ThreadFunc)Threads::titles);
refreshTimer = 0;
}
2018-05-25 17:52:44 +00:00
if (Gui::isBackupReleased() || (Gui::bottomScroll() && kDown & KEY_L))
2018-05-14 06:52:41 +00:00
{
if (Gui::multipleSelectionEnabled())
{
Gui::resetScrollableIndex();
std::vector<size_t> list = Gui::selectedEntries();
for (size_t i = 0, sz = list.size(); i < sz; i++)
{
io::backup(list.at(i));
}
Gui::clearSelectedEntries();
}
else
{
io::backup(Gui::index());
}
}
2018-05-25 17:52:44 +00:00
if (Gui::isRestoreReleased() || (Gui::bottomScroll() && kDown & KEY_R))
2018-05-14 06:52:41 +00:00
{
if (Gui::multipleSelectionEnabled())
{
Gui::clearSelectedEntries();
}
else
{
io::restore(Gui::index());
}
}
Gui::updateSelector();
Gui::draw();
}
Threads::destroy();
servicesExit();
2018-05-26 07:36:00 +00:00
}