mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
73b807b31e
Adapted to changes in GDL. git-svn-id: svn://localhost@643 8062f311-0dae-4547-b526-b8ab9ac864a5
163 lines
4.1 KiB
C++
163 lines
4.1 KiB
C++
/**
|
|
|
|
Game Develop - Video Object Extension
|
|
Copyright (c) 2010-2012 Florian Rival (Florian.Rival@gmail.com)
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any damages
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
including commercial applications, and to alter it and redistribute it
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
claim that you wrote the original software. If you use this software
|
|
in a product, an acknowledgment in the product documentation would be
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
distribution.
|
|
|
|
*/
|
|
|
|
#include "VideoWrapper.h"
|
|
#include <SFML/Graphics.hpp>
|
|
#include <TheoraPlayer.h>
|
|
#include <TheoraException.h>
|
|
#include <iostream>
|
|
|
|
VideoWrapper::VideoWrapper() :
|
|
renderSprite(new sf::Sprite),
|
|
currentFrameImage(new sf::Texture),
|
|
clip(NULL),
|
|
started(false),
|
|
valid(false)
|
|
{
|
|
if ( TheoraVideoManager::getSingletonPtr() == NULL )
|
|
new TheoraVideoManager;
|
|
}
|
|
|
|
VideoWrapper::~VideoWrapper()
|
|
{
|
|
if ( clip ) TheoraVideoManager::getSingletonPtr()->destroyVideoClip(clip);
|
|
if ( currentFrameImage ) delete currentFrameImage;
|
|
if ( renderSprite ) delete renderSprite;
|
|
}
|
|
|
|
void VideoWrapper::Init(const VideoWrapper & other)
|
|
{
|
|
if ( TheoraVideoManager::getSingletonPtr() == NULL )
|
|
new TheoraVideoManager;
|
|
|
|
if ( currentFrameImage ) delete currentFrameImage;
|
|
currentFrameImage = new sf::Texture(*other.currentFrameImage);
|
|
|
|
if ( renderSprite ) delete renderSprite;
|
|
renderSprite = new sf::Sprite(*other.renderSprite);
|
|
|
|
if ( clip ) TheoraVideoManager::getSingletonPtr()->destroyVideoClip(clip);
|
|
clip = NULL;
|
|
started = false;
|
|
}
|
|
|
|
bool VideoWrapper::Load(std::string filename)
|
|
{
|
|
//Destroy old clip if necessary
|
|
if ( clip ) TheoraVideoManager::getSingletonPtr()->destroyVideoClip(clip);
|
|
clip = NULL;
|
|
valid = false;
|
|
started = false;
|
|
|
|
//Load new clip
|
|
try
|
|
{
|
|
clip = TheoraVideoManager::getSingletonPtr()->createVideoClip(filename, TH_RGBA);
|
|
}
|
|
catch(...)
|
|
{
|
|
std::cout << "Error when opening video file " << filename << std::endl;
|
|
}
|
|
|
|
if ( clip )
|
|
{
|
|
clip->setAutoRestart(1);
|
|
currentFrameImage->Create(clip->getWidth(), clip->getHeight());
|
|
|
|
valid = true;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void VideoWrapper::UpdateTime(float time_increase)
|
|
{
|
|
if ( clip == NULL ) return;
|
|
|
|
if (started)
|
|
{
|
|
// let's wait until the system caches up a few frames on startup
|
|
if (clip->getNumReadyFrames() < clip->getNumPrecachedFrames()*0.5f)
|
|
return;
|
|
started=false;
|
|
}
|
|
TheoraVideoManager::getSingletonPtr()->update(time_increase);
|
|
}
|
|
|
|
const sf::Texture & VideoWrapper::GetNextFrameImage()
|
|
{
|
|
if ( clip != NULL )
|
|
{
|
|
TheoraVideoFrame* f=clip->getNextFrame();
|
|
if (f)
|
|
{
|
|
currentFrameImage->Update((sf::Uint8*)f->getBuffer(), (unsigned int)f->getWidth(), (unsigned int)f->getHeight(),0,0);
|
|
|
|
clip->popFrame();
|
|
}
|
|
}
|
|
|
|
return *currentFrameImage;
|
|
}
|
|
|
|
void VideoWrapper::SetLooping(bool loop)
|
|
{
|
|
if ( clip != NULL ) clip->setAutoRestart(loop);
|
|
}
|
|
|
|
void VideoWrapper::Seek(float time)
|
|
{
|
|
if ( clip != NULL ) clip->seek(time);
|
|
}
|
|
|
|
void VideoWrapper::SetPause(bool pause)
|
|
{
|
|
if ( clip != NULL )
|
|
{
|
|
if ( pause ) clip->pause();
|
|
else clip->play();
|
|
}
|
|
}
|
|
|
|
void VideoWrapper::Restart()
|
|
{
|
|
if ( clip != NULL ) return clip->restart();
|
|
}
|
|
|
|
float VideoWrapper::GetTimePosition() const
|
|
{
|
|
if ( clip != NULL ) return clip->getTimePosition();
|
|
|
|
return 0;
|
|
}
|
|
|
|
float VideoWrapper::GetDuration() const
|
|
{
|
|
if ( clip != NULL ) return clip->getDuration();
|
|
|
|
return 0;
|
|
}
|