ES-DE/src/components/GuiGameList.h

74 lines
1.8 KiB
C
Raw Normal View History

#ifndef _GUIGAMELIST_H_
#define _GUIGAMELIST_H_
2013-06-02 15:08:32 +00:00
#include "../GuiComponent.h"
#include "TextListComponent.h"
#include "ImageComponent.h"
#include "ThemeComponent.h"
#include "AnimationComponent.h"
#include "TextComponent.h"
#include <string>
#include <stack>
#include "../SystemData.h"
#include "../GameData.h"
#include "../FolderData.h"
//This is where the magic happens - GuiGameList is the parent of almost every graphical element in ES at the moment.
//It has a TextListComponent child that handles the game list, a ThemeComponent that handles the theming system, and an ImageComponent for game images.
2013-06-02 15:08:32 +00:00
class GuiGameList : public GuiComponent
{
static std::vector<FolderData::SortState> sortStates;
size_t sortStateIndex;
public:
GuiGameList(Window* window);
2013-06-02 15:08:32 +00:00
virtual ~GuiGameList();
void setSystemId(int id);
bool input(InputConfig* config, Input input) override;
void update(int deltaTime) override;
void render();
2013-04-08 16:52:40 +00:00
void init();
void deinit();
2013-04-08 17:40:15 +00:00
void updateDetailData();
void setSortIndex(size_t index);
void setNextSortIndex();
void setPreviousSortIndex();
void sort(FolderData::ComparisonFunction & comparisonFunction = FolderData::compareFileName, bool ascending = true);
2013-04-08 16:52:40 +00:00
static GuiGameList* create(Window* window);
bool isDetailed() const;
static const float sInfoWidth;
private:
void updateList();
void updateTheme();
2012-10-17 17:15:58 +00:00
void clearDetailData();
void doTransition(int dir);
std::string getThemeFile();
SystemData* mSystem;
FolderData* mFolder;
std::stack<FolderData*> mFolderStack;
int mSystemId;
TextListComponent<FileData*> mList;
ImageComponent mScreenshot;
TextComponent mDescription;
AnimationComponent mImageAnimation;
2013-06-02 15:08:32 +00:00
ThemeComponent* mTheme;
ImageComponent mTransitionImage;
AnimationComponent mTransitionAnimation;
Vector2i getImagePos();
};
#endif