1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00

video button

This commit is contained in:
Laserlicht 2024-01-23 23:45:31 +01:00 committed by GitHub
parent 634b90169d
commit 0df4f9bda5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -72,6 +72,7 @@ CBonusSelection::CBonusSelection()
buttonStart = std::make_shared<CButton>(Point(475, 536), AnimationPath::builtin("CBBEGIB.DEF"), CButton::tooltip(), std::bind(&CBonusSelection::startMap, this), EShortcut::GLOBAL_ACCEPT);
buttonRestart = std::make_shared<CButton>(Point(475, 536), AnimationPath::builtin("CBRESTB.DEF"), CButton::tooltip(), std::bind(&CBonusSelection::restartMap, this), EShortcut::GLOBAL_ACCEPT);
buttonVideo = std::make_shared<CButton>(Point(705, 214), AnimationPath::builtin("CBVIDEB.DEF"), CButton::tooltip(), [this](){ GH.windows().createAndPushWindow<CPrologEpilogVideo>(getCampaign()->scenario(CSH->campaignMap).prolog, nullptr); });
buttonBack = std::make_shared<CButton>(Point(624, 536), AnimationPath::builtin("CBCANCB.DEF"), CButton::tooltip(), std::bind(&CBonusSelection::goBack, this), EShortcut::GLOBAL_CANCEL);
campaignName = std::make_shared<CLabel>(481, 28, FONT_BIG, ETextAlignment::TOPLEFT, Colors::YELLOW, CSH->si->getCampaignName());
@ -309,6 +310,7 @@ void CBonusSelection::updateAfterStateChange()
if(CSH->state != EClientState::GAMEPLAY)
{
buttonRestart->disable();
buttonVideo->disable();
buttonStart->enable();
if(!getCampaign()->conqueredScenarios().empty())
buttonBack->block(true);
@ -319,6 +321,7 @@ void CBonusSelection::updateAfterStateChange()
{
buttonStart->disable();
buttonRestart->enable();
buttonVideo->enable();
buttonBack->block(false);
if(buttonDifficultyLeft)
buttonDifficultyLeft->disable();
@ -401,6 +404,7 @@ void CBonusSelection::startMap()
//block buttons immediately
buttonStart->block(true);
buttonRestart->block(true);
buttonVideo->block(true);
buttonBack->block(true);
if(LOCPLINT) // we're currently ingame, so ask for starting new map and end game

View File

@ -65,6 +65,7 @@ public:
std::shared_ptr<CButton> buttonStart;
std::shared_ptr<CButton> buttonRestart;
std::shared_ptr<CButton> buttonBack;
std::shared_ptr<CButton> buttonVideo;
std::shared_ptr<CLabel> campaignName;
std::shared_ptr<CLabel> labelCampaignDescription;
std::shared_ptr<CTextBox> campaignDescription;

View File

@ -64,5 +64,6 @@ void CPrologEpilogVideo::clickPressed(const Point & cursorPosition)
close();
CCS->soundh->stopSound(voiceSoundHandle);
CCS->soundh->stopSound(videoSoundHandle);
exitCb();
if(exitCb)
exitCb();
}