-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainFrm.cpp
332 lines (291 loc) · 8.65 KB
/
MainFrm.cpp
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
// MainFrm.cpp : implementation of the CMainFrame class
//
#include "pch.h"
#include "framework.h"
#include "MFCDirectX11.h"
#include "MFCDirectX11View.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMainFrame
IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
ON_WM_CREATE()
ON_WM_SIZE()
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR, // status line indicator
ID_INDICATOR_CAPS,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
//-------------------------------------------------------------//
// CMainFrame construction/destruction
CMainFrame::CMainFrame() noexcept
{
m_pView[0] = m_pView[1] = m_pView[2] = m_pView[3] = 0;
}
//-------------------------------------------------------------//
CMainFrame::~CMainFrame()
{
//D3D
if (m_pD3DImmediateContext)
{
m_pD3DImmediateContext->ClearState();
m_pD3DImmediateContext->Release();
}
//D2D
if (m_pTextFormat)
{
m_pTextFormat->Release();
}
if (m_pWriteFactory)
{
m_pWriteFactory->Release();
}
if (m_pD2DFactory)
{
m_pD2DFactory->Release();
}
#if defined(DEBUG) || defined(_DEBUG)
IDXGIDebug* debugDev = 0;
HRESULT hr = DXGIGetDebugInterface1(0, IID_PPV_ARGS(&debugDev));
debugDev->ReportLiveObjects(DXGI_DEBUG_ALL, DXGI_DEBUG_RLO_ALL);
debugDev->Release();
#endif
if (m_pD3DDevice)
{
m_pD3DDevice->Release();
}
}
//-------------------------------------------------------------//
bool CMainFrame::Initialize()
{
if (!InitD2D())
{
ATLASSERT(0);
return false;
}
if (!InitD3D())
{
ATLASSERT(0);
return false;
}
//#if defined(DEBUG) || defined(_DEBUG)
// IDXGIDebug* debugDev = 0;
// HRESULT hr = DXGIGetDebugInterface1(0, IID_PPV_ARGS(&debugDev));
// debugDev->ReportLiveObjects(DXGI_DEBUG_ALL, DXGI_DEBUG_RLO_ALL);
// debugDev->Release();
//#endif
return true;
}
//-------------------------------------------------------------//
bool CMainFrame::InitD2D()
{
//initialize Direct2D and DirectWrite
HRESULT hr = S_OK;
if (!m_pD2DFactory)
{
HRESULT hr = D2D1CreateFactory(D2D1_FACTORY_TYPE_SINGLE_THREADED, &m_pD2DFactory);
if (FAILED(hr))
{
ATLASSERT(0);
}
}
if (!m_pWriteFactory)
{
float nTextHeight = 88;
hr = DWriteCreateFactory(DWRITE_FACTORY_TYPE_SHARED, __uuidof(m_pWriteFactory), reinterpret_cast<IUnknown**>(&m_pWriteFactory));
DWRITE_FONT_WEIGHT w = DWRITE_FONT_WEIGHT_NORMAL;
DWRITE_FONT_STYLE style = DWRITE_FONT_STYLE_NORMAL;
hr = m_pWriteFactory->CreateTextFormat(L"Arial",
NULL,
w,
style,
DWRITE_FONT_STRETCH_NORMAL,
nTextHeight,
L"",
&m_pTextFormat
);
}
return SUCCEEDED(hr);
}
//-------------------------------------------------------------//
// CMainFrame message handlers
bool CMainFrame::InitD3D()
{
//initialize DirectX 11
UINT createDeviceFlags = D3D11_CREATE_DEVICE_BGRA_SUPPORT;
#if defined(DEBUG) || defined(_DEBUG)
createDeviceFlags |= D3D11_CREATE_DEVICE_DEBUG;
#endif
D3D_FEATURE_LEVEL featureLevel;
HRESULT hr = D3D11CreateDevice(
0, // default adapter
m_D3DDriverType,
0, // no software device
createDeviceFlags,
0, 0, // default feature level array
D3D11_SDK_VERSION,
&m_pD3DDevice,
&featureLevel,
&m_pD3DImmediateContext);
if (FAILED(hr))
{
AfxMessageBox(L"D3D11CreateDevice Failed.");
return false;
}
if (featureLevel != D3D_FEATURE_LEVEL_11_0)
{
AfxMessageBox(L"Direct3D Feature Level 11 unsupported.");
return false;
}
hr = m_pD3DDevice->CheckMultisampleQualityLevels(DXGI_FORMAT_R8G8B8A8_UNORM, 4, &m_4xMsaaQuality);
ATLASSERT(m_4xMsaaQuality > 0);
// Fill out a DXGI_SWAP_CHAIN_DESC to describe our swap chain.
CRect quadrantRect;
GetClientRect(&quadrantRect);
float w = (float)quadrantRect.Width() / 2;
float h = (float)quadrantRect.Height() / 2;
DXGI_SWAP_CHAIN_DESC sd;
sd.BufferDesc.Width = w;
sd.BufferDesc.Height = h;
sd.BufferDesc.RefreshRate.Numerator = 60;
sd.BufferDesc.RefreshRate.Denominator = 1;
sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
sd.BufferDesc.ScanlineOrdering = DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED;
sd.BufferDesc.Scaling = DXGI_MODE_SCALING_UNSPECIFIED;
// Use 4X MSAA?
if (m_Enable4xMsaa)
{
sd.SampleDesc.Count = 4;
sd.SampleDesc.Quality = m_4xMsaaQuality - 1;
}
// No MSAA
else
{
sd.SampleDesc.Count = 1;
sd.SampleDesc.Quality = 0;
}
sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
sd.BufferCount = 1;
sd.OutputWindow = GetSafeHwnd();
sd.Windowed = true;
sd.SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
sd.Flags = 0;
/*hr = m_pD3DDevice->QueryInterface(__uuidof(IDXGIDevice), (void**)&m_pDXGIDevice);
if (FAILED(hr))
{
ATLASSERT(0);
}*/
//hr = m_pDXGIDevice->GetParent(__uuidof(IDXGIAdapter), (void**)&m_pDXGIAdapter);
//if (FAILED(hr))
//{
// ATLASSERT(0);
//}
//hr = m_pDXGIAdapter->GetParent(__uuidof(IDXGIFactory), (void**)&m_pDXGIFactory);
//if (FAILED(hr))
//{
// ATLASSERT(0);
//}
//hr = m_pDXGIFactory->CreateSwapChain(m_pD3DDevice, &sd, &m_pSwapChain);
//if (FAILED(hr))
//{
// ATLASSERT(0);
//}
m_pView[0]->Init(0, m_pTextFormat, m_pD2DFactory, sd, m_Enable4xMsaa, m_4xMsaaQuality, m_pD3DDevice, m_pD3DImmediateContext);
m_pView[1]->Init(1, m_pTextFormat, m_pD2DFactory, sd, m_Enable4xMsaa, m_4xMsaaQuality, m_pD3DDevice, m_pD3DImmediateContext);
m_pView[2]->Init(2, m_pTextFormat, m_pD2DFactory, sd, m_Enable4xMsaa, m_4xMsaaQuality, m_pD3DDevice, m_pD3DImmediateContext);
m_pView[3]->Init(3, m_pTextFormat, m_pD2DFactory, sd, m_Enable4xMsaa, m_4xMsaaQuality, m_pD3DDevice, m_pD3DImmediateContext);
DragAcceptFiles(TRUE);
return true;
}
//-------------------------------------------------------------//
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndStatusBar.Create(this))
{
TRACE0("Failed to create status bar\n");
return -1; // fail to create
}
m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT));
return 0;
}
//-------------------------------------------------------------//
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
// CMainFrame diagnostics
#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
CFrameWnd::AssertValid();
}
void CMainFrame::Dump(CDumpContext& dc) const
{
CFrameWnd::Dump(dc);
}
#endif //_DEBUG
// CMainFrame message handlers
//-------------------------------------------------------------//
void CMainFrame::OnSize(UINT nType, int cx, int cy)
{
CFrameWnd::OnSize(nType, cx, cy);
// When the main frame window is resized, readjust the pane sizes.
if (m_bSplitterCreated && nType != SIZE_MINIMIZED)
{
// The child of the frame is the CSplitterWnd. The client area
// of the CSplitterWnd covers the left over client area of the frame
// window after control bars have been placed.
CWnd* v = GetWindow(GW_CHILD);
CRect R;
v->GetClientRect(&R);
int w = R.right / 2;
int h = R.bottom / 2;
m_wndSplitter.SetRowInfo(0, h, 1);
m_wndSplitter.SetRowInfo(1, h, 1);
m_wndSplitter.SetColumnInfo(0, w, 1);
m_wndSplitter.SetColumnInfo(1, w, 1);
m_wndSplitter.RecalcLayout();
}
}
//-------------------------------------------------------------//
void CMainFrame::Render()
{
if (m_pView[0]) m_pView[0]->Render();
if (m_pView[1]) m_pView[1]->Render();
if (m_pView[2]) m_pView[2]->Render();
if (m_pView[3]) m_pView[3]->Render();
}
//-------------------------------------------------------------//
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// Observe that the CSplitterWnd is a child of the frame. The CSplitterWnd
// is the window that basically covers the left over client area of the frame
// window after control bars have been placed. (The frame window includes the
// control bar areas.)
m_bSplitterCreated = m_wndSplitter.CreateStatic(this, 2, 2);
if (!m_bSplitterCreated)
return FALSE;
// Associate a view instance with each pane.
if (!m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CMFCDirectX11View), CSize(0, 0), pContext) ||
!m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CMFCDirectX11View), CSize(0, 0), pContext) ||
!m_wndSplitter.CreateView(1, 0, RUNTIME_CLASS(CMFCDirectX11View), CSize(0, 0), pContext) ||
!m_wndSplitter.CreateView(1, 1, RUNTIME_CLASS(CMFCDirectX11View), CSize(0, 0), pContext))
return FALSE;
// Save pointers to the views (the returned pane is usually a CView-derived class).
m_pView[0] = (CMFCDirectX11View*)m_wndSplitter.GetPane(0, 0);
m_pView[1] = (CMFCDirectX11View*)m_wndSplitter.GetPane(0, 1);
m_pView[2] = (CMFCDirectX11View*)m_wndSplitter.GetPane(1, 0);
m_pView[3] = (CMFCDirectX11View*)m_wndSplitter.GetPane(1, 1);
return TRUE;
}