123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- #include "InstalledOptions.hpp"
- #include "InstalledItem.hpp"
- #include "AssetManager.hpp"
- #include "DownloadQueue.hpp"
- #include "Notification.hpp"
- #include "InstalledList.hpp"
- #include "Theme.hpp"
- #include "States/StateIdentifiers.hpp"
- #include "States/DialogState.hpp"
- #include <cpp3ds/System/I18n.hpp>
- namespace FreeShop {
- InstalledOptions::InstalledOptions()
- : m_installedItem(nullptr)
- , m_threadUninstallGame(&InstalledOptions::uninstallGame, this)
- , m_threadUninstallUpdate(&InstalledOptions::uninstallUpdate, this)
- , m_threadUninstallDLC(&InstalledOptions::uninstallDLC, this)
- {
- m_textGame.setString(_("Game"));
- if (Theme::isTextThemed)
- m_textGame.setFillColor(Theme::secondaryTextColor);
- else
- m_textGame.setFillColor(cpp3ds::Color(100, 100, 100));
- m_textGame.setCharacterSize(10);
- m_textGame.setPosition(20.f, 0.f);
- m_textGame.useSystemFont();
- m_textUpdates = m_textGame;
- m_textUpdates.setString(_("Updates"));
- m_textUpdates.move(m_textGame.getLocalBounds().width + 40.f, 0.f);
- m_textDLC = m_textUpdates;
- m_textDLC.setString(_("DLC"));
- m_textDLC.move(m_textUpdates.getLocalBounds().width + 40.f, 0.f);
- m_textIconGame.setFont(AssetManager<cpp3ds::Font>::get("fonts/fontawesome.ttf"));
- m_textIconGame.setString(L"\uf1f8");
- m_textIconGame.setFillColor(cpp3ds::Color(50, 100, 50));
- m_textIconGame.setCharacterSize(18);
- m_textIconGame.setPosition(m_textGame.getPosition().x + m_textGame.getLocalBounds().width + 5.f, -5.f);
- m_textIconUpdates = m_textIconGame;
- m_textIconUpdates.setPosition(m_textUpdates.getPosition().x + m_textUpdates.getLocalBounds().width + 5.f, -5.f);
- m_textIconDLC = m_textIconGame;
- m_textIconDLC.setPosition(m_textDLC.getPosition().x + m_textDLC.getLocalBounds().width + 5.f, -5.f);
- }
- void InstalledOptions::draw(cpp3ds::RenderTarget &target, cpp3ds::RenderStates states) const
- {
- states.transform *= getTransform();
- if (m_titleType != TitleKeys::SystemApplet && m_titleType != TitleKeys::SystemApplication)
- {
- target.draw(m_textGame, states);
- target.draw(m_textIconGame, states);
- }
- if (m_updatesAvailable)
- {
- target.draw(m_textUpdates, states);
- target.draw(m_textIconUpdates, states);
- }
- if (m_dlcAvailable)
- {
- target.draw(m_textDLC, states);
- target.draw(m_textIconDLC, states);
- }
- }
- #define SET_ALPHA(obj, alpha) \
- color = obj.getFillColor(); \
- color.a = alpha; \
- obj.setFillColor(color);
- void InstalledOptions::setValues(int tweenType, float *newValues)
- {
- switch (tweenType) {
- case ALPHA: {
- cpp3ds::Color color;
- auto alpha = static_cast<cpp3ds::Uint8>(newValues[0]);
- SET_ALPHA(m_textGame, alpha);
- SET_ALPHA(m_textUpdates, alpha);
- SET_ALPHA(m_textDLC, alpha);
- SET_ALPHA(m_textIconGame, alpha);
- SET_ALPHA(m_textIconUpdates, alpha);
- SET_ALPHA(m_textIconDLC, alpha);
- break;
- }
- default:
- TweenTransformable::setValues(tweenType, newValues);
- }
- }
- int InstalledOptions::getValues(int tweenType, float *returnValues)
- {
- switch (tweenType) {
- case ALPHA:
- returnValues[0] = m_textGame.getFillColor().a;
- return 1;
- default:
- return TweenTransformable::getValues(tweenType, returnValues);
- }
- }
- void InstalledOptions::processTouchEvent(const cpp3ds::Event &event)
- {
- cpp3ds::String appTitle = m_installedItem->getAppItem()->getTitle();
- cpp3ds::Vector2f touchPos(event.touch.x - getPosition().x, event.touch.y - getPosition().y);
- if (m_textIconGame.getGlobalBounds().contains(touchPos))
- {
- cpp3ds::Uint64 titleId = m_installedItem->getTitleId();
- if (m_titleType != TitleKeys::SystemApplet && m_titleType != TitleKeys::SystemApplication)
- {
- g_browseState->requestStackPush(States::Dialog, false, [=](void *data) mutable {
- auto event = reinterpret_cast<DialogState::Event *>(data);
- if (event->type == DialogState::GetText) {
- auto str = reinterpret_cast<cpp3ds::String *>(event->data);
- *str = _("You are deleting this game, including all save data:\n\n%s",
- appTitle.toAnsiString().c_str());
- return true;
- }
- else if (event->type == DialogState::GetTitle) {
- auto str = reinterpret_cast<cpp3ds::String *>(event->data);
- *str = _("Uninstall a game");
- return true;
- }
- else if (event->type == DialogState::Response) {
- bool *accepted = reinterpret_cast<bool *>(event->data);
- if (*accepted) {
- m_threadUninstallGame.launch();
- }
- return true;
- }
- return false;
- });
- }
- }
- else if (m_textIconUpdates.getGlobalBounds().contains(touchPos))
- {
- if (m_updatesInstalled)
- {
- g_browseState->requestStackPush(States::Dialog, false, [=](void *data) mutable {
- auto event = reinterpret_cast<DialogState::Event*>(data);
- if (event->type == DialogState::GetText)
- {
- auto str = reinterpret_cast<cpp3ds::String*>(event->data);
- *str = _("You are deleting updates for this title:\n\n%s", appTitle.toAnsiString().c_str());
- return true;
- }
- else if (event->type == DialogState::GetTitle) {
- auto str = reinterpret_cast<cpp3ds::String *>(event->data);
- *str = _("Uninstall an update");
- return true;
- }
- else if (event->type == DialogState::Response)
- {
- bool *accepted = reinterpret_cast<bool*>(event->data);
- if (*accepted)
- {
- m_threadUninstallUpdate.launch();
- }
- return true;
- }
- return false;
- });
- }
- else
- {
- for (auto &id : m_installedItem->getAppItem()->getUpdates())
- if (!m_installedItem->getUpdateStatus(id))
- DownloadQueue::getInstance().addDownload(m_installedItem->getAppItem(), id, [=](bool succeeded){
- if (!succeeded) {
- m_updatesAvailable = true;
- update();
- }
- });
- m_updatesAvailable = false;
- Notification::spawn(_("Queued update: %s", appTitle.toAnsiString().c_str()));
- update();
- }
- }
- else if (m_textIconDLC.getGlobalBounds().contains(touchPos))
- {
- if (m_dlcInstalled)
- {
- g_browseState->requestStackPush(States::Dialog, false, [=](void *data) mutable {
- auto event = reinterpret_cast<DialogState::Event*>(data);
- if (event->type == DialogState::GetText)
- {
- auto str = reinterpret_cast<cpp3ds::String*>(event->data);
- *str = _("You are deleting DLC for this title:\n\n%s", appTitle.toAnsiString().c_str());
- return true;
- }
- else if (event->type == DialogState::GetTitle) {
- auto str = reinterpret_cast<cpp3ds::String *>(event->data);
- *str = _("Uninstall a DLC");
- return true;
- }
- else if (event->type == DialogState::Response)
- {
- bool *accepted = reinterpret_cast<bool*>(event->data);
- if (*accepted)
- {
- m_threadUninstallDLC.launch();
- }
- return true;
- }
- return false;
- });
- }
- else
- {
- for (auto &id : m_installedItem->getAppItem()->getDLC())
- if (!m_installedItem->getDLCStatus(id))
- DownloadQueue::getInstance().addDownload(m_installedItem->getAppItem(), id, [=](bool succeeded){
- if (!succeeded) {
- m_dlcAvailable = true;
- update();
- }
- });
- m_dlcAvailable = false;
- Notification::spawn(_("Queued DLC: %s", appTitle.toAnsiString().c_str()));
- update();
- }
- }
- }
- void InstalledOptions::setInstalledItem(InstalledItem *installedItem)
- {
- m_installedItem = installedItem;
- m_updatesAvailable = installedItem->getUpdates().size() > 0;
- m_dlcAvailable = installedItem->getDLC().size() > 0;
- for (auto &id : m_installedItem->getAppItem()->getUpdates())
- if (DownloadQueue::getInstance().isDownloading(id))
- m_updatesAvailable = false;
- for (auto &id : m_installedItem->getAppItem()->getDLC())
- if (DownloadQueue::getInstance().isDownloading(id))
- m_dlcAvailable = false;
- update();
- m_titleType = static_cast<TitleKeys::TitleType>(installedItem->getTitleId() >> 32);
- #ifdef _3DS
- m_mediaType = (m_titleType == TitleKeys::DSiWare) ? MEDIATYPE_NAND : MEDIATYPE_SD;
- #endif
- }
- InstalledItem *InstalledOptions::getInstalledItem() const
- {
- return m_installedItem;
- }
- void InstalledOptions::update()
- {
- m_updatesInstalled = true;
- for (auto &update : m_installedItem->getUpdates())
- if (!update.second)
- {
- m_updatesInstalled = false;
- break;
- }
- m_dlcInstalled = true;
- for (auto &dlc : m_installedItem->getDLC())
- if (!dlc.second)
- {
- m_dlcInstalled = false;
- break;
- }
- m_textIconUpdates.setString(m_updatesInstalled ? L"\uf1f8" : L"\uf019");
- m_textIconDLC.setString(m_dlcInstalled ? L"\uf1f8" : L"\uf019");
- m_installedItem->updateGameTitle();
- }
- void InstalledOptions::uninstallGame()
- {
- InstalledList::getInstance().setDrawList(false);
- g_browseState->blockControls(true);
- g_browseState->requestStackPush(States::Loading);
- cpp3ds::String appTitle = m_installedItem->getAppItem()->getTitle();
- cpp3ds::Uint64 titleId = m_installedItem->getTitleId();
- #ifdef _3DS
- AM_DeleteTitle(m_mediaType, titleId);
- #endif
- m_installedItem->getAppItem()->setInstalled(false);
- Notification::spawn(_("Deleted: %s", appTitle.toAnsiString().c_str()));
- g_browseState->requestStackPop();
- InstalledList::getInstance().setDrawList(true);
- g_browseState->blockControls(false);
-
- InstalledList::getInstance().refresh();
- }
- void InstalledOptions::uninstallUpdate()
- {
- InstalledList::getInstance().setDrawList(false);
- g_browseState->blockControls(true);
- g_browseState->requestStackPush(States::Loading);
- cpp3ds::String appTitle = m_installedItem->getAppItem()->getTitle();
- for (auto &id : m_installedItem->getAppItem()->getUpdates()) {
- #ifdef _3DS
- AM_DeleteTitle(m_mediaType, id);
- #endif
- m_installedItem->setUpdateStatus(id, false);
- }
- m_updatesInstalled = false;
- Notification::spawn(_("Deleted update: %s", appTitle.toAnsiString().c_str()));
- g_browseState->requestStackPop();
- InstalledList::getInstance().setDrawList(true);
- g_browseState->blockControls(false);
- update();
- }
- void InstalledOptions::uninstallDLC()
- {
- InstalledList::getInstance().setDrawList(false);
- g_browseState->blockControls(true);
- g_browseState->requestStackPush(States::Loading);
- cpp3ds::String appTitle = m_installedItem->getAppItem()->getTitle();
- for (auto &id : m_installedItem->getAppItem()->getDLC()) {
- #ifdef _3DS
- AM_DeleteTitle(m_mediaType, id);
- #endif
- m_installedItem->setDLCStatus(id, false);
- }
- m_dlcInstalled = false;
- Notification::spawn(_("Deleted DLC: %s", appTitle.toAnsiString().c_str()));
- g_browseState->requestStackPop();
- InstalledList::getInstance().setDrawList(true);
- g_browseState->blockControls(false);
- update();
- }
- } // namespace FreeShop
|