-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPreviewState.h
125 lines (99 loc) · 2.73 KB
/
PreviewState.h
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include "GameState.h"
#include "Point3.h"
#include "MeshList.h"
#include "RenderTarget.h"
#include "BoundBox.h"
#include "DynamicTexture.h"
#include "bssrdf.h"
#include "GameUI.h"
#include "DefaultTextMesh.h"
class Game2D;
class C3DSModel;
class CPreviewState: public CGameState
{
private:
CGUIDialog* m_dlgMain;
CGUIDialog* m_dlgParams;
CGUIDialog* m_dlgRender;
CGUIDialog* m_dlgBuiltin;
CGUIDialog* m_curDialog;
CGUIButton* m_btCloseParams;
CGUIButton* m_btLoadModel;
CGUIButton* m_btRender;
CGUIButton* m_btParams;
CGUIButton* m_btBuiltin;
CGUIButton* m_btCloseRender;
CGUIButton* m_btCPURender;
CGUIList* m_listTechnique;
CGUISlider* m_slSigmaS[3];
CGUISlider* m_slSigmaA[3];
CGUISlider* m_slDiffuse[3];
CGUISlider* m_slEta;
CGUISlider* m_slScale;
CGUISlider* m_slLightPower;
CGUISlider* m_slMaxErr;
CGUIButton* m_btCloseBuiltin;
CGUIList* m_listMaterials;
C3DSModel* m_model;
CDefaultTextMesh* m_dfMesh;
float m_counter;
float m_radius;
UINT m_lastx, m_lasty;
bool m_lastDown[2];
D3DXMATRIX m_viewMat;
Point3 m_center;
Point3 m_lightDir;
float m_anglex;
float m_anglez;
float m_lightTheta;
float m_lightPhi;
DWORD times[4];
LPD3DXEFFECT m_effectNormalmap;
LPD3DXEFFECT m_effectPosmap;
LPD3DXEFFECT m_effectPhong;
LPD3DXEFFECT m_effectShadowmap;
CRenderTarget m_targetShadow;
const static int MIPMAP_COUNT = 8;
CRenderTarget m_targetShadowMipmaps;
CRenderTarget m_targetShadow2;
CDynamicTexture m_shadowMap;
MeshList m_meshes;
Point3* m_samplePoints;
Point3* m_sampleNormals;
BoundBox m_worldBound;
VERTEX_XYZNORM *m_pointsBuf;
size_t m_sampled;
Point3 m_eyePos;
bool m_bShowPoint;
float m_totalArea;
D3DXMATRIX m_worldMat;
D3DXMATRIX m_shadowMapMat;
D3DXMATRIX m_shadowMapMatNoWorld;
Point3 m_lightBound;
void DrawBoundBox(const BoundBox& box, DWORD color);
void DrawSceneBox(const BoundBox& box, DWORD color);
void DrawPoints();
void CreateSamples(size_t count);
void ComputeSampleIrradiance();
void LoadModel();
void ShowOpenModelDialog();
void ShowSaveImageDialog();
void ResetProjectionMat();
void UpdateLight();
Bssrdf AdjustBssrdf();
void ComputeRotateMatrix(D3DXMATRIX* out, float dx, float dy, float dz);
void RenderShadowmap();
void InitGUI();
void UpdateGUI();
public:
CPreviewState(void);
~CPreviewState(void);
void Start(CGameState * prior);
void Draw2D(CGame2D * g2d);
void PreRender();
void Draw3D();
void Animate(float elapsedTime);
void Update(float elapsedTime);
void DeviceLost();
void DeviceReset();
};