1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
/* ScummVM - Graphic Adventure Engine
*
* 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.
*
* 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.
*
*/
#ifndef PSP_PIXEL_FORMAT_H
#define PSP_PIXEL_FORMAT_H
#include "graphics/pixelformat.h"
#include "backends/platform/psp/trace.h"
/**
* Specialized PixelFormat class
* Supports only those formats which the PSP allows, including 4 bit palettes.
* Also provides accurate color conversion (needed for color masking)
* As well as swapping of red and blue channels (needed by HE games, for example)
*/
struct PSPPixelFormat {
enum Type {
Type_None,
Type_4444,
Type_5551,
Type_5650,
Type_8888,
Type_Palette_8bit,
Type_Palette_4bit,
Type_Unknown
};
Type format;
uint32 bitsPerPixel; ///< Must match bpp of selected type
bool swapRB; ///< Swap red and blue values when reading and writing
PSPPixelFormat() : format(Type_Unknown), bitsPerPixel(0), swapRB(false) {}
void set(Type type, bool swap = false);
static void convertFromScummvmPixelFormat(const Graphics::PixelFormat *pf,
PSPPixelFormat::Type &bufferType,
PSPPixelFormat::Type &paletteType,
bool &swapRedBlue);
static Graphics::PixelFormat convertToScummvmPixelFormat(PSPPixelFormat::Type type);
uint32 convertTo32BitColor(uint32 color) const;
inline uint32 rgbaToColor(uint32 r, uint32 g, uint32 b, uint32 a) const {
uint32 color;
switch (format) {
case Type_4444:
color = (((b >> 4) << 8) | ((g >> 4) << 4) | ((r >> 4) << 0) | ((a >> 4) << 12));
break;
case Type_5551:
color = (((b >> 3) << 10) | ((g >> 3) << 5) | ((r >> 3) << 0) | ((a >> 7) << 15));
break;
case Type_5650:
color = (((b >> 3) << 11) | ((g >> 2) << 5) | ((r >> 3) << 0));
break;
case Type_8888:
color = (((b >> 0) << 16) | ((g >> 0) << 8) | ((r >> 0) << 0) | ((a >> 0) << 24));
break;
default:
color = 0;
break;
}
return color;
}
inline void colorToRgba(uint32 color, uint32 &r, uint32 &g, uint32 &b, uint32 &a) const {
switch (format) {
case Type_4444:
a = (color >> 12) & 0xF; // Interpolate to get true colors
b = (color >> 8) & 0xF;
g = (color >> 4) & 0xF;
r = (color >> 0) & 0xF;
a = a << 4 | a;
b = b << 4 | b;
g = g << 4 | g;
r = r << 4 | r;
break;
case Type_5551:
a = (color >> 15) ? 0xFF : 0;
b = (color >> 10) & 0x1F;
g = (color >> 5) & 0x1F;
r = (color >> 0) & 0x1F;
b = b << 3 | b >> 2;
g = g << 3 | g >> 2;
r = r << 3 | r >> 2;
break;
case Type_5650:
a = 0xFF;
b = (color >> 11) & 0x1F;
g = (color >> 5) & 0x3F;
r = (color >> 0) & 0x1F;
b = b << 3 | b >> 2;
g = g << 2 | g >> 4;
r = r << 3 | r >> 2;
break;
case Type_8888:
a = (color >> 24) & 0xFF;
b = (color >> 16) & 0xFF;
g = (color >> 8) & 0xFF;
r = (color >> 0) & 0xFF;
break;
default:
a = b = g = r = 0;
break;
}
}
inline uint32 setColorAlpha(uint32 color, byte alpha) {
switch (format) {
case Type_4444:
color = (color & 0x0FFF) | (((uint32)alpha >> 4) << 12);
break;
case Type_5551:
color = (color & 0x7FFF) | (((uint32)alpha >> 7) << 15);
break;
case Type_8888:
color = (color & 0x00FFFFFF) | ((uint32)alpha << 24);
break;
case Type_5650:
default:
break;
}
return color;
}
inline uint32 pixelsToBytes(uint32 pixels) const {
switch (bitsPerPixel) {
case 4:
pixels >>= 1;
break;
case 16:
pixels <<= 1;
break;
case 32:
pixels <<= 2;
break;
case 8:
break;
default:
PSP_ERROR("Incorrect bitsPerPixel value[%u]. pixels[%u]\n", bitsPerPixel, pixels);
break;
}
return pixels;
}
inline uint16 swapRedBlue16(uint16 color) const {
uint16 output;
switch (format) {
case Type_4444:
output = (color & 0xf0f0) | ((color & 0x000f) << 8) | ((color & 0x0f00) >> 8);
break;
case Type_5551:
output = (color & 0x83e0) | ((color & 0x001f) << 10) | ((color & 0x7c00) >> 10);
break;
case Type_5650:
output = (color & 0x07e0) | ((color & 0x001f) << 11) | ((color & 0xf800) >> 11);
break;
default:
PSP_ERROR("invalid format[%u] for swapping\n", format);
output = 0;
break;
}
return output;
}
inline uint32 swapRedBlue32(uint32 color) const {
uint32 output;
switch (format) {
case Type_4444:
output = (color & 0xf0f0f0f0) |
((color & 0x000f000f) << 8) | ((color & 0x0f000f00) >> 8);
break;
case Type_5551:
output = (color & 0x83e083e0) |
((color & 0x001f001f) << 10) | ((color & 0x7c007c00) >> 10);
break;
case Type_5650:
output = (color & 0x07e007e0) |
((color & 0x001f001f) << 11) | ((color & 0xf800f800) >> 11);
break;
case Type_8888:
output = (color & 0xff00ff00) |
((color & 0x000000ff) << 16) | ((color & 0x00ff0000) >> 16);
break;
default:
PSP_ERROR("invalid format[%u] for swapping\n", format);
output = 0;
break;
}
return output;
}
// Return whatever color we point at
inline uint32 getColorValueAt(byte *pointer) const {
uint32 result;
switch (bitsPerPixel) {
case 4: // We can't distinguish a 4 bit color with a pointer
case 8:
result = *pointer;
break;
case 16:
result = *(uint16 *)pointer;
break;
case 32:
result = *(uint32 *)pointer;
break;
default:
result = 0;
PSP_ERROR("Incorrect bitsPerPixel value[%u].\n", bitsPerPixel);
break;
}
return result;
}
};
#endif /* PSP_PIXEL_FORMAT_H */
|