/* * This file is part of Universal-Updater * Copyright (C) 2019-2020 Universal-Team * * 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 . * * 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 "download.hpp" #include "fileBrowse.hpp" #include "mainScreen.hpp" #include "storeUtils.hpp" #include extern int fadeAlpha; extern UniStoreInfo GetInfo(const std::string &file, const std::string &fileName); extern void notConnectedMsg(); /* MainScreen Constructor. Initialized Meta, Store and StoreEntry class and: - Downloads Universal-DB.. in case nothing exist. */ MainScreen::MainScreen() { this->meta = std::make_unique(); /* Check if lastStore is accessible. */ if (config->lastStore() != "universal-db.unistore" || config->lastStore() != "") { if (access((std::string(_STORE_PATH) + config->lastStore()).c_str(), F_OK) != 0) { config->lastStore("universal-db.unistore"); } else { /* check version and file here. */ const UniStoreInfo info = GetInfo((std::string(_STORE_PATH) + config->lastStore()), config->lastStore()); if (info.Version != 3) { config->lastStore("universal-db.unistore"); } if (info.File != "") { // Ensure to check for this. if ((info.File.find("/") != std::string::npos)) { config->lastStore("universal-db.unistore"); // It does contain a '/' which is invalid. } } } } /* If Universal DB --> Get! */ if (config->lastStore() == "universal-db.unistore" || config->lastStore() == "") { if (access("sdmc:/3ds/Universal-Updater/stores/universal-db.unistore", F_OK) != 0) { if (checkWifiStatus()) { std::string tmp = ""; // Just a temp. DownloadUniStore("https://db.universal-team.net/unistore/universal-db.unistore", -1, tmp, true, true); DownloadSpriteSheet("https://db.universal-team.net/unistore/universal-db.t3x", "universal-db.t3x"); } else { notConnectedMsg(); } } else { const UniStoreInfo info = GetInfo("sdmc:/3ds/Universal-Updater/stores/universal-db.unistore", "universal-db.unistore"); if (info.Version != _UNISTORE_VERSION) { if (checkWifiStatus()) { std::string tmp = ""; // Just a temp. DownloadUniStore("https://db.universal-team.net/unistore/universal-db.unistore", -1, tmp, true, true); DownloadSpriteSheet("https://db.universal-team.net/unistore/universal-db.t3x", "universal-db.t3x"); } else { notConnectedMsg(); } } } } this->store = std::make_unique(_STORE_PATH + config->lastStore()); StoreUtils::ResetAll(this->store, this->meta, this->entries); StoreUtils::SortEntries(false, SortType::LAST_UPDATED, this->entries); }; /* MainScreen Main Draw. */ void MainScreen::Draw(void) const { Gui::ScreenDraw(Top); Gui::Draw_Rect(0, 0, 400, 25, BAR_COLOR); Gui::Draw_Rect(0, 25, 400, 1, BAR_OUTL_COLOR); if (this->store && this->store->GetValid()) Gui::DrawStringCentered(0, 1, 0.7f, TEXT_COLOR, this->store->GetUniStoreTitle(), 370); else Gui::DrawStringCentered(0, 1, 0.7f, TEXT_COLOR, Lang::get("INVALID_UNISTORE"), 370); config->list() ? StoreUtils::DrawList(this->store, this->entries) : StoreUtils::DrawGrid(this->store, this->entries); if (fadeAlpha > 0) Gui::Draw_Rect(0, 0, 400, 240, C2D_Color32(0, 0, 0, fadeAlpha)); GFX::DrawBottom(); switch(this->storeMode) { case 0: /* Entry Info. */ if (this->store && this->store->GetValid() && this->entries.size() > 0) StoreUtils::DrawEntryInfo(this->store, this->entries[this->store->GetEntry()]); break; case 1: /* Download List. */ StoreUtils::DrawDownList(this->store, this->dwnldList, this->fetchDown); break; case 2: /* Search + Favorites. */ StoreUtils::DrawSearchMenu(this->searchIncludes, this->searchResult, this->marks, this->updateFilter); break; case 3: /* Sorting. */ StoreUtils::DrawSorting(this->ascending, this->sorttype); break; case 4: /* Settings. */ StoreUtils::DrawSettings(this->sPage, this->sSelection, this->sPos); break; } StoreUtils::DrawSideMenu(this->storeMode); if (this->showMarks && this->store && this->store->GetValid()) StoreUtils::DisplayMarkBox(this->entries[this->store->GetEntry()]->GetMarks()); if (fadeAlpha > 0) Gui::Draw_Rect(0, 0, 320, 240, C2D_Color32(0, 0, 0, fadeAlpha)); } /* MainScreen Logic. */ void MainScreen::Logic(u32 hDown, u32 hHeld, touchPosition touch) { if (this->showMarks) StoreUtils::MarkHandle(this->entries[this->store->GetEntry()], this->store, this->showMarks, this->meta); if (!this->showMarks) { if (this->storeMode == 0 || this->storeMode == 2 || this->storeMode == 3) { config->list() ? StoreUtils::ListLogic(this->store, this->entries, this->storeMode, this->lastMode, this->fetchDown, this->smallDelay) : StoreUtils::GridLogic(this->store, this->entries, this->storeMode, this->lastMode, this->fetchDown, this->smallDelay); } StoreUtils::SideMenuHandle(this->storeMode, this->fetchDown, this->lastMode); /* Fetch Download list. */ if (this->fetchDown) { this->dwnldList.clear(); if (this->store && this->store->GetValid()) { this->store->SetDownloadIndex(0); // Reset to 0. this->store->SetDownloadSIndex(0); if ((int)this->entries.size() > this->store->GetEntry()) { this->dwnldList = this->store->GetDownloadList(this->entries[this->store->GetEntry()]->GetEntryIndex()); } } this->fetchDown = false; } switch(this->storeMode) { case 0: if (this->store && this->store->GetValid()) StoreUtils::EntryHandle(this->showMarks, this->fetchDown); break; case 1: if (this->store && this->store->GetValid()) StoreUtils::DownloadHandle(this->store, this->entries[this->store->GetEntry()], this->dwnldList, this->storeMode, this->meta, this->lastMode, this->smallDelay); break; case 2: StoreUtils::SearchHandle(this->store, this->entries, this->searchIncludes, this->meta, this->searchResult, this->marks, this->updateFilter, this->ascending, this->sorttype); break; case 3: StoreUtils::SortHandle(this->store, this->entries, this->ascending, this->sorttype); break; case 4: StoreUtils::SettingsHandle(this->sPage, this->showSettings, this->storeMode, this->sSelection, this->store, this->entries, this->meta, this->sPos); break; } } }