2013-10-13 19:07:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../GuiComponent.h"
|
|
|
|
#include "NinePatchComponent.h"
|
|
|
|
#include <queue>
|
|
|
|
#include "../scrapers/Scraper.h"
|
|
|
|
#include <boost/circular_buffer.hpp>
|
|
|
|
#include "TextComponent.h"
|
|
|
|
|
|
|
|
class GuiScraperLog : public GuiComponent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GuiScraperLog(Window* window, const std::queue<ScraperSearchParams>& params, bool manualMode);
|
2013-10-13 21:40:36 +00:00
|
|
|
~GuiScraperLog();
|
2013-10-13 19:07:48 +00:00
|
|
|
|
|
|
|
void start();
|
|
|
|
|
|
|
|
void render(const Eigen::Affine3f& parentTrans) override;
|
|
|
|
bool input(InputConfig* config, Input input) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void updateStatus();
|
|
|
|
void writeLine(const std::string& line, unsigned int color);
|
|
|
|
|
|
|
|
void resultFetched(ScraperSearchParams params, MetaDataList mdl);
|
|
|
|
void resultResolved(ScraperSearchParams params, MetaDataList mdl);
|
|
|
|
void resultEmpty(ScraperSearchParams params);
|
|
|
|
|
|
|
|
void next();
|
|
|
|
void done();
|
|
|
|
|
|
|
|
bool mManualMode;
|
|
|
|
|
|
|
|
NinePatchComponent mBox;
|
|
|
|
|
|
|
|
std::queue<ScraperSearchParams> mSearches;
|
|
|
|
|
|
|
|
TextComponent mStatus;
|
|
|
|
boost::circular_buffer< std::shared_ptr<TextComponent> > mTextLines;
|
2013-10-13 21:40:36 +00:00
|
|
|
|
|
|
|
unsigned int mSuccessCount;
|
|
|
|
unsigned int mSkippedCount;
|
2013-10-13 19:07:48 +00:00
|
|
|
};
|