Advertisement
Guest User

TextureConverter and resizer RDR2

a guest
Oct 19th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # ENSURE THAT TEXCONV.EXE AND NVTT_EXPORT ARE IN SYSTEM PATH BEFORE START!
  2. # Source and destination folders
  3. $sourceFolder = "C:\Source\Folder"   # Source folder
  4. $outputFolder = "C:\Output\Folder"  # Output folder
  5. $logFile = Join-Path -Path $outputFolder -ChildPath "conversion.log"  # Log
  6. $tempOutputFile = Join-Path -Path $outputFolder -ChildPath "temp_output.txt"  # temp file for nvddsinfo paarsing
  7. $batchFile = Join-Path -Path $outputFolder -ChildPath "convertTextures.nvtt"  # Batch file for nvtt_export
  8.  
  9.  
  10. if (-not (Test-Path -Path $outputFolder)) {
  11.     New-Item -Path $outputFolder -ItemType Directory
  12. }
  13.  
  14.  
  15. if (Test-Path -Path $logFile) {
  16.     Remove-Item -Path $logFile -Force
  17. }
  18. New-Item -Path $logFile -ItemType File
  19.  
  20. function Log-Message {
  21.     param (
  22.         [string]$message
  23.     )
  24.     Add-Content -Path $logFile -Value $message
  25. }
  26.  
  27. function Console-Log {
  28.     param (
  29.         [string]$message
  30.     )
  31.     Write-Host $message
  32.     Log-Message $message
  33. }
  34.  
  35. Console-Log "File processing..."
  36. $ddsFiles = Get-ChildItem -Path $sourceFolder -Filter *.dds -Recurse
  37.  
  38. $batchLines = ""
  39.  
  40. function ParseNvddsInfoOutput {
  41.     param (
  42.         [string]$outputFile
  43.     )
  44.     $info = @{
  45.         Width  = 0
  46.         Height = 0
  47.         Format = ""
  48.     }
  49.  
  50.     $outputContent = Get-Content $outputFile
  51.  
  52.     foreach ($line in $outputContent) {
  53.         if ($line -match "Width:\s+(\d+)") {
  54.             $info["Width"] = [int]$matches[1]
  55.         }
  56.         elseif ($line -match "Height:\s+(\d+)") {
  57.             $info["Height"] = [int]$matches[1]
  58.         }
  59.         elseif ($line -match "FourCC:\s+'(.*)'") {
  60.             $format = $matches[1]
  61.             if ($format -eq "DXT1") {
  62.                 $info["Format"] = "BC1_UNORM"
  63.             }
  64.             elseif ($format -eq "DXT5") {
  65.                 $info["Format"] = "BC3_UNORM"
  66.             }
  67.             elseif ($format -eq "DX10") {
  68.                
  69.                 if ($line -match "Format:\s+BC7") {
  70.                     $info["Format"] = "BC7_UNORM"
  71.                 }
  72.             }
  73.         }
  74.         elseif ($line -match "Flags:\s+0x00000041") {
  75.             $info["Format"] = "RGBA"
  76.         }
  77.     }
  78.  
  79.     return $info
  80. }
  81.  
  82.  
  83. Console-Log "Creating folders..."
  84. foreach ($file in $ddsFiles) {
  85.     $relativePath = $file.FullName.Substring((Get-Item $sourceFolder).FullName.Length).TrimStart('\')
  86.  
  87.    
  88.     $outputFilePath = Join-Path -Path $outputFolder -ChildPath $relativePath
  89.     $outputDir = Split-Path $outputFilePath -Parent
  90.  
  91.    
  92.     if (-not (Test-Path -Path $outputDir)) {
  93.         New-Item -Path $outputDir -ItemType Directory -Force
  94.     }
  95.  
  96.    
  97.     Copy-Item -Path $file.FullName -Destination $outputFilePath -Force
  98.  
  99.    
  100.     Log-Message "File name: $($file.Name)"
  101.  
  102.    
  103.     $fileBaseName = [System.IO.Path]::GetFileNameWithoutExtension($file.Name)
  104.  
  105.    
  106.     & nvddsinfo.exe $outputFilePath > $tempOutputFile
  107.  
  108.    
  109.     $textureInfo = ParseNvddsInfoOutput -outputFile $tempOutputFile
  110.     $width = $textureInfo["Width"]
  111.     $height = $textureInfo["Height"]
  112.     $format = $textureInfo["Format"]
  113.  
  114.    
  115.     Log-Message "Recieved format: $format"
  116.  
  117.    
  118.     $logMessage = "$($file.FullName): Size $width x $height, format $format."
  119.     Log-Message $logMessage
  120.  
  121.    
  122.     if ($width -ge 4096 -or $height -ge 4096) {
  123.        
  124.         if ($width -ge $height) {
  125.             $newWidth = 2048
  126.             $newHeight = [math]::Floor($height * (2048 / $width))
  127.         }
  128.         else {
  129.             $newHeight = 2048
  130.             $newWidth = [math]::Floor($width * (2048 / $height))
  131.         }
  132.  
  133.         Log-Message "$($file.FullName): Downscaling to $newWidth x $newHeight."
  134.         & texconv.exe -y -nologo -w $newWidth -h $newHeight -o $outputDir $outputFilePath
  135.     }
  136.     elseif ($width -gt 2048 -or $height -gt 2048) {
  137.        
  138.         $newWidth = [math]::Floor($width / 2)
  139.         $newHeight = [math]::Floor($height / 2)
  140.  
  141.         Log-Message "$($file.FullName): Downscaling to $newWidth x $newHeight."
  142.         & texconv.exe -y -nologo -w $newWidth -h $newHeight -o $outputDir $outputFilePath
  143.     }
  144.  
  145.    
  146.     if ($fileBaseName.ToLower().EndsWith("_nm")) {
  147.         Log-Message "(_nm)"
  148.    
  149.         if ($format -ne "BC1_UNORM") {
  150.             $escapedSourcePath = $outputFilePath.Replace('\', '\\')
  151.             $escapedOutputPath = $outputFilePath.Replace('\', '\\')
  152.             $batchLine = "`"$escapedSourcePath`" --format bc1 --output `"$escapedOutputPath`""
  153.             $batchLines += $batchLine + "`n"
  154.             Log-Message "Added to batch: $batchLine"
  155.         }
  156.     }
  157.     elseif ($fileBaseName.ToLower().EndsWith("_ab")) {
  158.         Log-Message "(_ab)"
  159.  
  160.         if ($format -ne "BC7_UNORM") {
  161.             $escapedSourcePath = $outputFilePath.Replace('\', '\\')
  162.             $escapedOutputPath = $outputFilePath.Replace('\', '\\')
  163.             $batchLine = "`"$escapedSourcePath`" --format bc7 --output `"$escapedOutputPath`""
  164.             $batchLines += $batchLine + "`n"
  165.             Log-Message "Added to batch: $batchLine"
  166.         }
  167.     }
  168.     else {
  169.         Log-Message "Other texture"
  170.  
  171.         if ($format -ne "BC3_UNORM") {
  172.             $escapedSourcePath = $outputFilePath.Replace('\', '\\')
  173.             $escapedOutputPath = $outputFilePath.Replace('\', '\\')
  174.             $batchLine = "`"$escapedSourcePath`" --format bc3 --output `"$escapedOutputPath`""
  175.             $batchLines += $batchLine + "`n"
  176.             Log-Message "Added to batch: $batchLine"
  177.         }
  178.     }
  179. }
  180.  
  181.  
  182. Console-Log "Preparing batch file..."
  183. Set-Content -Path $batchFile -Value $batchLines -Encoding ascii
  184.  
  185.  
  186. if (Test-Path -Path $batchFile) {
  187.     Console-Log "Starting converting..."
  188.     & nvtt_export.exe --batch $batchFile 2>&1 | Out-File -FilePath $logFile -Append -Encoding utf8
  189.     Log-Message "Ready with nvtt_export."
  190. }
  191.  
  192.  
  193. if (Test-Path -Path $tempOutputFile) {
  194.     Remove-Item -Path $tempOutputFile -Force
  195. }
  196.  
  197. Console-Log "All files processed!"
  198.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement