axmol/core/base/etc1.cpp

82 lines
3.0 KiB
C++
Raw Normal View History

2013-10-12 15:25:45 +08:00
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
Squashed commit of the following: commit c16dcfaaea0922039aad05bce1f4efed18e04871 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 19:05:18 2014 -0700 more linux fixes commit 1553795976c9090a1b46deb53d12910fe0676008 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 19:04:04 2014 -0700 more linux fixes commit 1e43a8cabff33cbf25aa5eb5412f53a878222d83 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 19:02:07 2014 -0700 fixes linux isuses commit 723a445dd6411f91846da2b801248ad8298174f1 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:58:50 2014 -0700 more linux fixes commit 533c8025e794fc76cef02f396b3a93b3d7f4cfc8 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:57:33 2014 -0700 more linux fixes commit 4ba1e84959670bcbf044f18d1c0d4b3cb3be4090 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:53:43 2014 -0700 more linux fixes commit 1f8e011f306a47ed4134224e5e349929201f0539 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:49:28 2014 -0700 more linux fixes commit 3e2033100822ff6d532a1b4f012337491dc11920 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:47:43 2014 -0700 more linux fixes commit 2e708863c75fd032f1b2396dfdf1d31f7a62b713 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:46:00 2014 -0700 more linux fixes commit 861b5b92a6efd4de7b926c20d636ce9d749b293f Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:43:15 2014 -0700 more linux fixes commit 2a43365a0c1755e9b9cada53301be1a20adb31cf Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:36:06 2014 -0700 more fixes for linux commit 7d332bf911892f87c7824d2a5da7bf73ce7ec411 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:35:29 2014 -0700 more fixes for linux commit f1becc17d3316dfe3678c23c9dcedb7a447d9235 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:34:44 2014 -0700 more fixes for linux commit d2e5959bb0dde921dd5e73be1d8acc3b3f50e51d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:33:45 2014 -0700 fixes for linux commit ad9b633c352107cf0e8b060a0e23d6e6a3f5e80f Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:16:48 2014 -0700 compiles on Windows commit 4425ee8e5de8f42a2d6050e4470109600dce8b5d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:07:20 2014 -0700 fix builder
2014-05-01 10:09:13 +08:00
#include "base/etc1.h"
2013-10-12 15:25:45 +08:00
#include <string.h>
2021-12-25 10:04:45 +08:00
static const char kMagic[] = {'P', 'K', 'M', ' ', '1', '0'};
2013-10-12 15:25:45 +08:00
2021-12-25 10:04:45 +08:00
static const etc1_uint32 ETC1_PKM_FORMAT_OFFSET = 6;
static const etc1_uint32 ETC1_PKM_ENCODED_WIDTH_OFFSET = 8;
2013-10-12 15:25:45 +08:00
static const etc1_uint32 ETC1_PKM_ENCODED_HEIGHT_OFFSET = 10;
2021-12-25 10:04:45 +08:00
static const etc1_uint32 ETC1_PKM_WIDTH_OFFSET = 12;
static const etc1_uint32 ETC1_PKM_HEIGHT_OFFSET = 14;
2013-10-12 15:25:45 +08:00
static const etc1_uint32 ETC1_RGB_NO_MIPMAPS = 0;
2021-12-25 10:04:45 +08:00
// static void writeBEUint16(etc1_byte* pOut, etc1_uint32 data) {
// pOut[0] = (etc1_byte) (data >> 8);
// pOut[1] = (etc1_byte) data;
// }
2013-10-12 15:25:45 +08:00
2021-12-25 10:04:45 +08:00
static etc1_uint32 readBEUint16(const etc1_byte* pIn)
{
2013-10-12 15:25:45 +08:00
return (pIn[0] << 8) | pIn[1];
}
// Format a PKM header
2021-12-25 10:04:45 +08:00
// void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height) {
// memcpy(pHeader, kMagic, sizeof(kMagic));
// etc1_uint32 encodedWidth = (width + 3) & ~3;
// etc1_uint32 encodedHeight = (height + 3) & ~3;
// writeBEUint16(pHeader + ETC1_PKM_FORMAT_OFFSET, ETC1_RGB_NO_MIPMAPS);
// writeBEUint16(pHeader + ETC1_PKM_ENCODED_WIDTH_OFFSET, encodedWidth);
// writeBEUint16(pHeader + ETC1_PKM_ENCODED_HEIGHT_OFFSET, encodedHeight);
// writeBEUint16(pHeader + ETC1_PKM_WIDTH_OFFSET, width);
// writeBEUint16(pHeader + ETC1_PKM_HEIGHT_OFFSET, height);
// }
2013-10-12 15:25:45 +08:00
// Check if a PKM header is correctly formatted.
2021-12-25 10:04:45 +08:00
etc1_bool etc1_pkm_is_valid(const etc1_byte* pHeader)
{
if (memcmp(pHeader, kMagic, sizeof(kMagic)))
{
2013-10-12 15:25:45 +08:00
return false;
}
2021-12-25 10:04:45 +08:00
etc1_uint32 format = readBEUint16(pHeader + ETC1_PKM_FORMAT_OFFSET);
etc1_uint32 encodedWidth = readBEUint16(pHeader + ETC1_PKM_ENCODED_WIDTH_OFFSET);
2013-10-12 15:25:45 +08:00
etc1_uint32 encodedHeight = readBEUint16(pHeader + ETC1_PKM_ENCODED_HEIGHT_OFFSET);
2021-12-25 10:04:45 +08:00
etc1_uint32 width = readBEUint16(pHeader + ETC1_PKM_WIDTH_OFFSET);
etc1_uint32 height = readBEUint16(pHeader + ETC1_PKM_HEIGHT_OFFSET);
return format == ETC1_RGB_NO_MIPMAPS && encodedWidth >= width && encodedWidth - width < 4 &&
encodedHeight >= height && encodedHeight - height < 4;
2013-10-12 15:25:45 +08:00
}
// Read the image width from a PKM header
2021-12-25 10:04:45 +08:00
etc1_uint32 etc1_pkm_get_width(const etc1_byte* pHeader)
{
2013-10-12 15:25:45 +08:00
return readBEUint16(pHeader + ETC1_PKM_WIDTH_OFFSET);
}
// Read the image height from a PKM header
2021-12-25 10:04:45 +08:00
etc1_uint32 etc1_pkm_get_height(const etc1_byte* pHeader)
{
2013-10-12 15:25:45 +08:00
return readBEUint16(pHeader + ETC1_PKM_HEIGHT_OFFSET);
}