axmol/core/ui/UIVideoPlayer/UIVideoPlayer-android.cpp

352 lines
10 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2014-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2022 Bytedance Inc.
2019-11-23 20:27:39 +08:00
https://axis-project.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.
****************************************************************************/
#include "ui/UIVideoPlayer/UIVideoPlayer.h"
2019-11-23 20:27:39 +08:00
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
2021-12-25 10:04:45 +08:00
# include <unordered_map>
# include <stdlib.h>
# include <jni.h>
# include <string>
# include "platform/android/jni/JniHelper.h"
# include "base/CCDirector.h"
# include "base/CCEventListenerKeyboard.h"
# include "platform/CCFileUtils.h"
# include "ui/UIHelper.h"
2019-11-23 20:27:39 +08:00
//-----------------------------------------------------------------------------------------------------------
static const char* videoHelperClassName = "org.cocos2dx.lib.Cocos2dxVideoHelper";
2019-11-23 20:27:39 +08:00
USING_NS_AX;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
static void executeVideoCallback(int index, int event);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
# define QUIT_FULLSCREEN 1000
2019-11-23 20:27:39 +08:00
extern "C" {
2021-12-25 10:04:45 +08:00
JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxVideoHelper_nativeExecuteVideoCallback(JNIEnv*,
jclass,
jint index,
jint event)
{
executeVideoCallback(index, event);
}
2019-11-23 20:27:39 +08:00
}
int createVideoWidgetJNI()
{
JniMethodInfo t;
int ret = -1;
if (JniHelper::getStaticMethodInfo(t, videoHelperClassName, "createVideoWidget", "()I"))
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
ret = t.env->CallStaticIntMethod(t.classID, t.methodID);
t.env->DeleteLocalRef(t.classID);
}
return ret;
}
void setLoopingJNI(int index, bool looping)
{
JniMethodInfo t;
if (JniHelper::getStaticMethodInfo(t, videoHelperClassName, "setLooping", "(IZ)V"))
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
t.env->CallStaticVoidMethod(t.classID, t.methodID, index, looping);
t.env->DeleteLocalRef(t.classID);
}
}
void setUserInputEnabledJNI(int index, bool enableInput)
{
JniMethodInfo t;
if (JniHelper::getStaticMethodInfo(t, videoHelperClassName, "setUserInputEnabled", "(IZ)V"))
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
t.env->CallStaticVoidMethod(t.classID, t.methodID, index, enableInput);
t.env->DeleteLocalRef(t.classID);
}
}
//-----------------------------------------------------------------------------------------------------------
using namespace axis::ui;
2019-11-23 20:27:39 +08:00
static std::unordered_map<int, VideoPlayer*> s_allVideoPlayers;
VideoPlayer::VideoPlayer()
2021-12-25 10:04:45 +08:00
: _fullScreenDirty(false)
, _fullScreenEnabled(false)
, _keepAspectRatioEnabled(false)
, _videoPlayerIndex(-1)
, _eventCallback(nullptr)
, _isPlaying(false)
, _isLooping(false)
, _isUserInputEnabled(true)
, _styleType(StyleType::DEFAULT)
{
_videoPlayerIndex = createVideoWidgetJNI();
2019-11-23 20:27:39 +08:00
s_allVideoPlayers[_videoPlayerIndex] = this;
2021-12-25 10:04:45 +08:00
# if CC_VIDEOPLAYER_DEBUG_DRAW
2019-11-23 20:27:39 +08:00
_debugDrawNode = DrawNode::create();
addChild(_debugDrawNode);
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
VideoPlayer::~VideoPlayer()
{
s_allVideoPlayers.erase(_videoPlayerIndex);
JniHelper::callStaticVoidMethod(videoHelperClassName, "removeVideoWidget", _videoPlayerIndex);
2019-11-23 20:27:39 +08:00
}
void VideoPlayer::setFileName(std::string_view fileName)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
_videoURL = FileUtils::getInstance()->fullPathForFilename(fileName);
2019-11-23 20:27:39 +08:00
_videoSource = VideoPlayer::Source::FILENAME;
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoUrl", _videoPlayerIndex, (int)Source::FILENAME,
2021-12-25 10:04:45 +08:00
_videoURL);
2019-11-23 20:27:39 +08:00
}
void VideoPlayer::setURL(std::string_view videoUrl)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
_videoURL = videoUrl;
2019-11-23 20:27:39 +08:00
_videoSource = VideoPlayer::Source::URL;
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoUrl", _videoPlayerIndex, (int)Source::URL,
2021-12-25 10:04:45 +08:00
_videoURL);
2019-11-23 20:27:39 +08:00
}
void VideoPlayer::setLooping(bool looping)
{
_isLooping = looping;
setLoopingJNI(_videoPlayerIndex, _isLooping);
}
void VideoPlayer::setUserInputEnabled(bool enableInput)
{
_isUserInputEnabled = enableInput;
setUserInputEnabledJNI(_videoPlayerIndex, enableInput);
}
void VideoPlayer::setStyle(StyleType style)
{
_styleType = style;
}
2021-12-25 10:04:45 +08:00
void VideoPlayer::draw(Renderer* renderer, const Mat4& transform, uint32_t flags)
2019-11-23 20:27:39 +08:00
{
axis::ui::Widget::draw(renderer, transform, flags);
2019-11-23 20:27:39 +08:00
if (flags & FLAGS_TRANSFORM_DIRTY)
{
auto uiRect = axis::ui::Helper::convertBoundingBoxToScreen(this);
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoRect", _videoPlayerIndex, (int)uiRect.origin.x,
2021-12-25 10:04:45 +08:00
(int)uiRect.origin.y, (int)uiRect.size.width, (int)uiRect.size.height);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
# if CC_VIDEOPLAYER_DEBUG_DRAW
2019-11-23 20:27:39 +08:00
_debugDrawNode->clear();
2021-12-25 10:04:45 +08:00
auto size = getContentSize();
Point vertices[4] = {Point::ZERO, Point(size.width, 0), Point(size.width, size.height), Point(0, size.height)};
_debugDrawNode->drawPoly(vertices, 4, true, Color4F(1.0, 1.0, 1.0, 1.0));
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
}
void VideoPlayer::setFullScreenEnabled(bool enabled)
{
if (_fullScreenEnabled != enabled)
{
_fullScreenEnabled = enabled;
auto frameSize = Director::getInstance()->getOpenGLView()->getFrameSize();
JniHelper::callStaticVoidMethod(videoHelperClassName, "setFullScreenEnabled", _videoPlayerIndex, enabled,
2021-12-25 10:04:45 +08:00
(int)frameSize.width, (int)frameSize.height);
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
bool VideoPlayer::isFullScreenEnabled() const
2019-11-23 20:27:39 +08:00
{
return _fullScreenEnabled;
}
void VideoPlayer::setKeepAspectRatioEnabled(bool enable)
{
if (_keepAspectRatioEnabled != enable)
{
_keepAspectRatioEnabled = enable;
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoKeepRatioEnabled", _videoPlayerIndex, enable);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::setPlayRate(float fRate) {}
2019-11-23 20:27:39 +08:00
void VideoPlayer::play()
{
2021-12-25 10:04:45 +08:00
if (!_videoURL.empty())
2019-11-23 20:27:39 +08:00
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "startVideo", _videoPlayerIndex);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::pause()
{
2021-12-25 10:04:45 +08:00
if (!_videoURL.empty())
2019-11-23 20:27:39 +08:00
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "pauseVideo", _videoPlayerIndex);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::resume()
{
2021-12-25 10:04:45 +08:00
if (!_videoURL.empty())
2019-11-23 20:27:39 +08:00
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "resumeVideo", _videoPlayerIndex);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::stop()
{
2021-12-25 10:04:45 +08:00
if (!_videoURL.empty())
2019-11-23 20:27:39 +08:00
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "stopVideo", _videoPlayerIndex);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::seekTo(float sec)
{
2021-12-25 10:04:45 +08:00
if (!_videoURL.empty())
2019-11-23 20:27:39 +08:00
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "seekVideoTo", _videoPlayerIndex, int(sec * 1000));
2019-11-23 20:27:39 +08:00
}
}
bool VideoPlayer::isPlaying() const
{
return _isPlaying;
}
bool VideoPlayer::isLooping() const
{
return _isLooping;
}
bool VideoPlayer::isUserInputEnabled() const
{
return _isUserInputEnabled;
}
void VideoPlayer::setVisible(bool visible)
{
axis::ui::Widget::setVisible(visible);
2019-11-23 20:27:39 +08:00
if (!visible || isRunning())
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoVisible", _videoPlayerIndex, visible);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::onEnter()
{
Widget::onEnter();
if (isVisible() && !_videoURL.empty())
{
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoVisible", _videoPlayerIndex, true);
2019-11-23 20:27:39 +08:00
}
}
void VideoPlayer::onExit()
{
Widget::onExit();
JniHelper::callStaticVoidMethod(videoHelperClassName, "setVideoVisible", _videoPlayerIndex, false);
2019-11-23 20:27:39 +08:00
}
void VideoPlayer::addEventListener(const VideoPlayer::ccVideoPlayerCallback& callback)
{
_eventCallback = callback;
}
void VideoPlayer::onPlayEvent(int event)
{
if (event == QUIT_FULLSCREEN)
{
_fullScreenEnabled = false;
2021-12-25 10:04:45 +08:00
}
2019-11-23 20:27:39 +08:00
else
{
VideoPlayer::EventType videoEvent = (VideoPlayer::EventType)event;
2021-12-25 10:04:45 +08:00
if (videoEvent == VideoPlayer::EventType::PLAYING)
{
2019-11-23 20:27:39 +08:00
_isPlaying = true;
2021-12-25 10:04:45 +08:00
}
else
{
2019-11-23 20:27:39 +08:00
_isPlaying = false;
}
if (_eventCallback)
{
2021-12-25 10:04:45 +08:00
_eventCallback(this, videoEvent);
2019-11-23 20:27:39 +08:00
}
}
}
axis::ui::Widget* VideoPlayer::createCloneInstance()
2019-11-23 20:27:39 +08:00
{
return VideoPlayer::create();
}
2021-12-25 10:04:45 +08:00
void VideoPlayer::copySpecialProperties(Widget* widget)
2019-11-23 20:27:39 +08:00
{
VideoPlayer* videoPlayer = dynamic_cast<VideoPlayer*>(widget);
if (videoPlayer)
{
2021-12-25 10:04:45 +08:00
_isPlaying = videoPlayer->_isPlaying;
_isLooping = videoPlayer->_isLooping;
_isUserInputEnabled = videoPlayer->_isUserInputEnabled;
_styleType = videoPlayer->_styleType;
_fullScreenEnabled = videoPlayer->_fullScreenEnabled;
_fullScreenDirty = videoPlayer->_fullScreenDirty;
_videoURL = videoPlayer->_videoURL;
2019-11-23 20:27:39 +08:00
_keepAspectRatioEnabled = videoPlayer->_keepAspectRatioEnabled;
2021-12-25 10:04:45 +08:00
_videoSource = videoPlayer->_videoSource;
_videoPlayerIndex = videoPlayer->_videoPlayerIndex;
_eventCallback = videoPlayer->_eventCallback;
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
void executeVideoCallback(int index, int event)
2019-11-23 20:27:39 +08:00
{
auto it = s_allVideoPlayers.find(index);
if (it != s_allVideoPlayers.end())
{
s_allVideoPlayers[index]->onPlayEvent(event);
}
}
#endif