axmol/cocos/ui/UIVideoPlayer.h

267 lines
8.0 KiB
C++

/****************************************************************************
Copyright (c) 2014-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
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
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_TIZEN) && !defined(CC_PLATFORM_OS_TVOS)
#include "ui/UIWidget.h"
/**
* @addtogroup ui
* @{
*/
NS_CC_BEGIN
namespace ui{
/**
* @class VideoPlayer
* @brief Displays a video file.
*
* @note VideoPlayer displays a video file base on system widget.
* It's mean VideoPlayer displays a video file above all graphical elements of cocos2d-x.
* @js NA
*/
class VideoPlayer : public cocos2d::ui::Widget
{
public:
/**
* Videoplayer play event type.
*/
enum class EventType
{
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
};
/**
* A callback which will be called after specific VideoPlayer event happens.
*/
typedef std::function<void(Ref*,VideoPlayer::EventType)> ccVideoPlayerCallback;
/**
*Static create method for instancing a VideoPlayer.
*/
CREATE_FUNC(VideoPlayer);
/**
* Sets a file path as a video source for VideoPlayer.
*/
virtual void setFileName(const std::string& videoPath);
/**
* @brief Get the local video file name.
*
* @return The video file name.
*/
virtual const std::string& getFileName() const { return _videoURL;}
/**
* Sets a URL as a video source for VideoPlayer.
*/
virtual void setURL(const std::string& _videoURL);
/**
* @brief Get the URL of remoting video source.
*
* @return A remoting URL address.
*/
virtual const std::string& getURL() const { return _videoURL;}
/**
* @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);
/**
* 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);
/**
* Set the style of the player
*
* @param style The corresponding style
*/
virtual void setStyle(StyleType style);
/**
* 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);
/**
* Checks whether the VideoPlayer is playing.
*
* @return True if currently playing, false otherwise.
*/
virtual bool isPlaying() const;
/**
* Checks whether the VideoPlayer is set with looping mode.
*
* @return true if the videoplayer is set to loop, false otherwise.
*/
virtual bool isLooping() const;
/**
* Checks whether the VideoPlayer is set to listen user input to resume and pause the video
*
* @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.
*/
virtual void addEventListener(const VideoPlayer::ccVideoPlayerCallback& callback);
/**
* @brief A function which will be called when video is playing.
*
* @param event @see VideoPlayer::EventType.
*/
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;
protected:
virtual cocos2d::ui::Widget* createCloneInstance() override;
virtual void copySpecialProperties(Widget* model) override;
CC_CONSTRUCTOR_ACCESS:
VideoPlayer();
virtual ~VideoPlayer();
protected:
#if CC_VIDEOPLAYER_DEBUG_DRAW
DrawNode *_debugDrawNode;
#endif
enum class Source
{
FILENAME = 0,
URL
};
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;
void* _videoView = nullptr;
};
}
NS_CC_END
// end group
/// @}
#endif