summaryrefslogtreecommitdiffstats
path: root/Tools/AnvilStats/ImageComposingCallback.h
blob: c04dc869fdf0ca0c40643d8e7329b13070ca9dbf (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95

// ImageComposingCallback

// Declares the cImageComposingCallback class that implements a subset of cCallback for composing per-region images





#pragma once

#include "Callback.h"




/** Implements the plumbing for composing per-region images from multiple chunks.
To use this class, create a descendant that writes the image data using
SetPixel() or SetPixelURow() functions.

For the purpose of this class the image data is indexed U (horz) * V (vert), to avoid confusion with other coords.
The image is a 32bpp raw imagedata, written into a BMP file.
*/
class cImageComposingCallback :
	public cCallback
{
public:
	enum
	{
		INVALID_REGION_COORD = 99999,  ///< Used for un-assigned region coords
		IMAGE_WIDTH = 32 * 16,
		IMAGE_HEIGHT = 32 * 16,
		PIXEL_COUNT = IMAGE_WIDTH * IMAGE_HEIGHT,  ///< Total pixel count of the image data
	} ;
	
	cImageComposingCallback(const AString & a_FileNamePrefix);
	virtual ~cImageComposingCallback();

	// cCallback overrides:
	virtual bool OnNewRegion(int a_RegionX, int a_RegionZ) override;
	virtual void OnRegionFinished(int a_RegionX, int a_RegionZ) override;
	
	// New introduced overridable functions:
	
	/// Called when a file is about to be saved, to generate the filename
	virtual AString GetFileName(int a_RegionX, int a_RegionZ);
	
	/// Called before the file is saved
	virtual void OnBeforeImageSaved(int a_RegionX, int a_RegionZ, const AString & a_FileName) {}
	
	/// Called after the image is saved to a file
	virtual void OnAfterImageSaved(int a_RegionX, int a_RegionZ, const AString & a_FileName) {}
	
	/// Called when a new region is beginning, to erase the image data
	virtual void OnEraseImage(void);
	
	// Functions for manipulating the image:
	
	/// Erases the entire image with the specified color
	void EraseImage(int a_Color);
	
	/// Erases the specified chunk's portion of the image with the specified color. Note that chunk coords are relative to the current region
	void EraseChunk(int a_Color, int a_RelChunkX, int a_RelChunkZ);
	
	/// Returns the current region X coord
	int GetCurrentRegionX(void) const { return m_CurrentRegionX; }
	
	/// Returns the current region Z coord
	int GetCurrentRegionZ(void) const { return m_CurrentRegionZ; }
	
	/// Sets the pixel at the specified UV coords to the specified color
	void SetPixel(int a_RelU, int a_RelV, int a_Color);
	
	/// Returns the color of the pixel at the specified UV coords; -1 if outside
	int GetPixel(int a_RelU, int a_RelV);
	
	/// Sets a row of pixels. a_Pixels is expected to be a_CountU pixels wide. a_RelUStart + a_CountU is assumed less than image width
	void SetPixelURow(int a_RelUStart, int a_RelV, int a_CountU, int * a_Pixels);
	
protected:
	/// Prefix for the filenames, when generated by the default GetFileName() function
	AString m_FileNamePrefix;
	
	/// Coords of the currently processed region
	int m_CurrentRegionX, m_CurrentRegionZ;
	
	/// Raw image data; 1 MiB worth of data, therefore unsuitable for stack allocation. [u + IMAGE_WIDTH * v]
	int * m_ImageData;
	
	void SaveImage(const AString & a_FileName);
} ;