2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2022-02-23 17:38:21 +08:00
|
|
|
Copyright (c) 2022 Bytedance Inc.
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
2023-06-01 12:48:40 +08:00
|
|
|
#include "ui/UIWidget.h"
|
2022-02-24 17:57:08 +08:00
|
|
|
|
2023-06-10 22:05:49 +08:00
|
|
|
#if AX_TARGET_PLATFORM != AX_PLATFORM_LINUX || defined(AX_ENABLE_VLC_MEDIA)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
# if AX_VIDEOPLAYER_DEBUG_DRAW
|
2022-02-23 18:39:02 +08:00
|
|
|
# include "2d/CCDrawNode.h"
|
|
|
|
# endif
|
|
|
|
|
2022-04-26 15:16:02 +08:00
|
|
|
# undef ERROR
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup ui
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace ui
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* @class MediaPlayer
|
|
|
|
* @brief Play a media file.
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
2023-06-10 22:05:49 +08:00
|
|
|
* @note MediaPlayer play a media file base on system widget.
|
|
|
|
* It's mean MediaPlayer play a media file above all graphical elements of axmol.
|
2021-12-25 10:04:45 +08:00
|
|
|
* @js NA
|
|
|
|
*/
|
2023-06-10 22:05:49 +08:00
|
|
|
class AX_GUI_DLL MediaPlayer : public ax::ui::Widget
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
public:
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* Videoplayer play event type.
|
2019-11-23 20:27:39 +08:00
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
enum class EventType
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
PLAYING = 0,
|
|
|
|
PAUSED,
|
|
|
|
STOPPED,
|
|
|
|
COMPLETED,
|
|
|
|
ERROR
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Styles of how the the video player is presented
|
|
|
|
* For now only used on iOS to use either MPMovieControlStyleEmbedded (DEFAULT) or
|
|
|
|
* MPMovieControlStyleNone (NONE)
|
|
|
|
*/
|
|
|
|
enum class StyleType
|
|
|
|
{
|
|
|
|
DEFAULT = 0,
|
|
|
|
NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* A callback which will be called after specific MediaPlayer event happens.
|
2021-12-25 10:04:45 +08:00
|
|
|
*/
|
2023-06-10 22:05:49 +08:00
|
|
|
typedef std::function<void(Ref*, MediaPlayer::EventType)> ccVideoPlayerCallback;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
*Static create method for instancing a MediaPlayer.
|
2021-12-25 10:04:45 +08:00
|
|
|
*/
|
2023-06-10 22:05:49 +08:00
|
|
|
CREATE_FUNC(MediaPlayer);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* Sets a file path as a video source for MediaPlayer.
|
2021-12-25 10:04:45 +08:00
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
virtual void setFileName(std::string_view videoPath);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the local video file name.
|
|
|
|
*
|
|
|
|
* @return The video file name.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
virtual std::string_view getFileName() const { return _videoURL; }
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* Sets a URL as a video source for MediaPlayer.
|
2021-12-25 10:04:45 +08:00
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
virtual void setURL(std::string_view _videoURL);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
|
|
|
* @brief Get the URL of remoting video source.
|
|
|
|
*
|
|
|
|
* @return A remoting URL address.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
virtual std::string_view getURL() const { return _videoURL; }
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
|
|
|
* @brief Set if playback is done in loop mode
|
|
|
|
*
|
|
|
|
* @param looping the video will or not automatically restart at the end
|
|
|
|
*/
|
|
|
|
virtual void setLooping(bool looping);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
|
|
|
* Set if the player will enable user input for basic pause and resume of video
|
|
|
|
*
|
|
|
|
* @param enableInput If true, input will be handled for basic functionality (pause/resume)
|
|
|
|
*/
|
|
|
|
virtual void setUserInputEnabled(bool enableInput);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
|
|
|
* Set the style of the player
|
|
|
|
*
|
|
|
|
* @param style The corresponding style
|
|
|
|
*/
|
|
|
|
virtual void setStyle(StyleType style);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-04-28 12:14:08 +08:00
|
|
|
/**
|
2023-06-01 12:48:40 +08:00
|
|
|
* Sets play rate, currently, only supported by windows
|
2022-04-28 12:14:08 +08:00
|
|
|
*
|
|
|
|
* @param fRate the rate for play, default 1.0
|
|
|
|
*/
|
|
|
|
virtual void setPlayRate(float fRate);
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/**
|
|
|
|
* Starts playback.
|
|
|
|
*/
|
|
|
|
virtual void play();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pauses playback.
|
|
|
|
*/
|
|
|
|
virtual void pause() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resumes playback.
|
|
|
|
*/
|
|
|
|
virtual void resume() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops playback.
|
|
|
|
*/
|
|
|
|
virtual void stop();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Seeks to specified time position.
|
|
|
|
*
|
|
|
|
* @param sec The offset in seconds from the start to seek to.
|
|
|
|
*/
|
|
|
|
virtual void seekTo(float sec);
|
|
|
|
|
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* Checks whether the MediaPlayer is playing.
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
|
|
|
* @return True if currently playing, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool isPlaying() const;
|
|
|
|
|
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* Checks whether the MediaPlayer is set with looping mode.
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
|
|
|
* @return true if the videoplayer is set to loop, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool isLooping() const;
|
|
|
|
|
|
|
|
/**
|
2023-06-10 22:05:49 +08:00
|
|
|
* Checks whether the MediaPlayer is set to listen user input to resume and pause the video
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
|
|
|
* @return true if the videoplayer user input is set, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool isUserInputEnabled() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Causes the video player to keep aspect ratio or no when displaying the video.
|
|
|
|
*
|
|
|
|
* @param enable Specify true to keep aspect ratio or false to scale the video until
|
|
|
|
* both dimensions fit the visible bounds of the view exactly.
|
|
|
|
*/
|
|
|
|
virtual void setKeepAspectRatioEnabled(bool enable);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates whether the video player keep aspect ratio when displaying the video.
|
|
|
|
*/
|
|
|
|
virtual bool isKeepAspectRatioEnabled() const { return _keepAspectRatioEnabled; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Causes the video player to enter or exit full-screen mode.
|
|
|
|
*
|
|
|
|
* @param fullscreen Specify true to enter full-screen mode or false to exit full-screen mode.
|
|
|
|
*/
|
|
|
|
virtual void setFullScreenEnabled(bool fullscreen);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates whether the video player is in full-screen mode.
|
|
|
|
*
|
|
|
|
* @return True if the video player is in full-screen mode, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool isFullScreenEnabled() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a callback to be invoked when the video state is updated.
|
|
|
|
*
|
|
|
|
* @param callback The callback that will be run.
|
|
|
|
*/
|
2023-06-10 22:05:49 +08:00
|
|
|
virtual void addEventListener(const MediaPlayer::ccVideoPlayerCallback& callback);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief A function which will be called when video is playing.
|
|
|
|
*
|
2023-06-10 22:05:49 +08:00
|
|
|
* @param event @see MediaPlayer::EventType.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
virtual void onPlayEvent(int event);
|
|
|
|
virtual void setVisible(bool visible) override;
|
|
|
|
virtual void draw(Renderer* renderer, const Mat4& transform, uint32_t flags) override;
|
|
|
|
virtual void onEnter() override;
|
|
|
|
virtual void onExit() override;
|
|
|
|
|
2022-02-24 17:57:08 +08:00
|
|
|
void setContentSize(const Size& contentSize) override;
|
|
|
|
|
2023-06-10 22:05:49 +08:00
|
|
|
MediaPlayer();
|
|
|
|
virtual ~MediaPlayer();
|
2022-03-18 21:46:07 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
protected:
|
2022-08-08 18:02:17 +08:00
|
|
|
virtual ax::ui::Widget* createCloneInstance() override;
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual void copySpecialProperties(Widget* model) override;
|
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
# if AX_VIDEOPLAYER_DEBUG_DRAW
|
2021-12-25 10:04:45 +08:00
|
|
|
DrawNode* _debugDrawNode;
|
|
|
|
# endif
|
|
|
|
|
|
|
|
enum class Source
|
|
|
|
{
|
|
|
|
FILENAME = 0,
|
|
|
|
URL
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
bool _isPlaying = false;
|
|
|
|
bool _isLooping = false;
|
|
|
|
bool _isUserInputEnabled = true;
|
|
|
|
bool _fullScreenDirty = false;
|
|
|
|
bool _fullScreenEnabled = false;
|
|
|
|
bool _keepAspectRatioEnabled = false;
|
|
|
|
|
|
|
|
StyleType _styleType = StyleType::DEFAULT;
|
|
|
|
|
|
|
|
std::string _videoURL;
|
|
|
|
Source _videoSource;
|
|
|
|
|
|
|
|
int _videoPlayerIndex = -1;
|
|
|
|
ccVideoPlayerCallback _eventCallback = nullptr;
|
|
|
|
|
2022-02-23 17:38:21 +08:00
|
|
|
void* _videoContext = nullptr;
|
2021-12-25 10:04:45 +08:00
|
|
|
};
|
2023-06-10 22:05:49 +08:00
|
|
|
using VideoPlayer = MediaPlayer;
|
2021-12-25 10:04:45 +08:00
|
|
|
} // namespace ui
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
// end group
|
|
|
|
/// @}
|
|
|
|
#endif
|