// EMERGENT GAME TECHNOLOGIES PROPRIETARY INFORMATION // // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Emergent Game Technologies and may not // be copied or disclosed except in accordance with the terms of that // agreement. // // Copyright (c) 1996-2007 Emergent Game Technologies. // All Rights Reserved. // // Emergent Game Technologies, Chapel Hill, North Carolina 27517 // http://www.emergent.net #ifndef NIHDRREADER_H #define NIHDRREADER_H #include "NiHDRReaderLibType.h" #include "NiPixelFormat.h" #include "NiImageReader.h" class NIHDRREADER_ENTRY NiHDRReader : public NiImageReader { public: virtual bool CanReadFile(const char* pcFileExtension) const; virtual NiPixelData* ReadFile(NiFile& kIst, NiPixelData* pkOptDest); virtual bool ReadHeader(NiFile& kIst, unsigned int& uiWidth, unsigned int& uiHeight, NiPixelFormat& kFormat, bool& bMipmap, unsigned int& uiFaces); protected: // Reads the header of the HDR file. It is assumed that when this // function finishes, the file pointer will be at the beginning of the // pixel data. bool ReadHeaderInternal(NiFile& kIst, unsigned int& uiWidth, unsigned int& uiHeight, bool& bXLeftToRight, bool& bYTopToBottom, bool& bRowMajor); bool ReadRawFile(NiFile& kIst, unsigned char aucFirstPixel[4], unsigned char* pucData, int iRowStride, int iColStride, unsigned int uiHeight, unsigned int uiWidth, unsigned int uiDPixelSize); bool ReadRLEFile(NiFile& kIst, unsigned char aucFirstPixel[4], unsigned char* pucData, int iRowStride, int iColStride, unsigned int uiHeight, unsigned int uiWidth, unsigned int uiDPixelSize); static void ConvertRGBEToHalf(unsigned char* pucRGBE, unsigned char* pucDest); static void ConvertRGBEToFloat(unsigned char* pucRGBE, unsigned char* pucDest); }; #endif // #ifndef NIHDRREADER_H