scummvm/sword2/driver/d_draw.cpp

256 lines
7 KiB
C++
Raw Normal View History

2003-07-28 01:47:41 +00:00
/* Copyright (C) 1994-2003 Revolution Software Ltd
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*/
2003-07-28 03:12:49 +00:00
#include "stdafx.h"
#include "sound/mixer.h"
#include "sword2/sword2.h"
2003-10-28 19:51:30 +00:00
#include "sword2/driver/driver96.h"
#include "sword2/driver/d_draw.h"
#include "sword2/driver/render.h"
#include "sword2/header.h" // HACK: For cutscenes instruction message
#include "sword2/maketext.h" // HACK: For cutscenes instruction message
2003-10-04 00:52:27 +00:00
namespace Sword2 {
2003-07-28 01:47:41 +00:00
Graphics::Graphics(int16 width, int16 height)
: _iconCount(0), _needFullRedraw(false), _fadeStatus(RDFADE_NONE),
_mouseSprite(NULL), _mouseAnim(NULL), _luggageAnim(NULL),
_layer(0), _renderAverageTime(60), _lightMask(NULL),
_screenWide(width), _screenDeep(height) {
2003-07-28 01:47:41 +00:00
int i, j;
2003-07-28 01:47:41 +00:00
_buffer = (byte *) malloc(width * height);
if (!_buffer)
error("Could not initialise display");
2003-07-28 01:47:41 +00:00
g_system->init_size(width, height);
for (i = 0; i < ARRAYSIZE(_blockSurfaces); i++)
_blockSurfaces[i] = NULL;
2003-07-28 01:47:41 +00:00
for (i = 0; i < 2; i++) {
for (j = 0; j < RDMENU_MAXPOCKETS; j++) {
_icons[i][j] = NULL;
_pocketStatus[i][j] = 0;
}
_menuStatus[i] = RDMENU_HIDDEN;
}
2003-07-28 01:47:41 +00:00
}
/**
* @return the graphics detail setting
*/
int8 Graphics::getRenderLevel(void) {
return _renderLevel;
}
void Graphics::setRenderLevel(int8 level) {
_renderLevel = level;
switch (_renderLevel) {
case 0:
// Lowest setting: no fancy stuff
_renderCaps = 0;
break;
case 1:
// Medium-low setting: transparency-blending
_renderCaps = RDBLTFX_SPRITEBLEND;
break;
case 2:
// Medium-high setting: transparency-blending + shading
_renderCaps = RDBLTFX_SPRITEBLEND | RDBLTFX_SHADOWBLEND;
break;
case 3:
// Highest setting: transparency-blending + shading +
// edge-blending + improved stretching
_renderCaps = RDBLTFX_SPRITEBLEND | RDBLTFX_SHADOWBLEND | RDBLTFX_EDGEBLEND;
break;
}
2003-07-28 01:47:41 +00:00
}
/**
2003-09-28 16:38:00 +00:00
* Fill the screen buffer with palette colour zero. Note that it does not
* touch the menu areas of the screen.
*/
2003-07-28 01:47:41 +00:00
void Graphics::clearScene(void) {
memset(_buffer + MENUDEEP * _screenWide, 0, _screenWide * RENDERDEEP);
2003-07-28 01:47:41 +00:00
}
void MoviePlayer::openTextObject(_movieTextObject *obj) {
if (obj->textSprite)
g_graphics->createSurface(obj->textSprite, &_textSurface);
2003-07-28 01:47:41 +00:00
}
void MoviePlayer::closeTextObject(_movieTextObject *obj) {
if (_textSurface) {
g_graphics->deleteSurface(_textSurface);
_textSurface = NULL;
}
2003-07-28 01:47:41 +00:00
}
void MoviePlayer::drawTextObject(_movieTextObject *obj) {
if (obj->textSprite && _textSurface)
g_graphics->drawSurface(obj->textSprite, _textSurface);
2003-07-28 01:47:41 +00:00
}
/**
* Plays an animated cutscene.
* @param filename the file name of the cutscene file
* @param text the subtitles and voiceovers for the cutscene
* @param musicOut lead-out music
*/
int32 MoviePlayer::play(char *filename, _movieTextObject *text[], uint8 *musicOut) {
warning("semi-stub PlaySmacker %s", filename);
// WORKAROUND: For now, we just do the voice-over parts of the
// movies, since they're separate from the actual smacker files.
if (text) {
uint8 oldPal[1024];
uint8 tmpPal[1024];
g_graphics->clearScene();
// HACK: Draw instructions
//
// I'm using the the menu area, because that's unlikely to be
// touched by anything else during the cutscene.
memset(g_graphics->_buffer, 0, g_graphics->_screenWide * MENUDEEP);
uint8 msg[] = "Cutscene - Press ESC to exit";
mem *data = fontRenderer->makeTextSprite(msg, 640, 255, g_sword2->_speechFontId);
_frameHeader *frame = (_frameHeader *) data->ad;
_spriteInfo msgSprite;
uint8 *msgSurface;
msgSprite.x = g_graphics->_screenWide / 2 - frame->width / 2;
msgSprite.y = RDMENU_MENUDEEP / 2 - frame->height / 2;
msgSprite.w = frame->width;
msgSprite.h = frame->height;
msgSprite.type = RDSPR_DISPLAYALIGN | RDSPR_NOCOMPRESSION | RDSPR_TRANS;
msgSprite.data = data->ad + sizeof(_frameHeader);
g_graphics->createSurface(&msgSprite, &msgSurface);
g_graphics->drawSurface(&msgSprite, msgSurface);
g_graphics->deleteSurface(msgSurface);
memory->freeMemory(data);
// In case the cutscene has a long lead-in, start just before
// the first line of text.
int frameCounter = text[0]->startFrame - 12;
int textCounter = 0;
// Fake a palette that will hopefully make the text visible.
// In the opening cutscene it seems to use colours 1 (black?)
// and 255 (white?).
//
// The text should probably be colored the same as the rest of
// the in-game text.
memcpy(oldPal, g_graphics->_palCopy, 1024);
memset(tmpPal, 0, 1024);
tmpPal[255 * 4 + 0] = 255;
tmpPal[255 * 4 + 1] = 255;
tmpPal[255 * 4 + 2] = 255;
g_graphics->setPalette(0, 256, tmpPal, RDPAL_INSTANT);
PlayingSoundHandle handle = 0;
bool skipCutscene = false;
while (1) {
2003-09-08 17:44:26 +00:00
if (!text[textCounter])
break;
if (frameCounter == text[textCounter]->startFrame) {
g_graphics->clearScene();
openTextObject(text[textCounter]);
drawTextObject(text[textCounter]);
if (text[textCounter]->speech) {
g_sword2->_mixer->playRaw(&handle, text[textCounter]->speech, text[textCounter]->speechBufferSize, 22050, SoundMixer::FLAG_16BITS);
}
}
2003-07-28 01:47:41 +00:00
if (frameCounter == text[textCounter]->endFrame) {
closeTextObject(text[textCounter]);
g_graphics->clearScene();
textCounter++;
}
frameCounter++;
g_graphics->updateDisplay();
_keyboardEvent ke;
if (g_input->readKey(&ke) == RD_OK && ke.keycode == 27) {
g_sword2->_mixer->stopHandle(handle);
skipCutscene = true;
break;
}
// Simulate ~12 frames per second. I don't know what
// frame rate the original movies had, or even if it
// was constant, but this seems to work reasonably.
g_system->delay_msecs(90);
}
closeTextObject(text[textCounter]);
g_graphics->clearScene();
g_graphics->setNeedFullRedraw();
// HACK: Remove the instructions created above
Common::Rect r;
memset(g_graphics->_buffer, 0, g_graphics->_screenWide * MENUDEEP);
r.left = r.top = 0;
r.right = g_graphics->_screenWide;
r.bottom = MENUDEEP;
g_graphics->updateRect(&r);
// FIXME: For now, only play the lead-out music for cutscenes
// that have subtitles.
if (!skipCutscene)
g_sound->playLeadOut(musicOut);
g_graphics->setPalette(0, 256, oldPal, RDPAL_INSTANT);
}
// Lead-in and lead-out music are, as far as I can tell, only used for
// the animated cut-scenes, so this seems like a good place to close
// both of them.
g_sound->closeFx(-1);
g_sound->closeFx(-2);
2003-09-23 06:31:13 +00:00
return RD_OK;
2003-07-28 01:47:41 +00:00
}
2003-10-04 00:52:27 +00:00
} // End of namespace Sword2