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 238 239 240 241
|
/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "common/system.h"
#include "graphics/blit.h"
#include "graphics/pixelformat.h"
namespace Graphics {
namespace {
template<typename Size, bool overwriteAlpha>
inline void applyColorKeyLogic(byte *dst, const byte *src, const uint w, const uint h,
const uint srcDelta, const uint dstDelta,
const Graphics::PixelFormat &format,
const uint8 rKey, const uint8 gKey, const uint8 bKey,
const uint8 rNew, const uint8 gNew, const uint8 bNew) {
const uint32 keyPix = format.ARGBToColor(0, rKey, gKey, bKey);
const uint32 newPix = format.ARGBToColor(0, rNew, gNew, bNew);
const uint32 rgbMask = format.ARGBToColor(0, 255, 255, 255);
const uint32 alphaMask = format.ARGBToColor(255, 0, 0, 0);
for (uint y = 0; y < h; ++y) {
for (uint x = 0; x < w; ++x) {
uint32 pix = *(const Size *)src;
if ((pix & rgbMask) == keyPix) {
*(Size *)dst = newPix;
} else if (overwriteAlpha) {
*(Size *)dst = pix | alphaMask;
}
src += sizeof(Size);
dst += sizeof(Size);
}
src += srcDelta;
dst += dstDelta;
}
}
template<typename Size, bool skipTransparent>
inline void setAlphaLogic(byte *dst, const byte *src, const uint w, const uint h,
const uint srcDelta, const uint dstDelta,
const Graphics::PixelFormat &format, const uint8 alpha) {
const uint32 newAlpha = format.ARGBToColor(alpha, 0, 0, 0);
const uint32 rgbMask = format.ARGBToColor(0, 255, 255, 255);
const uint32 alphaMask = format.ARGBToColor(255, 0, 0, 0);
for (uint y = 0; y < h; ++y) {
for (uint x = 0; x < w; ++x) {
uint32 pix = *(const Size *)src;
if (!skipTransparent || (pix & alphaMask))
*(Size *)dst = (pix & rgbMask) | newAlpha;
else
*(Size *)dst = pix;
src += sizeof(Size);
dst += sizeof(Size);
}
src += srcDelta;
dst += dstDelta;
}
}
} // End of anonymous namespace
// Function to merge a transparent color key with the alpha channel
bool applyColorKey(byte *dst, const byte *src,
const uint dstPitch, const uint srcPitch,
const uint w, const uint h,
const Graphics::PixelFormat &format, const bool overwriteAlpha,
const uint8 rKey, const uint8 gKey, const uint8 bKey,
const uint8 rNew, const uint8 gNew, const uint8 bNew) {
// Faster, but larger, to provide optimized handling for each case.
const uint srcDelta = (srcPitch - w * format.bytesPerPixel);
const uint dstDelta = (dstPitch - w * format.bytesPerPixel);
if (format.aBits() == 0) {
return false;
}
if (overwriteAlpha) {
if (format.bytesPerPixel == 1) {
applyColorKeyLogic<uint8, true>(dst, src, w, h, srcDelta, dstDelta, format, rKey, gKey, bKey, rNew, gNew, bNew);
} else if (format.bytesPerPixel == 2) {
applyColorKeyLogic<uint16, true>(dst, src, w, h, srcDelta, dstDelta, format, rKey, gKey, bKey, rNew, gNew, bNew);
} else if (format.bytesPerPixel == 4) {
applyColorKeyLogic<uint32, true>(dst, src, w, h, srcDelta, dstDelta, format, rKey, gKey, bKey, rNew, gNew, bNew);
} else {
return false;
}
} else {
if (format.bytesPerPixel == 1) {
applyColorKeyLogic<uint8, false>(dst, src, w, h, srcDelta, dstDelta, format, rKey, gKey, bKey, rNew, gNew, bNew);
} else if (format.bytesPerPixel == 2) {
applyColorKeyLogic<uint16, false>(dst, src, w, h, srcDelta, dstDelta, format, rKey, gKey, bKey, rNew, gNew, bNew);
} else if (format.bytesPerPixel == 4) {
applyColorKeyLogic<uint32, false>(dst, src, w, h, srcDelta, dstDelta, format, rKey, gKey, bKey, rNew, gNew, bNew);
} else {
return false;
}
}
return true;
}
// Function to set the alpha channel for all pixels to the specified value
bool setAlpha(byte *dst, const byte *src,
const uint dstPitch, const uint srcPitch,
const uint w, const uint h,
const Graphics::PixelFormat &format,
const bool skipTransparent, const uint8 alpha) {
// Faster, but larger, to provide optimized handling for each case.
const uint srcDelta = (srcPitch - w * format.bytesPerPixel);
const uint dstDelta = (dstPitch - w * format.bytesPerPixel);
if (format.aBits() == 0) {
return false;
}
if (skipTransparent) {
if (format.bytesPerPixel == 1) {
setAlphaLogic<uint8, true>(dst, src, w, h, srcDelta, dstDelta, format, alpha);
} else if (format.bytesPerPixel == 2) {
setAlphaLogic<uint16, true>(dst, src, w, h, srcDelta, dstDelta, format, alpha);
} else if (format.bytesPerPixel == 4) {
setAlphaLogic<uint32, true>(dst, src, w, h, srcDelta, dstDelta, format, alpha);
} else {
return false;
}
} else {
if (format.bytesPerPixel == 1) {
setAlphaLogic<uint8, false>(dst, src, w, h, srcDelta, dstDelta, format, alpha);
} else if (format.bytesPerPixel == 2) {
setAlphaLogic<uint16, false>(dst, src, w, h, srcDelta, dstDelta, format, alpha);
} else if (format.bytesPerPixel == 4) {
setAlphaLogic<uint32, false>(dst, src, w, h, srcDelta, dstDelta, format, alpha);
} else {
return false;
}
}
return true;
}
BlendBlit::Args::Args(byte *dst, const byte *src,
const uint _dstPitch, const uint _srcPitch,
const int posX, const int posY,
const uint _width, const uint _height,
const int _scaleX, const int _scaleY,
const int scaleXsrcOff, const int scaleYsrcOff,
const uint32 colorMod, const uint _flipping) :
xp(0), yp(0), dstPitch(_dstPitch),
width(_width), height(_height), color(colorMod),
scaleX(_scaleX), scaleY(_scaleY), flipping(_flipping),
scaleXoff(scaleXsrcOff), scaleYoff(scaleYsrcOff) {
bool doScale = scaleX != SCALE_THRESHOLD || scaleY != SCALE_THRESHOLD;
rgbmod = ((colorMod & kRGBModMask) != kRGBModMask);
alphamod = ((colorMod & kAModMask) != kAModMask);
inStep = 4;
inoStep = _srcPitch;
if (flipping & FLIP_H) {
inStep = -inStep;
xp = width - 1;
if (doScale) xp = xp * scaleX / SCALE_THRESHOLD;
}
if (flipping & FLIP_V) {
inoStep = -inoStep;
yp = height - 1;
if (doScale) yp = yp * scaleY / SCALE_THRESHOLD;
}
ino = src + yp * _srcPitch + xp * 4;
outo = dst + posY * _dstPitch + posX * 4;
}
// Initialize this to nullptr at the start
BlendBlit::BlitFunc BlendBlit::blitFunc = nullptr;
// Only blits to and from 32bpp images
// So this function is just here to jump to whatever function is in
// BlendBlit::blitFunc. This way, we can detect at runtime whether or not
// the cpu has certain SIMD feature enabled or not.
void BlendBlit::blit(byte *dst, const byte *src,
const uint dstPitch, const uint srcPitch,
const int posX, const int posY,
const uint width, const uint height,
const int scaleX, const int scaleY,
const int scaleXsrcOff, const int scaleYsrcOff,
const uint32 colorMod, const uint flipping,
const TSpriteBlendMode blendMode,
const AlphaType alphaType) {
if (width == 0 || height == 0) return;
// If no function has been selected yet, detect and select
if (!blitFunc) {
// Get the correct blit function
blitFunc = blitGeneric;
#ifdef SCUMMVM_NEON
if (g_system->hasFeature(OSystem::kFeatureCpuNEON)) blitFunc = blitNEON;
#endif
#ifdef SCUMMVM_SSE2
if (g_system->hasFeature(OSystem::kFeatureCpuSSE2)) blitFunc = blitSSE2;
#endif
#ifdef SCUMMVM_AVX2
if (g_system->hasFeature(OSystem::kFeatureCpuAVX2)) blitFunc = blitAVX2;
#endif
}
Args args(dst, src, dstPitch, srcPitch, posX, posY, width, height, scaleX, scaleY, scaleXsrcOff, scaleYsrcOff, colorMod, flipping);
blitFunc(args, blendMode, alphaType);
}
} // End of namespace Graphics
|