2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
2012-11-28 15:47:07 +00:00
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
2024-06-19 16:12:17 +00:00
|
|
|
Copyright (C) 2012-2024 Robert Beckebans
|
2022-02-21 15:29:53 +00:00
|
|
|
Copyright (C) 2022 Stephen Pridham
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
2012-12-22 15:18:19 +00:00
|
|
|
#include "precompiled.h"
|
2021-07-29 13:42:02 +00:00
|
|
|
#pragma hdrstop
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2021-03-17 20:01:43 +00:00
|
|
|
#undef strncmp
|
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
#define STBI_NO_STDIO // images are passed as buffers
|
2021-03-17 20:01:43 +00:00
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
|
|
#include "../libs/stb/stb_image.h"
|
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
|
|
|
#include "../libs/stb/stb_image_write.h"
|
2021-03-17 20:01:43 +00:00
|
|
|
|
|
|
|
#define TINYEXR_IMPLEMENTATION
|
|
|
|
#include "../libs/tinyexr/tinyexr.h"
|
|
|
|
|
|
|
|
#include "../libs/mesa/format_r11g11b10f.h"
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2017-09-03 08:22:36 +00:00
|
|
|
#include "RenderCommon.h"
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
This file only has a single entry point:
|
|
|
|
|
|
|
|
void R_LoadImage( const char *name, byte **pic, int *width, int *height, bool makePowerOf2 );
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Include file for users of JPEG library.
|
|
|
|
* You will need to have included system headers that define at least
|
|
|
|
* the typedefs FILE and size_t before you can include jpeglib.h.
|
|
|
|
* (stdio.h is sufficient on ANSI-conforming systems.)
|
|
|
|
* You may also wish to include "jerror.h".
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void jpg_Error( const char* fmt, ... )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
va_list argptr;
|
|
|
|
char msg[2048];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
va_start( argptr, fmt );
|
2023-06-20 16:24:24 +00:00
|
|
|
idStr::vsnPrintf( msg, sizeof( msg ), fmt, argptr );
|
2012-11-28 15:47:07 +00:00
|
|
|
va_end( argptr );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
common->FatalError( "%s", msg );
|
|
|
|
}
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
void jpg_Printf( const char* fmt, ... )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
va_list argptr;
|
|
|
|
char msg[2048];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
va_start( argptr, fmt );
|
2023-06-20 16:24:24 +00:00
|
|
|
idStr::vsnPrintf( msg, sizeof( msg ), fmt, argptr );
|
2012-11-28 15:47:07 +00:00
|
|
|
va_end( argptr );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
common->Printf( "%s", msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
R_WriteTGA
|
|
|
|
================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void R_WriteTGA( const char* filename, const byte* data, int width, int height, bool flipVertical, const char* basePath )
|
|
|
|
{
|
|
|
|
byte* buffer;
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
2012-11-28 15:47:07 +00:00
|
|
|
int bufferSize = width * height * 4 + 18;
|
2012-11-26 18:58:24 +00:00
|
|
|
int imgStart = 18;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idTempArray<byte> buf( bufferSize );
|
2012-11-28 15:47:07 +00:00
|
|
|
buffer = ( byte* )buf.Ptr();
|
2012-11-26 18:58:24 +00:00
|
|
|
memset( buffer, 0, 18 );
|
|
|
|
buffer[2] = 2; // uncompressed type
|
2012-11-28 15:47:07 +00:00
|
|
|
buffer[12] = width & 255;
|
|
|
|
buffer[13] = width >> 8;
|
|
|
|
buffer[14] = height & 255;
|
|
|
|
buffer[15] = height >> 8;
|
2012-11-26 18:58:24 +00:00
|
|
|
buffer[16] = 32; // pixel size
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !flipVertical )
|
|
|
|
{
|
|
|
|
buffer[17] = ( 1 << 5 ); // flip bit, for normal top to bottom raster order
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// swap rgb to bgr
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = imgStart ; i < bufferSize ; i += 4 )
|
|
|
|
{
|
|
|
|
buffer[i] = data[i - imgStart + 2]; // blue
|
|
|
|
buffer[i + 1] = data[i - imgStart + 1]; // green
|
|
|
|
buffer[i + 2] = data[i - imgStart + 0]; // red
|
|
|
|
buffer[i + 3] = data[i - imgStart + 3]; // alpha
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fileSystem->WriteFile( filename, buffer, bufferSize, basePath );
|
|
|
|
}
|
|
|
|
|
2021-11-09 18:47:06 +00:00
|
|
|
void LoadTGA( const char* name, byte** pic, int* width, int* height, ID_TIME_T* timestamp );
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
========================================================================
|
|
|
|
|
|
|
|
TGA files are used for 24/32 bit images
|
|
|
|
|
|
|
|
========================================================================
|
|
|
|
*/
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
typedef struct _TargaHeader
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
unsigned char id_length, colormap_type, image_type;
|
|
|
|
unsigned short colormap_index, colormap_length;
|
|
|
|
unsigned char colormap_size;
|
|
|
|
unsigned short x_origin, y_origin, width, height;
|
|
|
|
unsigned char pixel_size, attributes;
|
|
|
|
} TargaHeader;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
=========================================================
|
|
|
|
|
|
|
|
TARGA LOADING
|
|
|
|
|
|
|
|
=========================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
=============
|
|
|
|
LoadTGA
|
|
|
|
=============
|
|
|
|
*/
|
2021-11-09 18:47:06 +00:00
|
|
|
void LoadTGA( const char* name, byte** pic, int* width, int* height, ID_TIME_T* timestamp )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int columns, rows, numPixels, fileSize, numBytes;
|
2012-11-28 15:47:07 +00:00
|
|
|
byte* pixbuf;
|
2012-11-26 18:58:24 +00:00
|
|
|
int row, column;
|
2012-11-28 15:47:07 +00:00
|
|
|
byte* buf_p;
|
|
|
|
byte* buffer;
|
2012-11-26 18:58:24 +00:00
|
|
|
TargaHeader targa_header;
|
2012-11-28 15:47:07 +00:00
|
|
|
byte* targa_rgba;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !pic )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
fileSystem->ReadFile( name, NULL, timestamp );
|
|
|
|
return; // just getting timestamp
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
*pic = NULL;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//
|
|
|
|
// load the file
|
|
|
|
//
|
2012-11-28 15:47:07 +00:00
|
|
|
fileSize = fileSystem->ReadFile( name, ( void** )&buffer, timestamp );
|
|
|
|
if( !buffer )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p = buffer;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
targa_header.id_length = *buf_p++;
|
|
|
|
targa_header.colormap_type = *buf_p++;
|
|
|
|
targa_header.image_type = *buf_p++;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_header.colormap_index = LittleShort( *( short* )buf_p );
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += 2;
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_header.colormap_length = LittleShort( *( short* )buf_p );
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += 2;
|
|
|
|
targa_header.colormap_size = *buf_p++;
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_header.x_origin = LittleShort( *( short* )buf_p );
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += 2;
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_header.y_origin = LittleShort( *( short* )buf_p );
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += 2;
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_header.width = LittleShort( *( short* )buf_p );
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += 2;
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_header.height = LittleShort( *( short* )buf_p );
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += 2;
|
|
|
|
targa_header.pixel_size = *buf_p++;
|
|
|
|
targa_header.attributes = *buf_p++;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( targa_header.image_type != 2 && targa_header.image_type != 10 && targa_header.image_type != 3 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
common->Error( "LoadTGA( %s ): Only type 2 (RGB), 3 (gray), and 10 (RGB) TGA images supported\n", name );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( targa_header.colormap_type != 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
common->Error( "LoadTGA( %s ): colormaps not supported\n", name );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( ( targa_header.pixel_size != 32 && targa_header.pixel_size != 24 ) && targa_header.image_type != 3 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
common->Error( "LoadTGA( %s ): Only 32 or 24 bit images supported (no colormaps)\n", name );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( targa_header.image_type == 2 || targa_header.image_type == 3 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
numBytes = targa_header.width * targa_header.height * ( targa_header.pixel_size >> 3 );
|
2012-11-28 15:47:07 +00:00
|
|
|
if( numBytes > fileSize - 18 - targa_header.id_length )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
common->Error( "LoadTGA( %s ): incomplete file\n", name );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
columns = targa_header.width;
|
|
|
|
rows = targa_header.height;
|
|
|
|
numPixels = columns * rows;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( width )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*width = columns;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( height )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*height = rows;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
targa_rgba = ( byte* )R_StaticAlloc( numPixels * 4, TAG_IMAGE );
|
2012-11-26 18:58:24 +00:00
|
|
|
*pic = targa_rgba;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( targa_header.id_length != 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
buf_p += targa_header.id_length; // skip TARGA image comment
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( targa_header.image_type == 2 || targa_header.image_type == 3 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// Uncompressed RGB or gray scale image
|
|
|
|
for( row = rows - 1; row >= 0; row-- )
|
|
|
|
{
|
2012-11-28 15:47:07 +00:00
|
|
|
pixbuf = targa_rgba + row * columns * 4;
|
|
|
|
for( column = 0; column < columns; column++ )
|
2012-11-26 18:58:24 +00:00
|
|
|
{
|
2012-11-28 15:47:07 +00:00
|
|
|
unsigned char red, green, blue, alphabyte;
|
2012-11-26 18:58:24 +00:00
|
|
|
switch( targa_header.pixel_size )
|
|
|
|
{
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
case 8:
|
|
|
|
blue = *buf_p++;
|
|
|
|
green = blue;
|
|
|
|
red = blue;
|
|
|
|
*pixbuf++ = red;
|
|
|
|
*pixbuf++ = green;
|
|
|
|
*pixbuf++ = blue;
|
|
|
|
*pixbuf++ = 255;
|
|
|
|
break;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
case 24:
|
|
|
|
blue = *buf_p++;
|
|
|
|
green = *buf_p++;
|
|
|
|
red = *buf_p++;
|
|
|
|
*pixbuf++ = red;
|
|
|
|
*pixbuf++ = green;
|
|
|
|
*pixbuf++ = blue;
|
|
|
|
*pixbuf++ = 255;
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
blue = *buf_p++;
|
|
|
|
green = *buf_p++;
|
|
|
|
red = *buf_p++;
|
|
|
|
alphabyte = *buf_p++;
|
|
|
|
*pixbuf++ = red;
|
|
|
|
*pixbuf++ = green;
|
|
|
|
*pixbuf++ = blue;
|
|
|
|
*pixbuf++ = alphabyte;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
common->Error( "LoadTGA( %s ): illegal pixel_size '%d'\n", name, targa_header.pixel_size );
|
|
|
|
break;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else if( targa_header.image_type == 10 ) // Runlength encoded RGB images
|
|
|
|
{
|
|
|
|
unsigned char red, green, blue, alphabyte, packetHeader, packetSize, j;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
red = 0;
|
|
|
|
green = 0;
|
|
|
|
blue = 0;
|
|
|
|
alphabyte = 0xff;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
for( row = rows - 1; row >= 0; row-- )
|
|
|
|
{
|
|
|
|
pixbuf = targa_rgba + row * columns * 4;
|
|
|
|
for( column = 0; column < columns; )
|
|
|
|
{
|
|
|
|
packetHeader = *buf_p++;
|
|
|
|
packetSize = 1 + ( packetHeader & 0x7f );
|
|
|
|
if( packetHeader & 0x80 ) // run-length packet
|
|
|
|
{
|
|
|
|
switch( targa_header.pixel_size )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
case 24:
|
2012-11-28 15:47:07 +00:00
|
|
|
blue = *buf_p++;
|
|
|
|
green = *buf_p++;
|
|
|
|
red = *buf_p++;
|
|
|
|
alphabyte = 255;
|
|
|
|
break;
|
2012-11-26 18:58:24 +00:00
|
|
|
case 32:
|
2012-11-28 15:47:07 +00:00
|
|
|
blue = *buf_p++;
|
|
|
|
green = *buf_p++;
|
|
|
|
red = *buf_p++;
|
|
|
|
alphabyte = *buf_p++;
|
|
|
|
break;
|
2012-11-26 18:58:24 +00:00
|
|
|
default:
|
|
|
|
common->Error( "LoadTGA( %s ): illegal pixel_size '%d'\n", name, targa_header.pixel_size );
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
for( j = 0; j < packetSize; j++ )
|
|
|
|
{
|
|
|
|
*pixbuf++ = red;
|
|
|
|
*pixbuf++ = green;
|
|
|
|
*pixbuf++ = blue;
|
|
|
|
*pixbuf++ = alphabyte;
|
2012-11-26 18:58:24 +00:00
|
|
|
column++;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( column == columns ) // run spans across rows
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
column = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( row > 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
row--;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
goto breakOut;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
pixbuf = targa_rgba + row * columns * 4;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else // non run-length packet
|
|
|
|
{
|
|
|
|
for( j = 0; j < packetSize; j++ )
|
|
|
|
{
|
|
|
|
switch( targa_header.pixel_size )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
case 24:
|
2012-11-28 15:47:07 +00:00
|
|
|
blue = *buf_p++;
|
|
|
|
green = *buf_p++;
|
|
|
|
red = *buf_p++;
|
|
|
|
*pixbuf++ = red;
|
|
|
|
*pixbuf++ = green;
|
|
|
|
*pixbuf++ = blue;
|
|
|
|
*pixbuf++ = 255;
|
|
|
|
break;
|
2012-11-26 18:58:24 +00:00
|
|
|
case 32:
|
2012-11-28 15:47:07 +00:00
|
|
|
blue = *buf_p++;
|
|
|
|
green = *buf_p++;
|
|
|
|
red = *buf_p++;
|
|
|
|
alphabyte = *buf_p++;
|
|
|
|
*pixbuf++ = red;
|
|
|
|
*pixbuf++ = green;
|
|
|
|
*pixbuf++ = blue;
|
|
|
|
*pixbuf++ = alphabyte;
|
|
|
|
break;
|
2012-11-26 18:58:24 +00:00
|
|
|
default:
|
|
|
|
common->Error( "LoadTGA( %s ): illegal pixel_size '%d'\n", name, targa_header.pixel_size );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
column++;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( column == columns ) // pixel packet run spans across rows
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
column = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( row > 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
row--;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
goto breakOut;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
pixbuf = targa_rgba + row * columns * 4;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
breakOut:
|
|
|
|
;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( ( targa_header.attributes & ( 1 << 5 ) ) ) // image flp bit
|
|
|
|
{
|
|
|
|
if( width != NULL && height != NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
R_VerticalFlip( *pic, *width, *height );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fileSystem->FreeFile( buffer );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=========================================================
|
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
JPEG/PNG LOADING
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
Interfaces with STB_image
|
2012-11-26 18:58:24 +00:00
|
|
|
=========================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
=============
|
2024-06-19 16:12:17 +00:00
|
|
|
LoadSTB_RGBA8
|
2012-11-26 18:58:24 +00:00
|
|
|
=============
|
|
|
|
*/
|
2024-06-19 16:12:17 +00:00
|
|
|
void LoadSTB_RGBA8( const char* filename, unsigned char** pic, int* width, int* height, ID_TIME_T* timestamp )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2014-05-10 16:15:33 +00:00
|
|
|
if( !pic )
|
|
|
|
{
|
|
|
|
fileSystem->ReadFile( filename, NULL, timestamp );
|
|
|
|
return; // just getting timestamp
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2014-05-10 16:15:33 +00:00
|
|
|
*pic = NULL;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2014-05-10 16:15:33 +00:00
|
|
|
// load the file
|
2024-06-19 16:12:17 +00:00
|
|
|
const byte* fbuffer = NULL;
|
2014-05-10 16:15:33 +00:00
|
|
|
int fileSize = fileSystem->ReadFile( filename, ( void** )&fbuffer, timestamp );
|
|
|
|
if( !fbuffer )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
int32 numChannels;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
byte* rgba = stbi_load_from_memory( ( stbi_uc const* ) fbuffer, fileSize, width, height, &numChannels, 4 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
Mem_Free( ( void* )fbuffer );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
//if( numChannels != 3 )
|
|
|
|
//{
|
|
|
|
// common->Error( "LoadHDR( %s ): HDR has not 3 channels\n", filename );
|
|
|
|
//}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
if( !rgba )
|
2014-05-10 16:15:33 +00:00
|
|
|
{
|
2024-06-19 16:12:17 +00:00
|
|
|
common->Warning( "stb_image was unable to load JPG %s : %s\n",
|
|
|
|
filename, stbi_failure_reason() );
|
|
|
|
return;
|
2014-05-10 16:15:33 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
// *pic must be allocated with R_StaticAlloc(), but stb_image allocates with malloc()
|
|
|
|
// (and as there is no R_StaticRealloc(), #define STBI_MALLOC etc won't help)
|
|
|
|
// so the decoded data must be copied once
|
|
|
|
if( rgba )
|
2014-05-10 16:15:33 +00:00
|
|
|
{
|
2024-06-19 16:12:17 +00:00
|
|
|
int32 pixelCount = *width * *height;
|
|
|
|
byte* out = ( byte* )R_StaticAlloc( pixelCount * 4, TAG_IMAGE );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
*pic = out;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
memcpy( *pic, rgba, pixelCount * 4 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
stbi_image_free( rgba );
|
2014-05-10 16:15:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
// RB begin
|
|
|
|
/*
|
|
|
|
=========================================================
|
2014-05-10 16:15:33 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
PNG LOADING
|
2014-05-10 16:15:33 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
=========================================================
|
|
|
|
*/
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
/*
|
|
|
|
==================
|
|
|
|
WriteScreenshotForSTBIW
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
Callback to each stbi_write_* function
|
|
|
|
==================
|
|
|
|
*/
|
|
|
|
static void WriteScreenshotForSTBIW( void* context, void* data, int size )
|
|
|
|
{
|
|
|
|
idFile* f = ( idFile* )context;
|
|
|
|
f->Write( data, size );
|
2014-05-10 16:15:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
R_WritePNG
|
|
|
|
================
|
|
|
|
*/
|
2024-06-19 16:21:42 +00:00
|
|
|
void R_WritePNG( const char* filename, const byte* data, int bytesPerPixel, int width, int height, const char* basePath )
|
2014-05-10 16:15:33 +00:00
|
|
|
{
|
2024-06-19 16:12:17 +00:00
|
|
|
if( bytesPerPixel != 4 && bytesPerPixel != 3 )
|
2014-05-10 16:15:33 +00:00
|
|
|
{
|
|
|
|
common->Error( "R_WritePNG( %s ): bytesPerPixel = %i not supported", filename, bytesPerPixel );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
idFileLocal file( fileSystem->OpenFileWrite( filename, "fs_basepath" ) );
|
|
|
|
if( file == NULL )
|
2014-05-10 16:15:33 +00:00
|
|
|
{
|
2024-06-19 16:12:17 +00:00
|
|
|
common->Printf( "R_WritePNG: Failed to open %s\n", filename );
|
|
|
|
return;
|
2014-05-10 16:15:33 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2024-06-19 16:12:17 +00:00
|
|
|
//stbi_write_png_compression_level = idMath::ClampInt( 0, 9, r_screenshotPngCompression.GetInteger() );
|
|
|
|
stbi_write_png_to_func( WriteScreenshotForSTBIW, file, width, height, bytesPerPixel, data, bytesPerPixel * width );
|
2014-05-10 16:15:33 +00:00
|
|
|
}
|
2020-04-18 17:16:24 +00:00
|
|
|
|
2021-03-17 20:01:43 +00:00
|
|
|
/*
|
|
|
|
=========================================================
|
|
|
|
|
|
|
|
EXR LOADING
|
|
|
|
|
|
|
|
Interfaces with tinyexr
|
|
|
|
=========================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
=======================
|
|
|
|
LoadEXR
|
|
|
|
=======================
|
|
|
|
*/
|
|
|
|
static void LoadEXR( const char* filename, unsigned char** pic, int* width, int* height, ID_TIME_T* timestamp )
|
|
|
|
{
|
|
|
|
if( !pic )
|
|
|
|
{
|
|
|
|
fileSystem->ReadFile( filename, NULL, timestamp );
|
|
|
|
return; // just getting timestamp
|
|
|
|
}
|
|
|
|
|
|
|
|
*pic = NULL;
|
|
|
|
|
|
|
|
// load the file
|
|
|
|
const byte* fbuffer = NULL;
|
|
|
|
int fileSize = fileSystem->ReadFile( filename, ( void** )&fbuffer, timestamp );
|
|
|
|
if( !fbuffer )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
float* rgba;
|
|
|
|
const char* err;
|
|
|
|
|
|
|
|
{
|
|
|
|
int ret = LoadEXRFromMemory( &rgba, width, height, fbuffer, fileSize, &err );
|
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
common->Error( "LoadEXR( %s ): %s\n", filename, err );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
// dump file as .hdr for testing - this works
|
|
|
|
{
|
|
|
|
idStrStatic< MAX_OSPATH > hdrFileName = "test";
|
|
|
|
//hdrFileName.AppendPath( filename );
|
|
|
|
hdrFileName.SetFileExtension( ".hdr" );
|
|
|
|
|
|
|
|
int ret = stbi_write_hdr( hdrFileName.c_str(), *width, *height, 4, rgba );
|
|
|
|
|
|
|
|
if( ret == 0 )
|
|
|
|
{
|
|
|
|
return; // fail
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if( rgba )
|
|
|
|
{
|
|
|
|
int32 pixelCount = *width * *height;
|
|
|
|
byte* out = ( byte* )R_StaticAlloc( pixelCount * 4, TAG_IMAGE );
|
|
|
|
|
|
|
|
*pic = out;
|
|
|
|
|
|
|
|
// convert to packed R11G11B10F as uint32 for each pixel
|
|
|
|
|
|
|
|
const float* src = rgba;
|
|
|
|
byte* dst = out;
|
|
|
|
for( int i = 0; i < pixelCount; i++ )
|
|
|
|
{
|
|
|
|
// read 3 floats and ignore the alpha channel
|
|
|
|
float p[3];
|
|
|
|
|
|
|
|
p[0] = src[0];
|
|
|
|
p[1] = src[1];
|
|
|
|
p[2] = src[2];
|
|
|
|
|
|
|
|
// convert
|
|
|
|
uint32_t value = float3_to_r11g11b10f( p );
|
|
|
|
*( uint32_t* )dst = value;
|
|
|
|
|
|
|
|
src += 4;
|
|
|
|
dst += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
free( rgba );
|
|
|
|
}
|
|
|
|
|
2021-03-22 19:45:25 +00:00
|
|
|
// RB: EXR needs to be flipped to match the .tga behavior
|
|
|
|
//R_VerticalFlip( *pic, *width, *height );
|
|
|
|
|
2021-03-17 20:01:43 +00:00
|
|
|
Mem_Free( ( void* )fbuffer );
|
|
|
|
}
|
|
|
|
|
2020-04-18 17:16:24 +00:00
|
|
|
/*
|
|
|
|
================
|
|
|
|
R_WriteEXR
|
|
|
|
================
|
|
|
|
*/
|
|
|
|
void R_WriteEXR( const char* filename, const void* rgba16f, int channelsPerPixel, int width, int height, const char* basePath )
|
|
|
|
{
|
2021-05-07 09:31:03 +00:00
|
|
|
#if 0
|
|
|
|
// miniexr.cpp - v0.2 - public domain - 2013 Aras Pranckevicius / Unity Technologies
|
|
|
|
//
|
|
|
|
// Writes OpenEXR RGB files out of half-precision RGBA or RGB data.
|
|
|
|
//
|
|
|
|
// Only tested on Windows (VS2008) and Mac (clang 3.3), little endian.
|
|
|
|
// Testing status: "works for me".
|
|
|
|
//
|
|
|
|
// History:
|
|
|
|
// 0.2 Source data can be RGB or RGBA now.
|
|
|
|
// 0.1 Initial release.
|
|
|
|
|
2020-04-18 17:16:24 +00:00
|
|
|
const unsigned ww = width - 1;
|
|
|
|
const unsigned hh = height - 1;
|
|
|
|
const unsigned char kHeader[] =
|
|
|
|
{
|
|
|
|
0x76, 0x2f, 0x31, 0x01, // magic
|
|
|
|
2, 0, 0, 0, // version, scanline
|
|
|
|
// channels
|
|
|
|
'c', 'h', 'a', 'n', 'n', 'e', 'l', 's', 0,
|
|
|
|
'c', 'h', 'l', 'i', 's', 't', 0,
|
|
|
|
55, 0, 0, 0,
|
|
|
|
'B', 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, // B, half
|
|
|
|
'G', 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, // G, half
|
|
|
|
'R', 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, // R, half
|
|
|
|
0,
|
|
|
|
// compression
|
|
|
|
'c', 'o', 'm', 'p', 'r', 'e', 's', 's', 'i', 'o', 'n', 0,
|
|
|
|
'c', 'o', 'm', 'p', 'r', 'e', 's', 's', 'i', 'o', 'n', 0,
|
|
|
|
1, 0, 0, 0,
|
|
|
|
0, // no compression
|
|
|
|
// dataWindow
|
|
|
|
'd', 'a', 't', 'a', 'W', 'i', 'n', 'd', 'o', 'w', 0,
|
|
|
|
'b', 'o', 'x', '2', 'i', 0,
|
|
|
|
16, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
2021-02-04 09:39:52 +00:00
|
|
|
uint8( ww & 0xFF ), uint8( ( ww >> 8 ) & 0xFF ), uint8( ( ww >> 16 ) & 0xFF ), uint8( ( ww >> 24 ) & 0xFF ),
|
|
|
|
uint8( hh & 0xFF ), uint8( ( hh >> 8 ) & 0xFF ), uint8( ( hh >> 16 ) & 0xFF ), uint8( ( hh >> 24 ) & 0xFF ),
|
2020-04-18 17:16:24 +00:00
|
|
|
// displayWindow
|
|
|
|
'd', 'i', 's', 'p', 'l', 'a', 'y', 'W', 'i', 'n', 'd', 'o', 'w', 0,
|
|
|
|
'b', 'o', 'x', '2', 'i', 0,
|
|
|
|
16, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
2021-02-04 09:39:52 +00:00
|
|
|
uint8( ww & 0xFF ), uint8( ( ww >> 8 ) & 0xFF ), uint8( ( ww >> 16 ) & 0xFF ), uint8( ( ww >> 24 ) & 0xFF ),
|
|
|
|
uint8( hh & 0xFF ), uint8( ( hh >> 8 ) & 0xFF ), uint8( ( hh >> 16 ) & 0xFF ), uint8( ( hh >> 24 ) & 0xFF ),
|
2020-04-18 17:16:24 +00:00
|
|
|
// lineOrder
|
|
|
|
'l', 'i', 'n', 'e', 'O', 'r', 'd', 'e', 'r', 0,
|
|
|
|
'l', 'i', 'n', 'e', 'O', 'r', 'd', 'e', 'r', 0,
|
|
|
|
1, 0, 0, 0,
|
|
|
|
0, // increasing Y
|
|
|
|
// pixelAspectRatio
|
|
|
|
'p', 'i', 'x', 'e', 'l', 'A', 's', 'p', 'e', 'c', 't', 'R', 'a', 't', 'i', 'o', 0,
|
|
|
|
'f', 'l', 'o', 'a', 't', 0,
|
|
|
|
4, 0, 0, 0,
|
|
|
|
0, 0, 0x80, 0x3f, // 1.0f
|
|
|
|
// screenWindowCenter
|
|
|
|
's', 'c', 'r', 'e', 'e', 'n', 'W', 'i', 'n', 'd', 'o', 'w', 'C', 'e', 'n', 't', 'e', 'r', 0,
|
|
|
|
'v', '2', 'f', 0,
|
|
|
|
8, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
// screenWindowWidth
|
|
|
|
's', 'c', 'r', 'e', 'e', 'n', 'W', 'i', 'n', 'd', 'o', 'w', 'W', 'i', 'd', 't', 'h', 0,
|
|
|
|
'f', 'l', 'o', 'a', 't', 0,
|
|
|
|
4, 0, 0, 0,
|
|
|
|
0, 0, 0x80, 0x3f, // 1.0f
|
|
|
|
// end of header
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
const int kHeaderSize = sizeof( kHeader );
|
|
|
|
|
|
|
|
const int kScanlineTableSize = 8 * height;
|
|
|
|
const unsigned pixelRowSize = width * 3 * 2;
|
|
|
|
const unsigned fullRowSize = pixelRowSize + 8;
|
|
|
|
|
|
|
|
unsigned bufSize = kHeaderSize + kScanlineTableSize + height * fullRowSize;
|
|
|
|
unsigned char* buf = ( unsigned char* )Mem_Alloc( bufSize, TAG_TEMP );
|
|
|
|
if( !buf )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy in header
|
|
|
|
memcpy( buf, kHeader, kHeaderSize );
|
|
|
|
|
|
|
|
// line offset table
|
|
|
|
unsigned ofs = kHeaderSize + kScanlineTableSize;
|
|
|
|
unsigned char* ptr = buf + kHeaderSize;
|
|
|
|
for( int y = 0; y < height; ++y )
|
|
|
|
{
|
|
|
|
*ptr++ = ofs & 0xFF;
|
|
|
|
*ptr++ = ( ofs >> 8 ) & 0xFF;
|
|
|
|
*ptr++ = ( ofs >> 16 ) & 0xFF;
|
|
|
|
*ptr++ = ( ofs >> 24 ) & 0xFF;
|
|
|
|
*ptr++ = 0;
|
|
|
|
*ptr++ = 0;
|
|
|
|
*ptr++ = 0;
|
|
|
|
*ptr++ = 0;
|
|
|
|
ofs += fullRowSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
// scanline data
|
|
|
|
const unsigned char* src = ( const unsigned char* )rgba16f;
|
|
|
|
const int stride = channelsPerPixel * 2;
|
|
|
|
for( int y = 0; y < height; ++y )
|
|
|
|
{
|
|
|
|
// coordinate
|
|
|
|
*ptr++ = y & 0xFF;
|
|
|
|
*ptr++ = ( y >> 8 ) & 0xFF;
|
|
|
|
*ptr++ = ( y >> 16 ) & 0xFF;
|
|
|
|
*ptr++ = ( y >> 24 ) & 0xFF;
|
|
|
|
// data size
|
|
|
|
*ptr++ = pixelRowSize & 0xFF;
|
|
|
|
*ptr++ = ( pixelRowSize >> 8 ) & 0xFF;
|
|
|
|
*ptr++ = ( pixelRowSize >> 16 ) & 0xFF;
|
|
|
|
*ptr++ = ( pixelRowSize >> 24 ) & 0xFF;
|
|
|
|
// B, G, R
|
|
|
|
const unsigned char* chsrc;
|
|
|
|
chsrc = src + 4;
|
|
|
|
for( int x = 0; x < width; ++x )
|
|
|
|
{
|
|
|
|
*ptr++ = chsrc[0];
|
|
|
|
*ptr++ = chsrc[1];
|
|
|
|
chsrc += stride;
|
|
|
|
}
|
|
|
|
chsrc = src + 2;
|
|
|
|
for( int x = 0; x < width; ++x )
|
|
|
|
{
|
|
|
|
*ptr++ = chsrc[0];
|
|
|
|
*ptr++ = chsrc[1];
|
|
|
|
chsrc += stride;
|
|
|
|
}
|
|
|
|
chsrc = src + 0;
|
|
|
|
for( int x = 0; x < width; ++x )
|
|
|
|
{
|
|
|
|
*ptr++ = chsrc[0];
|
|
|
|
*ptr++ = chsrc[1];
|
|
|
|
chsrc += stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
src += width * stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( ptr - buf == bufSize );
|
|
|
|
|
|
|
|
fileSystem->WriteFile( filename, buf, bufSize, basePath );
|
|
|
|
|
|
|
|
Mem_Free( buf );
|
2021-05-07 09:31:03 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// TinyEXR version with compression to save disc size
|
|
|
|
|
|
|
|
if( channelsPerPixel != 3 )
|
|
|
|
{
|
|
|
|
common->Error( "R_WriteEXR( %s ): channelsPerPixel = %i not supported", filename, channelsPerPixel );
|
|
|
|
}
|
|
|
|
|
|
|
|
EXRHeader header;
|
|
|
|
InitEXRHeader( &header );
|
|
|
|
|
|
|
|
EXRImage image;
|
|
|
|
InitEXRImage( &image );
|
|
|
|
|
|
|
|
image.num_channels = 3;
|
|
|
|
|
|
|
|
std::vector<halfFloat_t> images[3];
|
|
|
|
images[0].resize( width * height );
|
|
|
|
images[1].resize( width * height );
|
|
|
|
images[2].resize( width * height );
|
|
|
|
|
|
|
|
halfFloat_t* rgb = ( halfFloat_t* ) rgba16f;
|
|
|
|
|
|
|
|
for( int i = 0; i < width * height; i++ )
|
|
|
|
{
|
|
|
|
images[0][i] = ( rgb[3 * i + 0] );
|
|
|
|
images[1][i] = ( rgb[3 * i + 1] );
|
|
|
|
images[2][i] = ( rgb[3 * i + 2] );
|
|
|
|
}
|
|
|
|
|
|
|
|
halfFloat_t* image_ptr[3];
|
|
|
|
image_ptr[0] = &( images[2].at( 0 ) ); // B
|
|
|
|
image_ptr[1] = &( images[1].at( 0 ) ); // G
|
|
|
|
image_ptr[2] = &( images[0].at( 0 ) ); // R
|
|
|
|
|
|
|
|
image.images = ( unsigned char** )image_ptr;
|
|
|
|
image.width = width;
|
|
|
|
image.height = height;
|
|
|
|
|
|
|
|
header.num_channels = 3;
|
|
|
|
header.channels = ( EXRChannelInfo* )malloc( sizeof( EXRChannelInfo ) * header.num_channels );
|
|
|
|
|
|
|
|
// Must be BGR(A) order, since most of EXR viewers expect this channel order.
|
|
|
|
strncpy( header.channels[0].name, "B", 255 );
|
|
|
|
header.channels[0].name[strlen( "B" )] = '\0';
|
|
|
|
strncpy( header.channels[1].name, "G", 255 );
|
|
|
|
header.channels[1].name[strlen( "G" )] = '\0';
|
|
|
|
strncpy( header.channels[2].name, "R", 255 );
|
|
|
|
header.channels[2].name[strlen( "R" )] = '\0';
|
|
|
|
|
|
|
|
header.pixel_types = ( int* )malloc( sizeof( int ) * header.num_channels );
|
|
|
|
header.requested_pixel_types = ( int* )malloc( sizeof( int ) * header.num_channels );
|
|
|
|
for( int i = 0; i < header.num_channels; i++ )
|
|
|
|
{
|
|
|
|
header.pixel_types[i] = TINYEXR_PIXELTYPE_FLOAT; // pixel type of input image
|
|
|
|
header.requested_pixel_types[i] = TINYEXR_PIXELTYPE_HALF; // pixel type of output image to be stored in .EXR
|
|
|
|
}
|
|
|
|
|
|
|
|
header.compression_type = TINYEXR_COMPRESSIONTYPE_ZIP;
|
|
|
|
|
|
|
|
byte* buffer = NULL;
|
|
|
|
const char* err;
|
|
|
|
size_t size = SaveEXRImageToMemory( &image, &header, &buffer, &err );
|
|
|
|
if( size == 0 )
|
|
|
|
{
|
|
|
|
common->Error( "R_WriteEXR( %s ): Save EXR err: %s\n", filename, err );
|
|
|
|
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
fileSystem->WriteFile( filename, buffer, size, basePath );
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
free( header.channels );
|
|
|
|
free( header.pixel_types );
|
|
|
|
free( header.requested_pixel_types );
|
|
|
|
|
|
|
|
#endif
|
2020-04-18 17:16:24 +00:00
|
|
|
}
|
2014-05-10 16:15:33 +00:00
|
|
|
// RB end
|
|
|
|
|
2021-03-17 20:01:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
=========================================================
|
|
|
|
|
|
|
|
HDR LOADING
|
|
|
|
|
|
|
|
Interfaces with stb_image
|
|
|
|
=========================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
=======================
|
|
|
|
LoadHDR
|
|
|
|
|
|
|
|
RB: load floating point data from memory and convert it into packed R11G11B10F data
|
|
|
|
=======================
|
|
|
|
*/
|
|
|
|
static void LoadHDR( const char* filename, unsigned char** pic, int* width, int* height, ID_TIME_T* timestamp )
|
|
|
|
{
|
|
|
|
if( !pic )
|
|
|
|
{
|
|
|
|
fileSystem->ReadFile( filename, NULL, timestamp );
|
|
|
|
return; // just getting timestamp
|
|
|
|
}
|
|
|
|
|
|
|
|
*pic = NULL;
|
|
|
|
|
|
|
|
// load the file
|
|
|
|
const byte* fbuffer = NULL;
|
|
|
|
int fileSize = fileSystem->ReadFile( filename, ( void** )&fbuffer, timestamp );
|
|
|
|
if( !fbuffer )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 numChannels;
|
|
|
|
|
|
|
|
float* rgba = stbi_loadf_from_memory( ( stbi_uc const* ) fbuffer, fileSize, width, height, &numChannels, 0 );
|
|
|
|
|
|
|
|
if( numChannels != 3 )
|
|
|
|
{
|
|
|
|
common->Error( "LoadHDR( %s ): HDR has not 3 channels\n", filename );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( rgba )
|
|
|
|
{
|
|
|
|
int32 pixelCount = *width * *height;
|
|
|
|
byte* out = ( byte* )R_StaticAlloc( pixelCount * 4, TAG_IMAGE );
|
|
|
|
|
|
|
|
*pic = out;
|
|
|
|
|
|
|
|
// convert to packed R11G11B10F as uint32 for each pixel
|
|
|
|
|
|
|
|
const float* src = rgba;
|
|
|
|
byte* dst = out;
|
|
|
|
for( int i = 0; i < pixelCount; i++ )
|
|
|
|
{
|
|
|
|
// read 3 floats and ignore the alpha channel
|
|
|
|
float p[3];
|
|
|
|
|
|
|
|
p[0] = src[0];
|
|
|
|
p[1] = src[1];
|
|
|
|
p[2] = src[2];
|
|
|
|
|
|
|
|
// convert
|
|
|
|
uint32_t value = float3_to_r11g11b10f( p );
|
|
|
|
*( uint32_t* )dst = value;
|
|
|
|
|
|
|
|
src += 4;
|
|
|
|
dst += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
free( rgba );
|
|
|
|
}
|
|
|
|
|
|
|
|
Mem_Free( ( void* )fbuffer );
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//===================================================================
|
|
|
|
|
2014-05-10 16:15:33 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const char* ext;
|
|
|
|
void ( *ImageLoader )( const char* filename, unsigned char** pic, int* width, int* height, ID_TIME_T* timestamp );
|
|
|
|
} imageExtToLoader_t;
|
|
|
|
|
|
|
|
static imageExtToLoader_t imageLoaders[] =
|
|
|
|
{
|
2024-06-19 16:12:17 +00:00
|
|
|
{"png", LoadSTB_RGBA8}, // STB_image also handles PNG
|
2014-05-10 16:15:33 +00:00
|
|
|
{"tga", LoadTGA},
|
2024-06-19 16:12:17 +00:00
|
|
|
{"jpg", LoadSTB_RGBA8},
|
2021-03-17 20:01:43 +00:00
|
|
|
{"exr", LoadEXR},
|
|
|
|
{"hdr", LoadHDR},
|
2014-05-10 16:15:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const int numImageLoaders = sizeof( imageLoaders ) / sizeof( imageLoaders[0] );
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
=================
|
|
|
|
R_LoadImage
|
|
|
|
|
|
|
|
Loads any of the supported image types into a cannonical
|
|
|
|
32 bit format.
|
|
|
|
|
|
|
|
Automatically attempts to load .jpg files if .tga files fail to load.
|
|
|
|
|
|
|
|
*pic will be NULL if the load failed.
|
|
|
|
|
|
|
|
Anything that is going to make this into a texture would use
|
|
|
|
makePowerOf2 = true, but something loading an image as a lookup
|
|
|
|
table of some sort would leave it in identity form.
|
|
|
|
|
|
|
|
It is important to do this at image load time instead of texture load
|
|
|
|
time for bump maps.
|
|
|
|
|
|
|
|
Timestamp may be NULL if the value is going to be ignored
|
|
|
|
|
|
|
|
If pic is NULL, the image won't actually be loaded, it will just find the
|
|
|
|
timestamp.
|
|
|
|
=================
|
|
|
|
*/
|
2020-04-13 15:31:07 +00:00
|
|
|
void R_LoadImage( const char* cname, byte** pic, int* width, int* height, ID_TIME_T* timestamp, bool makePowerOf2, textureUsage_t* usage )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr name = cname;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( pic )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*pic = NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( timestamp )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*timestamp = FILE_NOT_FOUND_TIMESTAMP;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( width )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*width = 0;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( height )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*height = 0;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
name.DefaultFileExtension( ".tga" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( name.Length() < 5 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
name.ToLower();
|
|
|
|
idStr ext;
|
|
|
|
name.ExtractFileExtension( ext );
|
2014-05-10 16:15:33 +00:00
|
|
|
idStr origName = name;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2020-04-13 15:31:07 +00:00
|
|
|
// RB begin
|
|
|
|
|
|
|
|
// PBR HACK - look for the same file name that provides a _rmao[d] suffix and prefer it
|
|
|
|
// if it is available, otherwise
|
|
|
|
bool pbrImageLookup = false;
|
|
|
|
if( usage && *usage == TD_SPECULAR )
|
|
|
|
{
|
|
|
|
name.StripFileExtension();
|
|
|
|
|
|
|
|
if( name.StripTrailingOnce( "_s" ) )
|
|
|
|
{
|
|
|
|
name += "_rmao";
|
|
|
|
|
2024-06-28 11:48:02 +00:00
|
|
|
ext = "png";
|
|
|
|
name.DefaultFileExtension( ".png" );
|
2020-04-13 15:31:07 +00:00
|
|
|
|
2024-06-28 11:48:02 +00:00
|
|
|
pbrImageLookup = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
name = origName;
|
|
|
|
}
|
2020-04-13 15:31:07 +00:00
|
|
|
}
|
2021-04-01 12:23:47 +00:00
|
|
|
#if 0
|
|
|
|
else if( usage && *usage == TD_R11G11B10F )
|
|
|
|
{
|
|
|
|
name.StripFileExtension();
|
|
|
|
|
|
|
|
ext = "exr";
|
|
|
|
name.DefaultFileExtension( ".exr" );
|
|
|
|
}
|
|
|
|
#endif
|
2020-04-13 15:31:07 +00:00
|
|
|
|
|
|
|
retry:
|
|
|
|
|
|
|
|
// try
|
2014-05-10 16:15:33 +00:00
|
|
|
if( !ext.IsEmpty() )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2020-04-13 15:31:07 +00:00
|
|
|
// try only the image with the specified extension: default .tga
|
2014-05-10 16:15:33 +00:00
|
|
|
int i;
|
|
|
|
for( i = 0; i < numImageLoaders; i++ )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2014-05-10 16:15:33 +00:00
|
|
|
if( !ext.Icmp( imageLoaders[i].ext ) )
|
|
|
|
{
|
|
|
|
imageLoaders[i].ImageLoader( name.c_str(), pic, width, height, timestamp );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2014-05-10 16:15:33 +00:00
|
|
|
if( i < numImageLoaders )
|
|
|
|
{
|
2020-04-13 15:31:07 +00:00
|
|
|
if( ( pic && *pic == NULL ) || ( timestamp && *timestamp == FILE_NOT_FOUND_TIMESTAMP ) )
|
2014-05-10 16:15:33 +00:00
|
|
|
{
|
2020-04-13 15:31:07 +00:00
|
|
|
// image with the specified extension was not found so try all extensions
|
2014-05-10 16:15:33 +00:00
|
|
|
for( i = 0; i < numImageLoaders; i++ )
|
|
|
|
{
|
|
|
|
name.SetFileExtension( imageLoaders[i].ext );
|
|
|
|
imageLoaders[i].ImageLoader( name.c_str(), pic, width, height, timestamp );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2014-05-10 16:15:33 +00:00
|
|
|
if( pic && *pic != NULL )
|
|
|
|
{
|
2020-04-13 15:31:07 +00:00
|
|
|
//idLib::Warning( "image %s failed to load, using %s instead", origName.c_str(), name.c_str());
|
2014-05-10 16:15:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-04-13 16:20:45 +00:00
|
|
|
|
|
|
|
if( !pic && timestamp && *timestamp != FILE_NOT_FOUND_TIMESTAMP )
|
|
|
|
{
|
|
|
|
// we are only interested in the timestamp and we got one
|
|
|
|
break;
|
|
|
|
}
|
2014-05-10 16:15:33 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2020-04-13 15:31:07 +00:00
|
|
|
|
|
|
|
if( pbrImageLookup )
|
|
|
|
{
|
2020-04-13 16:20:45 +00:00
|
|
|
if( ( pic && *pic == NULL ) || ( !pic && timestamp && *timestamp == FILE_NOT_FOUND_TIMESTAMP ) )
|
2020-04-13 15:31:07 +00:00
|
|
|
{
|
|
|
|
name = origName;
|
|
|
|
name.ExtractFileExtension( ext );
|
|
|
|
|
|
|
|
pbrImageLookup = false;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2020-04-13 16:20:45 +00:00
|
|
|
if( ( pic && *pic != NULL ) || ( !pic && timestamp && *timestamp != FILE_NOT_FOUND_TIMESTAMP ) )
|
2020-04-13 15:31:07 +00:00
|
|
|
{
|
2020-04-13 16:20:45 +00:00
|
|
|
idLib::Printf( "PBR hack: using '%s' instead of '%s'\n", name.c_str(), origName.c_str() );
|
2020-04-13 15:31:07 +00:00
|
|
|
*usage = TD_SPECULAR_PBR_RMAO;
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
2020-04-13 15:31:07 +00:00
|
|
|
// RB end
|
2014-05-10 16:15:33 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( ( width && *width < 1 ) || ( height && *height < 1 ) )
|
|
|
|
{
|
|
|
|
if( pic && *pic )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
R_StaticFree( *pic );
|
|
|
|
*pic = 0;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//
|
|
|
|
// convert to exact power of 2 sizes
|
|
|
|
//
|
|
|
|
/*
|
|
|
|
if ( pic && *pic && makePowerOf2 ) {
|
|
|
|
int w, h;
|
|
|
|
int scaled_width, scaled_height;
|
|
|
|
byte *resampledBuffer;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
w = *width;
|
|
|
|
h = *height;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
for (scaled_width = 1 ; scaled_width < w ; scaled_width<<=1)
|
|
|
|
;
|
|
|
|
for (scaled_height = 1 ; scaled_height < h ; scaled_height<<=1)
|
|
|
|
;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
if ( scaled_width != w || scaled_height != h ) {
|
|
|
|
resampledBuffer = R_ResampleTexture( *pic, w, h, scaled_width, scaled_height );
|
|
|
|
R_StaticFree( *pic );
|
|
|
|
*pic = resampledBuffer;
|
|
|
|
*width = scaled_width;
|
|
|
|
*height = scaled_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=======================
|
|
|
|
R_LoadCubeImages
|
|
|
|
|
|
|
|
Loads six files with proper extensions
|
|
|
|
=======================
|
|
|
|
*/
|
2022-02-21 15:29:53 +00:00
|
|
|
bool R_LoadCubeImages( const char* imgName, cubeFiles_t extensions, byte* pics[6], int* outSize, ID_TIME_T* timestamp, int cubeMapSize )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i, j;
|
2022-09-11 13:34:29 +00:00
|
|
|
const char* quakeSides[6] = { "_ft.tga", "_bk.tga", "_lf.tga", "_rt.tga",
|
|
|
|
"_up.tga", "_dn.tga"
|
|
|
|
};
|
2012-12-11 22:48:55 +00:00
|
|
|
const char* cameraSides[6] = { "_forward.tga", "_back.tga", "_left.tga", "_right.tga",
|
2012-12-12 11:11:55 +00:00
|
|
|
"_up.tga", "_down.tga"
|
|
|
|
};
|
2012-12-11 22:48:55 +00:00
|
|
|
const char* axisSides[6] = { "_px.tga", "_nx.tga", "_py.tga", "_ny.tga",
|
2012-12-12 11:11:55 +00:00
|
|
|
"_pz.tga", "_nz.tga"
|
|
|
|
};
|
2012-12-11 22:48:55 +00:00
|
|
|
const char** sides;
|
2012-11-26 18:58:24 +00:00
|
|
|
char fullName[MAX_IMAGE_NAME];
|
|
|
|
int width, height, size = 0;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( extensions == CF_CAMERA )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
sides = cameraSides;
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
2022-09-11 13:34:29 +00:00
|
|
|
else if( extensions == CF_QUAKE1 )
|
|
|
|
{
|
|
|
|
sides = quakeSides;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
sides = axisSides;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// FIXME: precompressed cube map files
|
2012-11-28 15:47:07 +00:00
|
|
|
if( pics )
|
|
|
|
{
|
|
|
|
memset( pics, 0, 6 * sizeof( pics[0] ) );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( timestamp )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*timestamp = 0;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2022-02-21 15:29:53 +00:00
|
|
|
if( extensions == CF_SINGLE && cubeMapSize != 0 )
|
|
|
|
{
|
|
|
|
ID_TIME_T thisTime;
|
|
|
|
byte* thisPic[1];
|
|
|
|
thisPic[0] = nullptr;
|
|
|
|
|
|
|
|
if( pics )
|
|
|
|
{
|
|
|
|
R_LoadImageProgram( imgName, thisPic, &width, &height, &thisTime );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// load just the timestamps
|
|
|
|
R_LoadImageProgram( imgName, nullptr, &width, &height, &thisTime );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if( thisTime == FILE_NOT_FOUND_TIMESTAMP )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( timestamp )
|
|
|
|
{
|
|
|
|
if( thisTime > *timestamp )
|
|
|
|
{
|
|
|
|
*timestamp = thisTime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pics )
|
|
|
|
{
|
|
|
|
*outSize = cubeMapSize;
|
|
|
|
|
|
|
|
for( int i = 0; i < 6; i++ )
|
|
|
|
{
|
|
|
|
pics[i] = R_GenerateCubeMapSideFromSingleImage( thisPic[0], width, height, cubeMapSize, i );
|
|
|
|
switch( i )
|
|
|
|
{
|
|
|
|
case 0: // forward
|
|
|
|
R_RotatePic( pics[i], cubeMapSize );
|
|
|
|
break;
|
|
|
|
case 1: // back
|
|
|
|
R_RotatePic( pics[i], cubeMapSize );
|
|
|
|
R_HorizontalFlip( pics[i], cubeMapSize, cubeMapSize );
|
|
|
|
R_VerticalFlip( pics[i], cubeMapSize, cubeMapSize );
|
|
|
|
break;
|
|
|
|
case 2: // left
|
|
|
|
R_VerticalFlip( pics[i], cubeMapSize, cubeMapSize );
|
|
|
|
break;
|
|
|
|
case 3: // right
|
|
|
|
R_HorizontalFlip( pics[i], cubeMapSize, cubeMapSize );
|
|
|
|
break;
|
|
|
|
case 4: // up
|
|
|
|
R_RotatePic( pics[i], cubeMapSize );
|
|
|
|
break;
|
|
|
|
case 5: // down
|
|
|
|
R_RotatePic( pics[i], cubeMapSize );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
R_StaticFree( thisPic[0] );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0 ; i < 6 ; i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr::snPrintf( fullName, sizeof( fullName ), "%s%s", imgName, sides[i] );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
ID_TIME_T thisTime;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !pics )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// just checking timestamps
|
|
|
|
R_LoadImageProgram( fullName, NULL, &width, &height, &thisTime );
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
R_LoadImageProgram( fullName, &pics[i], &width, &height, &thisTime );
|
|
|
|
}
|
2021-02-20 11:03:11 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( thisTime == FILE_NOT_FOUND_TIMESTAMP )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( i == 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
size = width;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( width != size || height != size )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
common->Warning( "Mismatched sizes on cube map '%s'", imgName );
|
|
|
|
break;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( timestamp )
|
|
|
|
{
|
|
|
|
if( thisTime > *timestamp )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*timestamp = thisTime;
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( pics && extensions == CF_CAMERA )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// convert from "camera" images to native cube map images
|
2012-11-28 15:47:07 +00:00
|
|
|
switch( i )
|
|
|
|
{
|
|
|
|
case 0: // forward
|
|
|
|
R_RotatePic( pics[i], width );
|
|
|
|
break;
|
|
|
|
case 1: // back
|
|
|
|
R_RotatePic( pics[i], width );
|
|
|
|
R_HorizontalFlip( pics[i], width, height );
|
|
|
|
R_VerticalFlip( pics[i], width, height );
|
|
|
|
break;
|
|
|
|
case 2: // left
|
|
|
|
R_VerticalFlip( pics[i], width, height );
|
|
|
|
break;
|
|
|
|
case 3: // right
|
|
|
|
R_HorizontalFlip( pics[i], width, height );
|
|
|
|
break;
|
|
|
|
case 4: // up
|
|
|
|
R_RotatePic( pics[i], width );
|
|
|
|
break;
|
|
|
|
case 5: // down
|
|
|
|
R_RotatePic( pics[i], width );
|
|
|
|
break;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( i != 6 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// we had an error, so free everything
|
2012-11-28 15:47:07 +00:00
|
|
|
if( pics )
|
|
|
|
{
|
|
|
|
for( j = 0 ; j < i ; j++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
R_StaticFree( pics[j] );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( timestamp )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*timestamp = 0;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( outSize )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
*outSize = size;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|