void GuiAnimation::moveChildren(int offsetx, int offsety) { for(unsigned int i = 0; i < mChildren.size(); i++) { GuiImage* comp = mChildren.at(i); comp->setOffset(comp->getOffsetX() + offsetx, comp->getOffsetY() + offsety); } }
int main() { GuiImage* editorStartupImg = EditorGui.AddImage(GetAssetsPath() + "editor_startup.jpg"); WindowDesc windowDesc; windowDesc.clientSize = editorStartupImg->GetDimension(); windowDesc.style = eWindowStyle::DEFAULT; Window* window = new Window(windowDesc); rGraphicsEngineRT graphicsDesc; graphicsDesc.targetWindow = window; //Core.InitGraphicsEngineRasterZsiros(graphicsDesc); // ... Core.InitPhysicsEngineBullet(); Actor* ground = World.AddActor("box.DAE", 0); ground->SetKinematic(true); ground->SetScale(mm::vec3(100, 100, 1)); ground->SetName("ground"); // TMP !! //World.AddScript<TestLevelScript>(); Timer* timer = new Timer(); while (window->IsOpen()) { WindowEvent evt; while (window->PopEvent(evt)); float deltaTime = timer->GetSecondsPassed(); timer->Reset(); Core.Update(deltaTime); static uint64_t magic = 0; magic++; if((magic % 100) == 0) window->SetTitle("Fps: " + std::to_string(1.f / deltaTime)); } getch(); // delete pixels; delete window; delete timer; return 0; }
void IconSaveBrowser::AddButton() { //! File Icon GuiImage * BtnImg = NULL; ButtonImg.push_back(BtnImg); //! Save bg button GuiImage * SaveBg = new GuiImage(bgSelectionEntry); SaveBg->SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE); SaveBg->SetPosition(0, 4); SaveBgImg.push_back(SaveBg); //! Selection Img GuiImage * Marker = new GuiImage(bgOverSelectionEntry); Marker->SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE); Marker->SetPosition(0, 4); FileSelectionImg.push_back(Marker); //! Tooltip GuiTooltip * tmpToolTip = new GuiTooltip((char *) NULL); tmpToolTip->SetPosition(0, 0); Tooltip.push_back(tmpToolTip); GuiButton * Btn = new GuiButton(90, 90); Btn->SetParent(this); Btn->SetIcon(BtnImg); Btn->SetImage(SaveBg); Btn->SetImageOver(Marker); Btn->SetTrigger(trigA); Btn->SetSoundClick(btnSoundClick); Btn->SetToolTip(tmpToolTip, 0, 0, ALIGN_CENTRE, ALIGN_TOP); Buttons.push_back(Btn); }
void IconEmuMiiBrowser::AddButton() { //!File Icon GuiImage * BtnImg = new GuiImage(fileMii); BtnImg->SetAlignment(ALIGN_CENTRE, ALIGN_TOP); BtnImg->SetPosition(0, 10); ButtonImg.push_back(BtnImg); //!File Name GuiText * BtnTxt = new GuiText((char *) NULL, 14, (GXColor){0, 0, 0, 255}); BtnTxt->SetAlignment(ALIGN_CENTRE, ALIGN_BOTTOM); BtnTxt->SetPosition(0, -20); BtnTxt->SetLinesToDraw(2); BtnTxt->SetMaxWidth(75, WRAP); ButtonText.push_back(BtnTxt); //!selection img GuiImage * Marker = new GuiImage(bgSelectionEntry); Marker->SetAlignment(ALIGN_CENTRE, ALIGN_TOP); Marker->SetPosition(0, -7); FileSelectionImg.push_back(Marker); //!tooltip GuiTooltip * tmpToolTip = new GuiTooltip((char *) NULL); tmpToolTip->SetPosition(0, 0); Tooltip.push_back(tmpToolTip); GuiButton * Btn = new GuiButton(90, 90); Btn->SetParent(this); Btn->SetLabel(BtnTxt); Btn->SetIcon(BtnImg); Btn->SetImageOver(Marker); Btn->SetTrigger(trigA); Btn->SetSoundClick(btnSoundClick); Btn->SetToolTip(tmpToolTip, 0, 0, ALIGN_CENTRE, ALIGN_TOP); Buttons.push_back(Btn); }
KeyPadMenu::KeyPadMenu(int w, int h, const std::string & strTitle, const std::string & prefil) : GuiFrame(w, h) , buttonClickSound(Resources::GetSound("settings_click_2.mp3")) , backImageData(Resources::GetImageData("keyPadBackButton.png")) , backImage(backImageData) , backButton(backImage.getWidth(), backImage.getHeight()) , okImageData(Resources::GetImageData("keyPadOkButton.png")) , okImage(okImageData) , okButton(okImage.getWidth(), okImage.getHeight()) , okText("O.K.", 46, glm::vec4(0.8f, 0.8f, 0.8f, 1.0f)) , touchTrigger(GuiTrigger::CHANNEL_1, GuiTrigger::VPAD_TOUCH) , wpadTouchTrigger(GuiTrigger::CHANNEL_2 | GuiTrigger::CHANNEL_3 | GuiTrigger::CHANNEL_4 | GuiTrigger::CHANNEL_5, GuiTrigger::BUTTON_A) , buttonATrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_A, true) , buttonBTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_B, true) , keyPadBgImageData(Resources::GetImageData("keyPadBg.png")) , keyPadButtonImgData(Resources::GetImageData("keyPadButton.png")) , keyPadButtonClickImgData(Resources::GetImageData("keyPadButtonClicked.png")) , deleteButtonImgData(Resources::GetImageData("keyPadDeleteButton.png")) , deleteButtonClickImgData(Resources::GetImageData("keyPadDeleteClicked.png")) , fieldImageData(Resources::GetImageData("keyPadField.png")) , fieldBlinkerImageData(Resources::GetImageData("keyPadFieldBlinker.png")) , bgImage(keyPadBgImageData) , fieldBlinkerImg(fieldBlinkerImageData) , deleteButtonImg(deleteButtonImgData) , deleteButtonImgClick(deleteButtonClickImgData) , deleteButton(deleteButtonImgData->getWidth(), deleteButtonImgData->getHeight()) , DPADButtons(w,h) { lastFrameCount = 0; currentText = prefil; if(currentText.size() > MAX_FIELDS) currentText.resize(MAX_FIELDS); textPosition = currentText.size(); bgImage.setAlignment(ALIGN_CENTER | ALIGN_BOTTOM); append(&bgImage); backButton.setImage(&backImage); backButton.setAlignment(ALIGN_BOTTOM | ALIGN_LEFT); backButton.clicked.connect(this, &KeyPadMenu::OnBackButtonClick); backButton.setTrigger(&touchTrigger); backButton.setTrigger(&wpadTouchTrigger); backButton.setSoundClick(buttonClickSound); backButton.setEffectGrow(); append(&backButton); okText.setPosition(0, -10); okButton.setLabel(&okText); okButton.setImage(&okImage); okButton.setAlignment(ALIGN_BOTTOM | ALIGN_RIGHT); okButton.clicked.connect(this, &KeyPadMenu::OnOkButtonClick); okButton.setTrigger(&touchTrigger); okButton.setTrigger(&wpadTouchTrigger); okButton.setSoundClick(buttonClickSound); okButton.setEffectGrow(); append(&okButton); titleText.setColor(glm::vec4(1.0f, 1.0f, 1.0f, 1.0f)); titleText.setFontSize(46); titleText.setPosition(0, 230); titleText.setBlurGlowColor(5.0f, glm::vec4(0.0, 0.0, 0.0f, 1.0f)); titleText.setText(strTitle.c_str()); append(&titleText); deleteButton.setImage(&deleteButtonImg); deleteButton.setImageOver(&deleteButtonImgClick); deleteButton.setTrigger(&touchTrigger); deleteButton.setTrigger(&wpadTouchTrigger); deleteButton.setSoundClick(buttonClickSound); deleteButton.setPosition(-(keyPadButtonImgData->getWidth() + 5) * (MAX_COLS - 1) * 0.5f + (keyPadButtonImgData->getWidth() + 5) * MAX_COLS, -60); deleteButton.setEffectGrow(); deleteButton.clicked.connect(this, &KeyPadMenu::OnDeleteButtonClick); append(&deleteButton); for(int i = 0; i < MAX_FIELDS; i++) { char fieldTxt[2]; fieldTxt[0] = (i < (int)currentText.size()) ? currentText[i] : 0; fieldTxt[1] = 0; GuiText *text = new GuiText(fieldTxt, 46, glm::vec4(0.0f, 0.0f, 0.0f, 1.0f)); GuiImage *image = new GuiImage(fieldImageData); GuiButton *button = new GuiButton(image->getWidth(), image->getHeight()); button->setImage(image); button->setLabel(text); button->setPosition(-(image->getWidth() + 8) * (MAX_FIELDS - 1) * 0.5f + (image->getWidth() + 8) * i, 120); button->setTrigger(&touchTrigger); button->setTrigger(&wpadTouchTrigger); button->setSoundClick(buttonClickSound); button->clicked.connect(this, &KeyPadMenu::OnTextPositionChange); append(button); textFieldText.push_back(text); textFieldImg.push_back(image); textFieldBtn.push_back(button); } fieldBlinkerImg.setAlignment(ALIGN_LEFT | ALIGN_LEFT); fieldBlinkerImg.setPosition(5, 0); if(textPosition < MAX_FIELDS) textFieldBtn[textPosition]->setIcon(&fieldBlinkerImg); int row = 0, column = 0; for(int i = 0; cpKeyPadButtons[i]; i++) { char buttonTxt[2]; buttonTxt[0] = cpKeyPadButtons[i]; buttonTxt[1] = 0; GuiImage *image = new GuiImage(keyPadButtonImgData); GuiImage *imageClick = new GuiImage(keyPadButtonClickImgData); GuiButton *button = new GuiButton(image->getWidth(), image->getHeight()); GuiText *text = new GuiText(buttonTxt, 46, glm::vec4(0.0f, 0.0f, 0.0f, 1.0f)); text->setTextBlur(5.0f); button->setImage(image); button->setImageOver(imageClick); button->setLabel(text); button->setPosition(-(image->getWidth() + 5) * (MAX_COLS - 1) * 0.5f + (image->getWidth() + 5) * column, -60 - (image->getHeight() + 5) * row); button->setTrigger(&touchTrigger); button->setTrigger(&wpadTouchTrigger); button->setSoundClick(buttonClickSound); button->setEffectGrow(); button->clicked.connect(this, &KeyPadMenu::OnKeyPadButtonClick); append(button); keyText.push_back(text); keyButton.push_back(button); keyImg.push_back(image); keyImgOver.push_back(imageClick); column++; if(column >= MAX_COLS) { column = 0; row++; } } DPADButtons.setTrigger(&buttonATrigger); DPADButtons.setTrigger(&buttonBTrigger); DPADButtons.clicked.connect(this, &KeyPadMenu::OnDPADClick); append(&DPADButtons); UpdateTextFields(); }
SettingsMenu::SettingsMenu(int w, int h) : GuiFrame(w, h) , categorySelectionFrame(w, h) , particleBgImage(w, h, 50) , buttonClickSound(Resources::GetSound("settings_click_2.mp3")) , quitImageData(Resources::GetImageData("quitButton.png")) , categoryImageData(Resources::GetImageData("settingsCategoryButton.png")) , categoryBgImageData(Resources::GetImageData("settingsCategoryBg.png")) , quitImage(quitImageData) , quitButton(quitImage.getWidth(), quitImage.getHeight()) , touchTrigger(GuiTrigger::CHANNEL_1, GuiTrigger::VPAD_TOUCH) , wpadTouchTrigger(GuiTrigger::CHANNEL_2 | GuiTrigger::CHANNEL_3 | GuiTrigger::CHANNEL_4 | GuiTrigger::CHANNEL_5, GuiTrigger::BUTTON_A) , buttonATrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_A, true) , buttonBTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_B, true) , buttonLTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_L, true) , buttonRTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_R, true) , buttonLeftTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_LEFT | GuiTrigger::STICK_L_LEFT, true) , buttonRightTrigger(GuiTrigger::CHANNEL_ALL, GuiTrigger::BUTTON_RIGHT | GuiTrigger::STICK_L_RIGHT, true) , leftArrowImageData(Resources::GetImageData("leftArrow.png")) , rightArrowImageData(Resources::GetImageData("rightArrow.png")) , leftArrowImage(leftArrowImageData) , rightArrowImage(rightArrowImageData) , leftArrowButton(leftArrowImage.getWidth(), leftArrowImage.getHeight()) , rightArrowButton(rightArrowImage.getWidth(), rightArrowImage.getHeight()) , DPADButtons(w,h) { currentPosition = 0; targetPosition = 0; selectedCategory = 0; animationSpeed = 25; bUpdatePositions = true; quitButton.setImage(&quitImage); quitButton.setAlignment(ALIGN_BOTTOM | ALIGN_LEFT); quitButton.clicked.connect(this, &SettingsMenu::OnQuitButtonClick); quitButton.setTrigger(&touchTrigger); quitButton.setTrigger(&wpadTouchTrigger); quitButton.setEffectGrow(); quitButton.setSoundClick(buttonClickSound); categorySelectionFrame.append(&quitButton); versionText.setColor(glm::vec4(0.6f, 0.6f, 0.6f, 1.0f)); versionText.setFontSize(42); versionText.setAlignment(ALIGN_TOP | ALIGN_RIGHT); versionText.setPosition(-50, -80); versionText.setText("Loadiine GX2 " LOADIINE_VERSION); categorySelectionFrame.append(&versionText); const u32 cuCategoriesCount = sizeof(stSettingsCategories) / sizeof(stSettingsCategories[0]); if(cuCategoriesCount > 0) selectedCategory = 0; for(u32 idx = 0; idx < cuCategoriesCount; idx++) { settingsCategories.resize(idx + 1); GuiSettingsCategory & category = settingsCategories[idx]; std::vector<std::string> splitDescriptions = stringSplit(stSettingsCategories[idx].descriptions, "\n"); category.categoryIconData = Resources::GetImageData(stSettingsCategories[idx].icon); category.categoryIconGlowData = Resources::GetImageData(stSettingsCategories[idx].iconGlow); category.categoryLabel = new GuiText(tr(stSettingsCategories[idx].name), 46, glm::vec4(0.8f, 0.8f, 0.8f, 1.0f)); category.categoryLabel->setPosition(0, -120); category.categoryBgImage = new GuiImage(categoryBgImageData); category.categoryImages = new GuiImage(categoryImageData); category.categoryIcon = new GuiImage(category.categoryIconData); category.categoryIconGlow = new GuiImage(category.categoryIconGlowData); category.categoryButton = new GuiButton(category.categoryImages->getWidth(), category.categoryImages->getHeight()); category.categoryIcon->setPosition(0, 40); category.categoryIconGlow->setPosition(0, 40); category.categoryButton->setLabel(category.categoryLabel); category.categoryButton->setImage(category.categoryImages); category.categoryButton->setPosition(-300, 0); category.categoryButton->setIcon(category.categoryIcon); category.categoryButton->setIconOver(category.categoryIconGlow); category.categoryButton->setTrigger(&touchTrigger); category.categoryButton->setTrigger(&wpadTouchTrigger); category.categoryButton->setSoundClick(buttonClickSound); category.categoryButton->setEffectGrow(); category.categoryButton->clicked.connect(this, &SettingsMenu::OnCategoryClick); categorySelectionFrame.append(category.categoryBgImage); categorySelectionFrame.append(category.categoryButton); category.categoryButton->setParent(category.categoryBgImage); category.categoryBgImage->setPosition(currentPosition + (category.categoryBgImage->getWidth() + 40) * idx, 0); for(u32 n = 0; n < splitDescriptions.size(); n++) { GuiText * descr = new GuiText(tr(splitDescriptions[n].c_str()), 46, glm::vec4(0.8f, 0.8f, 0.8f, 1.0f)); descr->setAlignment(ALIGN_MIDDLE | ALIGN_LEFT); descr->setPosition(category.categoryBgImage->getWidth() * 0.5f - 50.0f, category.categoryBgImage->getHeight() * 0.5f - 100.0f - n * 60.0f); categorySelectionFrame.append(descr); descr->setParent(category.categoryBgImage); category.descriptions.push_back(descr); } GuiImage *smallIconOver = new GuiImage(category.categoryIconGlowData); GuiImage *smallIcon = new GuiImage(category.categoryIconData); GuiButton *smallIconButton = new GuiButton(smallIcon->getWidth() * smallIconScale, smallIcon->getHeight() * smallIconScale); smallIcon->setScale(smallIconScale); smallIconOver->setScale(smallIconScale); smallIconButton->setImage(smallIcon); smallIconButton->setEffectGrow(); smallIconButton->setTrigger(&touchTrigger); smallIconButton->setTrigger(&wpadTouchTrigger); smallIconButton->setSoundClick(buttonClickSound); smallIconButton->clicked.connect(this, &SettingsMenu::OnSmallIconClick); categorySelectionFrame.append(smallIconButton); categorySmallImages.push_back(smallIcon); categorySmallImagesOver.push_back(smallIconOver); categorySmallButtons.push_back(smallIconButton); } leftArrowButton.setImage(&leftArrowImage); leftArrowButton.setEffectGrow(); leftArrowButton.setPosition(40, 0); leftArrowButton.setAlignment(ALIGN_LEFT | ALIGN_MIDDLE); leftArrowButton.setTrigger(&touchTrigger); leftArrowButton.setTrigger(&wpadTouchTrigger); leftArrowButton.setSoundClick(buttonClickSound); leftArrowButton.clicked.connect(this, &SettingsMenu::OnCategoryLeftClick); categorySelectionFrame.append(&leftArrowButton); rightArrowButton.setImage(&rightArrowImage); rightArrowButton.setEffectGrow(); rightArrowButton.setPosition(-40, 0); rightArrowButton.setAlignment(ALIGN_RIGHT | ALIGN_MIDDLE); rightArrowButton.setTrigger(&touchTrigger); rightArrowButton.setTrigger(&wpadTouchTrigger); rightArrowButton.setSoundClick(buttonClickSound); rightArrowButton.clicked.connect(this, &SettingsMenu::OnCategoryRightClick); categorySelectionFrame.append(&rightArrowButton); DPADButtons.setTrigger(&buttonATrigger); DPADButtons.setTrigger(&buttonBTrigger); DPADButtons.setTrigger(&buttonLTrigger); DPADButtons.setTrigger(&buttonRTrigger); DPADButtons.setTrigger(&buttonLeftTrigger); DPADButtons.setTrigger(&buttonRightTrigger); DPADButtons.clicked.connect(this, &SettingsMenu::OnDPADClick); append(&DPADButtons); categorySelectionFrame.append(&DPADButtons); setTargetPosition(0); moving = false; //! the particle BG is always appended in all sub menus append(&particleBgImage); append(&categorySelectionFrame); }
/**************************************************************************** * gameinfo ***************************************************************************/ static int InternalShowGameInfo(struct discHdr *header) { mainWindow->SetState(STATE_DISABLED); char ID[7]; strlcpy(ID, (char *) header->id, sizeof(ID)); char xmlpath[300]; snprintf(xmlpath, sizeof(xmlpath), "%swiitdb.xml", Settings.titlestxt_path); GameTDB XML_DB; if(!XML_DB.OpenFile(xmlpath)) { ShowError(tr("Could not open wiitdb.xml.")); return -1; } XML_DB.SetLanguageCode(Settings.db_language); GameXMLInfo GameInfo; if(!XML_DB.GetGameXMLInfo(ID, &GameInfo)) { ShowError(tr("Could not find info for this game in the wiitdb.xml.")); return -1; } XML_DB.CloseFile(); int choice = -1; int titley = 10; int marginY = titley + 40; int indexy = marginY; int wifiY = 0; int intputX = 200, inputY = -30, txtXOffset = 90; u8 nunchuk = 0, classiccontroller = 0, balanceboard = 0, dancepad = 0, guitar = 0, gamecube = 0, wheel = 0, motionplus = 0, drums = 0, microphone = 0, zapper = 0, nintendods = 0, //vitalitysensor=0, wiispeak = 0; int newline = 1; u8 page = 1; BoxCover * boxCov = NULL; GuiImageData * playersImgData = NULL; GuiImage * playersImg = NULL; GuiImageData * wifiplayersImgData = NULL; GuiImage * wifiplayersImg = NULL; GuiImage * ratingImg = NULL; GuiImage * classiccontrollerImg = NULL; GuiImage * nunchukImg = NULL; GuiImage * guitarImg = NULL; GuiImage * drumsImg = NULL; GuiImage * dancepadImg = NULL; GuiImage * motionplusImg = NULL; GuiImage * wheelImg = NULL; GuiImage * balanceboardImg = NULL; GuiImage * microphoneImg = NULL; GuiImage * zapperImg = NULL; GuiImage * nintendodsImg = NULL; GuiImage * wiispeakImg = NULL; //GuiImage * vitalitysensorImg = NULL; GuiImage * gcImg = NULL; GuiImage * dialogBoxImg1 = NULL; GuiImage * dialogBoxImg2 = NULL; GuiImage * dialogBoxImg3 = NULL; GuiImage * dialogBoxImg4 = NULL; GuiImage * dialogBoxImg11 = NULL; GuiImage * dialogBoxImg22 = NULL; GuiImage * dialogBoxImg33 = NULL; GuiImage * dialogBoxImg44 = NULL; GuiImage * coverImg = NULL; GuiImageData * classiccontrollerImgData = NULL; GuiImageData * nunchukImgData = NULL; GuiImageData * guitarImgData = NULL; GuiImageData * drumsImgData = NULL; GuiImageData * motionplusImgData = NULL; GuiImageData * wheelImgData = NULL; GuiImageData * balanceboardImgData = NULL; GuiImageData * dancepadImgData = NULL; GuiImageData * microphoneImgData = NULL; GuiImageData * zapperImgData = NULL; GuiImageData * nintendodsImgData = NULL; GuiImageData * wiispeakImgData = NULL; //GuiImageData * vitalitysensorImgData = NULL; GuiImageData * gamecubeImgData = NULL; GuiImageData * ratingImgData = NULL; GuiImageData * cover = NULL; GuiText * releasedTxt = NULL; GuiText * publisherTxt = NULL; GuiText * developerTxt = NULL; GuiText * titleTxt = NULL; Text * synopsisTxt = NULL; GuiText * genreTitleTxt = NULL; GuiText ** genreTxt = NULL; GuiText ** wifiTxt = NULL; GuiText * gametdb1Txt = NULL; GuiText * memTxt = NULL; GuiWindow gameinfoWindow(600, 308); gameinfoWindow.SetAlignment(ALIGN_CENTER, ALIGN_MIDDLE); gameinfoWindow.SetPosition(0, -50); GuiWindow InfoWindow(600, 308); InfoWindow.SetAlignment(ALIGN_LEFT, ALIGN_TOP); GuiWindow txtWindow(350, 270); txtWindow.SetAlignment(ALIGN_CENTER, ALIGN_TOP); txtWindow.SetPosition(95, 40); GuiImageData dialogBox1(Resources::GetFile("gameinfo1.png"), Resources::GetFileSize("gameinfo1.png")); GuiImageData dialogBox2(Resources::GetFile("gameinfo1a.png"), Resources::GetFileSize("gameinfo1a.png")); GuiImageData dialogBox3(Resources::GetFile("gameinfo2.png"), Resources::GetFileSize("gameinfo2.png")); GuiImageData dialogBox4(Resources::GetFile("gameinfo2a.png"), Resources::GetFileSize("gameinfo2a.png")); GuiTrigger trig1; trig1.SetButtonOnlyTrigger(-1, WPAD_BUTTON_1 | WPAD_CLASSIC_BUTTON_X, 0); GuiTrigger trigA; trigA.SetButtonOnlyTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A); GuiTrigger trigB; trigB.SetButtonOnlyTrigger(-1, WPAD_BUTTON_B | WPAD_CLASSIC_BUTTON_B, PAD_BUTTON_B); GuiTrigger trigU; trigU.SetButtonOnlyTrigger(-1, WPAD_BUTTON_UP | WPAD_CLASSIC_BUTTON_UP, PAD_BUTTON_UP); GuiTrigger trigD; trigD.SetButtonOnlyTrigger(-1, WPAD_BUTTON_DOWN | WPAD_CLASSIC_BUTTON_DOWN, PAD_BUTTON_DOWN); GuiTrigger trigH; trigH.SetButtonOnlyTrigger(-1, WPAD_BUTTON_HOME | WPAD_CLASSIC_BUTTON_HOME, 0); //buttons for changing between synopsis and other info GuiButton backBtn(0, 0); backBtn.SetPosition(-20, -20); backBtn.SetTrigger(&trigB); gameinfoWindow.Append(&backBtn); GuiTrigger trigA_Simple; trigA_Simple.SetSimpleTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A); GuiTrigger trigLeft; trigLeft.SetButtonOnlyTrigger(-1, WPAD_BUTTON_LEFT | WPAD_CLASSIC_BUTTON_LEFT, PAD_BUTTON_LEFT); GuiTrigger trigRight; trigRight.SetButtonOnlyTrigger(-1, WPAD_BUTTON_RIGHT | WPAD_CLASSIC_BUTTON_RIGHT, PAD_BUTTON_RIGHT); GuiButton LeftBtn(0, 0); LeftBtn.SetTrigger(&trigLeft); if(header->type != TYPE_GAME_WII_DISC && header->type != TYPE_GAME_GC_DISC) gameinfoWindow.Append(&LeftBtn); GuiButton RightBtn(0, 0); RightBtn.SetTrigger(&trigRight); if(header->type != TYPE_GAME_WII_DISC && header->type != TYPE_GAME_GC_DISC) gameinfoWindow.Append(&RightBtn); GuiButton coverBtn(180, 250); coverBtn.SetPosition(20, 20); coverBtn.SetTrigger(&trigA_Simple); gameinfoWindow.Append(&coverBtn); GuiButton nextBtn(400, 300); nextBtn.SetPosition(200, 20); nextBtn.SetTrigger(&trigA_Simple); gameinfoWindow.Append(&nextBtn); //buttons for scrolling the synopsis GuiButton upBtn(0, 0); upBtn.SetPosition(0, 0); upBtn.SetTrigger(&trigU); GuiButton dnBtn(0, 0); dnBtn.SetPosition(0, 0); dnBtn.SetTrigger(&trigD); GuiButton homeBtn(0, 0); homeBtn.SetPosition(0, 0); homeBtn.SetTrigger(&trigH); gameinfoWindow.Append(&homeBtn); char linebuf2[100] = ""; // enable icons for required accessories for (u32 i = 0; i < GameInfo.AccessoirList.size(); ++i) { if(!GameInfo.AccessoirList[i].Required) continue; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "classiccontroller") == 0) classiccontroller = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "nunchuk") == 0) nunchuk = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "guitar") == 0) guitar = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "drums") == 0) drums = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "dancepad") == 0) dancepad = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "motionplus") == 0) motionplus = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "wheel") == 0) wheel = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "balanceboard") == 0) balanceboard = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "microphone") == 0) microphone = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "zapper") == 0) zapper = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "nintendods") == 0) nintendods = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "wiispeak") == 0) wiispeak = 1; //if (strcmp(GameInfo.AccessoirList[i].Name.c_str(),"vitalitysensor")==0) // vitalitysensor=1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "gamecube") == 0) gamecube = 1; } // switch icons if (nunchuk) nunchukImgData = Resources::GetImageData("nunchukR.png"); else nunchukImgData = Resources::GetImageData("nunchuk.png"); if (classiccontroller) classiccontrollerImgData = Resources::GetImageData("classiccontrollerR.png"); else classiccontrollerImgData = Resources::GetImageData("classiccontroller.png"); if (guitar) guitarImgData = Resources::GetImageData("guitarR.png"); else guitarImgData = Resources::GetImageData("guitar.png"); if (gamecube) gamecubeImgData = Resources::GetImageData("gcncontrollerR.png"); else gamecubeImgData = Resources::GetImageData("gcncontroller.png"); if (wheel) wheelImgData = Resources::GetImageData("wheelR.png"); else wheelImgData = Resources::GetImageData("wheel.png"); if (motionplus) motionplusImgData = Resources::GetImageData("motionplusR.png"); else motionplusImgData = Resources::GetImageData("motionplus.png"); if (drums) drumsImgData = Resources::GetImageData("drumsR.png"); else drumsImgData = Resources::GetImageData("drums.png"); if (microphone) microphoneImgData = Resources::GetImageData("microphoneR.png"); else microphoneImgData = Resources::GetImageData("microphone.png"); if (zapper) zapperImgData = Resources::GetImageData("zapperR.png"); else zapperImgData = Resources::GetImageData("zapper.png"); if (wiispeak) wiispeakImgData = Resources::GetImageData("wiispeakR.png"); else wiispeakImgData = Resources::GetImageData("wiispeak.png"); if (nintendods) nintendodsImgData = Resources::GetImageData("nintendodsR.png"); else nintendodsImgData = Resources::GetImageData("nintendods.png"); if (balanceboard) balanceboardImgData = Resources::GetImageData("balanceboardR.png"); else balanceboardImgData = Resources::GetImageData("balanceboard.png"); if (dancepad) dancepadImgData = Resources::GetImageData("dancepadR.png"); else dancepadImgData = Resources::GetImageData("dancepad.png"); // look for optional accessories for (u32 i = 0; i < GameInfo.AccessoirList.size(); ++i) { if(GameInfo.AccessoirList[i].Required) continue; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "classiccontroller") == 0) classiccontroller = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "nunchuk") == 0) nunchuk = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "guitar") == 0) guitar = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "drums") == 0) drums = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "dancepad") == 0) dancepad = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "motionplus") == 0) motionplus = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "wheel") == 0) wheel = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "balanceboard") == 0) balanceboard = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "microphone") == 0) microphone = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "zapper") == 0) zapper = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "nintendods") == 0) nintendods = 1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "wiispeak") == 0) wiispeak = 1; //if (strcmp(GameInfo.AccessoirList[i].Name.c_str(),"vitalitysensor")==0) // vitalitysensor=1; if (strcmp(GameInfo.AccessoirList[i].Name.c_str(), "gamecube") == 0) gamecube = 1; } dialogBoxImg1 = new GuiImage(&dialogBox1); dialogBoxImg1->SetAlignment(0, 3); dialogBoxImg1->SetPosition(-9, 0); dialogBoxImg2 = new GuiImage(&dialogBox2); dialogBoxImg2->SetAlignment(0, 3); dialogBoxImg2->SetPosition(145, 0); dialogBoxImg3 = new GuiImage(&dialogBox3); dialogBoxImg3->SetAlignment(0, 3); dialogBoxImg3->SetPosition(301, 0); dialogBoxImg4 = new GuiImage(&dialogBox4); dialogBoxImg4->SetAlignment(0, 3); dialogBoxImg4->SetPosition(457, 0); gameinfoWindow.Append(dialogBoxImg1); gameinfoWindow.Append(dialogBoxImg2); gameinfoWindow.Append(dialogBoxImg3); gameinfoWindow.Append(dialogBoxImg4); bool loadFlatCover = false; bool load3DCover = false; char imgPath[150]; snprintf(imgPath, sizeof(imgPath), "%s/%s.png", Settings.coversFull_path, ID); if(!CheckFile(imgPath)) { loadFlatCover = true; snprintf(imgPath, sizeof(imgPath), "%s/%s.png", Settings.covers2d_path, ID); } if(!CheckFile(imgPath)) { loadFlatCover = false; load3DCover = true; snprintf(imgPath, sizeof(imgPath), "%s/%s.png", Settings.covers_path, ID); } cover = new GuiImageData(imgPath); //load full id image if (!cover->GetImage()) { delete cover; cover = NULL; } if(load3DCover && cover) //! No cover is always 3D box { coverImg = new GuiImage(cover); coverImg->SetWidescreen(Settings.widescreen); coverImg->SetPosition(15, 30); } else { boxCov = new BoxCover(cover, loadFlatCover); boxCov->SetPosition(-1.6f, 0.4f, -27.0f); boxCov->SetEffect(EFFECT_SLIDE_LEFT | EFFECT_SLIDE_IN, 40); if(GameInfo.CaseColor == 0xFF0000) { boxCov->SetBoxColor((GXColor) { 198, 34, 4, 255 }); } else if(GameInfo.CaseColor >= 0) { u8 * Color = (u8 *) &GameInfo.CaseColor; boxCov->SetBoxColor((GXColor) { Color[1], Color[2], Color[3], 255 }); } gameinfoWindow.SetEffect(EFFECT_SLIDE_LEFT | EFFECT_SLIDE_IN, 100); } // # of players if (GameInfo.Players > 0) { if (GameInfo.Players == 1) playersImgData = Resources::GetImageData("wiimote1.png"); else if (GameInfo.Players == 2) playersImgData = Resources::GetImageData("wiimote2.png"); else if (GameInfo.Players == 3) playersImgData = Resources::GetImageData("wiimote3.png"); else if (GameInfo.Players == 4) playersImgData = Resources::GetImageData("wiimote4.png"); playersImg = new GuiImage(playersImgData); playersImg->SetWidescreen(Settings.widescreen); playersImg->SetPosition(intputX, inputY); playersImg->SetAlignment(0, 4); InfoWindow.Append(playersImg); intputX += (Settings.widescreen ? playersImg->GetWidth() * Settings.WSFactor : playersImg->GetWidth()) + 5; } //draw the input types for this game if (motionplus == 1) { motionplusImg = new GuiImage(motionplusImgData); motionplusImg->SetWidescreen(Settings.widescreen); motionplusImg->SetPosition(intputX, inputY); motionplusImg->SetAlignment(0, 4); InfoWindow.Append(motionplusImg); intputX += (Settings.widescreen ? motionplusImg->GetWidth() * Settings.WSFactor : motionplusImg->GetWidth()) + 5; } if (nunchuk == 1) { nunchukImg = new GuiImage(nunchukImgData); nunchukImg->SetWidescreen(Settings.widescreen); nunchukImg->SetPosition(intputX, inputY); nunchukImg->SetAlignment(0, 4); InfoWindow.Append(nunchukImg); intputX += (Settings.widescreen ? nunchukImg->GetWidth() * Settings.WSFactor : nunchukImg->GetWidth()) + 5; } if (classiccontroller == 1) { classiccontrollerImg = new GuiImage(classiccontrollerImgData); classiccontrollerImg->SetWidescreen(Settings.widescreen); classiccontrollerImg->SetPosition(intputX, inputY); classiccontrollerImg->SetAlignment(0, 4); InfoWindow.Append(classiccontrollerImg); intputX += (Settings.widescreen ? classiccontrollerImg->GetWidth() * Settings.WSFactor : classiccontrollerImg->GetWidth()) + 5; } if (gamecube == 1) { gcImg = new GuiImage(gamecubeImgData); gcImg->SetWidescreen(Settings.widescreen); gcImg->SetPosition(intputX, inputY); gcImg->SetAlignment(0, 4); InfoWindow.Append(gcImg); intputX += (Settings.widescreen ? gcImg->GetWidth() * Settings.WSFactor : gcImg->GetWidth()) + 5; } if (wheel == 1) { wheelImg = new GuiImage(wheelImgData); wheelImg->SetWidescreen(Settings.widescreen); wheelImg->SetPosition(intputX, inputY); wheelImg->SetAlignment(0, 4); InfoWindow.Append(wheelImg); intputX += (Settings.widescreen ? wheelImg->GetWidth() * Settings.WSFactor : wheelImg->GetWidth()) + 5; } if (guitar == 1) { guitarImg = new GuiImage(guitarImgData); guitarImg->SetWidescreen(Settings.widescreen); guitarImg->SetPosition(intputX, inputY); guitarImg->SetAlignment(0, 4); InfoWindow.Append(guitarImg); intputX += (Settings.widescreen ? guitarImg->GetWidth() * Settings.WSFactor : guitarImg->GetWidth()) + 5; } if (drums == 1) { drumsImg = new GuiImage(drumsImgData); drumsImg->SetWidescreen(Settings.widescreen); drumsImg->SetPosition(intputX, inputY); drumsImg->SetAlignment(0, 4); InfoWindow.Append(drumsImg); intputX += (Settings.widescreen ? drumsImg->GetWidth() * Settings.WSFactor : drumsImg->GetWidth()) + 5; } if (microphone == 1) { microphoneImg = new GuiImage(microphoneImgData); microphoneImg->SetWidescreen(Settings.widescreen); microphoneImg->SetPosition(intputX, inputY); microphoneImg->SetAlignment(0, 4); InfoWindow.Append(microphoneImg); intputX += (Settings.widescreen ? microphoneImg->GetWidth() * Settings.WSFactor : microphoneImg->GetWidth()) + 5; } if (zapper == 1) { zapperImg = new GuiImage(zapperImgData); zapperImg->SetWidescreen(Settings.widescreen); zapperImg->SetPosition(intputX, inputY); zapperImg->SetAlignment(0, 4); InfoWindow.Append(zapperImg); intputX += (Settings.widescreen ? zapperImg->GetWidth() * Settings.WSFactor : zapperImg->GetWidth()) + 5; } if (wiispeak == 1) { wiispeakImg = new GuiImage(wiispeakImgData); wiispeakImg->SetWidescreen(Settings.widescreen); wiispeakImg->SetPosition(intputX, inputY); wiispeakImg->SetAlignment(0, 4); InfoWindow.Append(wiispeakImg); intputX += (Settings.widescreen ? wiispeakImg->GetWidth() * Settings.WSFactor : wiispeakImg->GetWidth()) + 5; } if (nintendods == 1) { nintendodsImg = new GuiImage(nintendodsImgData); nintendodsImg->SetWidescreen(Settings.widescreen); nintendodsImg->SetPosition(intputX, inputY); nintendodsImg->SetAlignment(0, 4); InfoWindow.Append(nintendodsImg); intputX += (Settings.widescreen ? nintendodsImg->GetWidth() * Settings.WSFactor : nintendodsImg->GetWidth()) + 5; } if (dancepad == 1) { dancepadImg = new GuiImage(dancepadImgData); dancepadImg->SetWidescreen(Settings.widescreen); dancepadImg->SetPosition(intputX, inputY); dancepadImg->SetAlignment(0, 4); InfoWindow.Append(dancepadImg); intputX += (Settings.widescreen ? dancepadImg->GetWidth() * Settings.WSFactor : dancepadImg->GetWidth()) + 5; } if (balanceboard == 1) { balanceboardImg = new GuiImage(balanceboardImgData); balanceboardImg->SetWidescreen(Settings.widescreen); balanceboardImg->SetPosition(intputX, inputY); balanceboardImg->SetAlignment(0, 4); InfoWindow.Append(balanceboardImg); intputX += (Settings.widescreen ? balanceboardImg->GetWidth() * Settings.WSFactor : balanceboardImg->GetWidth()) + 5; } // # online players if (GameInfo.WifiPlayers > 0) { if(GameInfo.WifiPlayers == 1) wifiplayersImgData = Resources::GetImageData("wifi1.png"); else if(GameInfo.WifiPlayers == 2) wifiplayersImgData = Resources::GetImageData("wifi2.png"); else if(GameInfo.WifiPlayers == 4) wifiplayersImgData = Resources::GetImageData("wifi4.png"); else if(GameInfo.WifiPlayers == 6) wifiplayersImgData = Resources::GetImageData("wifi6.png"); else if(GameInfo.WifiPlayers == 10) wifiplayersImgData = Resources::GetImageData("wifi10.png"); else if(GameInfo.WifiPlayers == 8) wifiplayersImgData =Resources::GetImageData("wifi8.png"); else if(GameInfo.WifiPlayers == 12) wifiplayersImgData = Resources::GetImageData("wifi12.png"); else if(GameInfo.WifiPlayers == 16) wifiplayersImgData = Resources::GetImageData("wifi16.png"); else if(GameInfo.WifiPlayers == 32) wifiplayersImgData = Resources::GetImageData("wifi32.png"); wifiplayersImg = new GuiImage(wifiplayersImgData); wifiplayersImg->SetWidescreen(Settings.widescreen); wifiplayersImg->SetPosition(intputX, inputY); wifiplayersImg->SetAlignment(0, 4); InfoWindow.Append(wifiplayersImg); intputX += (Settings.widescreen ? wifiplayersImg->GetWidth() * Settings.WSFactor : wifiplayersImg->GetWidth()) + 5; } // ratings if (GameInfo.RatingType >= 0) { if (GameInfo.RatingType == 1) { if (strcmp(GameInfo.RatingValue.c_str(), "EC") == 0) ratingImgData = Resources::GetImageData("esrb_ec.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "E") == 0) ratingImgData = Resources::GetImageData("esrb_e.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "E10+") == 0) ratingImgData = Resources::GetImageData("esrb_eten.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "T") == 0) ratingImgData = Resources::GetImageData("esrb_t.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "M") == 0) ratingImgData = Resources::GetImageData("esrb_m.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "AO") == 0) ratingImgData = Resources::GetImageData("esrb_ao.png"); else ratingImgData = Resources::GetImageData("norating.png"); } //there are 2 values here cause some countries are stupid and else if (GameInfo.RatingType == 2) //can't use the same as everybody else { if ((strcmp(GameInfo.RatingValue.c_str(), "3") == 0) || (strcmp(GameInfo.RatingValue.c_str(), "4") == 0)) ratingImgData = Resources::GetImageData("pegi_3.png"); else if ((strcmp(GameInfo.RatingValue.c_str(), "7") == 0) || (strcmp(GameInfo.RatingValue.c_str(), "7") == 0)) ratingImgData = Resources::GetImageData("pegi_7.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "12") == 0) ratingImgData = Resources::GetImageData("pegi_12.png"); else if ((strcmp(GameInfo.RatingValue.c_str(), "16") == 0) || (strcmp(GameInfo.RatingValue.c_str(), "15") == 0)) ratingImgData = Resources::GetImageData("pegi_16.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "18") == 0) ratingImgData = Resources::GetImageData("pegi_18.png"); else { ratingImgData = Resources::GetImageData("norating.png"); } } else if (GameInfo.RatingType == 0) { if (strcmp(GameInfo.RatingValue.c_str(), "A") == 0) ratingImgData = Resources::GetImageData("cero_a.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "B") == 0) ratingImgData = Resources::GetImageData("cero_b.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "C") == 0) ratingImgData = Resources::GetImageData("cero_c.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "D") == 0) ratingImgData = Resources::GetImageData("cero_d.png"); else if (strcmp(GameInfo.RatingValue.c_str(), "Z") == 0) ratingImgData = Resources::GetImageData("cero_z.png"); else { ratingImgData = Resources::GetImageData("norating.png"); } } else { ratingImgData = Resources::GetImageData("norating.png"); } ratingImg = new GuiImage(ratingImgData); ratingImg->SetWidescreen(Settings.widescreen); ratingImg->SetPosition(-25, inputY); ratingImg->SetAlignment(1, 4); InfoWindow.Append(ratingImg); intputX += (Settings.widescreen ? ratingImg->GetWidth() * Settings.WSFactor : ratingImg->GetWidth()) + 5; } // title int titlefontsize = 25; if (GameInfo.Title.size() > 0) { titleTxt = new GuiText(GameInfo.Title.c_str(), titlefontsize, ( GXColor ) {0, 0, 0, 255}); titleTxt->SetMaxWidth(350, SCROLL_HORIZONTAL); titleTxt->SetAlignment(ALIGN_CENTER, ALIGN_TOP); titleTxt->SetPosition(txtXOffset, 12 + titley); InfoWindow.Append(titleTxt); } //date snprintf(linebuf2, sizeof(linebuf2), " "); if (GameInfo.PublishDate != 0) { int year = GameInfo.PublishDate >> 16; int day = GameInfo.PublishDate & 0xFF; int month = (GameInfo.PublishDate >> 8) & 0xFF; snprintf(linebuf2, sizeof(linebuf2), "%02i ", day); switch (month) { case 1: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Jan" )); break; case 2: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Feb" )); break; case 3: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Mar" )); break; case 4: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Apr" )); break; case 5: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "May" )); break; case 6: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "June" )); break; case 7: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "July" )); break; case 8: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Aug" )); break; case 9: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Sept" )); break; case 10: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Oct" )); break; case 11: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Nov" )); break; case 12: snprintf(linebuf2, sizeof(linebuf2), "%s%s ", linebuf2, tr( "Dec" )); break; } char linebuf[300]; snprintf(linebuf, sizeof(linebuf), "%s : %s%i", tr( "Released" ), linebuf2, year); releasedTxt = new GuiText(linebuf, 16, ( GXColor ) {0, 0, 0, 255}); if (releasedTxt->GetTextWidth() > 300) newline = 2; releasedTxt->SetAlignment(ALIGN_RIGHT, ALIGN_TOP); releasedTxt->SetPosition(-17, 12 + indexy); indexy += (20 * newline); newline = 1; InfoWindow.Append(releasedTxt); }
void GuiArrowOption::AddOption(const char * name, int PositionX, int PositionY) { int Center = PositionX; GuiText * OptName = new GuiText(name, 16, (GXColor) { 0, 0, 0, 255 }); OptName->SetAlignment(ALIGN_LEFT | ALIGN_TOP); OptName->SetPosition(Center-OptName->GetTextWidth()/2, PositionY); GuiText * OptText = new GuiText(" ", 16, (GXColor) { 0, 0, 0, 255 }); OptText->SetPosition(Center-OptText->GetTextWidth()/2, PositionY+30); OptText->SetAlignment(ALIGN_LEFT | ALIGN_TOP); GuiButton * OptBtn = new GuiButton(OptName->GetTextWidth(), 18); OptBtn->SetSoundOver(btnSoundOver); OptBtn->SetSoundClick(btnClick); OptBtn->SetTrigger(trigA); OptBtn->SetPosition(Center-OptText->GetTextWidth()/2, PositionY+30); OptBtn->SetAlignment(ALIGN_LEFT | ALIGN_TOP); OptBtn->Clicked.connect(this, &GuiArrowOption::OnButtonClick); GuiImage * OptImgLeft = new GuiImage(ArrowImgData); OptImgLeft->SetAngle(180); GuiButton * OptBtnLeft = new GuiButton(OptImgLeft->GetWidth(), OptImgLeft->GetHeight()); OptBtnLeft->SetImage(OptImgLeft); OptBtnLeft->SetSoundOver(btnSoundOver); OptBtnLeft->SetSoundClick(btnClick); OptBtnLeft->SetTrigger(trigA); OptBtnLeft->SetEffectGrow(); OptBtnLeft->SetPosition(Center-(OptText->GetTextWidth()/2+10), PositionY+30); OptBtnLeft->SetAlignment(ALIGN_LEFT | ALIGN_TOP); OptBtnLeft->Clicked.connect(this, &GuiArrowOption::OnLeftButtonClick); GuiImage * OptImgRight = new GuiImage(ArrowImgData); GuiButton * OptBtnRight = new GuiButton(OptImgRight->GetWidth(), OptImgRight->GetHeight()); OptBtnRight->SetImage(OptImgRight); OptBtnRight->SetSoundOver(btnSoundOver); OptBtnRight->SetSoundClick(btnClick); OptBtnRight->SetTrigger(trigA); OptBtnRight->SetEffectGrow(); OptBtnRight->SetPosition(Center+(OptText->GetTextWidth()/2+10), PositionY+30); OptBtnRight->SetAlignment(ALIGN_LEFT | ALIGN_TOP); OptBtnRight->Clicked.connect(this, &GuiArrowOption::OnRightButtonClick); Append(OptName); Append(OptText); Append(OptBtn); Append(OptBtnLeft); Append(OptBtnRight); OptionsName.push_back(OptName); OptionsText.push_back(OptText); OptionsBtn.push_back(OptBtn); OptionsImgLeft.push_back(OptImgLeft); OptionsBtnLeft.push_back(OptBtnLeft); OptionsImgRight.push_back(OptImgRight); OptionsBtnRight.push_back(OptBtnRight); }