summaryrefslogtreecommitdiff
path: root/materialsystem/imagepacker.h
blob: f15bbbcfc85d287f8861475d7f72a48cb3b86950 (plain) (blame)
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
//========= 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