2013-08-07 16:39:05 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2013-08-06 11:19:45 +08:00
|
|
|
|
|
|
|
#include "s3tc.h"
|
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
void s3tc_decode_block(uint8_t **block_data,
|
|
|
|
uint32_t *decode_block_data,
|
|
|
|
unsigned int stride,
|
|
|
|
bool oneBitAlphaFlag,
|
|
|
|
uint64_t alpha,
|
|
|
|
ccS3TCDecodeFlag decodeFlag)
|
2013-08-06 11:19:45 +08:00
|
|
|
{
|
2013-08-07 16:39:05 +08:00
|
|
|
unsigned int colorValue0 = 0 , colorValue1 = 0, initAlpha = (!oneBitAlphaFlag * 255u) << 24;
|
2013-08-06 11:19:45 +08:00
|
|
|
unsigned int rb0 = 0, rb1 = 0, rb2 = 0, rb3 = 0, g0 = 0, g1 = 0, g2 = 0, g3 = 0;
|
2013-08-08 14:11:22 +08:00
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
uint32_t colors[4], pixelsIndex = 0;
|
2013-08-06 11:19:45 +08:00
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
/* load the two color values*/
|
|
|
|
memcpy((void *)&colorValue0, *block_data, 2);
|
2013-08-06 11:19:45 +08:00
|
|
|
(*block_data) += 2;
|
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
memcpy((void *)&colorValue1, *block_data, 2);
|
2013-08-06 11:19:45 +08:00
|
|
|
(*block_data) += 2;
|
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
/* the channel is r5g6b5 , 16 bits */
|
|
|
|
rb0 = (colorValue0<<19 | colorValue0>>8) & 0xf800f8;
|
|
|
|
rb1 = (colorValue1<<19 | colorValue1>>8) & 0xf800f8;
|
|
|
|
g0 = (colorValue0 <<5) & 0x00fc00;
|
|
|
|
g1 = (colorValue1 <<5) & 0x00fc00;
|
|
|
|
g0 += (g0 >>6) & 0x000300;
|
|
|
|
g1 += (g1 >>6) & 0x000300;
|
2013-08-06 11:19:45 +08:00
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
colors[0] = rb0 + g0 + initAlpha;
|
|
|
|
colors[1] = rb1 + g1 + initAlpha;
|
2013-08-06 11:19:45 +08:00
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
/* interpolate the other two color values */
|
|
|
|
if (colorValue0 > colorValue1 || oneBitAlphaFlag)
|
2013-08-06 11:19: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;
|
2013-08-07 16:39:05 +08:00
|
|
|
colors[3] = rb3 + g3 + initAlpha;
|
2013-08-08 14:11:22 +08:00
|
|
|
}
|
2013-08-06 11:19:45 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
rb2 = ((rb0+rb1) >> 1) & 0xff00ff;
|
|
|
|
g2 = ((g0 +g1 ) >> 1) & 0x00ff00;
|
|
|
|
colors[3] = 0;
|
|
|
|
}
|
2013-08-08 14:11:22 +08:00
|
|
|
colors[2] = rb2 + g2 + initAlpha;
|
|
|
|
|
|
|
|
/*read the pixelsIndex , 2bits per pixel, 4 bytes */
|
|
|
|
memcpy((void*)&pixelsIndex, *block_data, 4);
|
|
|
|
(*block_data) += 4;
|
|
|
|
|
|
|
|
if(dxt5 == decodeFlag)
|
|
|
|
{
|
|
|
|
//dxt5 use interpolate alpha
|
|
|
|
// 8-Alpha block: derive the other six alphas.
|
|
|
|
// Bit code 000 = alpha0, 001 = alpha1, other are interpolated.
|
|
|
|
|
|
|
|
unsigned int alphaArray[8];
|
|
|
|
|
|
|
|
alphaArray[0] = (alpha )& 0xff ;
|
|
|
|
alphaArray[1] = (alpha >> 8)& 0xff ;
|
|
|
|
|
|
|
|
if(alphaArray[0] >= alphaArray[1])
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if(alphaArray[0] < alphaArray[1])
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
alphaArray[6] = 0;
|
|
|
|
alphaArray[7] = 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
// read the flowing 48bit indices (16*3)
|
|
|
|
alpha >>= 16;
|
|
|
|
|
|
|
|
for (int y=0; y<4; y++)
|
|
|
|
{
|
|
|
|
for (int x=0; x<4; x++)
|
|
|
|
{
|
|
|
|
decode_block_data[x] = (alphaArray[alpha & 5] <<24) + colors[pixelsIndex & 3];
|
|
|
|
pixelsIndex >>= 2;
|
|
|
|
alpha >>= 3;
|
|
|
|
}
|
|
|
|
decode_block_data += stride;
|
|
|
|
}
|
|
|
|
} //if (dxt5 == comFlag)
|
|
|
|
else
|
|
|
|
{ //dxt1 dxt3 use explicit alpha
|
|
|
|
for (int y=0; y<4; y++)
|
|
|
|
{
|
|
|
|
for (int x=0; x<4; x++)
|
|
|
|
{
|
|
|
|
initAlpha = (alpha & 0x0f) << 28;
|
|
|
|
initAlpha += initAlpha >> 4;
|
|
|
|
decode_block_data[x] = initAlpha + colors[pixelsIndex& 3];
|
|
|
|
pixelsIndex >>= 2;
|
|
|
|
alpha >>= 4;
|
|
|
|
}
|
|
|
|
decode_block_data += stride;
|
|
|
|
}
|
|
|
|
}
|
2013-08-06 11:19:45 +08:00
|
|
|
}
|
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
void s3tc_decode(uint8_t *encode_data, //in_data
|
|
|
|
uint8_t *decode_data, //out_data
|
|
|
|
const unsigned int pixelsWidth,
|
|
|
|
const unsigned int pixelsHeight,
|
|
|
|
ccS3TCDecodeFlag decodeFlag)
|
2013-08-06 11:19:45 +08:00
|
|
|
{
|
2013-08-07 16:39:05 +08:00
|
|
|
uint32_t *decode_block_data = (uint32_t *)decode_data;
|
|
|
|
for( int block_y =0 ; block_y < pixelsHeight/4; block_y++,decode_block_data += 3*pixelsWidth) //stride = 3*width
|
2013-08-06 11:19:45 +08:00
|
|
|
{
|
2013-08-07 16:39:05 +08:00
|
|
|
for( int block_x =0 ; block_x < pixelsWidth/4; block_x++,decode_block_data += 4) //skip 4 pixels
|
2013-08-06 11:19:45 +08:00
|
|
|
{
|
2013-08-07 16:39:05 +08:00
|
|
|
uint64_t blockAlpha = 0;
|
2013-08-06 11:19:45 +08:00
|
|
|
|
2013-08-07 16:39:05 +08:00
|
|
|
switch (decodeFlag) {
|
|
|
|
case dxt1:
|
|
|
|
{
|
|
|
|
s3tc_decode_block(&encode_data, decode_block_data, pixelsWidth, 0, 0LL, dxt1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dxt3:
|
|
|
|
{
|
|
|
|
memcpy((void *)&blockAlpha, encode_data, 8);
|
|
|
|
encode_data +=8;
|
|
|
|
s3tc_decode_block(&encode_data, decode_block_data, pixelsWidth, 1, blockAlpha,dxt3);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case dxt5:
|
|
|
|
{
|
|
|
|
memcpy((void *)&blockAlpha, encode_data , 8);
|
|
|
|
encode_data += 8;
|
|
|
|
s3tc_decode_block(&encode_data, decode_block_data, pixelsWidth, 1, blockAlpha, dxt5);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}//switch
|
|
|
|
}//for block_x
|
|
|
|
}//for block_y
|
2013-08-06 11:19:45 +08:00
|
|
|
}
|
2013-08-07 16:39:05 +08:00
|
|
|
|
2013-08-08 14:11:22 +08:00
|
|
|
|