virtual void error(nvtt::Error e) { #if _DEBUG nvDebugBreak(); #endif printf("Error: '%s'\n", nvtt::errorString(e)); }
int main(int argc, char *argv[]) { MyAssertHandler assertHandler; MyMessageHandler messageHandler; bool alpha = false; bool normal = false; bool color2normal = false; bool linear = false; bool wrapRepeat = false; bool noMipmaps = false; bool fast = false; bool nocuda = false; bool bc1n = false; bool luminance = false; nvtt::Format format = nvtt::Format_BC1; bool fillHoles = false; bool countEmptyRows = false; bool outProvided = false; bool premultiplyAlpha = false; nvtt::MipmapFilter mipmapFilter = nvtt::MipmapFilter_Box; bool loadAsFloat = false; bool rgbm = false; bool rangescale = false; const char * externalCompressor = NULL; bool silent = false; bool dds10 = false; nv::Path input; nv::Path output; // Parse arguments. for (int i = 1; i < argc; i++) { // Input options. if (strcmp("-color", argv[i]) == 0) { } else if (strcmp("-alpha", argv[i]) == 0) { alpha = true; } else if (strcmp("-normal", argv[i]) == 0) { normal = true; } else if (strcmp("-tonormal", argv[i]) == 0) { color2normal = true; } else if (strcmp("-linear", argv[i]) == 0) { linear = true; } else if (strcmp("-clamp", argv[i]) == 0) { } else if (strcmp("-repeat", argv[i]) == 0) { wrapRepeat = true; } else if (strcmp("-nomips", argv[i]) == 0) { noMipmaps = true; } else if (strcmp("-fillholes", argv[i]) == 0) { fillHoles = true; } else if (strcmp("-countempty", argv[i]) == 0) { countEmptyRows = true; } else if (strcmp("-premula", argv[i]) == 0) { premultiplyAlpha = true; } else if (strcmp("-mipfilter", argv[i]) == 0) { if (i+1 == argc) break; i++; if (strcmp("box", argv[i]) == 0) mipmapFilter = nvtt::MipmapFilter_Box; else if (strcmp("triangle", argv[i]) == 0) mipmapFilter = nvtt::MipmapFilter_Triangle; else if (strcmp("kaiser", argv[i]) == 0) mipmapFilter = nvtt::MipmapFilter_Kaiser; } else if (strcmp("-float", argv[i]) == 0) { loadAsFloat = true; } else if (strcmp("-rgbm", argv[i]) == 0) { rgbm = true; } else if (strcmp("-rangescale", argv[i]) == 0) { rangescale = true; } // Compression options. else if (strcmp("-fast", argv[i]) == 0) { fast = true; } else if (strcmp("-nocuda", argv[i]) == 0) { nocuda = true; } else if (strcmp("-rgb", argv[i]) == 0) { format = nvtt::Format_RGB; } else if (strcmp("-lumi", argv[i]) == 0) { luminance = true; format = nvtt::Format_RGB; } else if (strcmp("-bc1", argv[i]) == 0) { format = nvtt::Format_BC1; } else if (strcmp("-bc1n", argv[i]) == 0) { format = nvtt::Format_BC1; bc1n = true; } else if (strcmp("-bc1a", argv[i]) == 0) { format = nvtt::Format_BC1a; } else if (strcmp("-bc2", argv[i]) == 0) { format = nvtt::Format_BC2; } else if (strcmp("-bc3", argv[i]) == 0) { format = nvtt::Format_BC3; } else if (strcmp("-bc3n", argv[i]) == 0) { format = nvtt::Format_BC3n; } else if (strcmp("-bc4", argv[i]) == 0) { format = nvtt::Format_BC4; } else if (strcmp("-bc5", argv[i]) == 0) { format = nvtt::Format_BC5; } else if (strcmp("-bc6", argv[i]) == 0) { format = nvtt::Format_BC6; } else if (strcmp("-bc7", argv[i]) == 0) { format = nvtt::Format_BC7; } else if (strcmp("-bc3_rgbm", argv[i]) == 0) { format = nvtt::Format_BC3_RGBM; rgbm = true; } // Undocumented option. Mainly used for testing. else if (strcmp("-ext", argv[i]) == 0) { if (i+1 < argc && argv[i+1][0] != '-') { externalCompressor = argv[i+1]; i++; } } else if (strcmp("-pause", argv[i]) == 0) { printf("Press ENTER\n"); fflush(stdout); getchar(); } // Output options else if (strcmp("-silent", argv[i]) == 0) { silent = true; } else if (strcmp("-dds10", argv[i]) == 0) { dds10 = true; } else if (argv[i][0] != '-') { input = argv[i]; if (i+1 < argc && argv[i+1][0] != '-') { output = argv[i+1]; if(output.endsWith("\\") || output.endsWith("/")) { //only path specified output.append(input.fileName()); output.stripExtension(); output.append(".dds"); } else outProvided = true; } else { output.copy(input.str()); output.stripExtension(); output.append(".dds"); } break; } else { printf("Warning: unrecognized option \"%s\"\n", argv[i]); } } const uint version = nvtt::version(); const uint major = version / 100 / 100; const uint minor = (version / 100) % 100; const uint rev = version % 100; if (!silent) { printf("NVIDIA Texture Tools %u.%u.%u - Copyright NVIDIA Corporation 2007\n\n", major, minor, rev); } if (input.isNull()) { printf("usage: nvcompress [options] infile [outfile.dds]\n\n"); printf("Input options:\n"); printf(" -color The input image is a color map (default).\n"); printf(" -alpha The input image has an alpha channel used for transparency.\n"); printf(" -normal The input image is a normal map.\n"); printf(" -linear The input is in linear color space.\n"); printf(" -tonormal Convert input to normal map.\n"); printf(" -clamp Clamp wrapping mode (default).\n"); printf(" -repeat Repeat wrapping mode.\n"); printf(" -nomips Disable mipmap generation.\n"); printf(" -premula Premultiply alpha into color channel.\n"); printf(" -mipfilter Mipmap filter. One of the following: box, triangle, kaiser.\n"); printf(" -float Load as floating point image.\n\n"); printf(" -rgbm Transform input to RGBM.\n\n"); printf(" -rangescale Scale image to use entire color range.\n\n"); printf(" -fillholes Fill transparent areas with nearby color. Note: adds transparent upper height into output file name in case the outfile was not specified, and infile was in form #.####.xxx.ext\n\n"); printf("Compression options:\n"); printf(" -fast Fast compression.\n"); printf(" -nocuda Do not use cuda compressor.\n"); printf(" -rgb RGBA format\n"); printf(" -lumi LUMINANCE format\n"); printf(" -bc1 BC1 format (DXT1)\n"); printf(" -bc1n BC1 normal map format (DXT1nm)\n"); printf(" -bc1a BC1 format with binary alpha (DXT1a)\n"); printf(" -bc2 BC2 format (DXT3)\n"); printf(" -bc3 BC3 format (DXT5)\n"); printf(" -bc3n BC3 normal map format (DXT5nm)\n"); printf(" -bc4 BC4 format (ATI1)\n"); printf(" -bc5 BC5 format (3Dc/ATI2)\n"); printf(" -bc6 BC6 format\n"); printf(" -bc7 BC7 format\n\n"); printf(" -bc3_rgbm BC3-rgbm format\n\n"); printf("Output options:\n"); printf(" -silent \tDo not output progress messages\n"); printf(" -dds10 \tUse DirectX 10 DDS format (enabled by default for BC6/7)\n\n"); return EXIT_FAILURE; } // Make sure input file exists. if (!nv::FileSystem::exists(input.str())) { fprintf(stderr, "The file '%s' does not exist.\n", input.str()); return 1; } // Set input options. nvtt::InputOptions inputOptions; bool useSurface = false; // @@ use Surface API in all cases! nvtt::Surface image; if (format == nvtt::Format_Unknown && nv::strCaseDiff(input.extension(), ".dds") == 0) { // Load surface. nv::DirectDrawSurface dds(input.str()); if (!dds.isValid()) { fprintf(stderr, "The file '%s' is not a valid DDS file.\n", input.str()); return EXIT_FAILURE; } if (!dds.isSupported()) { fprintf(stderr, "The file '%s' is not a supported DDS file.\n", input.str()); return EXIT_FAILURE; } //if format not specified, get from dds if (dds.isRGB()) format = nvtt::Format_RGB; else if (dds.isLuminance()) { luminance = true; format = nvtt::Format_RGB; } else { uint cc = dds.fourcc(); switch(cc) { case nv::FOURCC_DXT1: format = nvtt::Format_DXT1; break; case nv::FOURCC_DXT3: format = nvtt::Format_DXT3; break; case nv::FOURCC_DXT5: format = nvtt::Format_DXT5; break; case nv::FOURCC_RXGB: format = nvtt::Format_BC3n; break; case nv::FOURCC_ATI1: format = nvtt::Format_BC4; break; case nv::FOURCC_ATI2: format = nvtt::Format_BC5; break; } } alpha = dds.hasAlpha(); } if (format == nvtt::Format_BC3_RGBM || rgbm) { useSurface = true; if (!image.load(input.str())) { fprintf(stderr, "Error opening input file '%s'.\n", input.str()); return EXIT_FAILURE; } if (rangescale) { // get color range float min_color[3], max_color[3]; image.range(0, &min_color[0], &max_color[0]); image.range(1, &min_color[1], &max_color[1]); image.range(2, &min_color[2], &max_color[2]); //printf("Color range = %.2f %.2f %.2f\n", max_color[0], max_color[1], max_color[2]); float color_range = nv::max3(max_color[0], max_color[1], max_color[2]); const float max_color_range = 16.0f; if (color_range > max_color_range) { //Log::print("Clamping color range %f to %f\n", color_range, max_color_range); color_range = max_color_range; } //color_range = max_color_range; // Use a fixed color range for now. for (int i = 0; i < 3; i++) { image.scaleBias(i, 1.0f / color_range, 0.0f); } image.toneMap(nvtt::ToneMapper_Linear, /*parameters=*/NULL); // Clamp without changing the hue. // Clamp alpha. image.clamp(3); } if (alpha) { image.setAlphaMode(nvtt::AlphaMode_Transparency); } // To gamma. image.toGamma(2); if (format != nvtt::Format_BC3_RGBM) { image.setAlphaMode(nvtt::AlphaMode_None); image.toRGBM(1, 0.15f); } } else if (format == nvtt::Format_BC6) { //format = nvtt::Format_BC1; //fprintf(stderr, "BLABLABLA.\n"); useSurface = true; if (!image.load(input.str())) { fprintf(stderr, "Error opening input file '%s'.\n", input.str()); return EXIT_FAILURE; } image.setAlphaMode(nvtt::AlphaMode_Transparency); } else { if (nv::strCaseDiff(input.extension(), ".dds") == 0) { // Load surface. nv::DirectDrawSurface dds(input.str()); if (!dds.isValid()) { fprintf(stderr, "The file '%s' is not a valid DDS file.\n", input.str()); return EXIT_FAILURE; } if (!dds.isSupported()) { fprintf(stderr, "The file '%s' is not a supported DDS file.\n", input.str()); return EXIT_FAILURE; } uint faceCount; if (dds.isTexture2D()) { inputOptions.setTextureLayout(nvtt::TextureType_2D, dds.width(), dds.height()); faceCount = 1; } else if (dds.isTexture3D()) { inputOptions.setTextureLayout(nvtt::TextureType_3D, dds.width(), dds.height(), dds.depth()); faceCount = 1; nvDebugBreak(); } else if (dds.isTextureCube()) { inputOptions.setTextureLayout(nvtt::TextureType_Cube, dds.width(), dds.height()); faceCount = 6; } else { nvDebugCheck(dds.isTextureArray()); inputOptions.setTextureLayout(nvtt::TextureType_Array, dds.width(), dds.height(), 1, dds.arraySize()); faceCount = dds.arraySize(); dds10 = true; } uint mipmapCount = dds.mipmapCount(); nv::Image mipmap; for (uint f = 0; f < faceCount; f++) { for (uint m = 0; m < mipmapCount; m++) { dds.mipmap(&mipmap, f, m); // @@ Load as float. inputOptions.setMipmapData(mipmap.pixels(), mipmap.width(), mipmap.height(), mipmap.depth(), f, m); } } } else { if (nv::strCaseDiff(input.extension(), ".exr") == 0 || nv::strCaseDiff(input.extension(), ".hdr") == 0) { loadAsFloat = true; } if (loadAsFloat) { nv::AutoPtr<nv::FloatImage> image(nv::ImageIO::loadFloat(input.str())); if (image == NULL) { fprintf(stderr, "The file '%s' is not a supported image type.\n", input.str()); return EXIT_FAILURE; } inputOptions.setFormat(nvtt::InputFormat_RGBA_32F); inputOptions.setTextureLayout(nvtt::TextureType_2D, image->width(), image->height()); /*for (uint i = 0; i < image->componentNum(); i++) { inputOptions.setMipmapChannelData(image->channel(i), i, image->width(), image->height()); }*/ } else { // Regular image. nv::Image image; if (!image.load(input.str())) { fprintf(stderr, "The file '%s' is not a supported image type.\n", input.str()); return 1; } if(countEmptyRows) { //count empty rows & append to the file name const int w = image.width(); const int h = image.height(); int ytr = 0; //height of the transparent part if(image.format() == image.Format_ARGB) { for(int y=0; y<h; ++y) { for(int x=0; x<w; ++x) { if(image.pixel(x,y).a >= 128) { ytr = y; y = h; break; } } } } //change outfile output.stripExtension(); output.appendFormat(".%04i.dds", ytr); } if(fillHoles) { nv::FloatImage fimage(&image); // create feature mask nv::BitMap bmp(image.width(),image.height()); bmp.clearAll(); const int w=image.width(); const int h=image.height(); int ytr = h; //height of the transparent part for(int y=0; y<h; ++y) for(int x=0; x<w; ++x) if(fimage.pixel(3,x,y,0) >= 0.5f) { bmp.setBitAt(x,y); if(y < ytr) ytr = y; } // fill holes nv::fillVoronoi(&fimage,&bmp); // do blur passes for(int i=0; i<8; ++i) nv::fillBlur(&fimage,&bmp); nv::AutoPtr<nv::Image> img(fimage.createImage(0)); inputOptions.setTextureLayout(nvtt::TextureType_2D, img->width(), img->height()); inputOptions.setMipmapData(img->pixels(), img->width(), img->height()); } else { inputOptions.setTextureLayout(nvtt::TextureType_2D, image.width(), image.height()); inputOptions.setMipmapData(image.pixels(), image.width(), image.height()); } } } if (format == nvtt::Format_Unknown) format = nvtt::Format_BC1; if (wrapRepeat) { inputOptions.setWrapMode(nvtt::WrapMode_Repeat); } else { inputOptions.setWrapMode(nvtt::WrapMode_Clamp); } if (alpha) { inputOptions.setAlphaMode(nvtt::AlphaMode_Transparency); } else { inputOptions.setAlphaMode(nvtt::AlphaMode_None); } // Block compressed textures with mipmaps must be powers of two. if (!noMipmaps && format != nvtt::Format_RGB) { //inputOptions.setRoundMode(nvtt::RoundMode_ToPreviousPowerOfTwo); } if (linear) { setLinearMap(inputOptions); } else if (normal) { setNormalMap(inputOptions); } else if (color2normal) { setColorToNormalMap(inputOptions); } else { setColorMap(inputOptions); } if (noMipmaps) { inputOptions.setMipmapGeneration(false); } /*if (premultiplyAlpha) { inputOptions.setPremultiplyAlpha(true); inputOptions.setAlphaMode(nvtt::AlphaMode_Premultiplied); }*/ inputOptions.setMipmapFilter(mipmapFilter); } nvtt::CompressionOptions compressionOptions; compressionOptions.setFormat(format); //compressionOptions.setQuantization(/*color dithering*/true, /*alpha dithering*/false, /*binary alpha*/false); if (format == nvtt::Format_BC2) { // Dither alpha when using BC2. compressionOptions.setQuantization(/*color dithering*/false, /*alpha dithering*/true, /*binary alpha*/false); } else if (format == nvtt::Format_BC1a) { // Binary alpha when using BC1a. compressionOptions.setQuantization(/*color dithering*/false, /*alpha dithering*/true, /*binary alpha*/true, 127); } else if (format == nvtt::Format_RGBA) { if (luminance) { compressionOptions.setPixelFormat(8, 0xff, 0, 0, 0); } else { // @@ Edit this to choose the desired pixel format: // compressionOptions.setPixelType(nvtt::PixelType_Float); // compressionOptions.setPixelFormat(16, 16, 16, 16); // compressionOptions.setPixelType(nvtt::PixelType_UnsignedNorm); // compressionOptions.setPixelFormat(16, 0, 0, 0); //compressionOptions.setQuantization(/*color dithering*/true, /*alpha dithering*/false, /*binary alpha*/false); //compressionOptions.setPixelType(nvtt::PixelType_UnsignedNorm); //compressionOptions.setPixelFormat(5, 6, 5, 0); //compressionOptions.setPixelFormat(8, 8, 8, 8); // A4R4G4B4 //compressionOptions.setPixelFormat(16, 0xF00, 0xF0, 0xF, 0xF000); //compressionOptions.setPixelFormat(32, 0xFF0000, 0xFF00, 0xFF, 0xFF000000); // R10B20G10A2 //compressionOptions.setPixelFormat(10, 10, 10, 2); // DXGI_FORMAT_R11G11B10_FLOAT //compressionOptions.setPixelType(nvtt::PixelType_Float); //compressionOptions.setPixelFormat(11, 11, 10, 0); } } else if (format == nvtt::Format_BC6) { compressionOptions.setPixelType(nvtt::PixelType_UnsignedFloat); } if (fast) { compressionOptions.setQuality(nvtt::Quality_Fastest); } else { compressionOptions.setQuality(nvtt::Quality_Normal); //compressionOptions.setQuality(nvtt::Quality_Production); //compressionOptions.setQuality(nvtt::Quality_Highest); } if (bc1n) { compressionOptions.setColorWeights(1, 1, 0); } //compressionOptions.setColorWeights(0.2126, 0.7152, 0.0722); //compressionOptions.setColorWeights(0.299, 0.587, 0.114); //compressionOptions.setColorWeights(3, 4, 2); if (externalCompressor != NULL) { compressionOptions.setExternalCompressor(externalCompressor); } MyErrorHandler errorHandler; MyOutputHandler outputHandler(output.str()); if (outputHandler.stream->isError()) { fprintf(stderr, "Error opening '%s' for writting\n", output.str()); return EXIT_FAILURE; } nvtt::Context context; context.enableCudaAcceleration(!nocuda); if (!silent) { printf("CUDA acceleration "); if (context.isCudaAccelerationEnabled()) { printf("ENABLED\n\n"); } else { printf("DISABLED\n\n"); } } int outputSize = 0; if (useSurface) { outputSize = context.estimateSize(image, 1, compressionOptions); } else { outputSize = context.estimateSize(inputOptions, compressionOptions); } outputHandler.setTotal(outputSize); outputHandler.setDisplayProgress(!silent); nvtt::OutputOptions outputOptions; //outputOptions.setFileName(output); outputOptions.setOutputHandler(&outputHandler); outputOptions.setErrorHandler(&errorHandler); // Automatically use dds10 if compressing to BC6 or BC7 if (format == nvtt::Format_BC6 || format == nvtt::Format_BC7) { dds10 = true; } if (dds10) { outputOptions.setContainer(nvtt::Container_DDS10); } // printf("Press ENTER.\n"); // fflush(stdout); // getchar(); nv::Timer timer; timer.start(); if (useSurface) { if (!context.outputHeader(image, 1, compressionOptions, outputOptions)) { fprintf(stderr, "Error writing file header.\n"); return EXIT_FAILURE; } if (!context.compress(image, 0, 0, compressionOptions, outputOptions)) { fprintf(stderr, "Error compressing file.\n"); return EXIT_FAILURE; } } else { if (!context.process(inputOptions, compressionOptions, outputOptions)) { return EXIT_FAILURE; } } timer.stop(); if (!silent) { printf("\rtime taken: %.3f seconds\n", timer.elapsed()); } return EXIT_SUCCESS; }
virtual void error(nvtt::Error e) { nvDebugBreak(); }