axmol/core/base/atitc.cpp

198 lines
7.3 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-12-25 10:04:45 +08:00
2022-07-09 07:07:01 +08:00
https://adxeproject.github.io/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "base/atitc.h"
2021-12-25 10:04:45 +08:00
// Decode ATITC encode block to 4x4 RGB32 pixels
static void atitc_decode_block(uint8_t** blockData,
uint32_t* decodeBlockData,
unsigned int stride,
bool oneBitAlphaFlag,
uint64_t alpha,
ATITCDecodeFlag decodeFlag)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
unsigned int colorValue0 = 0, colorValue1 = 0, initAlpha = (!oneBitAlphaFlag * 255u) << 24;
2019-11-23 20:27:39 +08:00
unsigned int rb0 = 0, rb1 = 0, rb2 = 0, rb3 = 0, g0 = 0, g1 = 0, g2 = 0, g3 = 0;
bool msb = 0;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
uint32_t colors[4], pixelsIndex = 0;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/* load the two color values*/
2021-12-25 10:04:45 +08:00
memcpy((void*)&colorValue0, *blockData, 2);
2019-11-23 20:27:39 +08:00
(*blockData) += 2;
2021-12-25 10:04:45 +08:00
memcpy((void*)&colorValue1, *blockData, 2);
2019-11-23 20:27:39 +08:00
(*blockData) += 2;
2021-12-25 10:04:45 +08:00
// extract the msb flag
2019-11-23 20:27:39 +08:00
msb = (colorValue0 & 0x8000) != 0;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/* the channel is r5g6b5 , 16 bits */
2021-12-25 10:04:45 +08:00
rb0 = (colorValue0 << 3 | colorValue0 << 9) & 0xf800f8;
rb1 = (colorValue1 << 3 | colorValue1 << 8) & 0xf800f8;
g0 = (colorValue0 << 6) & 0x00fc00;
g1 = (colorValue1 << 5) & 0x00fc00;
g0 += (g0 >> 6) & 0x000300;
g1 += (g1 >> 6) & 0x000300;
2019-11-23 20:27:39 +08:00
/* interpolate the other two color values */
if (!msb)
{
colors[0] = rb0 + g0 + initAlpha;
colors[3] = rb1 + g1 + initAlpha;
2021-12-25 10:04:45 +08:00
rb2 = (((2 * rb0 + rb1) * 21) >> 6) & 0xff00ff;
rb3 = (((2 * rb1 + rb0) * 21) >> 6) & 0xff00ff;
g2 = (((2 * g0 + g1) * 21) >> 6) & 0x00ff00;
g3 = (((2 * g1 + g0) * 21) >> 6) & 0x00ff00;
2019-11-23 20:27:39 +08:00
colors[2] = rb3 + g3 + initAlpha;
colors[1] = rb2 + g2 + initAlpha;
}
else
{
colors[2] = rb0 + g0 + initAlpha;
colors[3] = rb1 + g1 + initAlpha;
2021-12-25 10:04:45 +08:00
rb2 = (rb0 - (rb1 >> 2)) & 0xff00ff;
g2 = (g0 - (g1 >> 2)) & 0x00ff00;
colors[0] = 0;
colors[1] = rb2 + g2 + initAlpha;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/*read the pixelsIndex , 2bits per pixel, 4 bytes */
memcpy((void*)&pixelsIndex, *blockData, 4);
(*blockData) += 4;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (ATITCDecodeFlag::ATC_INTERPOLATED_ALPHA == decodeFlag)
{
// atitc_interpolated_alpha use interpolate alpha
// 8-Alpha block: derive the other six alphas.
// Bit code 000 = alpha0, 001 = alpha1, other are interpolated.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
unsigned int alphaArray[8];
2021-12-25 10:04:45 +08:00
alphaArray[0] = (alpha)&0xff;
alphaArray[1] = (alpha >> 8) & 0xff;
2019-11-23 20:27:39 +08:00
if (alphaArray[0] >= alphaArray[1])
{
2021-12-25 10:04:45 +08:00
alphaArray[2] = (alphaArray[0] * 6 + alphaArray[1] * 1) / 7;
alphaArray[3] = (alphaArray[0] * 5 + alphaArray[1] * 2) / 7;
alphaArray[4] = (alphaArray[0] * 4 + alphaArray[1] * 3) / 7;
alphaArray[5] = (alphaArray[0] * 3 + alphaArray[1] * 4) / 7;
alphaArray[6] = (alphaArray[0] * 2 + alphaArray[1] * 5) / 7;
alphaArray[7] = (alphaArray[0] * 1 + alphaArray[1] * 6) / 7;
2019-11-23 20:27:39 +08:00
}
else if (alphaArray[0] < alphaArray[1])
{
2021-12-25 10:04:45 +08:00
alphaArray[2] = (alphaArray[0] * 4 + alphaArray[1] * 1) / 5;
alphaArray[3] = (alphaArray[0] * 3 + alphaArray[1] * 2) / 5;
alphaArray[4] = (alphaArray[0] * 2 + alphaArray[1] * 3) / 5;
alphaArray[5] = (alphaArray[0] * 1 + alphaArray[1] * 4) / 5;
2019-11-23 20:27:39 +08:00
alphaArray[6] = 0;
alphaArray[7] = 255;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// read the flowing 48bit indices (16*3)
alpha >>= 16;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
for (int y = 0; y < 4; ++y)
{
for (int x = 0; x < 4; ++x)
{
decodeBlockData[x] = (alphaArray[alpha & 5] << 24) + colors[pixelsIndex & 3];
pixelsIndex >>= 2;
alpha >>= 3;
}
decodeBlockData += stride;
}
2021-12-25 10:04:45 +08:00
} // if (atc_interpolated_alpha == comFlag)
2019-11-23 20:27:39 +08:00
else
{
/* atc_rgb atc_explicit_alpha use explicit alpha */
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
for (int y = 0; y < 4; ++y)
{
for (int x = 0; x < 4; ++x)
2021-12-25 10:04:45 +08:00
{
initAlpha = (static_cast<int>(alpha) & 0x0f) << 28;
initAlpha += initAlpha >> 4;
2019-11-23 20:27:39 +08:00
decodeBlockData[x] = initAlpha + colors[pixelsIndex & 3];
pixelsIndex >>= 2;
2021-12-25 10:04:45 +08:00
alpha >>= 4;
2019-11-23 20:27:39 +08:00
}
decodeBlockData += stride;
}
}
}
2021-12-25 10:04:45 +08:00
// Decode ATITC encode data to RGB32
void atitc_decode(uint8_t* encodeData, // in_data
uint8_t* decodeData, // out_data
const int pixelsWidth,
const int pixelsHeight,
ATITCDecodeFlag decodeFlag)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
uint32_t* decodeBlockData = (uint32_t*)decodeData;
for (int block_y = 0; block_y < pixelsHeight / 4; ++block_y, decodeBlockData += 3 * pixelsWidth) // stride =
// 3*width
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
for (int block_x = 0; block_x < pixelsWidth / 4; ++block_x, decodeBlockData += 4) // skip 4 pixels
2019-11-23 20:27:39 +08:00
{
uint64_t blockAlpha = 0;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
switch (decodeFlag)
{
2021-12-25 10:04:45 +08:00
case ATITCDecodeFlag::ATC_RGB:
{
atitc_decode_block(&encodeData, decodeBlockData, pixelsWidth, 0, 0LL, ATITCDecodeFlag::ATC_RGB);
}
break;
case ATITCDecodeFlag::ATC_EXPLICIT_ALPHA:
{
memcpy((void*)&blockAlpha, encodeData, 8);
encodeData += 8;
atitc_decode_block(&encodeData, decodeBlockData, pixelsWidth, 1, blockAlpha,
ATITCDecodeFlag::ATC_EXPLICIT_ALPHA);
}
break;
case ATITCDecodeFlag::ATC_INTERPOLATED_ALPHA:
{
memcpy((void*)&blockAlpha, encodeData, 8);
encodeData += 8;
atitc_decode_block(&encodeData, decodeBlockData, pixelsWidth, 1, blockAlpha,
ATITCDecodeFlag::ATC_INTERPOLATED_ALPHA);
}
break;
default:
break;
} // switch
} // for block_x
} // for block_y
2019-11-23 20:27:39 +08:00
}