2020-05-26 16:34:33 +00:00
|
|
|
//
|
2020-06-06 12:14:13 +00:00
|
|
|
// GuiScraperSearch.cpp
|
2020-05-26 16:34:33 +00:00
|
|
|
//
|
2020-06-06 12:14:13 +00:00
|
|
|
// User interface for the scraper where the user is able to see an overview
|
2020-05-26 16:34:33 +00:00
|
|
|
// of the game being scraped and an option to override the game search string.
|
|
|
|
// Used by both single-game scraping from the GuiMetaDataEd menu as well as
|
2020-06-06 11:10:33 +00:00
|
|
|
// to resolve scraping conflicts when run from GuiScraperMenu.
|
|
|
|
// The function to properly save scraped metadata is located here too.
|
2020-05-26 16:34:33 +00:00
|
|
|
//
|
|
|
|
// This component is called from GuiGameScraper for single-game scraping and
|
|
|
|
// from GuiScraperMulti for multi-game scraping.
|
|
|
|
//
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
#include "guis/GuiScraperSearch.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/ComponentList.h"
|
2018-10-13 01:08:15 +00:00
|
|
|
#include "components/DateTimeEditComponent.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "components/ImageComponent.h"
|
|
|
|
#include "components/RatingComponent.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/ScrollableContainer.h"
|
|
|
|
#include "components/TextComponent.h"
|
|
|
|
#include "guis/GuiMsgBox.h"
|
|
|
|
#include "guis/GuiTextEditPopup.h"
|
|
|
|
#include "resources/Font.h"
|
2018-01-27 17:04:28 +00:00
|
|
|
#include "utils/StringUtil.h"
|
2020-06-07 18:09:02 +00:00
|
|
|
#include "views/ViewController.h"
|
|
|
|
#include "CollectionSystemManager.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "FileData.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "Log.h"
|
2020-06-07 18:09:02 +00:00
|
|
|
#include "MameNames.h"
|
|
|
|
#include "PlatformId.h"
|
|
|
|
#include "SystemData.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "Window.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
GuiScraperSearch::GuiScraperSearch(
|
2020-05-26 16:34:33 +00:00
|
|
|
Window* window,
|
|
|
|
SearchType type)
|
|
|
|
: GuiComponent(window),
|
|
|
|
mGrid(window, Vector2i(4, 3)),
|
|
|
|
mBusyAnim(window),
|
|
|
|
mSearchType(type)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
addChild(&mGrid);
|
|
|
|
|
|
|
|
mBlockAccept = false;
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Left spacer (empty component, needed for borders).
|
|
|
|
mGrid.setEntry(std::make_shared<GuiComponent>(mWindow), Vector2i(0, 0),
|
|
|
|
false, false, Vector2i(1, 3), GridFlags::BORDER_TOP | GridFlags::BORDER_BOTTOM);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Selected result name.
|
|
|
|
mResultName = std::make_shared<TextComponent>(mWindow, "Result name",
|
|
|
|
Font::get(FONT_SIZE_MEDIUM), 0x777777FF);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Selected result thumbnail.
|
2014-06-25 16:29:58 +00:00
|
|
|
mResultThumbnail = std::make_shared<ImageComponent>(mWindow);
|
|
|
|
mGrid.setEntry(mResultThumbnail, Vector2i(1, 1), false, false, Vector2i(1, 1));
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Selected result description and container.
|
2014-06-25 16:29:58 +00:00
|
|
|
mDescContainer = std::make_shared<ScrollableContainer>(mWindow);
|
2020-05-26 16:34:33 +00:00
|
|
|
mResultDesc = std::make_shared<TextComponent>(mWindow, "Result desc",
|
|
|
|
Font::get(FONT_SIZE_SMALL), 0x777777FF);
|
2014-06-25 16:29:58 +00:00
|
|
|
mDescContainer->addChild(mResultDesc.get());
|
|
|
|
mDescContainer->setAutoScroll(true);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Metadata.
|
|
|
|
auto font = Font::get(FONT_SIZE_SMALL); // Placeholder, gets replaced in onSizeChanged().
|
2014-06-25 16:29:58 +00:00
|
|
|
const unsigned int mdColor = 0x777777FF;
|
|
|
|
const unsigned int mdLblColor = 0x666666FF;
|
|
|
|
mMD_Rating = std::make_shared<RatingComponent>(mWindow);
|
2018-10-13 01:08:15 +00:00
|
|
|
mMD_ReleaseDate = std::make_shared<DateTimeEditComponent>(mWindow);
|
2014-06-25 16:29:58 +00:00
|
|
|
mMD_ReleaseDate->setColor(mdColor);
|
|
|
|
mMD_Developer = std::make_shared<TextComponent>(mWindow, "", font, mdColor);
|
|
|
|
mMD_Publisher = std::make_shared<TextComponent>(mWindow, "", font, mdColor);
|
|
|
|
mMD_Genre = std::make_shared<TextComponent>(mWindow, "", font, mdColor);
|
|
|
|
mMD_Players = std::make_shared<TextComponent>(mWindow, "", font, mdColor);
|
|
|
|
|
2020-06-06 11:10:33 +00:00
|
|
|
if (Settings::getInstance()->getBool("ScrapeRatings") &&
|
|
|
|
Settings::getInstance()->getString("Scraper") != "TheGamesDB")
|
|
|
|
mMD_Pairs.push_back(MetaDataPair(std::make_shared<TextComponent>
|
|
|
|
(mWindow, "RATING:", font, mdLblColor), mMD_Rating, false));
|
2020-05-26 16:34:33 +00:00
|
|
|
mMD_Pairs.push_back(MetaDataPair(std::make_shared<TextComponent>
|
|
|
|
(mWindow, "RELEASED:", font, mdLblColor), mMD_ReleaseDate));
|
|
|
|
mMD_Pairs.push_back(MetaDataPair(std::make_shared<TextComponent>
|
|
|
|
(mWindow, "DEVELOPER:", font, mdLblColor), mMD_Developer));
|
|
|
|
mMD_Pairs.push_back(MetaDataPair(std::make_shared<TextComponent>
|
|
|
|
(mWindow, "PUBLISHER:", font, mdLblColor), mMD_Publisher));
|
|
|
|
mMD_Pairs.push_back(MetaDataPair(std::make_shared<TextComponent>
|
|
|
|
(mWindow, "GENRE:", font, mdLblColor), mMD_Genre));
|
|
|
|
mMD_Pairs.push_back(MetaDataPair(std::make_shared<TextComponent>
|
|
|
|
(mWindow, "PLAYERS:", font, mdLblColor), mMD_Players));
|
|
|
|
|
|
|
|
mMD_Grid = std::make_shared<ComponentGrid>(mWindow,
|
|
|
|
Vector2i(2, (int)mMD_Pairs.size()*2 - 1));
|
2014-06-25 16:29:58 +00:00
|
|
|
unsigned int i = 0;
|
2020-05-26 16:34:33 +00:00
|
|
|
for (auto it = mMD_Pairs.cbegin(); it != mMD_Pairs.cend(); it++) {
|
2014-06-25 16:29:58 +00:00
|
|
|
mMD_Grid->setEntry(it->first, Vector2i(0, i), false, true);
|
|
|
|
mMD_Grid->setEntry(it->second, Vector2i(1, i), false, it->resize);
|
|
|
|
i += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
mGrid.setEntry(mMD_Grid, Vector2i(2, 1), false, false);
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Result list.
|
2014-06-25 16:29:58 +00:00
|
|
|
mResultList = std::make_shared<ComponentList>(mWindow);
|
2020-05-26 16:34:33 +00:00
|
|
|
mResultList->setCursorChangedCallback([this](CursorState state) {
|
|
|
|
if (state == CURSOR_STOPPED) updateInfoPane(); });
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
updateViewStyle();
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::onSizeChanged()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mGrid.setSize(mSize);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSize.x() == 0 || mSize.y() == 0)
|
2014-06-25 16:29:58 +00:00
|
|
|
return;
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Column widths.
|
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT)
|
|
|
|
mGrid.setColWidthPerc(0, 0.02f); // Looks better when this is higher in auto mode.
|
2014-06-25 16:29:58 +00:00
|
|
|
else
|
|
|
|
mGrid.setColWidthPerc(0, 0.01f);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
mGrid.setColWidthPerc(1, 0.25f);
|
|
|
|
mGrid.setColWidthPerc(2, 0.25f);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Row heights.
|
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT) // Show name.
|
|
|
|
mGrid.setRowHeightPerc(0, (mResultName->getFont()->getHeight() * 1.6f) /
|
|
|
|
mGrid.getSize().y()); // Result name.
|
2014-06-25 16:29:58 +00:00
|
|
|
else
|
2020-05-26 16:34:33 +00:00
|
|
|
mGrid.setRowHeightPerc(0, 0.0825f); // Hide name but do padding.
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT)
|
2014-06-25 16:29:58 +00:00
|
|
|
mGrid.setRowHeightPerc(2, 0.2f);
|
2020-05-26 16:34:33 +00:00
|
|
|
else
|
2014-06-25 16:29:58 +00:00
|
|
|
mGrid.setRowHeightPerc(1, 0.505f);
|
|
|
|
|
|
|
|
const float boxartCellScale = 0.9f;
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Limit thumbnail size using setMaxHeight - we do this instead of letting mGrid
|
|
|
|
// call setSize because it maintains the aspect ratio.
|
|
|
|
// We also pad a little so it doesn't rub up against the metadata labels.
|
2014-06-25 16:29:58 +00:00
|
|
|
mResultThumbnail->setMaxSize(mGrid.getColWidth(1) * boxartCellScale, mGrid.getRowHeight(1));
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Metadata.
|
2014-06-25 16:29:58 +00:00
|
|
|
resizeMetadata();
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSearchType != ALWAYS_ACCEPT_FIRST_RESULT)
|
|
|
|
mDescContainer->setSize(mGrid.getColWidth(1)*boxartCellScale +
|
|
|
|
mGrid.getColWidth(2), mResultDesc->getFont()->getHeight() * 3);
|
2014-06-25 16:29:58 +00:00
|
|
|
else
|
2020-05-26 16:34:33 +00:00
|
|
|
mDescContainer->setSize(mGrid.getColWidth(3)*boxartCellScale,
|
2020-06-06 11:10:33 +00:00
|
|
|
mResultDesc->getFont()->getHeight() * 7);
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Make description text wrap at edge of container.
|
|
|
|
mResultDesc->setSize(mDescContainer->getSize().x(), 0);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
mGrid.onSizeChanged();
|
|
|
|
|
|
|
|
mBusyAnim.setSize(mSize);
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::resizeMetadata()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mMD_Grid->setSize(mGrid.getColWidth(2), mGrid.getRowHeight(1));
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mMD_Grid->getSize().y() > mMD_Pairs.size()) {
|
2014-06-25 16:29:58 +00:00
|
|
|
const int fontHeight = (int)(mMD_Grid->getSize().y() / mMD_Pairs.size() * 0.8f);
|
|
|
|
auto fontLbl = Font::get(fontHeight, FONT_PATH_REGULAR);
|
|
|
|
auto fontComp = Font::get(fontHeight, FONT_PATH_LIGHT);
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Update label fonts.
|
2014-06-25 16:29:58 +00:00
|
|
|
float maxLblWidth = 0;
|
2020-05-26 16:34:33 +00:00
|
|
|
for (auto it = mMD_Pairs.cbegin(); it != mMD_Pairs.cend(); it++) {
|
2014-06-25 16:29:58 +00:00
|
|
|
it->first->setFont(fontLbl);
|
|
|
|
it->first->setSize(0, 0);
|
2020-05-26 16:34:33 +00:00
|
|
|
if (it->first->getSize().x() > maxLblWidth)
|
2014-06-25 16:29:58 +00:00
|
|
|
maxLblWidth = it->first->getSize().x() + 6;
|
|
|
|
}
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
for (unsigned int i = 0; i < mMD_Pairs.size(); i++)
|
|
|
|
mMD_Grid->setRowHeightPerc(i*2, (fontLbl->getLetterHeight() + 2) /
|
|
|
|
mMD_Grid->getSize().y());
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Update component fonts.
|
2014-06-25 16:29:58 +00:00
|
|
|
mMD_ReleaseDate->setFont(fontComp);
|
|
|
|
mMD_Developer->setFont(fontComp);
|
|
|
|
mMD_Publisher->setFont(fontComp);
|
|
|
|
mMD_Genre->setFont(fontComp);
|
|
|
|
mMD_Players->setFont(fontComp);
|
|
|
|
|
|
|
|
mMD_Grid->setColWidthPerc(0, maxLblWidth / mMD_Grid->getSize().x());
|
|
|
|
|
2020-06-06 11:10:33 +00:00
|
|
|
if (Settings::getInstance()->getBool("ScrapeRatings") &&
|
|
|
|
Settings::getInstance()->getString("Scraper") != "TheGamesDB") {
|
|
|
|
// Rating is manually sized.
|
|
|
|
mMD_Rating->setSize(mMD_Grid->getColWidth(1), fontLbl->getHeight() * 0.65f);
|
|
|
|
mMD_Grid->onSizeChanged();
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Make result font follow label font.
|
2014-06-25 16:29:58 +00:00
|
|
|
mResultDesc->setFont(Font::get(fontHeight, FONT_PATH_REGULAR));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::updateViewStyle()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-05-26 16:34:33 +00:00
|
|
|
// Unlink description, result list and result name.
|
2014-06-25 16:29:58 +00:00
|
|
|
mGrid.removeEntry(mResultName);
|
|
|
|
mGrid.removeEntry(mResultDesc);
|
|
|
|
mGrid.removeEntry(mResultList);
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Add them back depending on search type.
|
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT) {
|
|
|
|
// Show name.
|
|
|
|
mGrid.setEntry(mResultName, Vector2i(1, 0), false, true, Vector2i(2, 1),
|
|
|
|
GridFlags::BORDER_TOP);
|
|
|
|
|
|
|
|
// Need a border on the bottom left.
|
|
|
|
mGrid.setEntry(std::make_shared<GuiComponent>(mWindow), Vector2i(0, 2),
|
|
|
|
false, false, Vector2i(3, 1), GridFlags::BORDER_BOTTOM);
|
|
|
|
|
|
|
|
// Show description on the right.
|
|
|
|
mGrid.setEntry(mDescContainer, Vector2i(3, 0), false, false, Vector2i(1, 3),
|
|
|
|
GridFlags::BORDER_TOP | GridFlags::BORDER_BOTTOM);
|
|
|
|
// Make description text wrap at edge of container.
|
|
|
|
mResultDesc->setSize(mDescContainer->getSize().x(), 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Fake row where name would be.
|
|
|
|
mGrid.setEntry(std::make_shared<GuiComponent>(mWindow), Vector2i(1, 0),
|
|
|
|
false, true, Vector2i(2, 1), GridFlags::BORDER_TOP);
|
|
|
|
|
|
|
|
// Show result list on the right.
|
|
|
|
mGrid.setEntry(mResultList, Vector2i(3, 0), true, true, Vector2i(1, 3),
|
|
|
|
GridFlags::BORDER_LEFT | GridFlags::BORDER_TOP | GridFlags::BORDER_BOTTOM);
|
|
|
|
|
|
|
|
// Show description under image/info.
|
|
|
|
mGrid.setEntry(mDescContainer, Vector2i(1, 2), false, false, Vector2i(2, 1),
|
|
|
|
GridFlags::BORDER_BOTTOM);
|
|
|
|
// Make description text wrap at edge of container.
|
|
|
|
mResultDesc->setSize(mDescContainer->getSize().x(), 0);
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::search(const ScraperSearchParams& params)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2017-05-25 17:56:06 +00:00
|
|
|
mBlockAccept = true;
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
mResultList->clear();
|
|
|
|
mScraperResults.clear();
|
2020-06-06 11:10:33 +00:00
|
|
|
mMDRetrieveURLsHandle.reset();
|
2014-06-25 16:29:58 +00:00
|
|
|
mThumbnailReq.reset();
|
|
|
|
mMDResolveHandle.reset();
|
|
|
|
updateInfoPane();
|
|
|
|
|
|
|
|
mLastSearch = params;
|
|
|
|
mSearchHandle = startScraperSearch(params);
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::stop()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mThumbnailReq.reset();
|
|
|
|
mSearchHandle.reset();
|
|
|
|
mMDResolveHandle.reset();
|
2020-06-06 11:10:33 +00:00
|
|
|
mMDRetrieveURLsHandle.reset();
|
2014-06-25 16:29:58 +00:00
|
|
|
mBlockAccept = false;
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::onSearchDone(const std::vector<ScraperSearchResult>& results)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mResultList->clear();
|
|
|
|
|
|
|
|
mScraperResults = results;
|
|
|
|
|
|
|
|
auto font = Font::get(FONT_SIZE_MEDIUM);
|
|
|
|
unsigned int color = 0x777777FF;
|
2020-05-26 16:34:33 +00:00
|
|
|
if (results.empty()) {
|
|
|
|
// Check if the scraper used is still valid.
|
|
|
|
if (!isValidConfiguredScraper()) {
|
2020-06-07 18:09:02 +00:00
|
|
|
mWindow->pushGui(new GuiMsgBox(mWindow, getHelpStyle(),
|
|
|
|
Utils::String::toUpper("Configured scraper is no longer available.\n"
|
|
|
|
"Please change the scraping source in the settings."),
|
2019-01-24 18:00:19 +00:00
|
|
|
"FINISH", mSkipCallback));
|
|
|
|
}
|
2020-05-26 16:34:33 +00:00
|
|
|
else {
|
2020-06-09 18:03:31 +00:00
|
|
|
mFoundGame = false;
|
2019-01-24 18:00:19 +00:00
|
|
|
ComponentListRow row;
|
2020-05-26 16:34:33 +00:00
|
|
|
row.addElement(std::make_shared<TextComponent>(mWindow, "NO GAMES FOUND - SKIP",
|
|
|
|
font, color), true);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSkipCallback)
|
2019-01-24 18:00:19 +00:00
|
|
|
row.makeAcceptInputHandler(mSkipCallback);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2019-01-24 18:00:19 +00:00
|
|
|
mResultList->addRow(row);
|
|
|
|
mGrid.resetCursor();
|
|
|
|
}
|
2020-05-26 16:34:33 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-06-09 18:03:31 +00:00
|
|
|
mFoundGame = true;
|
2014-06-25 16:29:58 +00:00
|
|
|
ComponentListRow row;
|
2020-05-26 16:34:33 +00:00
|
|
|
for (size_t i = 0; i < results.size(); i++) {
|
2014-06-25 16:29:58 +00:00
|
|
|
row.elements.clear();
|
2020-05-26 16:34:33 +00:00
|
|
|
row.addElement(std::make_shared<TextComponent>(mWindow,
|
|
|
|
Utils::String::toUpper(results.at(i).mdl.get("name")), font, color), true);
|
2014-06-25 16:29:58 +00:00
|
|
|
row.makeAcceptInputHandler([this, i] { returnResult(mScraperResults.at(i)); });
|
|
|
|
mResultList->addRow(row);
|
|
|
|
}
|
|
|
|
mGrid.resetCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
mBlockAccept = false;
|
|
|
|
updateInfoPane();
|
|
|
|
|
2020-06-06 11:10:33 +00:00
|
|
|
// If there is no scraping result or if there is no game media to download
|
|
|
|
// as a thumbnail, then proceed directly.
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT) {
|
2020-06-06 11:10:33 +00:00
|
|
|
if (mScraperResults.size() == 0 || (mScraperResults.size() > 0 &&
|
|
|
|
mScraperResults.front().ThumbnailImageUrl == "")) {
|
|
|
|
if (mScraperResults.size() == 0)
|
|
|
|
mSkipCallback();
|
|
|
|
else
|
|
|
|
returnResult(mScraperResults.front());
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
2020-06-06 11:10:33 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::onSearchError(const std::string& error)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-06-06 12:14:13 +00:00
|
|
|
LOG(LogInfo) << "GuiScraperSearch search error: " << error;
|
2020-06-07 18:09:02 +00:00
|
|
|
mWindow->pushGui(new GuiMsgBox(mWindow, getHelpStyle(), Utils::String::toUpper(error),
|
2020-06-06 12:14:13 +00:00
|
|
|
"RETRY", std::bind(&GuiScraperSearch::search, this, mLastSearch),
|
2014-06-25 16:29:58 +00:00
|
|
|
"SKIP", mSkipCallback,
|
|
|
|
"CANCEL", mCancelCallback));
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
int GuiScraperSearch::getSelectedIndex()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-05-26 16:34:33 +00:00
|
|
|
if (!mScraperResults.size() || mGrid.getSelectedComponent() != mResultList)
|
2014-06-25 16:29:58 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return mResultList->getCursorId();
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::updateInfoPane()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
int i = getSelectedIndex();
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT && mScraperResults.size())
|
2014-06-25 16:29:58 +00:00
|
|
|
i = 0;
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (i != -1 && (int)mScraperResults.size() > i) {
|
2014-06-25 16:29:58 +00:00
|
|
|
ScraperSearchResult& res = mScraperResults.at(i);
|
2018-01-27 17:04:28 +00:00
|
|
|
mResultName->setText(Utils::String::toUpper(res.mdl.get("name")));
|
|
|
|
mResultDesc->setText(Utils::String::toUpper(res.mdl.get("desc")));
|
2014-06-25 16:29:58 +00:00
|
|
|
mDescContainer->reset();
|
|
|
|
|
|
|
|
mResultThumbnail->setImage("");
|
2020-06-06 11:10:33 +00:00
|
|
|
const std::string& thumb = res.screenshotUrl.empty() ? res.coverUrl : res.screenshotUrl;
|
|
|
|
mScraperResults[i].ThumbnailImageUrl = thumb;
|
|
|
|
|
|
|
|
// Cache the thumbnail image in mScraperResults so that we don't need to download
|
|
|
|
// it every time the list is scrolled back and forth.
|
|
|
|
if (mScraperResults[i].ThumbnailImageData.size() > 0) {
|
|
|
|
std::string content = mScraperResults[i].ThumbnailImageData;
|
|
|
|
mResultThumbnail->setImage(content.data(), content.length());
|
|
|
|
mGrid.onSizeChanged(); // A hack to fix the thumbnail position since its size changed.
|
|
|
|
}
|
|
|
|
// If it's not cached in mScraperResults it should mean that it's the first time
|
|
|
|
// we access the entry, and therefore we need to download the image.
|
|
|
|
else {
|
|
|
|
if (!thumb.empty()) {
|
|
|
|
// Make sure we don't attempt to download the same thumbnail twice.
|
|
|
|
if (!mThumbnailReq && mScraperResults[i].thumbnailDownloadStatus != IN_PROGRESS) {
|
|
|
|
mScraperResults[i].thumbnailDownloadStatus = IN_PROGRESS;
|
|
|
|
mThumbnailReq = std::unique_ptr<HttpReq>(new HttpReq(thumb));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mThumbnailReq.reset();
|
|
|
|
}
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Metadata.
|
2020-06-06 11:10:33 +00:00
|
|
|
if (Settings::getInstance()->getBool("ScrapeRatings") &&
|
2020-06-06 20:04:05 +00:00
|
|
|
Settings::getInstance()->getString("Scraper") != "TheGamesDB") {
|
2020-06-06 11:10:33 +00:00
|
|
|
mMD_Rating->setValue(Utils::String::toUpper(res.mdl.get("rating")));
|
2020-06-06 20:04:05 +00:00
|
|
|
mMD_Rating->setOpacity(255);
|
|
|
|
}
|
2018-01-27 17:04:28 +00:00
|
|
|
mMD_ReleaseDate->setValue(Utils::String::toUpper(res.mdl.get("releasedate")));
|
|
|
|
mMD_Developer->setText(Utils::String::toUpper(res.mdl.get("developer")));
|
|
|
|
mMD_Publisher->setText(Utils::String::toUpper(res.mdl.get("publisher")));
|
|
|
|
mMD_Genre->setText(Utils::String::toUpper(res.mdl.get("genre")));
|
|
|
|
mMD_Players->setText(Utils::String::toUpper(res.mdl.get("players")));
|
2014-06-25 16:29:58 +00:00
|
|
|
mGrid.onSizeChanged();
|
2020-05-26 16:34:33 +00:00
|
|
|
}
|
|
|
|
else {
|
2014-06-25 16:29:58 +00:00
|
|
|
mResultName->setText("");
|
|
|
|
mResultDesc->setText("");
|
|
|
|
mResultThumbnail->setImage("");
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Metadata.
|
2020-06-06 11:10:33 +00:00
|
|
|
if (Settings::getInstance()->getBool("ScrapeRatings") &&
|
2020-06-06 20:04:05 +00:00
|
|
|
Settings::getInstance()->getString("Scraper") != "TheGamesDB") {
|
2020-06-06 11:10:33 +00:00
|
|
|
mMD_Rating->setValue("");
|
2020-06-06 20:04:05 +00:00
|
|
|
mMD_Rating->setOpacity(0);
|
|
|
|
}
|
|
|
|
mMD_ReleaseDate->setValue("99990101T000000");
|
2014-06-25 16:29:58 +00:00
|
|
|
mMD_Developer->setText("");
|
|
|
|
mMD_Publisher->setText("");
|
|
|
|
mMD_Genre->setText("");
|
|
|
|
mMD_Players->setText("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
bool GuiScraperSearch::input(InputConfig* config, Input input)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-05-26 16:34:33 +00:00
|
|
|
if (config->isMappedTo("a", input) && input.value != 0) {
|
|
|
|
if (mBlockAccept)
|
2014-06-25 16:29:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GuiComponent::input(config, input);
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::render(const Transform4x4f& parentTrans)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2017-10-28 20:24:35 +00:00
|
|
|
Transform4x4f trans = parentTrans * getTransform();
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
renderChildren(trans);
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mBlockAccept) {
|
2014-06-25 16:29:58 +00:00
|
|
|
Renderer::setMatrix(trans);
|
2019-08-31 15:58:36 +00:00
|
|
|
Renderer::drawRect(0.0f, 0.0f, mSize.x(), mSize.y(), 0x00000011, 0x00000011);
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
mBusyAnim.render(trans);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::returnResult(ScraperSearchResult result)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mBlockAccept = true;
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// Resolve metadata image before returning.
|
2020-06-06 11:10:33 +00:00
|
|
|
if (result.mediaFilesDownloadStatus != COMPLETED) {
|
|
|
|
result.mediaFilesDownloadStatus = IN_PROGRESS;
|
2014-06-25 16:29:58 +00:00
|
|
|
mMDResolveHandle = resolveMetaDataAssets(result, mLastSearch);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mAcceptCallback(result);
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::update(int deltaTime)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
GuiComponent::update(deltaTime);
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mBlockAccept)
|
2014-06-25 16:29:58 +00:00
|
|
|
mBusyAnim.update(deltaTime);
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mThumbnailReq && mThumbnailReq->status() != HttpReq::REQ_IN_PROGRESS)
|
2014-06-25 16:29:58 +00:00
|
|
|
updateThumbnail();
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mSearchHandle && mSearchHandle->status() != ASYNC_IN_PROGRESS) {
|
2014-06-25 16:29:58 +00:00
|
|
|
auto status = mSearchHandle->status();
|
2020-06-06 11:10:33 +00:00
|
|
|
mScraperResults = mSearchHandle->getResults();
|
2014-06-25 16:29:58 +00:00
|
|
|
auto statusString = mSearchHandle->getStatusString();
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
// We reset here because onSearchDone in auto mode can call mSkipCallback() which
|
|
|
|
// can call another search() which will set our mSearchHandle to something important.
|
2014-06-25 16:29:58 +00:00
|
|
|
mSearchHandle.reset();
|
|
|
|
|
2020-06-06 11:10:33 +00:00
|
|
|
if (status == ASYNC_DONE && mScraperResults.size() == 0)
|
|
|
|
onSearchDone(mScraperResults);
|
|
|
|
|
|
|
|
if (status == ASYNC_DONE && mScraperResults.size() > 0) {
|
|
|
|
if (mScraperResults.front().mediaURLFetch == COMPLETED) {
|
|
|
|
onSearchDone(mScraperResults);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
std::string gameIDs;
|
|
|
|
for (auto it = mScraperResults.cbegin(); it != mScraperResults.cend(); it++)
|
|
|
|
gameIDs += it->gameID + ',';
|
|
|
|
|
|
|
|
// Remove the last comma
|
|
|
|
gameIDs.pop_back();
|
|
|
|
mMDRetrieveURLsHandle = startMediaURLsFetch(gameIDs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (status == ASYNC_ERROR) {
|
2014-06-25 16:29:58 +00:00
|
|
|
onSearchError(statusString);
|
2020-06-06 11:10:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mMDRetrieveURLsHandle && mMDRetrieveURLsHandle->status() != ASYNC_IN_PROGRESS) {
|
|
|
|
if (mMDRetrieveURLsHandle->status() == ASYNC_DONE) {
|
|
|
|
auto status_media = mMDRetrieveURLsHandle->status();
|
|
|
|
auto results_media = mMDRetrieveURLsHandle->getResults();
|
|
|
|
auto statusString_media = mMDRetrieveURLsHandle->getStatusString();
|
|
|
|
auto results_scrape = mScraperResults;
|
|
|
|
mMDRetrieveURLsHandle.reset();
|
|
|
|
mScraperResults.clear();
|
|
|
|
|
|
|
|
// Combine the intial scrape results with the media URL results.
|
|
|
|
for (auto it = results_media.cbegin(); it != results_media.cend(); it++) {
|
|
|
|
for (unsigned int i = 0; i < results_scrape.size(); i++) {
|
|
|
|
if (results_scrape[i].gameID == it->gameID) {
|
|
|
|
results_scrape[i].box3dUrl = it->box3dUrl;
|
|
|
|
results_scrape[i].coverUrl = it->coverUrl;
|
|
|
|
results_scrape[i].marqueeUrl = it->marqueeUrl;
|
|
|
|
results_scrape[i].screenshotUrl = it->screenshotUrl;
|
|
|
|
results_scrape[i].scraperRequestAllowance = it->scraperRequestAllowance;
|
|
|
|
results_scrape[i].mediaURLFetch = COMPLETED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onSearchDone(results_scrape);
|
|
|
|
}
|
|
|
|
else if (mMDRetrieveURLsHandle->status() == ASYNC_ERROR) {
|
|
|
|
onSearchError(mMDRetrieveURLsHandle->getStatusString());
|
|
|
|
mMDRetrieveURLsHandle.reset();
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mMDResolveHandle && mMDResolveHandle->status() != ASYNC_IN_PROGRESS) {
|
|
|
|
if (mMDResolveHandle->status() == ASYNC_DONE) {
|
2014-06-25 16:29:58 +00:00
|
|
|
ScraperSearchResult result = mMDResolveHandle->getResult();
|
2020-06-06 11:10:33 +00:00
|
|
|
result.mediaFilesDownloadStatus = COMPLETED;
|
2014-06-25 16:29:58 +00:00
|
|
|
mMDResolveHandle.reset();
|
2020-05-26 16:34:33 +00:00
|
|
|
// This might end in us being deleted, depending on mAcceptCallback -
|
|
|
|
// so make sure this is the last thing we do in update().
|
2014-06-25 16:29:58 +00:00
|
|
|
returnResult(result);
|
2020-05-26 16:34:33 +00:00
|
|
|
}
|
|
|
|
else if (mMDResolveHandle->status() == ASYNC_ERROR) {
|
2014-06-25 16:29:58 +00:00
|
|
|
onSearchError(mMDResolveHandle->getStatusString());
|
|
|
|
mMDResolveHandle.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::updateThumbnail()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-05-26 16:34:33 +00:00
|
|
|
if (mThumbnailReq && mThumbnailReq->status() == HttpReq::REQ_SUCCESS) {
|
2020-06-06 11:10:33 +00:00
|
|
|
// Save thumbnail to mScraperResults cache and set the flag that the
|
|
|
|
// thumbnail download has been completed for this game.
|
|
|
|
for (auto i = 0; i < mScraperResults.size(); i++) {
|
|
|
|
if (mScraperResults[i].thumbnailDownloadStatus == IN_PROGRESS) {
|
|
|
|
mScraperResults[i].ThumbnailImageData = mThumbnailReq->getContent();
|
|
|
|
mScraperResults[i].thumbnailDownloadStatus = COMPLETED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Activate the thumbnail in the GUI.
|
2014-06-25 16:29:58 +00:00
|
|
|
std::string content = mThumbnailReq->getContent();
|
|
|
|
mResultThumbnail->setImage(content.data(), content.length());
|
2020-05-26 16:34:33 +00:00
|
|
|
mGrid.onSizeChanged(); // A hack to fix the thumbnail position since its size changed.
|
|
|
|
}
|
|
|
|
else {
|
2014-06-25 16:29:58 +00:00
|
|
|
LOG(LogWarning) << "thumbnail req failed: " << mThumbnailReq->getErrorMsg();
|
|
|
|
mResultThumbnail->setImage("");
|
|
|
|
}
|
|
|
|
|
|
|
|
mThumbnailReq.reset();
|
2020-06-06 11:10:33 +00:00
|
|
|
|
|
|
|
// When the thumbnail has been downloaded and we are in non-interactive
|
|
|
|
// mode, we proceed to automatically download the rest of the media files.
|
|
|
|
// The reason to always complete the thumbnail download first is that it looks
|
|
|
|
// a lot more consistent in the GUI. And since the thumbnail is being cached
|
|
|
|
// anyway, this hardly takes any more time. Maybe rather the opposite as the
|
|
|
|
// image used for the thumbnail (cover or screenshot) would have had to be
|
|
|
|
// requested from the server again.
|
|
|
|
if (mSearchType == ALWAYS_ACCEPT_FIRST_RESULT &&
|
|
|
|
mScraperResults.front().thumbnailDownloadStatus == COMPLETED) {
|
|
|
|
if (mScraperResults.size() == 0)
|
|
|
|
mSkipCallback();
|
|
|
|
else
|
|
|
|
returnResult(mScraperResults.front());
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::openInputScreen(ScraperSearchParams& params)
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-05-26 16:34:33 +00:00
|
|
|
auto searchForFunc = [&](const std::string& name) {
|
2014-06-25 16:29:58 +00:00
|
|
|
params.nameOverride = name;
|
|
|
|
search(params);
|
|
|
|
};
|
|
|
|
|
|
|
|
stop();
|
2020-06-06 11:10:33 +00:00
|
|
|
|
|
|
|
if (params.system->hasPlatformId(PlatformIds::ARCADE) ||
|
|
|
|
params.system->hasPlatformId(PlatformIds::NEOGEO)) {
|
2020-06-09 18:03:31 +00:00
|
|
|
mWindow->pushGui(new GuiTextEditPopup(mWindow, getHelpStyle(), "REFINE SEARCH",
|
2020-06-06 11:10:33 +00:00
|
|
|
// Initial value is last search if there was one, otherwise the clean path name.
|
|
|
|
// If it's a MAME or Neo Geo game, expand the game name accordingly.
|
|
|
|
params.nameOverride.empty() ?
|
|
|
|
MameNames::getInstance()->getCleanName(params.game->getCleanName()) :
|
|
|
|
params.nameOverride,
|
2020-06-07 08:57:49 +00:00
|
|
|
searchForFunc, false, "SEARCH", "APPLY CHANGES?"));
|
2020-06-06 11:10:33 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-06-09 18:03:31 +00:00
|
|
|
mWindow->pushGui(new GuiTextEditPopup(mWindow, getHelpStyle(), "REFINE SEARCH",
|
2020-06-06 11:10:33 +00:00
|
|
|
// Initial value is last search if there was one, otherwise the clean path name.
|
|
|
|
params.nameOverride.empty() ? params.game->getCleanName() : params.nameOverride,
|
2020-06-07 08:57:49 +00:00
|
|
|
searchForFunc, false, "SEARCH", "APPLY CHANGES?"));
|
2020-06-06 11:10:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
bool GuiScraperSearch::saveMetadata(
|
2020-06-06 11:10:33 +00:00
|
|
|
const ScraperSearchResult& result, MetaDataList& metadata)
|
|
|
|
{
|
|
|
|
bool mMetadataUpdated = false;
|
|
|
|
std::vector<MetaDataDecl> mMetaDataDecl = metadata.getMDD();
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < mMetaDataDecl.size(); i++) {
|
|
|
|
|
|
|
|
// Skip elements that are tagged not to be scraped.
|
|
|
|
if (!mMetaDataDecl.at(i).shouldScrape)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const std::string& key = mMetaDataDecl.at(i).key;
|
|
|
|
|
|
|
|
// Skip element if the setting to not scrape metadata has been set,
|
|
|
|
// unless its type is rating or name.
|
|
|
|
if (!Settings::getInstance()->getBool("ScrapeMetadata") &&
|
|
|
|
(key != "rating" && key != "name"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Skip saving of rating if the corresponding option has been set to false.
|
|
|
|
if (key == "rating" && !Settings::getInstance()->getBool("ScrapeRatings"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Skip saving of game name if the corresponding option has been set to false.
|
|
|
|
if (key == "name" && !Settings::getInstance()->getBool("ScrapeGameNames"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Skip elements that are empty.
|
|
|
|
if (result.mdl.get(key) == "")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Skip elements that are the same as the default metadata value.
|
|
|
|
if (result.mdl.get(key) == mMetaDataDecl.at(i).defaultValue)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Skip elements that are identical to the existing value.
|
|
|
|
if (result.mdl.get(key) == metadata.get(key))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Overwrite all the other values if the flag to overwrite data has been set.
|
|
|
|
if (Settings::getInstance()->getBool("ScraperOverwriteData")) {
|
|
|
|
metadata.set(key, result.mdl.get(key));
|
|
|
|
mMetadataUpdated = true;
|
|
|
|
}
|
|
|
|
// Else only update the value if it is set to the default metadata value.
|
|
|
|
else if (metadata.get(key) == mMetaDataDecl.at(i).defaultValue) {
|
|
|
|
metadata.set(key, result.mdl.get(key));
|
|
|
|
mMetadataUpdated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mMetadataUpdated;
|
2014-06-25 16:29:58 +00:00
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
std::vector<HelpPrompt> GuiScraperSearch::getHelpPrompts()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
2020-06-09 18:03:31 +00:00
|
|
|
std::vector<HelpPrompt> prompts;
|
|
|
|
|
|
|
|
if (mFoundGame)
|
2014-06-25 16:29:58 +00:00
|
|
|
prompts.push_back(HelpPrompt("a", "accept result"));
|
2019-08-25 15:23:02 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
return prompts;
|
|
|
|
}
|
|
|
|
|
2020-06-07 18:09:02 +00:00
|
|
|
HelpStyle GuiScraperSearch::getHelpStyle()
|
|
|
|
{
|
|
|
|
HelpStyle style = HelpStyle();
|
|
|
|
style.applyTheme(ViewController::get()->getState().getSystem()->getTheme(), "system");
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::onFocusGained()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mGrid.onFocusGained();
|
|
|
|
}
|
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
void GuiScraperSearch::onFocusLost()
|
2014-06-25 16:29:58 +00:00
|
|
|
{
|
|
|
|
mGrid.onFocusLost();
|
|
|
|
}
|