axmol/core/base/TGAlib.h

85 lines
2.6 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-01-04 12:36:20 +08:00
https://adxeproject.github.io/
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:
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.
****************************************************************************/
#ifndef __SUPPORT_DATA_SUPPORT_TGALIB_H__
#define __SUPPORT_DATA_SUPPORT_TGALIB_H__
/// @cond DO_NOT_SHOW
#include "stdint.h"
2021-12-25 10:04:45 +08:00
namespace cocos2d
{
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
enum
{
2019-11-23 20:27:39 +08:00
TGA_OK,
TGA_ERROR_FILE_OPEN,
TGA_ERROR_READING_FILE,
TGA_ERROR_INDEXED_COLOR,
TGA_ERROR_MEMORY,
TGA_ERROR_COMPRESSED_FILE,
};
/** TGA format */
2021-12-25 10:04:45 +08:00
typedef struct sImageTGA
{
2019-11-23 20:27:39 +08:00
int status;
unsigned char type, pixelDepth;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** map width */
signed short width;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** map height */
signed short height;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** raw data */
2021-12-25 10:04:45 +08:00
unsigned char* imageData;
2019-11-23 20:27:39 +08:00
int flipped;
} tImageTGA;
/// load the image header fields. We only keep those that matter!
2021-12-25 10:04:45 +08:00
bool tgaLoadHeader(unsigned char* buffer, uint32_t bufSize, tImageTGA* info);
2019-11-23 20:27:39 +08:00
/// loads the image pixels. You shouldn't call this function directly
2021-12-25 10:04:45 +08:00
bool tgaLoadImageData(unsigned char* buffer, uint32_t bufSize, tImageTGA* info);
2019-11-23 20:27:39 +08:00
/// this is the function to call when we want to load an image buffer.
tImageTGA* tgaLoadBuffer(unsigned char* buffer, int32_t size);
2019-11-23 20:27:39 +08:00
/// this is the function to call when we want to load an image
2021-12-25 10:04:45 +08:00
tImageTGA* tgaLoad(const char* filename);
2019-11-23 20:27:39 +08:00
// /converts RGB to grayscale
2021-12-25 10:04:45 +08:00
void tgaRGBtogreyscale(tImageTGA* info);
2019-11-23 20:27:39 +08:00
/// releases the memory used for the image
2021-12-25 10:04:45 +08:00
void tgaDestroy(tImageTGA* info);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
} // namespace cocos2d
2019-11-23 20:27:39 +08:00
/// @endcond
2021-12-25 10:04:45 +08:00
#endif // __SUPPORT_DATA_SUPPORT_TGALIB_H__