bgfx/tools/texturec/texturec.cpp

309 lines
7.2 KiB
C++
Raw Normal View History

2013-02-22 00:07:31 -05:00
/*
2015-01-01 18:04:46 -05:00
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
2013-02-22 00:07:31 -05:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Just hacking DDS loading code in here.
#include "bgfx_p.h"
#include "image.h"
2015-12-14 20:35:24 -05:00
#include <libsquish/squish.h>
2015-12-16 01:13:01 -05:00
#include <etc1/etc1.h>
2015-12-20 23:40:35 -05:00
#include <nvtt/nvtt.h>
#include <pvrtc/PvrTcEncoder.h>
2015-12-22 23:31:46 -05:00
#include <tinyexr/tinyexr.h>
2013-02-22 00:07:31 -05:00
2015-12-24 01:17:51 -05:00
#define STB_IMAGE_IMPLEMENTATION
#include <stb/stb_image.c>
2013-02-22 00:07:31 -05:00
#if 0
# define BX_TRACE(_format, ...) fprintf(stderr, "" _format "\n", ##__VA_ARGS__)
#endif // DEBUG
#include <bx/bx.h>
2015-11-19 23:10:51 -05:00
#include <bx/allocator.h>
2013-02-22 00:07:31 -05:00
#include <bx/commandline.h>
#include <bx/uint32_t.h>
namespace bgfx
{
const Memory* alloc(uint32_t _size)
{
Memory* mem = (Memory*)::realloc(NULL, sizeof(Memory) + _size);
mem->size = _size;
mem->data = (uint8_t*)mem + sizeof(Memory);
return mem;
}
2015-12-24 01:17:51 -05:00
const Memory* makeRef(const void* _data, uint32_t _size, ReleaseFn _releaseFn, void* _userData)
{
BX_UNUSED(_releaseFn, _userData);
Memory* mem = (Memory*)::realloc(NULL, sizeof(Memory) );
mem->size = _size;
mem->data = (uint8_t*)_data;
return mem;
}
void release(const Memory* _mem)
2013-02-22 00:07:31 -05:00
{
Memory* mem = const_cast<Memory*>(_mem);
::free(mem);
}
2013-02-22 00:07:31 -05:00
2015-12-22 18:40:55 -05:00
void imageEncodeFromRgba8(uint8_t* _dst, const uint8_t* _src, uint32_t _width, uint32_t _height, uint8_t _format)
{
TextureFormat::Enum format = TextureFormat::Enum(_format);
switch (format)
{
case TextureFormat::BC1:
case TextureFormat::BC2:
case TextureFormat::BC3:
case TextureFormat::BC4:
case TextureFormat::BC5:
squish::CompressImage(_src, _width, _height, _dst
2015-12-24 01:17:51 -05:00
, format == TextureFormat::BC2 ? squish::kDxt3
2015-12-22 18:40:55 -05:00
: format == TextureFormat::BC3 ? squish::kDxt5
: format == TextureFormat::BC4 ? squish::kBc4
2015-12-24 01:17:51 -05:00
: format == TextureFormat::BC5 ? squish::kBc5
: squish::kDxt1
2015-12-22 18:40:55 -05:00
);
break;
case TextureFormat::BC6H:
nvtt::compressBC6H(_src, _width, _height, 4, _dst);
break;
case TextureFormat::BC7:
nvtt::compressBC7(_src, _width, _height, 4, _dst);
break;
case TextureFormat::ETC1:
etc1_encode_image(_src, _width, _height, 4, _width*4, _dst);
break;
case TextureFormat::ETC2:
case TextureFormat::ETC2A:
case TextureFormat::ETC2A1:
case TextureFormat::PTC12:
break;
2015-12-22 18:40:55 -05:00
case TextureFormat::PTC14:
{
using namespace Javelin;
RgbBitmap bmp;
bmp.width = _width;
bmp.height = _height;
bmp.data = const_cast<uint8_t*>(_src);
PvrTcEncoder::EncodeRgb4Bpp(_dst, bmp);
bmp.data = NULL;
}
break;
2015-12-22 18:40:55 -05:00
case TextureFormat::PTC12A:
break;
2015-12-22 18:40:55 -05:00
case TextureFormat::PTC14A:
{
using namespace Javelin;
RgbaBitmap bmp;
bmp.width = _width;
bmp.height = _height;
bmp.data = const_cast<uint8_t*>(_src);
PvrTcEncoder::EncodeRgba4Bpp(_dst, bmp);
bmp.data = NULL;
}
break;
2015-12-22 18:40:55 -05:00
case TextureFormat::PTC22:
case TextureFormat::PTC24:
break;
2015-12-24 01:17:51 -05:00
case TextureFormat::RGBA8:
memcpy(_dst, _src, _width*_height*4);
break;
2015-12-22 18:40:55 -05:00
default:
break;
}
}
} // namespace bgfx
void help(const char* _error = NULL)
{
if (NULL != _error)
{
fprintf(stderr, "Error:\n%s\n\n", _error);
2013-02-22 00:07:31 -05:00
}
fprintf(stderr
, "texturec, bgfx texture compiler tool\n"
"Copyright 2011-2015 Branimir Karadzic. All rights reserved.\n"
"License: http://www.opensource.org/licenses/BSD-2-Clause\n\n"
);
2015-12-27 23:04:17 -05:00
fprintf(stderr
, "Usage: texturec -f <in> -o <out> -t <format>\n"
"\n"
"Supported input file types:\n"
" *.png Portable Network Graphics\n"
" *.tga Targa\n"
" *.dds Direct Draw Surface\n"
" *.ktx Khronos Texture\n"
" *.pvr PowerVR\n"
"\n"
"Options:\n"
" -f <file path> Input file path.\n"
" -o <file path> Output file path (file will be written in KTX format).\n"
" -t <format> Output format type (BC1/2/3/4/5, ETC1, PVR14, etc.).\n"
" -m, --mips Generate mip-maps.\n"
"\n"
"For additional information, see https://github.com/bkaradzic/bgfx\n"
);
2013-02-22 00:07:31 -05:00
}
int main(int _argc, const char* _argv[])
{
bx::CommandLine cmdLine(_argc, _argv);
if (cmdLine.hasArg('h', "help") )
{
help();
return EXIT_FAILURE;
}
2015-12-27 23:04:17 -05:00
const char* inputFileName = cmdLine.findOption('f');
if (NULL == inputFileName)
{
help("Input file must be specified.");
return EXIT_FAILURE;
}
2015-11-19 23:10:51 -05:00
const char* outputFileName = cmdLine.findOption('o');
if (NULL == outputFileName)
{
help("Output file must be specified.");
return EXIT_FAILURE;
}
bx::CrtFileReader reader;
if (0 != bx::open(&reader, inputFileName) )
{
help("Failed to open input file.");
return EXIT_FAILURE;
}
const bool mips = cmdLine.hasArg('m', "mips");
const char* type = cmdLine.findOption('t');
2015-12-27 23:04:17 -05:00
bgfx::TextureFormat::Enum format = bgfx::TextureFormat::BGRA8;
if (NULL != type)
{
2015-12-27 23:04:17 -05:00
format = bgfx::getFormat(type);
if (!isValid(format) )
2015-12-24 01:17:51 -05:00
{
help("Invalid format specified.");
return EXIT_FAILURE;
}
}
uint32_t size = (uint32_t)bx::getSize(&reader);
2015-12-27 23:04:17 -05:00
const bgfx::Memory* mem = bgfx::alloc(size);
bx::read(&reader, mem->data, mem->size);
bx::close(&reader);
2013-02-22 00:07:31 -05:00
2015-11-19 23:10:51 -05:00
{
2015-12-27 23:04:17 -05:00
using namespace bgfx;
2015-12-22 18:40:55 -05:00
2015-12-27 23:04:17 -05:00
uint8_t* decodedImage = NULL;
ImageContainer imageContainer;
2015-12-24 01:17:51 -05:00
2015-12-27 23:04:17 -05:00
bool loaded = imageParse(imageContainer, mem->data, mem->size);
if (!loaded)
2015-12-24 01:17:51 -05:00
{
2015-12-27 23:04:17 -05:00
int width = 0;
int height = 0;
int comp = 0;
2015-11-19 23:10:51 -05:00
2015-12-27 23:04:17 -05:00
decodedImage = stbi_load_from_memory( (uint8_t*)mem->data, mem->size, &width, &height, &comp, 4);
loaded = NULL != decodedImage;
if (loaded)
{
release(mem);
mem = makeRef(decodedImage, width*height*4);
imageContainer.m_data = mem->data;
imageContainer.m_size = mem->size;
imageContainer.m_offset = 0;
imageContainer.m_width = width;
imageContainer.m_height = height;
imageContainer.m_depth = 1;
imageContainer.m_format = bgfx::TextureFormat::RGBA8;
imageContainer.m_numMips = 1;
imageContainer.m_hasAlpha = true;
imageContainer.m_cubeMap = false;
imageContainer.m_ktx = false;
imageContainer.m_ktxLE = false;
imageContainer.m_srgb = false;
}
}
2013-02-22 00:07:31 -05:00
2015-12-27 23:04:17 -05:00
BX_UNUSED(mips);
if (loaded)
2013-02-22 00:07:31 -05:00
{
2015-12-27 23:04:17 -05:00
bx::CrtAllocator allocator;
const Memory* output = NULL;
2013-02-22 00:07:31 -05:00
2015-12-27 23:04:17 -05:00
ImageMip mip;
if (imageGetRawData(imageContainer, 0, 0, mem->data, mem->size, mip) )
{
uint32_t size = imageGetSize(TextureFormat::RGBA8, mip.m_width, mip.m_height);
uint8_t* rgba = (uint8_t*)BX_ALLOC(&allocator, size);
2015-12-27 23:04:17 -05:00
imageDecodeToRgba8(rgba, mip.m_data, mip.m_width, mip.m_height, mip.m_width*mip.m_bpp/8, mip.m_format);
2015-12-24 01:17:51 -05:00
2015-12-27 23:04:17 -05:00
imageContainer.m_size = imageGetSize(format, mip.m_width, mip.m_height);
imageContainer.m_format = format;
output = alloc(imageContainer.m_size);
2015-12-27 23:04:17 -05:00
// bgfx::imageRgba8Downsample2x2(width, height, pitch, data, data);
2015-12-27 23:04:17 -05:00
imageEncodeFromRgba8(output->data, rgba, mip.m_width, mip.m_height, format);
BX_FREE(&allocator, rgba);
}
if (NULL != output)
2013-02-22 00:07:31 -05:00
{
2015-12-27 23:04:17 -05:00
bx::CrtFileWriter writer;
if (0 == bx::open(&writer, outputFileName) )
2013-02-22 00:07:31 -05:00
{
2015-12-27 23:04:17 -05:00
if (NULL != bx::stristr(outputFileName, ".ktx") )
{
imageWriteKtx(&writer, imageContainer, output->data, output->size);
}
bx::close(&writer);
2013-02-22 00:07:31 -05:00
}
2015-12-27 23:04:17 -05:00
release(output);
2013-02-22 00:07:31 -05:00
}
}
2015-12-27 23:04:17 -05:00
release(mem);
}
2013-02-22 00:07:31 -05:00
return EXIT_SUCCESS;
}