2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
2006-02-22 22:40:53 +00:00
|
|
|
*
|
2007-05-30 21:56:52 +00:00
|
|
|
* 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.
|
2006-02-22 22:40:53 +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
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-12-03 18:29:58 +00:00
|
|
|
#ifndef CINE_PAL_H
|
|
|
|
#define CINE_PAL_H
|
2006-02-22 22:40:53 +00:00
|
|
|
|
2009-03-10 20:37:54 +00:00
|
|
|
// Forward declare Graphics::PixelFormat so we don't have to include its header here
|
|
|
|
namespace Graphics {
|
|
|
|
struct PixelFormat;
|
2009-03-10 21:47:53 +00:00
|
|
|
}
|
2009-03-10 20:37:54 +00:00
|
|
|
|
2006-02-25 00:26:14 +00:00
|
|
|
namespace Cine {
|
|
|
|
|
2006-02-27 21:25:59 +00:00
|
|
|
struct PalEntry {
|
2006-02-22 22:40:53 +00:00
|
|
|
char name[10];
|
2006-03-23 03:45:52 +00:00
|
|
|
byte pal1[16];
|
|
|
|
byte pal2[16];
|
2006-02-22 22:40:53 +00:00
|
|
|
};
|
|
|
|
|
2008-08-11 21:45:47 +00:00
|
|
|
extern Common::Array<PalEntry> palArray;
|
2008-06-12 18:52:43 +00:00
|
|
|
|
2006-02-22 22:40:53 +00:00
|
|
|
void loadPal(const char *fileName);
|
|
|
|
|
|
|
|
void loadRelatedPalette(const char *fileName);
|
|
|
|
|
2008-05-24 22:11:41 +00:00
|
|
|
void palRotate(uint16 *pal, byte a, byte b, byte c);
|
|
|
|
void palRotate(byte *pal, byte a, byte b, byte c);
|
|
|
|
uint16 transformColor(uint16 baseColor, int r, int g, int b);
|
|
|
|
void transformPaletteRange(uint16 *srcPal, uint16 *dstPal, int startColor, int stopColor, int r, int g, int b);
|
|
|
|
void transformPaletteRange(byte *srcPal, byte *dstPal, int startColor, int stopColor, int r, int g, int b);
|
|
|
|
|
2008-11-20 22:16:18 +00:00
|
|
|
// This class might be used for handling Cine-engine's palettes in the future. WIP!
|
2009-03-10 20:37:54 +00:00
|
|
|
// TODO: Document
|
|
|
|
// TODO: Make use of
|
|
|
|
// TODO: Test
|
2008-11-20 22:16:18 +00:00
|
|
|
class Palette {
|
|
|
|
public:
|
2009-03-10 22:09:10 +00:00
|
|
|
Palette &loadCineLowPal(const byte *colors, const uint numColors = 16);
|
|
|
|
Palette &loadCineHighPal(const byte *colors, const uint numColors = 256);
|
|
|
|
Palette &load(const byte *colors, const Graphics::PixelFormat format, const uint numColors);
|
|
|
|
Palette &rotateRight(byte firstIndex, byte lastIndex);
|
|
|
|
Palette &saturatedAddColor(byte firstIndex, byte lastIndex, signed r, signed g, signed b);
|
2009-03-10 20:37:54 +00:00
|
|
|
uint colorCount() const;
|
2008-11-20 22:16:18 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void saturatedAddColor(byte index, signed r, signed g, signed b);
|
|
|
|
|
2009-03-10 20:37:54 +00:00
|
|
|
private:
|
|
|
|
struct Color {
|
|
|
|
uint8 r, g, b;
|
|
|
|
};
|
|
|
|
|
|
|
|
uint _rBits, _gBits, _bBits;
|
|
|
|
uint _rMax, _gMax, _bMax;
|
|
|
|
|
|
|
|
Common::Array<Color> _colors;
|
2008-11-20 22:16:18 +00:00
|
|
|
};
|
|
|
|
|
2006-02-25 00:26:14 +00:00
|
|
|
} // End of namespace Cine
|
|
|
|
|
2006-02-22 22:40:53 +00:00
|
|
|
#endif
|