2010-05-18 14:17:24 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-01-23 17:37:17 +00:00
|
|
|
#include "video/video_decoder.h"
|
2010-05-18 14:17:24 +00:00
|
|
|
|
|
|
|
#include "common/file.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
|
2011-01-23 19:08:09 +00:00
|
|
|
namespace Video {
|
2010-05-18 14:17:24 +00:00
|
|
|
|
|
|
|
VideoDecoder::VideoDecoder() {
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VideoDecoder::loadFile(const Common::String &filename) {
|
|
|
|
Common::File *file = new Common::File();
|
|
|
|
|
|
|
|
if (!file->open(filename)) {
|
|
|
|
delete file;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-04 08:25:05 +00:00
|
|
|
return load(file);
|
2010-05-18 14:17:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32 VideoDecoder::getElapsedTime() const {
|
|
|
|
return g_system->getMillis() - _startTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoDecoder::setSystemPalette() {
|
2010-12-16 01:41:11 +00:00
|
|
|
const byte *vidPalette = getPalette();
|
2010-05-18 14:17:24 +00:00
|
|
|
byte *sysPalette = new byte[256 * 4];
|
|
|
|
|
|
|
|
for (uint16 i = 0; i < 256; i++) {
|
|
|
|
sysPalette[i * 4] = vidPalette[i * 3];
|
|
|
|
sysPalette[i * 4 + 1] = vidPalette[i * 3 + 1];
|
|
|
|
sysPalette[i * 4 + 2] = vidPalette[i * 3 + 2];
|
|
|
|
sysPalette[i * 4 + 3] = 0;
|
|
|
|
}
|
|
|
|
|
2011-02-07 17:52:38 +00:00
|
|
|
g_system->getPaletteManager()->setPalette(sysPalette, 0, 256);
|
2010-05-18 14:17:24 +00:00
|
|
|
delete[] sysPalette;
|
|
|
|
}
|
|
|
|
|
2010-07-21 18:17:51 +00:00
|
|
|
bool VideoDecoder::needsUpdate() const {
|
2010-05-18 14:17:24 +00:00
|
|
|
return !endOfVideo() && getTimeToNextFrame() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoDecoder::reset() {
|
|
|
|
_curFrame = -1;
|
|
|
|
_startTime = 0;
|
2010-05-20 18:38:06 +00:00
|
|
|
_pauseLevel = 0;
|
2010-05-18 14:17:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool VideoDecoder::endOfVideo() const {
|
|
|
|
return !isVideoLoaded() || (getCurFrame() >= (int32)getFrameCount() - 1);
|
|
|
|
}
|
|
|
|
|
2010-05-20 18:38:06 +00:00
|
|
|
void VideoDecoder::pauseVideo(bool pause) {
|
|
|
|
if (pause) {
|
|
|
|
_pauseLevel++;
|
2010-07-30 21:07:27 +00:00
|
|
|
|
|
|
|
// We can't go negative
|
|
|
|
} else if (_pauseLevel) {
|
2010-05-20 18:38:06 +00:00
|
|
|
_pauseLevel--;
|
2010-07-30 21:07:27 +00:00
|
|
|
|
|
|
|
// Do nothing
|
|
|
|
} else {
|
|
|
|
return;
|
2010-05-20 18:38:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_pauseLevel == 1 && pause) {
|
|
|
|
_pauseStartTime = g_system->getMillis(); // Store the starting time from pausing to keep it for later
|
|
|
|
pauseVideoIntern(true);
|
|
|
|
} else if (_pauseLevel == 0) {
|
|
|
|
pauseVideoIntern(false);
|
|
|
|
addPauseTime(g_system->getMillis() - _pauseStartTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-14 13:01:57 +00:00
|
|
|
void VideoDecoder::resetPauseStartTime() {
|
|
|
|
if (isPaused())
|
|
|
|
_pauseStartTime = g_system->getMillis();
|
|
|
|
}
|
|
|
|
|
2010-05-18 14:17:24 +00:00
|
|
|
uint32 FixedRateVideoDecoder::getTimeToNextFrame() const {
|
|
|
|
if (endOfVideo() || _curFrame < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
uint32 elapsedTime = getElapsedTime();
|
|
|
|
uint32 nextFrameStartTime = getFrameBeginTime(_curFrame + 1);
|
|
|
|
|
|
|
|
// If the time that the next frame should be shown has past
|
|
|
|
// the frame should be shown ASAP.
|
|
|
|
if (nextFrameStartTime <= elapsedTime)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return nextFrameStartTime - elapsedTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 FixedRateVideoDecoder::getFrameBeginTime(uint32 frame) const {
|
|
|
|
Common::Rational beginTime = frame * 1000;
|
|
|
|
beginTime /= getFrameRate();
|
|
|
|
return beginTime.toInt();
|
|
|
|
}
|
|
|
|
|
2011-01-11 17:27:31 +00:00
|
|
|
VideoTimestamp::VideoTimestamp() : _units(0), _scale(1) {
|
|
|
|
}
|
|
|
|
|
|
|
|
VideoTimestamp::VideoTimestamp(uint units, uint scale) : _units(units), _scale(scale) {
|
|
|
|
assert(_scale);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint VideoTimestamp::getUnitsInScale(uint scale) const {
|
|
|
|
assert(scale);
|
|
|
|
return (_scale == scale) ? _units : _units * scale / _scale;
|
|
|
|
}
|
|
|
|
|
2011-01-23 19:08:09 +00:00
|
|
|
} // End of namespace Video
|