1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/windows/CTutorialWindow.cpp

104 lines
3.3 KiB
C++
Raw Normal View History

/*
* CTutorialWindow.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "CTutorialWindow.h"
#include "../eventsSDL/InputHandler.h"
#include "../../lib/CConfigHandler.h"
#include "../ConditionalWait.h"
#include "../../lib/texts/CGeneralTextHandler.h"
#include "../CPlayerInterface.h"
2023-11-16 03:58:43 +02:00
#include "../CGameInfo.h"
#include "../gui/CGuiHandler.h"
2023-11-14 23:39:11 +02:00
#include "../gui/Shortcut.h"
#include "../gui/WindowHandler.h"
#include "../widgets/Images.h"
2023-11-14 23:39:11 +02:00
#include "../widgets/Buttons.h"
#include "../widgets/TextControls.h"
#include "../widgets/VideoWidget.h"
2023-11-16 03:58:43 +02:00
#include "../render/Canvas.h"
CTutorialWindow::CTutorialWindow(const TutorialMode & m)
: CWindowObject(BORDERED, ImagePath::builtin("DIBOXBCK")), mode { m }, page { 0 }
{
OBJECT_CONSTRUCTION;
pos = Rect(pos.x, pos.y, 380, 400); //video: 320x240
2023-11-14 23:50:22 +02:00
background = std::make_shared<CFilledTexture>(ImagePath::builtin("DIBOXBCK"), Rect(0, 0, pos.w, pos.h));
updateShadow();
center();
2023-11-14 23:50:22 +02:00
addUsedEvents(LCLICK);
2023-11-14 23:39:11 +02:00
2023-11-17 19:23:11 +02:00
if(mode == TutorialMode::TOUCH_ADVENTUREMAP) videos = { "RightClick", "MapPanning", "MapZooming", "RadialWheel" };
else if(mode == TutorialMode::TOUCH_BATTLE) videos = { "BattleDirection", "BattleDirectionAbort", "AbortSpell" };
2023-11-14 23:39:11 +02:00
2023-11-17 00:03:41 +02:00
labelTitle = std::make_shared<CLabel>(190, 15, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW, CGI->generaltexth->translate("vcmi.tutorialWindow.title"));
labelInformation = std::make_shared<CMultiLineLabel>(Rect(5, 40, 370, 60), EFonts::FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, "");
buttonOk = std::make_shared<CButton>(Point(159, 367), AnimationPath::builtin("IOKAY"), CButton::tooltip(), std::bind(&CTutorialWindow::exit, this), EShortcut::GLOBAL_RETURN); //62x28
buttonLeft = std::make_shared<CButton>(Point(5, 217), AnimationPath::builtin("HSBTNS3"), CButton::tooltip(), std::bind(&CTutorialWindow::previous, this), EShortcut::MOVE_LEFT); //22x46
buttonRight = std::make_shared<CButton>(Point(352, 217), AnimationPath::builtin("HSBTNS5"), CButton::tooltip(), std::bind(&CTutorialWindow::next, this), EShortcut::MOVE_RIGHT); //22x46
2023-11-14 23:50:22 +02:00
setContent();
}
void CTutorialWindow::setContent()
{
OBJECT_CONSTRUCTION;
auto video = VideoPath::builtin("tutorial/" + videos[page]);
2024-05-15 18:34:23 +02:00
videoPlayer = std::make_shared<VideoWidget>(Point(30, 120), video, false);
buttonLeft->block(page<1);
buttonRight->block(page>videos.size() - 2);
2023-11-17 00:03:41 +02:00
labelInformation->setText(CGI->generaltexth->translate("vcmi.tutorialWindow.decription." + videos[page]));
}
void CTutorialWindow::openWindowFirstTime(const TutorialMode & m)
{
2024-07-19 11:41:00 +02:00
if(GH.input().getCurrentInputMode() == InputMode::TOUCH && !persistentStorage["gui"]["tutorialCompleted" + std::to_string(m)].Bool())
2023-11-14 23:50:22 +02:00
{
if(LOCPLINT)
LOCPLINT->showingDialog->setBusy();
2023-11-14 23:50:22 +02:00
GH.windows().pushWindow(std::make_shared<CTutorialWindow>(m));
Settings s = persistentStorage.write["gui"]["tutorialCompleted" + std::to_string(m)];
s->Bool() = true;
}
}
2023-11-17 00:03:41 +02:00
void CTutorialWindow::exit()
{
2023-11-14 23:50:22 +02:00
if(LOCPLINT)
LOCPLINT->showingDialog->setFree();
2023-11-14 23:39:11 +02:00
2023-11-17 00:03:41 +02:00
close();
2023-11-14 23:39:11 +02:00
}
void CTutorialWindow::next()
{
page++;
setContent();
deactivate();
activate();
2023-11-14 23:39:11 +02:00
}
void CTutorialWindow::previous()
{
page--;
setContent();
deactivate();
activate();
2023-11-14 23:50:22 +02:00
}