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-11 21:03:09 +00:00
|
|
|
#include "graphics/pixelformat.h"
|
2009-03-10 20:37:54 +00:00
|
|
|
|
2006-02-25 00:26:14 +00:00
|
|
|
namespace Cine {
|
|
|
|
|
2009-03-14 22:36:05 +00:00
|
|
|
/*! \brief Low resolution (9-bit) color format used in Cine's 16-color modes. */
|
|
|
|
static const Graphics::PixelFormat kLowPalFormat = {2, 5, 5, 5, 8, 8, 4, 0, 0};
|
|
|
|
|
|
|
|
/*! \brief High resolution (24-bit) color format used in Cine's 256-color modes. */
|
|
|
|
static const Graphics::PixelFormat kHighPalFormat = {3, 0, 0, 0, 8, 0, 8, 16, 0};
|
|
|
|
|
|
|
|
/*! \brief The color format used by OSystem's setPalette-function. */
|
|
|
|
static const Graphics::PixelFormat kSystemPalFormat = {4, 0, 0, 0, 8, 0, 8, 16, 0};
|
|
|
|
|
2009-03-16 20:24:28 +00:00
|
|
|
/*! \brief Endian types. Used at least by Palette class's load and save functions.
|
|
|
|
* TODO: Move somewhere more general as this is definitely not Cine-engine specific
|
2009-03-16 20:57:17 +00:00
|
|
|
*
|
|
|
|
* NOTE: It seems LITTLE_ENDIAN and/or BIG_ENDIAN were defined already on some platforms so
|
|
|
|
* therefore renamed the enumerations to something not clashing by giving them "CINE_"-prefixes.
|
2009-03-16 20:24:28 +00:00
|
|
|
*/
|
|
|
|
enum EndianType {
|
2009-03-16 20:57:17 +00:00
|
|
|
CINE_NATIVE_ENDIAN,
|
|
|
|
CINE_LITTLE_ENDIAN,
|
|
|
|
CINE_BIG_ENDIAN
|
2009-03-16 20:24:28 +00:00
|
|
|
};
|
|
|
|
|
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-16 20:24:28 +00:00
|
|
|
/*! \brief Load palette from buffer with given color format, endianness and number of colors.
|
2009-03-14 22:36:05 +00:00
|
|
|
* \param buf Input buffer
|
|
|
|
* \param size Input buffer size in bytes
|
|
|
|
* \param format Input color format
|
|
|
|
* \param numColors Number of colors to load
|
2009-03-16 20:24:28 +00:00
|
|
|
* \param endianType The endianness of the colors in the input buffer
|
2009-03-14 22:36:05 +00:00
|
|
|
*/
|
2009-03-16 20:24:28 +00:00
|
|
|
Palette &load(const byte *buf, const uint size, const Graphics::PixelFormat format, const uint numColors, const EndianType endianType);
|
2009-03-14 22:36:05 +00:00
|
|
|
|
2009-03-16 20:24:28 +00:00
|
|
|
/*! \brief Save the whole palette to buffer in original color format using defined endianness.
|
2009-03-14 22:36:05 +00:00
|
|
|
* \param buf Output buffer
|
|
|
|
* \param size Output buffer size in bytes
|
2009-03-16 20:24:28 +00:00
|
|
|
* \param endianType The endian type to use
|
2009-03-14 22:36:05 +00:00
|
|
|
*/
|
2009-03-16 20:24:28 +00:00
|
|
|
byte *save(byte *buf, const uint size, const EndianType endianType) const;
|
2009-03-14 22:36:05 +00:00
|
|
|
|
2009-03-16 20:24:28 +00:00
|
|
|
/*! \brief Save the whole palette to buffer in given color format using defined endianness.
|
2009-03-14 22:36:05 +00:00
|
|
|
* \param buf Output buffer
|
|
|
|
* \param size Output buffer size in bytes
|
|
|
|
* \param format Output color format
|
2009-03-16 20:24:28 +00:00
|
|
|
* \param endianType The endian type to use
|
2009-03-14 22:36:05 +00:00
|
|
|
*/
|
2009-03-16 20:24:28 +00:00
|
|
|
byte *save(byte *buf, const uint size, const Graphics::PixelFormat format, const EndianType endianType) const;
|
2009-03-14 22:36:05 +00:00
|
|
|
|
2009-03-16 20:24:28 +00:00
|
|
|
/*! \brief Save (partial) palette to buffer in given color format using defined endianness.
|
2009-03-14 22:36:05 +00:00
|
|
|
* \param buf Output buffer
|
|
|
|
* \param size Output buffer size in bytes
|
|
|
|
* \param format Output color format
|
|
|
|
* \param numColors Number of colors to save
|
2009-03-16 20:24:28 +00:00
|
|
|
* \param endianType The endian type to use
|
2009-03-14 22:36:05 +00:00
|
|
|
* \param firstIndex Starting color index (from which onwards to save the colors)
|
|
|
|
*/
|
2009-03-16 20:24:28 +00:00
|
|
|
byte *save(byte *buf, const uint size, const Graphics::PixelFormat format, const uint numColors, const EndianType endianType, const byte firstIndex = 0) const;
|
2009-03-11 20:44:16 +00:00
|
|
|
|
2009-03-10 22:09:10 +00:00
|
|
|
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;
|
2009-03-14 22:36:05 +00:00
|
|
|
|
2009-03-16 20:24:28 +00:00
|
|
|
/*! \brief The original endian type in which this palette was loaded.
|
2009-03-16 20:57:17 +00:00
|
|
|
* \note This will always return either CINE_BIG_ENDIAN or CINE_LITTLE_ENDIAN (So no CINE_NATIVE_ENDIAN).
|
2009-03-16 20:24:28 +00:00
|
|
|
*/
|
|
|
|
const EndianType endianType() const;
|
|
|
|
|
2009-03-14 22:36:05 +00:00
|
|
|
/*! \brief The original color format in which this palette was loaded. */
|
2009-03-11 21:03:09 +00:00
|
|
|
Graphics::PixelFormat colorFormat() const;
|
2008-11-20 22:16:18 +00:00
|
|
|
|
|
|
|
private:
|
2009-03-11 21:11:52 +00:00
|
|
|
void setColorFormat(const Graphics::PixelFormat format);
|
2009-03-16 20:24:28 +00:00
|
|
|
void setEndianType(const EndianType endianType);
|
2008-11-20 22:16:18 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2009-03-16 20:24:28 +00:00
|
|
|
// The used source format, its endianness etc.
|
2009-03-11 21:03:09 +00:00
|
|
|
Graphics::PixelFormat _format;
|
2009-03-10 20:37:54 +00:00
|
|
|
uint _rBits, _gBits, _bBits;
|
|
|
|
uint _rMax, _gMax, _bMax;
|
2009-03-16 20:24:28 +00:00
|
|
|
bool _bigEndian;
|
2009-03-10 20:37:54 +00:00
|
|
|
|
|
|
|
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
|