2014-06-25 16:29:58 +00:00
|
|
|
#include "guis/GuiScraperMulti.h"
|
|
|
|
|
|
|
|
#include "components/ButtonComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/MenuComponent.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "components/ScraperSearchComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/TextComponent.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "guis/GuiMsgBox.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "views/ViewController.h"
|
|
|
|
#include "Gamelist.h"
|
|
|
|
#include "PowerSaver.h"
|
|
|
|
#include "SystemData.h"
|
|
|
|
#include "Window.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-08-11 17:03:12 +00:00
|
|
|
GuiScraperMulti::GuiScraperMulti(Window* window, const std::queue<ScraperSearchParams>& searches, bool approveResults) :
|
|
|
|
GuiComponent(window), mBackground(window, ":/frame.png"), mGrid(window, Vector2i(1, 5)),
|
2014-06-25 16:29:58 +00:00
|
|
|
mSearchQueue(searches)
|
|
|
|
{
|
|
|
|
assert(mSearchQueue.size());
|
|
|
|
|
|
|
|
addChild(&mBackground);
|
|
|
|
addChild(&mGrid);
|
|
|
|
|
2017-08-11 17:03:12 +00:00
|
|
|
PowerSaver::pause();
|
2016-09-12 11:31:44 +00:00
|
|
|
mIsProcessing = true;
|
|
|
|
|
2017-11-17 14:58:52 +00:00
|
|
|
mTotalGames = (int)mSearchQueue.size();
|
2014-06-25 16:29:58 +00:00
|
|
|
mCurrentGame = 0;
|
|
|
|
mTotalSuccessful = 0;
|
|
|
|
mTotalSkipped = 0;
|
|
|
|
|
|
|
|
// set up grid
|
|
|
|
mTitle = std::make_shared<TextComponent>(mWindow, "SCRAPING IN PROGRESS", Font::get(FONT_SIZE_LARGE), 0x555555FF, ALIGN_CENTER);
|
|
|
|
mGrid.setEntry(mTitle, Vector2i(0, 0), false, true);
|
|
|
|
|
|
|
|
mSystem = std::make_shared<TextComponent>(mWindow, "SYSTEM", Font::get(FONT_SIZE_MEDIUM), 0x777777FF, ALIGN_CENTER);
|
|
|
|
mGrid.setEntry(mSystem, Vector2i(0, 1), false, true);
|
|
|
|
|
|
|
|
mSubtitle = std::make_shared<TextComponent>(mWindow, "subtitle text", Font::get(FONT_SIZE_SMALL), 0x888888FF, ALIGN_CENTER);
|
|
|
|
mGrid.setEntry(mSubtitle, Vector2i(0, 2), false, true);
|
|
|
|
|
2017-08-11 17:03:12 +00:00
|
|
|
mSearchComp = std::make_shared<ScraperSearchComponent>(mWindow,
|
2014-06-25 16:29:58 +00:00
|
|
|
approveResults ? ScraperSearchComponent::ALWAYS_ACCEPT_MATCHING_CRC : ScraperSearchComponent::ALWAYS_ACCEPT_FIRST_RESULT);
|
|
|
|
mSearchComp->setAcceptCallback(std::bind(&GuiScraperMulti::acceptResult, this, std::placeholders::_1));
|
|
|
|
mSearchComp->setSkipCallback(std::bind(&GuiScraperMulti::skip, this));
|
|
|
|
mSearchComp->setCancelCallback(std::bind(&GuiScraperMulti::finish, this));
|
|
|
|
mGrid.setEntry(mSearchComp, Vector2i(0, 3), mSearchComp->getSearchType() != ScraperSearchComponent::ALWAYS_ACCEPT_FIRST_RESULT, true);
|
|
|
|
|
|
|
|
std::vector< std::shared_ptr<ButtonComponent> > buttons;
|
|
|
|
|
|
|
|
if(approveResults)
|
|
|
|
{
|
2017-08-11 17:03:12 +00:00
|
|
|
buttons.push_back(std::make_shared<ButtonComponent>(mWindow, "INPUT", "search", [&] {
|
|
|
|
mSearchComp->openInputScreen(mSearchQueue.front());
|
|
|
|
mGrid.resetCursor();
|
2014-06-25 16:29:58 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
buttons.push_back(std::make_shared<ButtonComponent>(mWindow, "SKIP", "skip", [&] {
|
|
|
|
skip();
|
|
|
|
mGrid.resetCursor();
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
buttons.push_back(std::make_shared<ButtonComponent>(mWindow, "STOP", "stop (progress saved)", std::bind(&GuiScraperMulti::finish, this)));
|
|
|
|
|
|
|
|
mButtonGrid = makeButtonGrid(mWindow, buttons);
|
|
|
|
mGrid.setEntry(mButtonGrid, Vector2i(0, 4), true, false);
|
|
|
|
|
|
|
|
setSize(Renderer::getScreenWidth() * 0.95f, Renderer::getScreenHeight() * 0.849f);
|
|
|
|
setPosition((Renderer::getScreenWidth() - mSize.x()) / 2, (Renderer::getScreenHeight() - mSize.y()) / 2);
|
|
|
|
|
|
|
|
doNextSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
GuiScraperMulti::~GuiScraperMulti()
|
|
|
|
{
|
|
|
|
// view type probably changed (basic -> detailed)
|
2017-11-11 14:56:22 +00:00
|
|
|
for(auto it = SystemData::sSystemVector.cbegin(); it != SystemData::sSystemVector.cend(); it++)
|
2014-06-25 16:29:58 +00:00
|
|
|
ViewController::get()->reloadGameListView(*it, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiScraperMulti::onSizeChanged()
|
|
|
|
{
|
|
|
|
mBackground.fitTo(mSize, Vector3f::Zero(), Vector2f(-32, -32));
|
|
|
|
|
|
|
|
mGrid.setRowHeightPerc(0, mTitle->getFont()->getLetterHeight() * 1.9725f / mSize.y(), false);
|
|
|
|
mGrid.setRowHeightPerc(1, (mSystem->getFont()->getLetterHeight() + 2) / mSize.y(), false);
|
|
|
|
mGrid.setRowHeightPerc(2, mSubtitle->getFont()->getHeight() * 1.75f / mSize.y(), false);
|
|
|
|
mGrid.setRowHeightPerc(4, mButtonGrid->getSize().y() / mSize.y(), false);
|
|
|
|
mGrid.setSize(mSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiScraperMulti::doNextSearch()
|
|
|
|
{
|
|
|
|
if(mSearchQueue.empty())
|
|
|
|
{
|
|
|
|
finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update title
|
|
|
|
std::stringstream ss;
|
|
|
|
mSystem->setText(strToUpper(mSearchQueue.front().system->getFullName()));
|
|
|
|
|
|
|
|
// update subtitle
|
|
|
|
ss.str(""); // clear
|
|
|
|
ss << "GAME " << (mCurrentGame + 1) << " OF " << mTotalGames << " - " << strToUpper(mSearchQueue.front().game->getPath().filename().string());
|
|
|
|
mSubtitle->setText(ss.str());
|
|
|
|
|
|
|
|
mSearchComp->search(mSearchQueue.front());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiScraperMulti::acceptResult(const ScraperSearchResult& result)
|
|
|
|
{
|
|
|
|
ScraperSearchParams& search = mSearchQueue.front();
|
|
|
|
|
|
|
|
search.game->metadata = result.mdl;
|
|
|
|
updateGamelist(search.system);
|
|
|
|
|
|
|
|
mSearchQueue.pop();
|
|
|
|
mCurrentGame++;
|
|
|
|
mTotalSuccessful++;
|
|
|
|
doNextSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiScraperMulti::skip()
|
|
|
|
{
|
|
|
|
mSearchQueue.pop();
|
|
|
|
mCurrentGame++;
|
|
|
|
mTotalSkipped++;
|
|
|
|
doNextSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiScraperMulti::finish()
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
if(mTotalSuccessful == 0)
|
|
|
|
{
|
|
|
|
ss << "NO GAMES WERE SCRAPED.";
|
|
|
|
}else{
|
|
|
|
ss << mTotalSuccessful << " GAME" << ((mTotalSuccessful > 1) ? "S" : "") << " SUCCESSFULLY SCRAPED!";
|
|
|
|
|
|
|
|
if(mTotalSkipped > 0)
|
|
|
|
ss << "\n" << mTotalSkipped << " GAME" << ((mTotalSkipped > 1) ? "S" : "") << " SKIPPED.";
|
|
|
|
}
|
|
|
|
|
2017-08-11 17:03:12 +00:00
|
|
|
mWindow->pushGui(new GuiMsgBox(mWindow, ss.str(),
|
2014-06-25 16:29:58 +00:00
|
|
|
"OK", [&] { delete this; }));
|
2016-09-12 11:31:44 +00:00
|
|
|
|
|
|
|
mIsProcessing = false;
|
2017-08-11 17:03:12 +00:00
|
|
|
PowerSaver::resume();
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<HelpPrompt> GuiScraperMulti::getHelpPrompts()
|
|
|
|
{
|
|
|
|
return mGrid.getHelpPrompts();
|
|
|
|
}
|