1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
|
// File: crunch.cpp - Command line tool for DDS/CRN texture compression/decompression.
// This tool exposes all of crnlib's functionality. It also uses a bunch of internal crlib
// classes that aren't directly exposed in the main crnlib.h header. The actual tool is
// implemented as a single class "crunch" which in theory is reusable. Most of the heavy
// lifting is actually done by functions in the crnlib::texture_conversion namespace,
// which are mostly wrappers over the public crnlib.h functions.
// See Copyright Notice and license at the end of inc/crnlib.h
//
// Important: If compiling with gcc, be sure strict aliasing is disabled: -fno-strict-aliasing
#include "crn_core.h"
#include "crn_console.h"
#include "crn_colorized_console.h"
#include "crn_find_files.h"
#include "crn_file_utils.h"
#include "crn_command_line_params.h"
#include "crn_dxt.h"
#include "crn_cfile_stream.h"
#include "crn_texture_conversion.h"
#include "crn_defs.h"
#include "corpus_gen.h"
#include "corpus_test.h"
using namespace crnlib;
const int cDefaultCRNQualityLevel = 128;
class crunch {
CRNLIB_NO_COPY_OR_ASSIGNMENT_OP(crunch);
cfile_stream m_log_stream;
uint32 m_num_processed;
uint32 m_num_failed;
uint32 m_num_succeeded;
uint32 m_num_skipped;
public:
crunch()
: m_num_processed(0),
m_num_failed(0),
m_num_succeeded(0),
m_num_skipped(0) {
}
~crunch() {
}
enum convert_status {
cCSFailed,
cCSSucceeded,
cCSSkipped,
cCSBadParam,
};
inline uint32 get_num_processed() const { return m_num_processed; }
inline uint32 get_num_failed() const { return m_num_failed; }
inline uint32 get_num_succeeded() const { return m_num_succeeded; }
inline uint32 get_num_skipped() const { return m_num_skipped; }
static void print_usage() {
// -------------------------------------------------------------------------------
console::message("\nCommand line usage:");
console::printf("crunch [options] -file filename");
console::printf("-file filename - Required input filename, wildcards, multiple -file params OK.");
console::printf("-file @list.txt - List of files to convert.");
console::printf("Supported source file formats: dds,ktx,crn,tga,bmp,png,jpg/jpeg,psd");
console::printf("Note: Some file format variants are unsupported.");
console::printf("See the docs for stb_image.h: https://github.com/nothings/stb");
console::printf("Progressive JPEG files are supported, see: http://code.google.com/p/jpeg-compressor/");
console::printf("\n-h - Print this help.");
console::message("\nPath/file related parameters:");
console::printf("-out filename - Output filename");
console::printf("-outdir dir - Output directory");
console::printf("-outsamedir - Write output file to input directory");
console::printf("-deep - Recurse subdirectories, default=false");
console::printf("-nooverwrite - Don't overwrite existing files");
console::printf("-timestamp - Update only changed files");
console::printf("-forcewrite - Overwrite read-only files");
console::printf("-recreate - Recreate directory structure");
console::printf("-fileformat [dds,ktx,crn,tga,bmp,png] - Output file format, default=crn or dds");
console::message("\nModes:");
console::printf("-compare - Compare input and output files (no output files are written).");
console::printf("-info - Only display input file statistics (no output files are written).");
console::message("\nMisc. options:");
console::printf("-helperThreads # - Set number of helper threads, 0-%d, default=(# of CPU's)-1", cCRNMaxHelperThreads);
console::printf("-noTitle - Disable title output at run time");
console::printf("-noprogress - Disable progress output");
console::printf("-quiet - Disable all console output");
console::printf("-ignoreerrors - Continue processing files after errors. Note: The default");
console::printf(" behavior is to immediately exit whenever an error occurs.");
console::printf("-logfile filename - Append output to log file");
console::printf("-pause - Wait for keypress on error");
console::printf("-window <left> <top> <right> <bottom> - Crop window before processing");
console::printf("-clamp <width> <height> - Crop image if larger than width/height");
console::printf("-clampscale <width> <height> - Scale image if larger than width/height");
console::printf("-nostats - Disable all output file statistics (faster)");
console::printf("-imagestats - Print various image quality statistics");
console::printf("-mipstats - Print statistics for each mipmap, not just the top mip");
console::printf("-lzmastats - Print size of output file compressed with LZMA codec");
console::printf("-split - Write faces/mip levels to multiple separate output PNG files");
console::printf("-yflip - Always flip texture on Y axis before processing");
console::printf("-unflip - Unflip texture if read from source file as flipped");
console::message("\nImage rescaling (mutually exclusive options)");
console::printf("-rescale <int> <int> - Rescale image to specified resolution");
console::printf("-relscale <float> <float> - Rescale image to specified relative resolution");
console::printf("-rescalemode <nearest | hi | lo> - Auto-rescale non-power of two images");
console::printf(" nearest - Use nearest power of 2, hi - Use next, lo - Use previous");
console::message("\nDDS/CRN compression quality control:");
console::printf("-quality # (or /q #) - Set Clustered DDS/CRN quality factor [0-255] 255=best");
console::printf(" DDS default quality is best possible.");
console::printf(" CRN default quality is %u.", cDefaultCRNQualityLevel);
console::printf("-bitrate # - Set the desired output bitrate of DDS or CRN output files.");
console::printf(" This option causes crunch to find the quality factor");
console::printf(" closest to the desired bitrate using a binary search.");
console::message("\nLow-level CRN specific options:");
console::printf("-c # - Color endpoint palette size, 32-8192, default=3072");
console::printf("-s # - Color selector palette size, 32-8192, default=3072");
console::printf("-ca # - Alpha endpoint palette size, 32-8192, default=3072");
console::printf("-sa # - Alpha selector palette size, 32-8192, default=3072");
// -------------------------------------------------------------------------------
console::message("\nMipmap filtering options:");
console::printf("-mipMode [UseSourceOrGenerate,UseSource,Generate,None]");
console::printf(" Default mipMode is UseSourceOrGenerate");
console::printf(" UseSourceOrGenerate: Use source mipmaps if possible, or create new mipmaps.");
console::printf(" UseSource: Always use source mipmaps, if any (never generate new mipmaps)");
console::printf(" Generate: Always generate a new mipmap chain (ignore source mipmaps)");
console::printf(" None: Do not output any mipmaps");
console::printf("-mipFilter [box,tent,lanczos4,mitchell,kaiser], default=kaiser");
console::printf("-gamma # - Mipmap gamma correction value, default=2.2, use 1.0 for linear");
console::printf("-blurriness # - Scale filter kernel, >1=blur, <1=sharpen, .01-8, default=.9");
console::printf("-wrap - Assume texture is tiled when filtering, default=clamping");
console::printf("-renormalize - Renormalize filtered normal map texels, default=disabled");
console::printf("-rtopmip - Renormalize on the top mip-level too, default=disabled");
console::printf("-maxmips # - Limit number of generated texture mipmap levels, 1-16, default=16");
console::printf("-minmipsize # - Smallest allowable mipmap resolution, default=1");
console::message("\nCompression options:");
console::printf("-alphaThreshold # - Set DXT1A alpha threshold, 0-255, default=128");
console::printf(" Note: -alphaThreshold also changes the compressor's behavior to");
console::printf(" prefer DXT1A over DXT5 for images with alpha channels (.DDS only).");
console::printf("-uniformMetrics - Use uniform color metrics, default=use perceptual metrics");
console::printf("-noAdaptiveBlocks - Disable adaptive block sizes (i.e. disable macroblocks).");
console::printf("-noNormalDetection - Disable normal map detection, default=disabled");
#ifdef CRNLIB_SUPPORT_ATI_COMPRESS
console::printf("-compressor [CRN,CRNF,RYG,ATI] - Set DXTn compressor, default=CRN");
#else
console::printf("-compressor [CRN,CRNF,RYG] - Set DXTn compressor, default=CRN");
#endif
console::printf("-dxtQuality [superfast,fast,normal,better,uber] - Endpoint optimizer speed.");
console::printf(" Sets endpoint optimizer's max iteration depth. Default=uber.");
console::printf("-noendpointcaching - Don't try reusing previous DXT endpoint solutions.");
console::printf("-grayscalesampling - Assume shader will convert fetched results to luma (Y).");
console::printf("-forceprimaryencoding - Only use DXT1 color4 and DXT5 alpha8 block encodings.");
console::printf("-usetransparentindicesforblack - Try DXT1 transparent indices for dark pixels.");
console::message("\nOutput pixel format options:");
console::printf("-usesourceformat - Use input file's format for output format (when possible).");
console::message("\nAll supported texture formats (Note: .CRN only supports DXTn pixel formats):");
for (uint32 i = 0; i < pixel_format_helpers::get_num_formats(); i++) {
pixel_format fmt = pixel_format_helpers::get_pixel_format_by_index(i);
console::printf("-%s", pixel_format_helpers::get_pixel_format_string(fmt));
}
}
bool convert(const char* pCommand_line) {
m_num_processed = 0;
m_num_failed = 0;
m_num_succeeded = 0;
m_num_skipped = 0;
command_line_params::param_desc std_params[] =
{
{"h", 0, false},
{"file", 1, true},
{"out", 1, false},
{"outdir", 1, false},
{"outsamedir", 0, false},
{"deep", 0, false},
{"fileformat", 1, false},
{"helperThreads", 1, false},
{"noTitle", 0, false},
{"noprogress", 0, false},
{"quiet", 0, false},
{"ignoreerrors", 0, false},
{"logfile", 1, false},
{"q", 1, false},
{"quality", 1, false},
{"c", 1, false},
{"s", 1, false},
{"ca", 1, false},
{"sa", 1, false},
{"mipMode", 1, false},
{"mipFilter", 1, false},
{"gamma", 1, false},
{"blurriness", 1, false},
{"wrap", 0, false},
{"renormalize", 0, false},
{"rtopmip", 0, false },
{"paramdebug", 0, false},
{"debug", 0, false},
{"quick", 0, false},
{"imagestats", 0, false},
{"nostats", 0, false},
{"mipstats", 0, false},
{"alphaThreshold", 1, false},
{"uniformMetrics", 0, false},
{"noAdaptiveBlocks", 0, false},
{"noNormalDetection", 0, false},
{"compressor", 1, false},
{"dxtQuality", 1, false},
{"noendpointcaching", 0, false},
{"grayscalesampling", 0, false},
{"converttoluma", 0, false},
{"setalphatoluma", 0, false},
{"pause", 0, false},
{"timestamp", 0, false},
{"nooverwrite", 0, false},
{"forcewrite", 0, false},
{"recreate", 0, false},
{"compare", 0, false},
{"info", 0, false},
{"forceprimaryencoding", 0, false},
{"usetransparentindicesforblack", 0, false},
{"usesourceformat", 0, false},
{"rescalemode", 1, false},
{"rescale", 2, false},
{"relrescale", 2, false},
{"clamp", 2, false},
{"clampScale", 2, false},
{"window", 4, false},
{"maxmips", 1, false},
{"minmipsize", 1, false},
{"bitrate", 1, false},
{"lzmastats", 0, false},
{"split", 0, false},
{"csvfile", 1, false},
{"yflip", 0, false},
{"unflip", 0, false},
};
crnlib::vector<command_line_params::param_desc> params;
params.append(std_params, sizeof(std_params) / sizeof(std_params[0]));
for (uint32 i = 0; i < pixel_format_helpers::get_num_formats(); i++) {
pixel_format fmt = pixel_format_helpers::get_pixel_format_by_index(i);
command_line_params::param_desc desc;
desc.m_pName = pixel_format_helpers::get_pixel_format_string(fmt);
desc.m_num_values = 0;
desc.m_support_listing_file = false;
params.push_back(desc);
}
if (!m_params.parse(pCommand_line, params.size(), params.get_ptr(), true)) {
return false;
}
if (!m_params.get_num_params()) {
console::error("No command line parameters specified!");
print_usage();
return false;
}
#if 0
if (m_params.get_count(""))
{
console::error("Unrecognized command line parameter: \"%s\"", m_params.get_value_as_string_or_empty("", 0).get_ptr());
return false;
}
#endif
if (m_params.get_value_as_bool("h")) {
print_usage();
return true;
}
if (m_params.get_value_as_bool("debug")) {
console::debug("Command line parameters:");
for (command_line_params::param_map_const_iterator it = m_params.begin(); it != m_params.end(); ++it) {
console::disable_crlf();
console::debug("Key:\"%s\" Values (%u): ", it->first.get_ptr(), it->second.m_values.size());
for (uint32 i = 0; i < it->second.m_values.size(); i++)
console::debug("\"%s\" ", it->second.m_values[i].get_ptr());
console::debug("\n");
console::enable_crlf();
}
}
dynamic_string log_filename;
if (m_params.get_value_as_string("logfile", 0, log_filename)) {
if (!m_log_stream.open(log_filename.get_ptr(), cDataStreamWritable | cDataStreamSeekable, true)) {
console::error("Unable to open log file: \"%s\"", log_filename.get_ptr());
return false;
}
console::printf("Appending output to log file \"%s\"", log_filename.get_ptr());
console::set_log_stream(&m_log_stream);
}
bool status = convert();
if (m_log_stream.is_opened()) {
console::set_log_stream(NULL);
m_log_stream.close();
}
return status;
}
private:
command_line_params m_params;
bool convert() {
find_files::file_desc_vec files;
uint32 total_input_specs = 0;
for (uint32 phase = 0; phase < 2; phase++) {
command_line_params::param_map_const_iterator begin, end;
m_params.find(phase ? "" : "file", begin, end);
for (command_line_params::param_map_const_iterator it = begin; it != end; ++it) {
total_input_specs++;
const dynamic_string_array& strings = it->second.m_values;
for (uint32 i = 0; i < strings.size(); i++) {
if (!process_input_spec(files, strings[i])) {
if (!m_params.get_value_as_bool("ignoreerrors"))
return false;
}
}
}
}
if (!total_input_specs) {
console::error("No input files specified!");
return false;
}
if (files.empty()) {
console::error("No files found to process!");
return false;
}
std::sort(files.begin(), files.end());
files.resize((uint32)(std::unique(files.begin(), files.end()) - files.begin()));
timer tm;
tm.start();
if (!process_files(files)) {
if (!m_params.get_value_as_bool("ignoreerrors"))
return false;
}
double total_time = tm.get_elapsed_secs();
console::printf("Total time: %3.3fs", total_time);
console::printf(
((m_num_skipped) || (m_num_failed)) ? cWarningConsoleMessage : cInfoConsoleMessage,
"%u total file(s) successfully processed, %u file(s) skipped, %u file(s) failed.", m_num_succeeded, m_num_skipped, m_num_failed);
return true;
}
bool process_input_spec(find_files::file_desc_vec& files, const dynamic_string& input_spec) {
dynamic_string find_name(input_spec);
if ((find_name.get_len()) && (file_utils::does_dir_exist(find_name.get_ptr()))) {
file_utils::combine_path(find_name, find_name.get_ptr(), "*");
}
if ((find_name.is_empty()) || (!file_utils::full_path(find_name))) {
console::error("Invalid input filename: %s", find_name.get_ptr());
return false;
}
const bool deep_flag = m_params.get_value_as_bool("deep");
dynamic_string find_drive, find_path, find_fname, find_ext;
file_utils::split_path(find_name.get_ptr(), &find_drive, &find_path, &find_fname, &find_ext);
dynamic_string find_pathname;
file_utils::combine_path(find_pathname, find_drive.get_ptr(), find_path.get_ptr());
dynamic_string find_filename;
find_filename = find_fname + find_ext;
find_files file_finder;
bool success = file_finder.find(find_pathname.get_ptr(), find_filename.get_ptr(), find_files::cFlagAllowFiles | (deep_flag ? find_files::cFlagRecursive : 0));
if (!success) {
console::error("Failed finding files: %s", find_name.get_ptr());
return false;
}
if (file_finder.get_files().empty()) {
console::warning("No files found: %s", find_name.get_ptr());
return true;
}
files.append(file_finder.get_files());
return true;
}
bool read_only_file_check(const char* pDst_filename) {
if (!file_utils::is_read_only(pDst_filename))
return true;
if (m_params.get_value_as_bool("forcewrite")) {
if (file_utils::disable_read_only(pDst_filename)) {
console::warning("Setting read-only file \"%s\" to writable", pDst_filename);
return true;
} else {
console::error("Failed setting read-only file \"%s\" to writable!", pDst_filename);
return false;
}
}
console::error("Output file \"%s\" is read-only!", pDst_filename);
return false;
}
bool process_files(find_files::file_desc_vec& files) {
const bool compare_mode = m_params.get_value_as_bool("compare");
const bool info_mode = m_params.get_value_as_bool("info");
for (uint32 file_index = 0; file_index < files.size(); file_index++) {
const find_files::file_desc& file_desc = files[file_index];
const dynamic_string& in_filename = file_desc.m_fullname;
dynamic_string in_drive, in_path, in_fname, in_ext;
file_utils::split_path(in_filename.get_ptr(), &in_drive, &in_path, &in_fname, &in_ext);
texture_file_types::format out_file_type = texture_file_types::cFormatCRN;
dynamic_string fmt;
if (m_params.get_value_as_string("fileformat", 0, fmt)) {
if (fmt == "tga")
out_file_type = texture_file_types::cFormatTGA;
else if (fmt == "bmp")
out_file_type = texture_file_types::cFormatBMP;
else if (fmt == "dds")
out_file_type = texture_file_types::cFormatDDS;
else if (fmt == "ktx")
out_file_type = texture_file_types::cFormatKTX;
else if (fmt == "crn")
out_file_type = texture_file_types::cFormatCRN;
else if (fmt == "png")
out_file_type = texture_file_types::cFormatPNG;
else {
console::error("Unsupported output file type: %s", fmt.get_ptr());
return false;
}
}
// No explicit output format has been specified - try to determine something doable.
if (!m_params.has_key("fileformat")) {
if (m_params.has_key("split")) {
out_file_type = texture_file_types::cFormatPNG;
} else {
texture_file_types::format input_file_type = texture_file_types::determine_file_format(in_filename.get_ptr());
if (input_file_type == texture_file_types::cFormatCRN) {
out_file_type = texture_file_types::cFormatDDS;
cfile_stream in_stream;
crnd::crn_header in_header;
if (in_stream.open(in_filename.get_ptr()) && in_stream.read(&in_header, sizeof(in_header)) == sizeof(in_header) &&
(in_header.m_format == cCRNFmtETC1 || in_header.m_format == cCRNFmtETC2 || in_header.m_format == cCRNFmtETC2A || in_header.m_format == cCRNFmtETC1S || in_header.m_format == cCRNFmtETC2AS))
out_file_type = texture_file_types::cFormatKTX;
} else if (input_file_type == texture_file_types::cFormatKTX) {
// Default to converting KTX files to PNG
out_file_type = texture_file_types::cFormatPNG;
}
}
}
dynamic_string out_filename;
if (m_params.get_value_as_bool("outsamedir"))
out_filename.format("%s%s%s.%s", in_drive.get_ptr(), in_path.get_ptr(), in_fname.get_ptr(), texture_file_types::get_extension(out_file_type));
else if (m_params.has_key("out")) {
out_filename = m_params.get_value_as_string_or_empty("out");
if (files.size() > 1) {
dynamic_string out_drive, out_dir, out_name, out_ext;
file_utils::split_path(out_filename.get_ptr(), &out_drive, &out_dir, &out_name, &out_ext);
out_name.format("%s_%u", out_name.get_ptr(), file_index);
out_filename.format("%s%s%s%s", out_drive.get_ptr(), out_dir.get_ptr(), out_name.get_ptr(), out_ext.get_ptr());
}
if (!m_params.has_key("fileformat"))
out_file_type = texture_file_types::determine_file_format(out_filename.get_ptr());
} else {
dynamic_string out_dir(m_params.get_value_as_string_or_empty("outdir"));
if (m_params.get_value_as_bool("recreate") && file_desc.m_rel.get_len()) {
file_utils::combine_path(out_dir, out_dir.get_ptr(), file_desc.m_rel.get_ptr());
}
if (out_dir.get_len()) {
if (file_utils::is_path_separator(out_dir.back()))
out_filename.format("%s%s.%s", out_dir.get_ptr(), in_fname.get_ptr(), texture_file_types::get_extension(out_file_type));
else
out_filename.format("%s\\%s.%s", out_dir.get_ptr(), in_fname.get_ptr(), texture_file_types::get_extension(out_file_type));
} else {
out_filename.format("%s.%s", in_fname.get_ptr(), texture_file_types::get_extension(out_file_type));
}
if (m_params.get_value_as_bool("recreate")) {
if (file_utils::full_path(out_filename)) {
if ((!compare_mode) && (!info_mode)) {
dynamic_string out_drive, out_path;
file_utils::split_path(out_filename.get_ptr(), &out_drive, &out_path, NULL, NULL);
out_drive += out_path;
file_utils::create_path(out_drive.get_ptr());
}
}
}
}
if ((!compare_mode) && (!info_mode)) {
if (file_utils::does_file_exist(out_filename.get_ptr())) {
if (m_params.get_value_as_bool("nooverwrite")) {
console::warning("Skipping already existing file: %s\n", out_filename.get_ptr());
m_num_skipped++;
continue;
}
if (m_params.get_value_as_bool("timestamp")) {
if (file_utils::is_older_than(in_filename.get_ptr(), out_filename.get_ptr())) {
console::warning("Skipping up to date file: %s\n", out_filename.get_ptr());
m_num_skipped++;
continue;
}
}
}
}
convert_status status = cCSFailed;
if (info_mode)
status = display_file_info(file_index, files.size(), in_filename.get_ptr());
else if (compare_mode)
status = compare_file(file_index, files.size(), in_filename.get_ptr(), out_filename.get_ptr(), out_file_type);
else if (read_only_file_check(out_filename.get_ptr()))
status = convert_file(file_index, files.size(), in_filename.get_ptr(), out_filename.get_ptr(), out_file_type);
m_num_processed++;
switch (status) {
case cCSSucceeded: {
console::info("");
m_num_succeeded++;
break;
}
case cCSSkipped: {
console::info("Skipping file.\n");
m_num_skipped++;
break;
}
case cCSBadParam: {
return false;
}
default: {
if (!m_params.get_value_as_bool("ignoreerrors"))
return false;
console::info("");
m_num_failed++;
break;
}
}
}
return true;
}
void print_texture_info(const char* pTex_desc, texture_conversion::convert_params& params, mipmapped_texture& tex) {
console::info("%s: %ux%u, Levels: %u, Faces: %u, Format: %s",
pTex_desc,
tex.get_width(),
tex.get_height(),
tex.get_num_levels(),
tex.get_num_faces(),
pixel_format_helpers::get_pixel_format_string(tex.get_format()));
console::disable_crlf();
console::info("Apparent type: %s, ", get_texture_type_desc(params.m_texture_type));
console::info("Flags: ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagRValid)
console::info("R ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagGValid)
console::info("G ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagBValid)
console::info("B ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagAValid)
console::info("A ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagGrayscale)
console::info("Grayscale ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagNormalMap)
console::info("NormalMap ");
if (tex.get_comp_flags() & pixel_format_helpers::cCompFlagLumaChroma)
console::info("LumaChroma ");
if (tex.is_flipped())
console::info("Flipped ");
else
console::info("Non-Flipped ");
console::info("\n");
console::enable_crlf();
}
static bool progress_callback_func(uint32 percentage_complete, void* /* pUser_data_ptr */) {
console::disable_crlf();
char buf[8];
for (uint32 i = 0; i < 7; i++)
buf[i] = 8;
buf[7] = '\0';
for (uint32 i = 0; i < 130 / 8; i++)
console::progress(buf);
console::progress("Processing: %u%%", percentage_complete);
for (uint32 i = 0; i < 7; i++)
buf[i] = ' ';
console::progress(buf);
console::progress(buf);
for (uint32 i = 0; i < 7; i++)
buf[i] = 8;
console::progress(buf);
console::progress(buf);
console::enable_crlf();
return true;
}
bool parse_mipmap_params(crn_mipmap_params& mip_params) {
dynamic_string val;
if (m_params.get_value_as_string("mipMode", 0, val)) {
uint32 i;
for (i = 0; i < cCRNMipModeTotal; i++) {
if (val == crn_get_mip_mode_name(static_cast<crn_mip_mode>(i))) {
mip_params.m_mode = static_cast<crn_mip_mode>(i);
break;
}
}
if (i == cCRNMipModeTotal) {
console::error("Invalid MipMode: \"%s\"", val.get_ptr());
return false;
}
}
if (m_params.get_value_as_string("mipFilter", 0, val)) {
uint32 i;
for (i = 0; i < cCRNMipFilterTotal; i++) {
if (val == dynamic_string(crn_get_mip_filter_name(static_cast<crn_mip_filter>(i)))) {
mip_params.m_filter = static_cast<crn_mip_filter>(i);
break;
}
}
if (i == cCRNMipFilterTotal) {
console::error("Invalid MipFilter: \"%s\"", val.get_ptr());
return false;
}
if (i == cCRNMipFilterBox)
mip_params.m_blurriness = 1.0f;
}
mip_params.m_gamma = m_params.get_value_as_float("gamma", 0, mip_params.m_gamma, .1f, 8.0f);
mip_params.m_gamma_filtering = (mip_params.m_gamma != 1.0f);
mip_params.m_blurriness = m_params.get_value_as_float("blurriness", 0, mip_params.m_blurriness, .01f, 8.0f);
mip_params.m_renormalize = m_params.get_value_as_bool("renormalize", 0, mip_params.m_renormalize != 0);
mip_params.m_rtopmip = m_params.get_value_as_bool("rtopmip", 0, mip_params.m_rtopmip != 0);
mip_params.m_tiled = m_params.get_value_as_bool("wrap");
mip_params.m_max_levels = m_params.get_value_as_int("maxmips", 0, cCRNMaxLevels, 1, cCRNMaxLevels);
mip_params.m_min_mip_size = m_params.get_value_as_int("minmipsize", 0, 1, 1, cCRNMaxLevelResolution);
return true;
}
bool parse_scale_params(crn_mipmap_params& mipmap_params) {
if (m_params.has_key("rescale")) {
int w = m_params.get_value_as_int("rescale", 0, -1, 1, cCRNMaxLevelResolution, 0);
int h = m_params.get_value_as_int("rescale", 0, -1, 1, cCRNMaxLevelResolution, 1);
mipmap_params.m_scale_mode = cCRNSMAbsolute;
mipmap_params.m_scale_x = (float)w;
mipmap_params.m_scale_y = (float)h;
} else if (m_params.has_key("relrescale")) {
float w = m_params.get_value_as_float("relrescale", 0, 1, 1, 256, 0);
float h = m_params.get_value_as_float("relrescale", 0, 1, 1, 256, 1);
mipmap_params.m_scale_mode = cCRNSMRelative;
mipmap_params.m_scale_x = w;
mipmap_params.m_scale_y = h;
} else if (m_params.has_key("rescalemode")) {
// nearest | hi | lo
dynamic_string mode_str(m_params.get_value_as_string_or_empty("rescalemode"));
if (mode_str == "nearest")
mipmap_params.m_scale_mode = cCRNSMNearestPow2;
else if (mode_str == "hi")
mipmap_params.m_scale_mode = cCRNSMNextPow2;
else if (mode_str == "lo")
mipmap_params.m_scale_mode = cCRNSMLowerPow2;
else {
console::error("Invalid rescale mode: \"%s\"", mode_str.get_ptr());
return false;
}
}
if (m_params.has_key("clamp")) {
uint32 w = m_params.get_value_as_int("clamp", 0, 1, 1, cCRNMaxLevelResolution, 0);
uint32 h = m_params.get_value_as_int("clamp", 0, 1, 1, cCRNMaxLevelResolution, 1);
mipmap_params.m_clamp_scale = false;
mipmap_params.m_clamp_width = w;
mipmap_params.m_clamp_height = h;
} else if (m_params.has_key("clampScale")) {
uint32 w = m_params.get_value_as_int("clampscale", 0, 1, 1, cCRNMaxLevelResolution, 0);
uint32 h = m_params.get_value_as_int("clampscale", 0, 1, 1, cCRNMaxLevelResolution, 1);
mipmap_params.m_clamp_scale = true;
mipmap_params.m_clamp_width = w;
mipmap_params.m_clamp_height = h;
}
if (m_params.has_key("window")) {
uint32 xl = m_params.get_value_as_int("window", 0, 0, 0, cCRNMaxLevelResolution, 0);
uint32 yl = m_params.get_value_as_int("window", 0, 0, 0, cCRNMaxLevelResolution, 1);
uint32 xh = m_params.get_value_as_int("window", 0, 0, 0, cCRNMaxLevelResolution, 2);
uint32 yh = m_params.get_value_as_int("window", 0, 0, 0, cCRNMaxLevelResolution, 3);
mipmap_params.m_window_left = math::minimum(xl, xh);
mipmap_params.m_window_top = math::minimum(yl, yh);
mipmap_params.m_window_right = math::maximum(xl, xh);
mipmap_params.m_window_bottom = math::maximum(yl, yh);
}
return true;
}
bool parse_comp_params(texture_file_types::format dst_file_format, crn_comp_params& comp_params) {
if (dst_file_format == texture_file_types::cFormatCRN)
comp_params.m_quality_level = cDefaultCRNQualityLevel;
if (m_params.has_key("q") || m_params.has_key("quality")) {
const char* pKeyName = m_params.has_key("q") ? "q" : "quality";
if ((dst_file_format == texture_file_types::cFormatDDS) || (dst_file_format == texture_file_types::cFormatCRN) || (dst_file_format == texture_file_types::cFormatKTX)) {
uint32 i = m_params.get_value_as_int(pKeyName, 0, cDefaultCRNQualityLevel, 0, cCRNMaxQualityLevel);
comp_params.m_quality_level = i;
} else {
console::error("/quality or /q option is only invalid when writing DDS, KTX or CRN files!");
return false;
}
} else {
float desired_bitrate = m_params.get_value_as_float("bitrate", 0, 0.0f, .1f, 30.0f);
if (desired_bitrate > 0.0f) {
comp_params.m_target_bitrate = desired_bitrate;
}
}
int color_endpoints = m_params.get_value_as_int("c", 0, 0, cCRNMinPaletteSize, cCRNMaxPaletteSize);
int color_selectors = m_params.get_value_as_int("s", 0, 0, cCRNMinPaletteSize, cCRNMaxPaletteSize);
int alpha_endpoints = m_params.get_value_as_int("ca", 0, 0, cCRNMinPaletteSize, cCRNMaxPaletteSize);
int alpha_selectors = m_params.get_value_as_int("sa", 0, 0, cCRNMinPaletteSize, cCRNMaxPaletteSize);
if (((color_endpoints > 0) && (color_selectors > 0)) ||
((alpha_endpoints > 0) && (alpha_selectors > 0))) {
comp_params.set_flag(cCRNCompFlagManualPaletteSizes, true);
comp_params.m_crn_color_endpoint_palette_size = color_endpoints;
comp_params.m_crn_color_selector_palette_size = color_selectors;
comp_params.m_crn_alpha_endpoint_palette_size = alpha_endpoints;
comp_params.m_crn_alpha_selector_palette_size = alpha_selectors;
}
if (m_params.has_key("alphaThreshold")) {
int dxt1a_alpha_threshold = m_params.get_value_as_int("alphaThreshold", 0, 128, 0, 255);
comp_params.m_dxt1a_alpha_threshold = dxt1a_alpha_threshold;
if (dxt1a_alpha_threshold > 0) {
comp_params.set_flag(cCRNCompFlagDXT1AForTransparency, true);
}
}
comp_params.set_flag(cCRNCompFlagPerceptual, !m_params.get_value_as_bool("uniformMetrics"));
comp_params.set_flag(cCRNCompFlagHierarchical, !m_params.get_value_as_bool("noAdaptiveBlocks"));
if (m_params.has_key("helperThreads"))
comp_params.m_num_helper_threads = m_params.get_value_as_int("helperThreads", 0, cCRNMaxHelperThreads, 0, cCRNMaxHelperThreads);
else if (g_number_of_processors > 1)
comp_params.m_num_helper_threads = g_number_of_processors - 1;
dynamic_string comp_name;
if (m_params.get_value_as_string("compressor", 0, comp_name)) {
uint32 i;
for (i = 0; i < cCRNTotalDXTCompressors; i++) {
if (comp_name == get_dxt_compressor_name(static_cast<crn_dxt_compressor_type>(i))) {
comp_params.m_dxt_compressor_type = static_cast<crn_dxt_compressor_type>(i);
break;
}
}
if (i == cCRNTotalDXTCompressors) {
console::error("Invalid compressor: \"%s\"", comp_name.get_ptr());
return false;
}
}
dynamic_string dxt_quality_str;
if (m_params.get_value_as_string("dxtquality", 0, dxt_quality_str)) {
uint32 i;
for (i = 0; i < cCRNDXTQualityTotal; i++) {
if (dxt_quality_str == crn_get_dxt_quality_string(static_cast<crn_dxt_quality>(i))) {
comp_params.m_dxt_quality = static_cast<crn_dxt_quality>(i);
break;
}
}
if (i == cCRNDXTQualityTotal) {
console::error("Invalid DXT quality: \"%s\"", dxt_quality_str.get_ptr());
return false;
}
} else {
comp_params.m_dxt_quality = cCRNDXTQualityUber;
}
comp_params.set_flag(cCRNCompFlagDisableEndpointCaching, m_params.get_value_as_bool("noendpointcaching"));
comp_params.set_flag(cCRNCompFlagGrayscaleSampling, m_params.get_value_as_bool("grayscalesampling"));
comp_params.set_flag(cCRNCompFlagUseBothBlockTypes, !m_params.get_value_as_bool("forceprimaryencoding"));
if (comp_params.get_flag(cCRNCompFlagUseBothBlockTypes))
comp_params.set_flag(cCRNCompFlagUseTransparentIndicesForBlack, m_params.get_value_as_bool("usetransparentindicesforblack"));
else
comp_params.set_flag(cCRNCompFlagUseTransparentIndicesForBlack, false);
return true;
}
convert_status display_file_info(uint32 file_index, uint32 num_files, const char* pSrc_filename) {
if (num_files > 1)
console::message("[%u/%u] Source texture: \"%s\"", file_index + 1, num_files, pSrc_filename);
else
console::message("Source texture: \"%s\"", pSrc_filename);
texture_file_types::format src_file_format = texture_file_types::determine_file_format(pSrc_filename);
if (src_file_format == texture_file_types::cFormatInvalid) {
console::error("Unrecognized file type: %s", pSrc_filename);
return cCSFailed;
}
mipmapped_texture src_tex;
if (!src_tex.read_from_file(pSrc_filename, src_file_format)) {
if (src_tex.get_last_error().is_empty())
console::error("Failed reading source file: \"%s\"", pSrc_filename);
else
console::error("%s", src_tex.get_last_error().get_ptr());
return cCSFailed;
}
uint64 input_file_size;
file_utils::get_file_size(pSrc_filename, input_file_size);
uint32 total_in_pixels = 0;
for (uint32 i = 0; i < src_tex.get_num_levels(); i++) {
uint32 width = math::maximum<uint32>(1, src_tex.get_width() >> i);
uint32 height = math::maximum<uint32>(1, src_tex.get_height() >> i);
total_in_pixels += width * height * src_tex.get_num_faces();
}
vector<uint8> src_tex_bytes;
if (!cfile_stream::read_file_into_array(pSrc_filename, src_tex_bytes)) {
console::error("Failed loading source file: %s", pSrc_filename);
return cCSFailed;
}
if (!src_tex_bytes.size()) {
console::warning("Source file is empty: %s", pSrc_filename);
return cCSSkipped;
}
uint32 compressed_size = 0;
if (m_params.has_key("lzmastats")) {
lzma_codec lossless_codec;
vector<uint8> cmp_tex_bytes;
if (lossless_codec.pack(src_tex_bytes.get_ptr(), src_tex_bytes.size(), cmp_tex_bytes)) {
compressed_size = cmp_tex_bytes.size();
}
}
bool no_normal_type = m_params.has_key("noNormalDetection");
console::info("Source texture dimensions: %ux%u, Levels: %u, Faces: %u, Format: %s\nPacked Format: %u, Apparent Type: %s, Flipped: %u, Can Unflip Without Unpacking: %u",
src_tex.get_width(),
src_tex.get_height(),
src_tex.get_num_levels(),
src_tex.get_num_faces(),
pixel_format_helpers::get_pixel_format_string(src_tex.get_format()),
src_tex.is_packed(), get_texture_type_desc(src_tex.determine_texture_type(no_normal_type)),
src_tex.is_flipped(), src_tex.can_unflip_without_unpacking());
console::info("Total pixels: %u, Source file size: " CRNLIB_UINT64_FORMAT_SPECIFIER ", Source file bits/pixel: %1.3f",
total_in_pixels, input_file_size, (input_file_size * 8.0f) / total_in_pixels);
if (compressed_size) {
console::info("LZMA compressed file size: %u bytes, %1.3f bits/pixel",
compressed_size, compressed_size * 8.0f / total_in_pixels);
}
double entropy = math::compute_entropy(src_tex_bytes.get_ptr(), src_tex_bytes.size());
console::info("Source file entropy: %3.6f bits per byte", entropy / src_tex_bytes.size());
if (src_file_format == texture_file_types::cFormatCRN) {
crnd::crn_texture_info tex_info;
tex_info.m_struct_size = sizeof(crnd::crn_texture_info);
crn_bool success = crnd::crnd_get_texture_info(src_tex_bytes.get_ptr(), src_tex_bytes.size(), &tex_info);
if (!success)
console::error("Failed retrieving CRN texture info!");
else {
console::info("CRN texture info:");
console::info("Width: %u, Height: %u, Levels: %u, Faces: %u\nBytes per block: %u, User0: 0x%08X, User1: 0x%08X, CRN Format: %u",
tex_info.m_width,
tex_info.m_height,
tex_info.m_levels,
tex_info.m_faces,
tex_info.m_bytes_per_block,
tex_info.m_userdata0,
tex_info.m_userdata1,
tex_info.m_format);
}
}
return cCSSucceeded;
}
void print_stats(texture_conversion::convert_stats& stats, bool force_image_stats = false) {
dynamic_string csv_filename;
const char* pCSVStatsFilename = m_params.get_value_as_string("csvfile", 0, csv_filename) ? csv_filename.get_ptr() : NULL;
bool image_stats = force_image_stats || m_params.get_value_as_bool("imagestats") || m_params.get_value_as_bool("mipstats") || (pCSVStatsFilename != NULL);
bool mip_stats = m_params.get_value_as_bool("mipstats");
bool grayscale_sampling = m_params.get_value_as_bool("grayscalesampling");
if (!stats.print(image_stats, mip_stats, grayscale_sampling, pCSVStatsFilename)) {
console::warning("Unable to compute/display full output file statistics.");
}
}
convert_status compare_file(uint32 file_index, uint32 num_files, const char* pSrc_filename, const char* pDst_filename, texture_file_types::format out_file_type) {
if (num_files > 1)
console::message("[%u/%u] Comparing source texture \"%s\" to output texture \"%s\"", file_index + 1, num_files, pSrc_filename, pDst_filename);
else
console::message("Comparing source texture \"%s\" to output texture \"%s\"", pSrc_filename, pDst_filename);
texture_file_types::format src_file_format = texture_file_types::determine_file_format(pSrc_filename);
if (src_file_format == texture_file_types::cFormatInvalid) {
console::error("Unrecognized file type: %s", pSrc_filename);
return cCSFailed;
}
mipmapped_texture src_tex;
if (!src_tex.read_from_file(pSrc_filename, src_file_format)) {
if (src_tex.get_last_error().is_empty())
console::error("Failed reading source file: \"%s\"", pSrc_filename);
else
console::error("%s", src_tex.get_last_error().get_ptr());
return cCSFailed;
}
texture_conversion::convert_stats stats;
if (!stats.init(pSrc_filename, pDst_filename, src_tex, out_file_type, m_params.has_key("lzmastats")))
return cCSFailed;
print_stats(stats, true);
return cCSSucceeded;
}
convert_status convert_file(uint32 file_index, uint32 num_files, const char* pSrc_filename, const char* pDst_filename, texture_file_types::format out_file_type) {
timer tim;
if (num_files > 1)
console::message("[%u/%u] Reading source texture: \"%s\"", file_index + 1, num_files, pSrc_filename);
else
console::message("Reading source texture: \"%s\"", pSrc_filename);
texture_file_types::format src_file_format = texture_file_types::determine_file_format(pSrc_filename);
if (src_file_format == texture_file_types::cFormatInvalid) {
console::error("Unrecognized file type: %s", pSrc_filename);
return cCSFailed;
}
mipmapped_texture src_tex;
tim.start();
if (!src_tex.read_from_file(pSrc_filename, src_file_format)) {
if (src_tex.get_last_error().is_empty())
console::error("Failed reading source file: \"%s\"", pSrc_filename);
else
console::error("%s", src_tex.get_last_error().get_ptr());
return cCSFailed;
}
double total_time = tim.get_elapsed_secs();
console::info("Texture successfully loaded in %3.3fs", total_time);
if (m_params.get_value_as_bool("converttoluma"))
src_tex.convert(image_utils::cConversion_Y_To_RGB);
if (m_params.get_value_as_bool("setalphatoluma"))
src_tex.convert(image_utils::cConversion_Y_To_A);
texture_conversion::convert_params params;
bool no_normal_type = m_params.has_key("noNormalDetection");
params.m_texture_type = src_tex.determine_texture_type(no_normal_type);
params.m_pInput_texture = &src_tex;
params.m_dst_filename = pDst_filename;
params.m_dst_file_type = out_file_type;
params.m_lzma_stats = m_params.has_key("lzmastats");
params.m_write_mipmaps_to_multiple_files = m_params.has_key("split");
params.m_always_use_source_pixel_format = m_params.has_key("usesourceformat");
params.m_y_flip = m_params.has_key("yflip");
params.m_unflip = m_params.has_key("unflip");
if ((!m_params.get_value_as_bool("noprogress")) && (!m_params.get_value_as_bool("quiet")))
params.m_pProgress_func = progress_callback_func;
if (m_params.get_value_as_bool("debug")) {
params.m_debugging = true;
params.m_comp_params.set_flag(cCRNCompFlagDebugging, true);
}
if (m_params.get_value_as_bool("paramdebug"))
params.m_param_debugging = true;
if (m_params.get_value_as_bool("quick"))
params.m_quick = true;
params.m_no_stats = m_params.get_value_as_bool("nostats");
params.m_dst_format = PIXEL_FMT_INVALID;
for (uint32 i = 0; i < pixel_format_helpers::get_num_formats(); i++) {
pixel_format trial_fmt = pixel_format_helpers::get_pixel_format_by_index(i);
if (m_params.has_key(pixel_format_helpers::get_pixel_format_string(trial_fmt))) {
params.m_dst_format = trial_fmt;
break;
}
}
if (texture_file_types::supports_mipmaps(src_file_format)) {
params.m_mipmap_params.m_mode = cCRNMipModeUseSourceMips;
}
if (!parse_mipmap_params(params.m_mipmap_params))
return cCSBadParam;
if (!parse_comp_params(params.m_dst_file_type, params.m_comp_params))
return cCSBadParam;
if (!parse_scale_params(params.m_mipmap_params))
return cCSBadParam;
print_texture_info("Source texture", params, src_tex);
if (params.m_texture_type == cTextureTypeNormalMap) {
params.m_comp_params.set_flag(cCRNCompFlagPerceptual, false);
}
texture_conversion::convert_stats stats;
tim.start();
bool status = texture_conversion::process(params, stats);
total_time = tim.get_elapsed_secs();
if (!status) {
if (params.m_error_message.is_empty())
console::error("Failed writing output file: \"%s\"", pDst_filename);
else
console::error(params.m_error_message.get_ptr());
return cCSFailed;
}
console::info("Texture successfully processed in %3.3fs", total_time);
if (!m_params.get_value_as_bool("nostats"))
print_stats(stats);
return cCSSucceeded;
}
};
//-----------------------------------------------------------------------------------------------------------------------
static bool check_for_option(int argc, char* argv[], const char* pOption) {
for (int i = 1; i < argc; i++) {
if ((argv[i][0] == '/') || (argv[i][0] == '-')) {
if (crnlib_stricmp(&argv[i][1], pOption) == 0)
return true;
}
}
return false;
}
//-----------------------------------------------------------------------------------------------------------------------
static void print_title() {
console::printf("crunch: Advanced DXTn Texture Compressor (Daemon branch, Unity format variant)");
console::printf("");
/* Add U suffix to the version string to remind it's the Unity variant. */
#if defined COMPUTED_VERSION_SUFFIX
console::printf("crnlib version v%u.%02uU %s %s", CRNLIB_VERSION / 100U, CRNLIB_VERSION % 100U, crnlib_is_x64() ? "64-bit" : "32-bit", COMPUTED_VERSION_SUFFIX);
#else
console::printf("crnlib version v%u.%02uU %s Built %s, %s", CRNLIB_VERSION / 100U, CRNLIB_VERSION % 100U, crnlib_is_x64() ? "64-bit" : "32-bit", __DATE__, __TIME__);
#endif
console::printf("");
console::printf("Crunch is brought to you by:");
console::printf("- 2014-2024 Daemon Developers and contributors");
console::printf(" https://github.com/DaemonEngine/crunch");
/* Who owns the copyright, Alexander, Unity, both?
Unity Technologies is a Trade Name for Unity Software Inc. */
console::printf("- 2017-2018 Alexander Suvorov and Unity Software Inc.");
console::printf(" https://github.com/Unity-Technologies/crunch/tree/unity");
/* Richard removed copyright on his work on 2020-09-15
https://github.com/BinomialLLC/crunch/commit/57353fa9ac0908893215bc30ba106adfb80c4c95
He also stated on 2019-06-15 that Tenacious Software LLC didn't had copyright
https://github.com/BinomialLLC/crunch/commit/7c54efc80e78ac0b7548d5dce35ed7318d413390
He also removed mention to Binomial LLC in the copyright line but since this line is
no longer a copyright line, the name can be kept. */
console::printf("- 2010-2017 Richard Geldreich, Jr. and Binomial LLC and contributors");
console::printf(" https://github.com/BinomialLLC/crunch");
console::printf("");
console::printf("Please report bugs here: https://github.com/DaemonEngine/crunch/issues");
console::printf("");
}
//-----------------------------------------------------------------------------------------------------------------------
static int main_internal(int argc, char* argv[]) {
colorized_console::init();
if (check_for_option(argc, argv, "quiet"))
console::disable_output();
if (!check_for_option(argc, argv, "noTitle"))
print_title();
dynamic_string cmd_line;
get_command_line_as_single_string(cmd_line, argc, argv);
bool status = false;
if (check_for_option(argc, argv, "corpus_gen")) {
corpus_gen generator;
status = generator.generate(cmd_line.get_ptr());
} else if (check_for_option(argc, argv, "corpus_test")) {
corpus_tester tester;
status = tester.test(cmd_line.get_ptr());
} else {
crunch converter;
status = converter.convert(cmd_line.get_ptr());
}
colorized_console::deinit();
crnlib_print_mem_stats();
return status ? EXIT_SUCCESS : EXIT_FAILURE;
}
static void pause_and_wait(void) {
console::enable_output();
console::message("\nPress a key to continue.");
for (;;) {
if (crn_getch() != -1)
break;
}
}
//-----------------------------------------------------------------------------------------------------------------------
int main(int argc, char* argv[]) {
int status = EXIT_FAILURE;
if (crnlib_is_debugger_present()) {
status = main_internal(argc, argv);
} else {
#ifdef _MSC_VER
__try {
status = main_internal(argc, argv);
} __except (EXCEPTION_EXECUTE_HANDLER) {
console::error("Uncached exception! crunch command line tool failed!");
}
#else
status = main_internal(argc, argv);
#endif
}
console::printf("\nExit status: %i", status);
if (check_for_option(argc, argv, "pause")) {
if ((status == EXIT_FAILURE) || (console::get_num_messages(cErrorConsoleMessage)))
pause_and_wait();
}
return status;
}
|