GOB: Add the property switchColorMode

To allow the videoplayer (and ultimatively the demoplayer)
to switch color modes if necessary.

svn-id: r55262
This commit is contained in:
Sven Hesse 2011-01-16 16:29:19 +00:00
parent e063ced21a
commit b451d3b51c
3 changed files with 14 additions and 1 deletions

View File

@ -157,6 +157,8 @@ void DemoPlayer::playVideo(const char *fileName) {
props.x = _rebase0 ? 0 : -1;
props.y = _rebase0 ? 0 : -1;
props.switchColorMode = true;
int slot;
if ((slot = _vm->_vidPlayer->openVideo(true, file, props)) >= 0) {
if (_autoDouble) {

View File

@ -37,7 +37,7 @@
namespace Gob {
VideoPlayer::Properties::Properties() : type(kVideoTypeTry), sprite(Draw::kFrontSurface),
x(-1), y(-1), width(-1), height(-1), flags(kFlagFrontSurface),
x(-1), y(-1), width(-1), height(-1), flags(kFlagFrontSurface), switchColorMode(false),
startFrame(-1), lastFrame(-1), endFrame(-1), forceSeek(false),
breakKey(kShortKeyEscape), palCmd(8), palStart(0), palEnd(255), palFrame(-1),
fade(false), waitEndFrame(true), canceled(false) {
@ -112,6 +112,15 @@ int VideoPlayer::openVideo(bool primary, const Common::String &file, Properties
if (!(video->decoder = openVideo(file, properties)))
return -1;
if (video->decoder->isPaletted() != !_vm->isTrueColor()) {
if (!properties.switchColorMode)
return -1;
_vm->setTrueColor(!video->decoder->isPaletted());
video->decoder->colorModeChanged();
}
// Set the filename
video->fileName = file;

View File

@ -74,6 +74,8 @@ public:
uint32 flags; ///< Video flags.
bool switchColorMode; ///< Switch between paletted / true color modes?
int32 startFrame; ///< Frame to start playback from.
int32 lastFrame; ///< Frame to stop playback at.
int32 endFrame; ///< Last frame of this playback cycle.