2005-04-05 18:08:02 +00:00
|
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
|
* Copyright (C) 2004 Ivan Dubrov
|
2006-01-18 17:39:49 +00:00
|
|
|
|
* Copyright (C) 2004-2006 The ScummVM project
|
2005-04-05 18:08:02 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2005-04-09 19:19:54 +00:00
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-04-05 18:08:02 +00:00
|
|
|
|
*
|
2006-02-11 10:11:37 +00:00
|
|
|
|
* $URL$
|
|
|
|
|
* $Id$
|
2005-04-05 18:08:02 +00:00
|
|
|
|
*
|
|
|
|
|
*/
|
2007-03-20 14:51:57 +00:00
|
|
|
|
|
2006-03-29 15:59:37 +00:00
|
|
|
|
#include "common/stdafx.h"
|
|
|
|
|
#include "common/endian.h"
|
2007-03-20 14:51:57 +00:00
|
|
|
|
#include "graphics/cursorman.h"
|
2006-03-29 15:59:37 +00:00
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
|
#include "gob/gob.h"
|
|
|
|
|
#include "gob/video.h"
|
2007-03-20 14:51:57 +00:00
|
|
|
|
#include "gob/global.h"
|
|
|
|
|
#include "gob/util.h"
|
2005-04-05 15:07:40 +00:00
|
|
|
|
#include "gob/dataio.h"
|
2006-05-01 12:43:50 +00:00
|
|
|
|
#include "gob/draw.h"
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
|
|
|
|
#include "gob/driver_vga.h"
|
|
|
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
SurfaceDesc::SurfaceDesc(int16 vidMode, int16 width, int16 height,
|
|
|
|
|
byte *vidMem) : _width(width), _height(height) {
|
|
|
|
|
|
|
|
|
|
if (vidMem) {
|
|
|
|
|
_vidMode = vidMode;
|
|
|
|
|
_ownVidMem = false;
|
|
|
|
|
_vidMem = vidMem;
|
|
|
|
|
} else {
|
|
|
|
|
_vidMode = vidMode;
|
|
|
|
|
_ownVidMem = true;
|
|
|
|
|
_vidMem = new byte[width * height];
|
|
|
|
|
assert(_vidMem);
|
|
|
|
|
memset(_vidMem, 0, width * height);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SurfaceDesc::setVidMem(byte *vidMem) {
|
|
|
|
|
assert(vidMem);
|
|
|
|
|
|
|
|
|
|
if (hasOwnVidMem())
|
|
|
|
|
delete[] _vidMem;
|
|
|
|
|
|
|
|
|
|
_ownVidMem = false;
|
|
|
|
|
_vidMem = vidMem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SurfaceDesc::resize(int16 width, int16 height) {
|
|
|
|
|
if (hasOwnVidMem())
|
|
|
|
|
delete[] _vidMem;
|
|
|
|
|
|
|
|
|
|
_width = width;
|
|
|
|
|
_height = height;
|
|
|
|
|
_ownVidMem = true;
|
|
|
|
|
_vidMem = new byte[width * height];
|
|
|
|
|
assert(_vidMem);
|
|
|
|
|
memset(_vidMem, 0, width * height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SurfaceDesc::swap(SurfaceDesc &surf) {
|
|
|
|
|
SWAP(_width, surf._width);
|
|
|
|
|
SWAP(_height, surf._height);
|
|
|
|
|
SWAP(_vidMode, surf._vidMode);
|
|
|
|
|
SWAP(_ownVidMem, surf._ownVidMem);
|
|
|
|
|
SWAP(_vidMem, surf._vidMem);
|
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
|
Video::Video(GobEngine *vm) : _vm(vm) {
|
2007-03-20 14:51:57 +00:00
|
|
|
|
_doRangeClamp = false;
|
2006-05-31 08:44:14 +00:00
|
|
|
|
_videoDriver = 0;
|
2007-01-29 17:04:37 +00:00
|
|
|
|
_surfWidth = 320;
|
2007-02-06 14:42:05 +00:00
|
|
|
|
_surfHeight = 200;
|
|
|
|
|
_scrollOffsetX = 0;
|
|
|
|
|
_scrollOffsetY = 0;
|
2007-04-05 19:20:12 +00:00
|
|
|
|
_splitHeight = 200;
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
|
char Video::initDriver(int16 vidMode) {
|
2006-05-31 08:44:14 +00:00
|
|
|
|
if (_videoDriver)
|
|
|
|
|
return 1;
|
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
|
_videoDriver = new VGAVideoDriver();
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
|
void Video::freeDriver() {
|
2005-04-05 15:07:40 +00:00
|
|
|
|
delete _videoDriver;
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::initPrimary(int16 mode) {
|
|
|
|
|
if ((mode != 3) && (mode != -1))
|
|
|
|
|
_vm->validateVideoMode(mode);
|
|
|
|
|
_vm->validateVideoMode(_vm->_global->_videoMode);
|
|
|
|
|
|
|
|
|
|
if (mode == -1)
|
|
|
|
|
mode = 3;
|
|
|
|
|
_vm->_global->_oldMode = mode;
|
|
|
|
|
|
|
|
|
|
if (mode != 3)
|
|
|
|
|
Video::initDriver(mode);
|
|
|
|
|
|
|
|
|
|
if (mode != 3) {
|
|
|
|
|
initSurfDesc(mode, _surfWidth, _surfHeight, PRIMARY_SURFACE);
|
|
|
|
|
|
|
|
|
|
if (!_vm->_global->_dontSetPalette)
|
|
|
|
|
Video::setFullPalette(_vm->_global->_pPaletteDesc);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SurfaceDesc *Video::initSurfDesc(int16 vidMode, int16 width, int16 height,
|
|
|
|
|
int16 flags) {
|
|
|
|
|
SurfaceDesc *descPtr = 0;
|
|
|
|
|
|
|
|
|
|
if (flags & PRIMARY_SURFACE)
|
|
|
|
|
assert((width == _surfWidth) && (height == _surfHeight));
|
|
|
|
|
|
|
|
|
|
_vm->validateVideoMode(vidMode);
|
|
|
|
|
|
|
|
|
|
if (flags & PRIMARY_SURFACE) {
|
|
|
|
|
_vm->_global->_primaryWidth = width;
|
|
|
|
|
_vm->_global->_mouseMaxCol = width;
|
|
|
|
|
_vm->_global->_primaryHeight = height;
|
|
|
|
|
_vm->_global->_mouseMaxRow = height;
|
|
|
|
|
|
|
|
|
|
descPtr = _vm->_global->_primarySurfDesc;
|
|
|
|
|
descPtr->resize(width, height);
|
|
|
|
|
descPtr->_vidMode = vidMode;
|
|
|
|
|
} else {
|
|
|
|
|
assert(!(flags & DISABLE_SPR_ALLOC));
|
|
|
|
|
|
|
|
|
|
if (!(flags & SCUMMVM_CURSOR))
|
|
|
|
|
width = (width + 7) & 0xFFF8;
|
|
|
|
|
|
|
|
|
|
descPtr = new SurfaceDesc(vidMode, width, height);
|
|
|
|
|
}
|
|
|
|
|
return descPtr;
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-29 17:55:39 +00:00
|
|
|
|
void Video::retrace(bool mouse) {
|
2007-03-20 14:51:57 +00:00
|
|
|
|
if (mouse)
|
|
|
|
|
CursorMan.showMouse((_vm->_draw->_showCursor & 2) != 0);
|
|
|
|
|
if (_vm->_global->_primarySurfDesc) {
|
|
|
|
|
g_system->copyRectToScreen(_vm->_global->_primarySurfDesc->getVidMem() +
|
|
|
|
|
_scrollOffsetY * _surfWidth + _scrollOffsetX, _surfWidth,
|
2007-04-05 19:20:12 +00:00
|
|
|
|
0, 0, 320, _splitHeight);
|
|
|
|
|
if (_splitHeight < _surfHeight)
|
|
|
|
|
g_system->copyRectToScreen(_vm->_global->_primarySurfDesc->getVidMem() +
|
|
|
|
|
_splitHeight * _surfWidth, _surfWidth, 0, _splitHeight, 320,
|
|
|
|
|
_surfHeight - _splitHeight);
|
2007-03-20 14:51:57 +00:00
|
|
|
|
g_system->updateScreen();
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-29 17:55:39 +00:00
|
|
|
|
void Video::waitRetrace(bool mouse) {
|
|
|
|
|
uint32 time;
|
|
|
|
|
|
|
|
|
|
time = _vm->_util->getTimeKey();
|
|
|
|
|
retrace(mouse);
|
|
|
|
|
_vm->_util->delay(MAX(1, 10 - (int)(_vm->_util->getTimeKey() - time)));
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::putPixel(int16 x, int16 y, int16 color, SurfaceDesc *dest) {
|
|
|
|
|
if ((x >= dest->getWidth()) || (x < 0) ||
|
|
|
|
|
(y >= dest->getHeight()) || (y < 0))
|
2006-05-31 08:44:14 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
_videoDriver->putPixel(x, y, color, dest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Video::fillRect(SurfaceDesc *dest, int16 left, int16 top, int16 right,
|
|
|
|
|
int16 bottom, int16 color) {
|
|
|
|
|
|
|
|
|
|
if (_doRangeClamp) {
|
|
|
|
|
if (left > right)
|
|
|
|
|
SWAP(left, right);
|
|
|
|
|
if (top > bottom)
|
|
|
|
|
SWAP(top, bottom);
|
|
|
|
|
|
|
|
|
|
if ((left >= dest->getWidth()) || (right < 0) ||
|
|
|
|
|
(top >= dest->getHeight()) || (bottom < 0))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
left = CLIP(left, (int16) 0, (int16) (dest->getWidth() - 1));
|
|
|
|
|
top = CLIP(top, (int16) 0, (int16) (dest->getHeight() - 1));
|
|
|
|
|
right = CLIP(right, (int16) 0, (int16) (dest->getWidth() - 1));
|
|
|
|
|
bottom = CLIP(bottom, (int16) 0, (int16) (dest->getHeight() - 1));
|
2006-01-29 02:27:10 +00:00
|
|
|
|
}
|
2007-03-20 14:51:57 +00:00
|
|
|
|
|
|
|
|
|
_videoDriver->fillRect(dest, left, top, right, bottom, color);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::drawLine(SurfaceDesc *dest, int16 x0, int16 y0, int16 x1,
|
|
|
|
|
int16 y1, int16 color) {
|
|
|
|
|
|
|
|
|
|
if ((x0 == x1) || (y0 == y1))
|
|
|
|
|
Video::fillRect(dest, x0, y0, x1, y1, color);
|
|
|
|
|
else
|
|
|
|
|
_videoDriver->drawLine(dest, x0, y0, x1, y1, color);
|
|
|
|
|
}
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
/*
|
|
|
|
|
* The original's version of the Bresenham Algorithm was a bit "unclean"
|
|
|
|
|
* and produced strange edges at 45<EFBFBD>, 135<EFBFBD>, 225<EFBFBD> and 315<EFBFBD>, so using the
|
|
|
|
|
* version found in the Wikipedia article about the
|
|
|
|
|
* "Bresenham's line algorithm" instead
|
|
|
|
|
*/
|
|
|
|
|
void Video::drawCircle(SurfaceDesc *dest, int16 x0, int16 y0,
|
|
|
|
|
int16 radius, int16 color) {
|
|
|
|
|
int16 f = 1 - radius;
|
|
|
|
|
int16 ddFx = 0;
|
|
|
|
|
int16 ddFy = -2 * radius;
|
|
|
|
|
int16 x = 0;
|
|
|
|
|
int16 y = radius;
|
|
|
|
|
|
|
|
|
|
putPixel(x0, y0 + radius, color, dest);
|
|
|
|
|
putPixel(x0, y0 - radius, color, dest);
|
|
|
|
|
putPixel(x0 + radius, y0, color, dest);
|
|
|
|
|
putPixel(x0 - radius, y0, color, dest);
|
|
|
|
|
|
|
|
|
|
while (x < y) {
|
|
|
|
|
if (f >= 0) {
|
|
|
|
|
y--;
|
|
|
|
|
ddFy += 2;
|
|
|
|
|
f += ddFy;
|
|
|
|
|
}
|
|
|
|
|
x++;
|
|
|
|
|
ddFx += 2;
|
|
|
|
|
f += ddFx + 1;
|
|
|
|
|
putPixel(x0 + x, y0 + y, color, dest);
|
|
|
|
|
putPixel(x0 - x, y0 + y, color, dest);
|
|
|
|
|
putPixel(x0 + x, y0 - y, color, dest);
|
|
|
|
|
putPixel(x0 - x, y0 - y, color, dest);
|
|
|
|
|
putPixel(x0 + y, y0 + x, color, dest);
|
|
|
|
|
putPixel(x0 - y, y0 + x, color, dest);
|
|
|
|
|
putPixel(x0 + y, y0 - x, color, dest);
|
|
|
|
|
putPixel(x0 - y, y0 - x, color, dest);
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::clearSurf(SurfaceDesc *dest) {
|
|
|
|
|
Video::fillRect(dest, 0, 0, dest->getWidth() - 1, dest->getHeight() - 1, 0);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
|
void Video::drawSprite(SurfaceDesc *source, SurfaceDesc *dest,
|
2005-04-05 15:07:40 +00:00
|
|
|
|
int16 left, int16 top, int16 right, int16 bottom, int16 x, int16 y, int16 transp) {
|
|
|
|
|
int16 destRight;
|
|
|
|
|
int16 destBottom;
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
if (_doRangeClamp) {
|
|
|
|
|
if (left > right)
|
|
|
|
|
SWAP(left, right);
|
|
|
|
|
if (top > bottom)
|
|
|
|
|
SWAP(top, bottom);
|
|
|
|
|
|
|
|
|
|
if ((left >= source->getWidth()) || (right < 0) ||
|
|
|
|
|
(top >= source->getHeight()) || (bottom < 0))
|
2005-04-05 15:07:40 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (left < 0) {
|
|
|
|
|
x -= left;
|
|
|
|
|
left = 0;
|
|
|
|
|
}
|
|
|
|
|
if (top < 0) {
|
|
|
|
|
y -= top;
|
|
|
|
|
top = 0;
|
|
|
|
|
}
|
2007-03-20 14:51:57 +00:00
|
|
|
|
right = CLIP(right, (int16) 0, (int16) (source->getWidth() - 1));
|
|
|
|
|
bottom = CLIP(bottom, (int16) 0, (int16) (source->getHeight() - 1));
|
|
|
|
|
if (right - left >= source->getWidth())
|
|
|
|
|
right = left + source->getWidth() - 1;
|
|
|
|
|
if (bottom - top >= source->getHeight())
|
|
|
|
|
bottom = top + source->getHeight() - 1;
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
|
|
|
|
if (x < 0) {
|
|
|
|
|
left -= x;
|
|
|
|
|
x = 0;
|
|
|
|
|
}
|
|
|
|
|
if (y < 0) {
|
|
|
|
|
top -= y;
|
|
|
|
|
y = 0;
|
|
|
|
|
}
|
2007-03-20 14:51:57 +00:00
|
|
|
|
if ((x >= dest->getWidth()) || (left > right) ||
|
|
|
|
|
(y >= dest->getHeight()) || (top > bottom))
|
2005-04-05 15:07:40 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
destRight = x + right - left;
|
|
|
|
|
destBottom = y + bottom - top;
|
2007-03-20 14:51:57 +00:00
|
|
|
|
if (destRight >= dest->getWidth())
|
|
|
|
|
right -= destRight - dest->getWidth() + 1;
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
if (destBottom >= dest->getHeight())
|
|
|
|
|
bottom -= destBottom - dest->getHeight() + 1;
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_videoDriver->drawSprite(source, dest, left, top, right, bottom, x, y, transp);
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::drawLetter(int16 item, int16 x, int16 y, FontDesc *fontDesc,
|
|
|
|
|
int16 color1, int16 color2, int16 transp, SurfaceDesc *dest) {
|
2007-04-02 11:05:09 +00:00
|
|
|
|
byte *dataPtr;
|
|
|
|
|
byte *itemData;
|
2007-03-20 14:51:57 +00:00
|
|
|
|
int16 itemSize;
|
|
|
|
|
int16 newItem;
|
|
|
|
|
int16 curItem;
|
|
|
|
|
int16 newItemPos;
|
|
|
|
|
int16 curItemPos;
|
|
|
|
|
|
|
|
|
|
if (fontDesc->endItem == 0) {
|
|
|
|
|
itemSize = fontDesc->itemSize + 3;
|
|
|
|
|
dataPtr = fontDesc->dataPtr;
|
|
|
|
|
// startItem
|
2007-04-02 11:05:09 +00:00
|
|
|
|
curItem = READ_LE_UINT16(dataPtr - 2) - 1;
|
2007-03-20 14:51:57 +00:00
|
|
|
|
|
|
|
|
|
curItemPos = 0;
|
|
|
|
|
do {
|
|
|
|
|
newItemPos = ((curItemPos + curItem) / 2) * itemSize;
|
|
|
|
|
itemData = fontDesc->dataPtr + newItemPos;
|
|
|
|
|
newItem = (READ_LE_UINT16(itemData) & 0x7FFF);
|
|
|
|
|
if (item > newItem)
|
|
|
|
|
curItem = newItemPos - 1;
|
|
|
|
|
else
|
|
|
|
|
curItemPos = newItemPos + 1;
|
|
|
|
|
} while ((newItem != item) && (curItemPos <= curItem));
|
|
|
|
|
|
|
|
|
|
if (newItem != item)
|
2005-04-05 15:07:40 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
fontDesc->dataPtr = itemData + 3;
|
|
|
|
|
item = 0;
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
_videoDriver->drawLetter((unsigned char) item, x, y, fontDesc, color1, color2, transp, dest);
|
2006-04-18 09:59:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::drawPackedSprite(byte *sprBuf, int16 width, int16 height,
|
|
|
|
|
int16 x, int16 y, int16 transp, SurfaceDesc *dest) {
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
2006-05-11 19:43:30 +00:00
|
|
|
|
if (spriteUncompressor(sprBuf, width, height, x, y, transp, dest))
|
2005-04-05 15:07:40 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
_vm->validateVideoMode(dest->_vidMode);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
|
|
|
|
_videoDriver->drawPackedSprite(sprBuf, width, height, x, y, transp, dest);
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::drawPackedSprite(const char *path, SurfaceDesc *dest, int width) {
|
2007-04-02 11:05:09 +00:00
|
|
|
|
byte *data;
|
2007-02-04 15:45:15 +00:00
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
data = _vm->_dataIO->getData(path);
|
2007-04-02 11:05:09 +00:00
|
|
|
|
drawPackedSprite(data, width, dest->getHeight(), 0, 0, 0, dest);
|
2007-02-04 15:45:15 +00:00
|
|
|
|
delete[] data;
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
void Video::setPalElem(int16 index, char red, char green, char blue,
|
|
|
|
|
int16 unused, int16 vidMode) {
|
2005-04-05 15:07:40 +00:00
|
|
|
|
byte pal[4];
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
_vm->validateVideoMode(vidMode);
|
|
|
|
|
|
2006-01-04 01:48:15 +00:00
|
|
|
|
_vm->_global->_redPalette[index] = red;
|
|
|
|
|
_vm->_global->_greenPalette[index] = green;
|
|
|
|
|
_vm->_global->_bluePalette[index] = blue;
|
2007-03-20 14:51:57 +00:00
|
|
|
|
setPalColor(pal, red, green, blue);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
|
|
|
|
g_system->setPalette(pal, index, 1);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
|
void Video::setPalette(PalDesc *palDesc) {
|
2005-04-05 15:07:40 +00:00
|
|
|
|
byte pal[1024];
|
|
|
|
|
int16 numcolors;
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
_vm->validateVideoMode(_vm->_global->_videoMode);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
numcolors = _vm->_global->_setAllPalette ? 256 : 16;
|
|
|
|
|
for (int i = 0; i < numcolors; i++)
|
|
|
|
|
setPalColor(pal + i * 4, palDesc->vgaPal[i]);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
|
g_system->setPalette(pal, 0, numcolors);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
|
void Video::setFullPalette(PalDesc *palDesc) {
|
2006-01-04 01:48:15 +00:00
|
|
|
|
if (_vm->_global->_setAllPalette) {
|
2007-03-20 14:51:57 +00:00
|
|
|
|
byte pal[1024];
|
|
|
|
|
Color *colors = palDesc->vgaPal;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 256; i++) {
|
2006-01-04 01:48:15 +00:00
|
|
|
|
_vm->_global->_redPalette[i] = colors[i].red;
|
|
|
|
|
_vm->_global->_greenPalette[i] = colors[i].green;
|
|
|
|
|
_vm->_global->_bluePalette[i] = colors[i].blue;
|
2007-03-20 14:51:57 +00:00
|
|
|
|
setPalColor(pal + i * 4, colors[i]);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_system->setPalette(pal, 0, 256);
|
2007-03-20 14:51:57 +00:00
|
|
|
|
} else
|
2006-01-03 23:14:39 +00:00
|
|
|
|
Video::setPalette(palDesc);
|
2005-04-05 15:07:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-03-29 17:55:39 +00:00
|
|
|
|
void Video::setPalette(Color *palette) {
|
|
|
|
|
Color *palBak;
|
|
|
|
|
bool setAllPalBak;
|
|
|
|
|
|
|
|
|
|
palBak = _vm->_global->_pPaletteDesc->vgaPal;
|
|
|
|
|
setAllPalBak = _vm->_global->_setAllPalette;
|
|
|
|
|
|
|
|
|
|
_vm->_global->_pPaletteDesc->vgaPal = palette;
|
|
|
|
|
_vm->_global->_setAllPalette = true;
|
|
|
|
|
setFullPalette(_vm->_global->_pPaletteDesc);
|
|
|
|
|
|
|
|
|
|
_vm->_global->_setAllPalette = setAllPalBak;
|
|
|
|
|
_vm->_global->_pPaletteDesc->vgaPal = palBak;
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
|
} // End of namespace Gob
|