mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
/*
|
|
* VideoWidget.h, 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
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include "../gui/CIntObject.h"
|
|
|
|
#include "../lib/filesystem/ResourcePath.h"
|
|
|
|
class IVideoInstance;
|
|
|
|
class VideoWidgetBase : public CIntObject
|
|
{
|
|
std::unique_ptr<IVideoInstance> videoInstance;
|
|
|
|
std::pair<std::unique_ptr<ui8[]>, si64> audioData = {nullptr, 0};
|
|
int audioHandle = -1;
|
|
bool playAudio = false;
|
|
|
|
void loadAudio(const VideoPath & file);
|
|
void startAudio();
|
|
void stopAudio();
|
|
|
|
protected:
|
|
VideoWidgetBase(const Point & position, const VideoPath & video, bool playAudio);
|
|
|
|
virtual void onPlaybackFinished() = 0;
|
|
void playVideo(const VideoPath & video);
|
|
|
|
public:
|
|
~VideoWidgetBase();
|
|
|
|
void activate() override;
|
|
void deactivate() override;
|
|
void show(Canvas & to) override;
|
|
void showAll(Canvas & to) override;
|
|
void tick(uint32_t msPassed) override;
|
|
|
|
void setPlaybackFinishedCallback(std::function<void()>);
|
|
};
|
|
|
|
class VideoWidget final: public VideoWidgetBase
|
|
{
|
|
VideoPath loopedVideo;
|
|
|
|
void onPlaybackFinished() final;
|
|
public:
|
|
VideoWidget(const Point & position, const VideoPath & prologue, const VideoPath & looped, bool playAudio);
|
|
VideoWidget(const Point & position, const VideoPath & looped, bool playAudio);
|
|
};
|
|
|
|
class VideoWidgetOnce final: public VideoWidgetBase
|
|
{
|
|
std::function<void()> callback;
|
|
|
|
void onPlaybackFinished() final;
|
|
public:
|
|
VideoWidgetOnce(const Point & position, const VideoPath & video, bool playAudio, const std::function<void()> & callback);
|
|
};
|