mirror of
https://github.com/wiiu-env/launchiine.git
synced 2024-11-21 17:29:18 +01:00
- Added support for multiple pages
- Added support for non touch controls
This commit is contained in:
parent
d7ed76e9f6
commit
7ec159152c
BIN
data/sounds/button_click.mp3
Normal file
BIN
data/sounds/button_click.mp3
Normal file
Binary file not shown.
@ -29,6 +29,7 @@ GuiIconGrid::GuiIconGrid(int32_t w, int32_t h, uint64_t GameIndex,bool sortByNam
|
|||||||
: GuiTitleBrowser(w, h, GameIndex),
|
: GuiTitleBrowser(w, h, GameIndex),
|
||||||
sortByName(sortByName),
|
sortByName(sortByName),
|
||||||
particleBgImage(w, h, 50, 60.0f, 90.0f, 0.6f, 1.0f)
|
particleBgImage(w, h, 50, 60.0f, 90.0f, 0.6f, 1.0f)
|
||||||
|
, buttonClickSound(Resources::GetSound("button_click.mp3"))
|
||||||
, touchTrigger(GuiTrigger::CHANNEL_1, GuiTrigger::VPAD_TOUCH)
|
, touchTrigger(GuiTrigger::CHANNEL_1, GuiTrigger::VPAD_TOUCH)
|
||||||
, wpadTouchTrigger(GuiTrigger::CHANNEL_2 | GuiTrigger::CHANNEL_3 | GuiTrigger::CHANNEL_4 | GuiTrigger::CHANNEL_5, GuiTrigger::BUTTON_A)
|
, wpadTouchTrigger(GuiTrigger::CHANNEL_2 | GuiTrigger::CHANNEL_3 | GuiTrigger::CHANNEL_4 | GuiTrigger::CHANNEL_5, GuiTrigger::BUTTON_A)
|
||||||
, leftTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_LEFT | GuiTrigger::STICK_L_LEFT, true)
|
, leftTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_LEFT | GuiTrigger::STICK_L_LEFT, true)
|
||||||
@ -53,11 +54,32 @@ GuiIconGrid::GuiIconGrid(int32_t w, int32_t h, uint64_t GameIndex,bool sortByNam
|
|||||||
, emptyIcon(Resources::GetFile("iconEmpty.png"), Resources::GetFileSize("iconEmpty.png"), GX2_TEX_CLAMP_MODE_MIRROR) {
|
, emptyIcon(Resources::GetFile("iconEmpty.png"), Resources::GetFileSize("iconEmpty.png"), GX2_TEX_CLAMP_MODE_MIRROR) {
|
||||||
|
|
||||||
particleBgImage.setParent(this);
|
particleBgImage.setParent(this);
|
||||||
selectedGame = GameIndex;
|
setSelectedGame(GameIndex);
|
||||||
listOffset = selectedGame / (MAX_COLS * MAX_ROWS);
|
listOffset = selectedGame / (MAX_COLS * MAX_ROWS);
|
||||||
targetLeftPosition = -listOffset * getWidth();
|
targetLeftPosition = -listOffset * getWidth();
|
||||||
currentLeftPosition = targetLeftPosition;
|
currentLeftPosition = targetLeftPosition;
|
||||||
|
|
||||||
|
leftButton.setTrigger(&leftTrigger);
|
||||||
|
leftButton.clicked.connect(this, &GuiIconGrid::OnLeftClick);
|
||||||
|
this->append(&leftButton);
|
||||||
|
|
||||||
|
rightButton.setTrigger(&rightTrigger);
|
||||||
|
rightButton.clicked.connect(this, &GuiIconGrid::OnRightClick);
|
||||||
|
this->append(&rightButton);
|
||||||
|
|
||||||
|
downButton.setTrigger(&downTrigger);
|
||||||
|
downButton.clicked.connect(this, &GuiIconGrid::OnDownClick);
|
||||||
|
this->append(&downButton);
|
||||||
|
|
||||||
|
upButton.setTrigger(&upTrigger);
|
||||||
|
upButton.clicked.connect(this, &GuiIconGrid::OnUpClick);
|
||||||
|
this->append(&upButton);
|
||||||
|
|
||||||
|
launchButton.setTrigger(&buttonATrigger);
|
||||||
|
launchButton.setSoundClick(buttonClickSound);
|
||||||
|
launchButton.clicked.connect(this, &GuiIconGrid::OnLaunchClick);
|
||||||
|
this->append(&launchButton);
|
||||||
|
|
||||||
arrowLeftButton.setImage(&arrowLeftImage);
|
arrowLeftButton.setImage(&arrowLeftImage);
|
||||||
arrowLeftButton.setEffectGrow();
|
arrowLeftButton.setEffectGrow();
|
||||||
arrowLeftButton.setPosition(40, 0);
|
arrowLeftButton.setPosition(40, 0);
|
||||||
@ -67,6 +89,7 @@ GuiIconGrid::GuiIconGrid(int32_t w, int32_t h, uint64_t GameIndex,bool sortByNam
|
|||||||
arrowLeftButton.setTrigger(&buttonLTrigger);
|
arrowLeftButton.setTrigger(&buttonLTrigger);
|
||||||
arrowLeftButton.setSoundClick(buttonClickSound);
|
arrowLeftButton.setSoundClick(buttonClickSound);
|
||||||
arrowLeftButton.clicked.connect(this, &GuiIconGrid::OnLeftArrowClick);
|
arrowLeftButton.clicked.connect(this, &GuiIconGrid::OnLeftArrowClick);
|
||||||
|
append(&arrowLeftButton);
|
||||||
|
|
||||||
arrowRightButton.setImage(&arrowRightImage);
|
arrowRightButton.setImage(&arrowRightImage);
|
||||||
arrowRightButton.setEffectGrow();
|
arrowRightButton.setEffectGrow();
|
||||||
@ -77,7 +100,9 @@ GuiIconGrid::GuiIconGrid(int32_t w, int32_t h, uint64_t GameIndex,bool sortByNam
|
|||||||
arrowRightButton.setTrigger(&buttonRTrigger);
|
arrowRightButton.setTrigger(&buttonRTrigger);
|
||||||
arrowRightButton.setSoundClick(buttonClickSound);
|
arrowRightButton.setSoundClick(buttonClickSound);
|
||||||
arrowRightButton.clicked.connect(this, &GuiIconGrid::OnRightArrowClick);
|
arrowRightButton.clicked.connect(this, &GuiIconGrid::OnRightArrowClick);
|
||||||
|
append(&arrowRightButton);
|
||||||
|
|
||||||
|
// at most we are rendering 2 screens at the same time
|
||||||
for(int i = 0; i< MAX_COLS * MAX_ROWS *2; i++) {
|
for(int i = 0; i< MAX_COLS * MAX_ROWS *2; i++) {
|
||||||
GameIcon * image = new GameIcon(&emptyIcon);
|
GameIcon * image = new GameIcon(&emptyIcon);
|
||||||
emptyIcons.push_back(image);
|
emptyIcons.push_back(image);
|
||||||
@ -100,6 +125,17 @@ GuiIconGrid::~GuiIconGrid() {
|
|||||||
emptyIcons.clear();
|
emptyIcons.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int32_t GuiIconGrid::offsetForTitleId(uint64_t titleId) {
|
||||||
|
int32_t offset = -1;
|
||||||
|
for(uint32_t i = 0; i < position.size(); i++) {
|
||||||
|
if(position.at(i) == titleId) {
|
||||||
|
offset = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return offset;
|
||||||
|
}
|
||||||
|
|
||||||
void GuiIconGrid::setSelectedGame(uint64_t idx) {
|
void GuiIconGrid::setSelectedGame(uint64_t idx) {
|
||||||
this->selectedGame = idx;
|
this->selectedGame = idx;
|
||||||
|
|
||||||
@ -108,16 +144,22 @@ void GuiIconGrid::setSelectedGame(uint64_t idx) {
|
|||||||
GameInfoContainer * container = NULL;
|
GameInfoContainer * container = NULL;
|
||||||
for (auto const& x : gameInfoContainers) {
|
for (auto const& x : gameInfoContainers) {
|
||||||
container = x.second;
|
container = x.second;
|
||||||
|
|
||||||
|
|
||||||
if(x.first == idx) {
|
if(x.first == idx) {
|
||||||
container->image->setSelected(true);
|
container->image->setSelected(true);
|
||||||
} else {
|
} else {
|
||||||
container->image->setSelected(false);
|
container->image->setSelected(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
containerMutex.unlock();
|
containerMutex.unlock();
|
||||||
|
|
||||||
|
int32_t offset = offsetForTitleId(getSelectedGame());
|
||||||
|
if(offset > 0) {
|
||||||
|
uint32_t newPage = offset / (MAX_COLS * MAX_ROWS);
|
||||||
|
if(newPage != (uint32_t) curPage) {
|
||||||
|
curPage = newPage;
|
||||||
|
bUpdatePositions = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t GuiIconGrid::getSelectedGame(void) {
|
uint64_t GuiIconGrid::getSelectedGame(void) {
|
||||||
@ -168,37 +210,107 @@ void GuiIconGrid::OnGameTitleListUpdated(GameList * gameList) {
|
|||||||
containerMutex.unlock();
|
containerMutex.unlock();
|
||||||
|
|
||||||
gameList->unlock();
|
gameList->unlock();
|
||||||
|
setSelectedGame(0);
|
||||||
|
curPage = 0;
|
||||||
|
currentLeftPosition = 0;
|
||||||
bUpdatePositions = true;
|
bUpdatePositions = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::OnLeftArrowClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnLeftArrowClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
|
curPage--;
|
||||||
|
setSelectedGame(0);
|
||||||
|
bUpdatePositions = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::OnRightArrowClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnRightArrowClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
|
curPage++;
|
||||||
|
setSelectedGame(0);
|
||||||
|
bUpdatePositions = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::OnLeftClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnLeftClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
|
int32_t offset = offsetForTitleId(getSelectedGame());
|
||||||
|
if(offset < 0){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if((offset % MAX_COLS) == 0) {
|
||||||
|
offset -= ((MAX_COLS * MAX_ROWS) - MAX_COLS) + 1;
|
||||||
|
} else {
|
||||||
|
offset--;
|
||||||
|
}
|
||||||
|
if(offset < 0 || position.empty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint64_t newTitleId = position.at(offset);
|
||||||
|
if(newTitleId > 0) {
|
||||||
|
setSelectedGame(newTitleId);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::OnRightClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnRightClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
|
int32_t offset = offsetForTitleId(getSelectedGame());
|
||||||
|
if(offset < 0){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if((offset % MAX_COLS) == MAX_COLS - 1) {
|
||||||
|
offset += ((MAX_COLS * MAX_ROWS) - MAX_COLS) + 1;
|
||||||
|
} else {
|
||||||
|
offset++;
|
||||||
|
}
|
||||||
|
if((uint32_t) offset >= position.size()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint64_t newTitleId = position.at(offset);
|
||||||
|
if(newTitleId > 0) {
|
||||||
|
setSelectedGame(newTitleId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::OnDownClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnDownClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
|
int32_t offset = offsetForTitleId(getSelectedGame());
|
||||||
|
if(offset < 0){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(offset % (MAX_COLS * MAX_ROWS) < (MAX_COLS * MAX_ROWS) - MAX_COLS) {
|
||||||
|
offset = offset + MAX_COLS;
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if((uint32_t) offset >= position.size()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint64_t newTitleId = position.at(offset);
|
||||||
|
if(newTitleId > 0) {
|
||||||
|
setSelectedGame(newTitleId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
void GuiIconGrid::OnUpClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnUpClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
|
int32_t offset = offsetForTitleId(getSelectedGame());
|
||||||
|
if(offset < 0){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(offset % (MAX_COLS * MAX_ROWS) >= MAX_COLS) {
|
||||||
|
offset = offset - MAX_COLS;
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(offset < 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint64_t newTitleId = position.at(offset);
|
||||||
|
if(newTitleId > 0) {
|
||||||
|
setSelectedGame(newTitleId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::OnLaunchClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
void GuiIconGrid::OnLaunchClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger) {
|
||||||
//! do not auto launch when wiimote is pointing to screen and presses A
|
//! do not auto launch when wiimote is pointing to screen and presses A
|
||||||
//if((trigger == &buttonATrigger) && (controller->chan & (GuiTrigger::CHANNEL_2 | GuiTrigger::CHANNEL_3 | GuiTrigger::CHANNEL_4 | GuiTrigger::CHANNEL_5)) && controller->data.validPointer) {
|
if((trigger == &buttonATrigger) && (controller->chan & (GuiTrigger::CHANNEL_2 | GuiTrigger::CHANNEL_3 | GuiTrigger::CHANNEL_4 | GuiTrigger::CHANNEL_5)) && controller->data.validPointer) {
|
||||||
// return;
|
return;
|
||||||
//}
|
}
|
||||||
DEBUG_FUNCTION_LINE("Tried to launch %s (%016llX)\n", gameInfoContainers[getSelectedGame()]->info->name.c_str(),getSelectedGame());
|
DEBUG_FUNCTION_LINE("Tried to launch %s (%016llX)\n", gameInfoContainers[getSelectedGame()]->info->name.c_str(),getSelectedGame());
|
||||||
gameLaunchClicked(this, getSelectedGame());
|
gameLaunchClicked(this, getSelectedGame());
|
||||||
}
|
}
|
||||||
@ -302,9 +414,13 @@ void GuiIconGrid::update(GuiController * c) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::updateButtonPositions() {
|
void GuiIconGrid::updateButtonPositions() {
|
||||||
|
arrowRightButton.setState(GuiElement::STATE_DISABLED);
|
||||||
|
arrowRightButton.setVisible(false);
|
||||||
|
arrowLeftButton.setState(GuiElement::STATE_DISABLED);
|
||||||
|
arrowLeftButton.setVisible(false);
|
||||||
|
|
||||||
int32_t col = 0, row = 0, listOff = 0;
|
int32_t col = 0, row = 0, listOff = 0;
|
||||||
|
|
||||||
int i = 0;
|
|
||||||
// create an empty vector of pairs
|
// create an empty vector of pairs
|
||||||
std::vector<std::pair<uint64_t,GameInfoContainer*>> vec;
|
std::vector<std::pair<uint64_t,GameInfoContainer*>> vec;
|
||||||
|
|
||||||
@ -315,6 +431,14 @@ void GuiIconGrid::updateButtonPositions() {
|
|||||||
|
|
||||||
containerMutex.unlock();
|
containerMutex.unlock();
|
||||||
|
|
||||||
|
for (auto const& x : vec) {
|
||||||
|
remove(x.second->button);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto const& x : emptyIcons) {
|
||||||
|
remove(x);
|
||||||
|
}
|
||||||
|
|
||||||
if(sortByName) {
|
if(sortByName) {
|
||||||
std::sort(vec.begin(), vec.end(),
|
std::sort(vec.begin(), vec.end(),
|
||||||
[](const std::pair<uint64_t,GameInfoContainer*>& l, const std::pair<uint64_t,GameInfoContainer*>& r) {
|
[](const std::pair<uint64_t,GameInfoContainer*>& l, const std::pair<uint64_t,GameInfoContainer*>& r) {
|
||||||
@ -326,27 +450,82 @@ void GuiIconGrid::updateButtonPositions() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
for (auto const& x : vec) {
|
// TODO somehow be able to adjust the positions.
|
||||||
listOff = i / (MAX_COLS * MAX_ROWS);
|
position.clear();
|
||||||
|
for(auto const & x: vec) {
|
||||||
|
position.push_back(x.first);
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t elementSize = position.size();
|
||||||
|
uint32_t pages = (elementSize / (MAX_COLS * MAX_ROWS)) +1;
|
||||||
|
|
||||||
|
uint32_t emptyIconUse = 0;
|
||||||
|
|
||||||
|
if(curPage < 0) {
|
||||||
|
curPage = 0;
|
||||||
|
}
|
||||||
|
if((uint32_t) curPage > pages) {
|
||||||
|
curPage = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
targetLeftPosition = -curPage * getWidth();
|
||||||
|
|
||||||
|
if((uint32_t) curPage < (pages - 1)) {
|
||||||
|
arrowRightButton.clearState(GuiElement::STATE_DISABLED);
|
||||||
|
arrowRightButton.setVisible(true);
|
||||||
|
bringToFront(&arrowRightButton);
|
||||||
|
}
|
||||||
|
if(curPage > 0) {
|
||||||
|
arrowLeftButton.clearState(GuiElement::STATE_DISABLED);
|
||||||
|
arrowLeftButton.setVisible(true);
|
||||||
|
bringToFront(&arrowLeftButton);
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t startPage = -(currentLeftPosition / getWidth());
|
||||||
|
uint32_t endPage = startPage;
|
||||||
|
|
||||||
|
if(targetLeftPosition != currentLeftPosition) {
|
||||||
|
endPage++;
|
||||||
|
if(endPage > pages) {
|
||||||
|
endPage = pages;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for(uint32_t i = startPage * (MAX_COLS * MAX_ROWS); i < (endPage + 1) * (MAX_COLS * MAX_ROWS); i++) {
|
||||||
|
listOff = i / (MAX_COLS * MAX_ROWS);
|
||||||
|
GuiElement * element = NULL;
|
||||||
float posX = currentLeftPosition + listOff * width + ( col * (noIcon.getWidth() + noIcon.getWidth() * 0.5f) - (MAX_COLS * 0.5f - 0.5f) * (noIcon.getWidth() + noIcon.getWidth() * 0.5f) );
|
float posX = currentLeftPosition + listOff * width + ( col * (noIcon.getWidth() + noIcon.getWidth() * 0.5f) - (MAX_COLS * 0.5f - 0.5f) * (noIcon.getWidth() + noIcon.getWidth() * 0.5f) );
|
||||||
float posY = -row * (noIcon.getHeight() + noIcon.getHeight() * 0.5f) + (MAX_ROWS * 0.5f - 0.5f) * (noIcon.getHeight() + noIcon.getHeight() * 0.5f) + 30.0f;
|
float posY = -row * (noIcon.getHeight() + noIcon.getHeight() * 0.5f) + (MAX_ROWS * 0.5f - 0.5f) * (noIcon.getHeight() + noIcon.getHeight() * 0.5f) + 30.0f;
|
||||||
|
|
||||||
if(x.second->button != NULL) {
|
if(i < position.size()) {
|
||||||
x.second->button->setPosition(posX, posY);
|
uint64_t titleID = position.at(i);
|
||||||
|
if(titleID > 0) {
|
||||||
|
GameInfoContainer * container = gameInfoContainers[titleID];
|
||||||
|
if(container != NULL) {
|
||||||
|
element = container->button;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(element == NULL) {
|
||||||
|
if(emptyIcons.size() <= emptyIconUse) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
element = emptyIcons.at(emptyIconUse);
|
||||||
|
emptyIconUse++;
|
||||||
|
}
|
||||||
|
element->setPosition(posX, posY);
|
||||||
|
append(element);
|
||||||
|
|
||||||
col++;
|
col++;
|
||||||
if(col >= MAX_COLS) {
|
if(col >= MAX_COLS) {
|
||||||
col = 0;
|
col = 0;
|
||||||
row++;
|
row++;
|
||||||
}
|
}
|
||||||
if(row >= MAX_ROWS)
|
if(row >= MAX_ROWS) {
|
||||||
row = 0;
|
row = 0;
|
||||||
|
}
|
||||||
i++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuiIconGrid::draw(CVideo *pVideo) {
|
void GuiIconGrid::draw(CVideo *pVideo) {
|
||||||
|
@ -43,12 +43,12 @@ private:
|
|||||||
static const int32_t MAX_ROWS = 3;
|
static const int32_t MAX_ROWS = 3;
|
||||||
static const int32_t MAX_COLS = 5;
|
static const int32_t MAX_COLS = 5;
|
||||||
|
|
||||||
GuiSound *buttonClickSound;
|
|
||||||
|
|
||||||
bool sortByName = false;
|
bool sortByName = false;
|
||||||
|
|
||||||
GuiParticleImage particleBgImage;
|
GuiParticleImage particleBgImage;
|
||||||
|
|
||||||
|
GuiSound *buttonClickSound;
|
||||||
|
|
||||||
GuiTrigger touchTrigger;
|
GuiTrigger touchTrigger;
|
||||||
GuiTrigger wpadTouchTrigger;
|
GuiTrigger wpadTouchTrigger;
|
||||||
GuiTrigger leftTrigger;
|
GuiTrigger leftTrigger;
|
||||||
@ -86,6 +86,9 @@ private:
|
|||||||
void OnGameButtonClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger);
|
void OnGameButtonClick(GuiButton *button, const GuiController *controller, GuiTrigger *trigger);
|
||||||
void updateButtonPositions();
|
void updateButtonPositions();
|
||||||
|
|
||||||
|
int32_t offsetForTitleId(uint64_t titleId);
|
||||||
|
|
||||||
|
int32_t curPage = 0;
|
||||||
int32_t listOffset;
|
int32_t listOffset;
|
||||||
uint64_t selectedGame;
|
uint64_t selectedGame;
|
||||||
int32_t currentLeftPosition;
|
int32_t currentLeftPosition;
|
||||||
@ -95,7 +98,7 @@ private:
|
|||||||
|
|
||||||
class GameInfoContainer {
|
class GameInfoContainer {
|
||||||
public:
|
public:
|
||||||
GameInfoContainer(GuiButton* button, GuiImage * image, gameInfo * info) {
|
GameInfoContainer(GuiButton* button, GameIcon * image, gameInfo * info) {
|
||||||
this->image = image;
|
this->image = image;
|
||||||
this->info = info;
|
this->info = info;
|
||||||
this->button = button;
|
this->button = button;
|
||||||
@ -116,13 +119,14 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GuiImage * image;
|
GameIcon * image;
|
||||||
gameInfo * info;
|
gameInfo * info;
|
||||||
GuiButton * button;
|
GuiButton * button;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::recursive_mutex containerMutex;
|
std::recursive_mutex containerMutex;
|
||||||
std::map<uint64_t, GameInfoContainer *> gameInfoContainers;
|
std::map<uint64_t, GameInfoContainer *> gameInfoContainers;
|
||||||
|
std::vector<uint64_t> position;
|
||||||
|
|
||||||
std::vector<GuiImage *> emptyIcons;
|
std::vector<GuiImage *> emptyIcons;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user