diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /materialsystem/imagepacker.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'materialsystem/imagepacker.h')
| -rw-r--r-- | materialsystem/imagepacker.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/materialsystem/imagepacker.h b/materialsystem/imagepacker.h new file mode 100644 index 0000000..f15bbbc --- /dev/null +++ b/materialsystem/imagepacker.h @@ -0,0 +1,69 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Workfile: $ +// $Date: $ +// $NoKeywords: $ +//=============================================================================// + +#ifndef IMAGEPACKER_H +#define IMAGEPACKER_H + +#ifdef _WIN32 +#pragma once +#endif + +#include "utlvector.h" +#include "utlrbtree.h" + +#define MAX_MAX_LIGHTMAP_WIDTH 2048 + + +//----------------------------------------------------------------------------- +// This packs a single lightmap +//----------------------------------------------------------------------------- +class CImagePacker +{ +public: + bool Reset( int nSortId, int maxLightmapWidth, int maxLightmapHeight ); + bool AddBlock( int width, int height, + int *returnX, int *returnY ); + void GetMinimumDimensions( int *returnWidth, int *returnHeight ); + float GetEfficiency( void ); + int GetSortId() const; + void IncrementSortId(); + +protected: + int GetMaxYIndex( int firstX, int width ); + + int m_MaxLightmapWidth; + int m_MaxLightmapHeight; + int m_pLightmapWavefront[MAX_MAX_LIGHTMAP_WIDTH]; + int m_AreaUsed; + int m_MinimumHeight; + + // For optimization purposes: + // These store the width + height of the first image + // that was unable to be stored in this image + int m_MaxBlockWidth; + int m_MaxBlockHeight; + int m_nSortID; +}; + + +//----------------------------------------------------------------------------- +// Inline methods +//----------------------------------------------------------------------------- +inline int CImagePacker::GetSortId() const +{ + return m_nSortID; +} + +inline void CImagePacker::IncrementSortId() +{ + ++m_nSortID; +} + + +#endif // IMAGEPACKER_H |