JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxDirectView.cpp
Go to the documentation of this file.
1//
2// DxDirectView.cpp : 実装ファイル
3//
4
5#include "MFCBase.h"
6#include "DxDirectView.h"
7
8
9using namespace jbxl;
10using namespace jbxwl;
11
12
13// DxDirectView
14
15IMPLEMENT_DYNCREATE(CDxDirectView, CExView)
16
17//
21
22
23//
27
28
29
30BEGIN_MESSAGE_MAP(CDxDirectView, CDxBaseView)
31END_MESSAGE_MAP()
32
33
34// DxDirectView 描画
35
36void CDxDirectView::OnDraw(CDC* pDC)
37{
38 CDocument* pDoc = GetDocument();
39
40 // TODO: 描画コードをここに追加してください.
41}
42
43
44// DxDirectView 診断
45
46#ifdef _DEBUG
51
52
53#ifndef _WIN32_WCE
54void CDxDirectView::Dump(CDumpContext& dc) const
55{
57}
58#endif
59#endif //_DEBUG
60
61
62
64// CDxDirectView メッセージ ハンドラ
65
67{
68 // xsize, ysize の4バイト境界の問題は呼び出し側の責任
69 if (xsize<=0 || ysize<=0) return;
70
71 //
72 D3DFORMAT format;
73
74 // RGB 8bit/plane
76 viewData.set(xsize, ysize, 1, 24);
77 format = D3DFMT_X8R8G8B8;
78 }
79 // ARGB/RGBA 8bit/plane
81 viewData.set(xsize, ysize, 1, 32);
82 format = D3DFMT_A8R8G8B8;
83 }
84 // XRGB 8bit/plane
85 else if (colorMode==GRAPH_COLOR_XRGB) {
86 viewData.set(xsize, ysize, 1, 32);
87 format = D3DFMT_X8R8G8B8;
88 }
89 // ABGR/BGRA 8bit/plane
91 viewData.set(xsize, ysize, 1, 32);
92 format = D3DFMT_A8R8G8B8;
93 }
94 // XBGR 8bit/plane
95 else if (colorMode==GRAPH_COLOR_XBGR) {
96 viewData.set(xsize, ysize, 1, 32);
97 format = D3DFMT_X8R8G8B8;
98 }
99 // ARGB16/RGBA16 16bit/plane
101 viewData.set(xsize, ysize, 1, 16);
102 format = D3DFMT_A4R4G4B4;
103 }
104 // RGB16 16bit/plane
105 else if (colorMode==GRAPH_COLOR_RGB16) {
106 viewData.set(xsize, ysize, 1, 16);
107 format = D3DFMT_R5G6B5;
108 }
109 // GRAPH_COLOR_MONO, MONO16 8,16bit/plane (MONO16は MONOに変換されて表示される)
110 else {
111 viewData.set(xsize, ysize);
112 format = D3DFMT_R5G6B5;
113 }
114 //
117 sizeXYRate = (double)ysize/(double)xsize;
118
119 renderRect.top = 0;
120 renderRect.left = 0;
121 renderRect.right = xsize;
122 renderRect.bottom = ysize;
123
124 //
125 // DX9
126 //
128 if (!rslt) {
130 mesg.LoadString(IDS_STR_FAIL_GET_DX9DEV);
131 MessageBox(_T("CDxDirectView::OnInitialUpdate():\n\n") + mesg);
133 return;
134 }
135
137 if (bufferSize.x<0) {
139 mesg.LoadString(IDS_STR_FAIL_CRT_BAKBUF);
140 MessageBox(_T("CDxDirectView::OnInitialUpdate():\n\n") + mesg);
141 return;
142 }
143
144 HRESULT hr = lpD3DDevice->CreateOffscreenPlainSurface(xsize, ysize, format, D3DPOOL_DEFAULT, &lpSurface, NULL);
145 if (FAILED(hr)) {
147 mesg.LoadString(IDS_STR_FAIL_CRT_SURFACE);
148 MessageBox(_T("CDxDirectView::OnInitialUpdate():\n\n") + mesg);
150 return;
151 }
152
154 if (!hasViewData) {
157 MessageBox(_T("CDxDirectView::OnInitialUpdate():\n\n") + mesg);
159 return;
160 }
161
162 SetWindowSize(viewData.xsize, viewData.ysize);
163 return;
164}
165
166
168{
169 if (isNull(viewData.grptr)) {
171 mesg.LoadString(IDS_STR_DLTD_DATA);
172 noti.LoadString(IDS_STR_ERROR);
173 MessageBox(_T("CDxDirectView::SetNewSurface():\n\n") + mesg, noti, MB_OK);
174 return FALSE;
175 }
176
177 HRESULT hr;
178
179 // RGB 8bit/plane
181 int srcpitch = viewData.xsize*3;
182 ntoh_data(viewData.grptr, viewData.lsize, 3);
184 }
185
186 // BGR 8bit/plane
187 else if (colorMode==GRAPH_COLOR_BGR) {
188 int srcpitch = viewData.xsize*3;
189 if (isBigEndian) swap_byte((void*)viewData.grptr, viewData.lsize, 3);
191 }
192
193 // XRGB/ARGB 8bit/plane
195 int srcpitch = viewData.xsize*4;
196 ntoh_data(viewData.grptr, viewData.lsize, 4);
199 }
200 else {
202 }
203 }
204
205 // RBGA 8bit/plane
206 else if (colorMode==GRAPH_COLOR_RGBA) {
207 int srcpitch = viewData.xsize*4;
208 if (isBigEndian) swap_byte((void*)viewData.grptr, viewData.lsize, 4);
210 }
211
212 // XBGR/ABGR 8bit/plane
214 int srcpitch = viewData.xsize*4;
215 ntoh_data(viewData.grptr, viewData.lsize, 4);
218 }
219 else {
221 }
222 }
223
224 // BGRA 8bit/plane
225 else if (colorMode==GRAPH_COLOR_BGRA) {
226 int srcpitch = viewData.xsize*4;
227 if (isBigEndian) swap_byte((void*)viewData.grptr, viewData.lsize, 4);
229 }
230
231 // RGB16 16bit/plane
232 else if (colorMode==GRAPH_COLOR_RGB16) {
233 int srcpitch = viewData.xsize*2;
234 ntoh_data(viewData.grptr, viewData.lsize, 2);
236 }
237
238 // ARGB16 16bit/plane
239 else if (colorMode==GRAPH_COLOR_ARGB16) {
240 int srcpitch = viewData.xsize*2;
241 ntoh_data(viewData.grptr, viewData.lsize, 2);
243 }
244
245 // RGBA16 16bit/plane
246 else if (colorMode==GRAPH_COLOR_RGBA16) {
247 int srcpitch = viewData.xsize*2;
248 ntoh_data(viewData.grptr, viewData.lsize, 2);
249 // R4G4B4A4 -> A4R4G4B4
250 for (int i=0; i<viewData.xsize*viewData.ysize*2; i+=2) {
251 int r = (viewData.grptr[i] &0xf0)>>4;
252 int g = (viewData.grptr[i] &0x0f)<<4;
253 int b = (viewData.grptr[i+1]&0xf0)>>4;
254 int a = (viewData.grptr[i+1]&0x0f)<<4;
255 viewData.grptr[i] = (uByte)(a + r);
256 viewData.grptr[i+1] = (uByte)(g + b);
257 }
259 }
260
261 // Monochrome 8,16bit/plane
263 // GRAPH_COLOR_MONO16 は 8bitに変換されている
264 int srcpitch = viewData.xsize;
266 }
267
268 if (FAILED(hr)) return FALSE;
269
270 return TRUE;
271}
272
273
275{
276 if (isNull(lpD3DDevice)) return;
277
279 if (FAILED(hr)) {
281 mesg.LoadString(IDS_STR_FAIL_CLR_WND);
282 MessageBox(_T("CDxDirectView::ExecRender():\n\n") + mesg);
283 return;
284 }
285
287 if (FAILED(hr)) {
289 mesg.LoadString(IDS_STR_FAIL_TRNS_BAKBUF);
290 MessageBox(_T("CDxDirectView::ExecRender():\n\n") + mesg);
291 return;
292 }
293
294 hr = lpD3DDevice->Present(NULL, NULL, NULL, NULL);
295 if (FAILED(hr)) {
297 if (FAILED(hr)) {
298 DEBUG_INFO("CDxDirectView::ExecRender(): %s (%s)\n", DXGetErrorString(hr), DXGetErrorDescription(hr));
301 MessageBox(_T("CDxDirectView::ExecRender():\n\n") + mesg + _T("\n") + DXGetErrorString(hr));
302 pFrame->SendMessage(WM_CLOSE);
303 }
304 else ExecRender();
305 }
306}
307
308
310{
312 if (bufferSize.x<0) {
315 MessageBox(_T("CDxDirectView::InitObject():\n\n") + mesg);
316 return;
317 }
318
319 HRESULT hr;
321 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_X8R8G8B8, D3DPOOL_DEFAULT, &lpSurface, NULL);
322 }
324 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT, &lpSurface, NULL);
325 }
326 else if (colorMode==GRAPH_COLOR_XRGB) {
327 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_X8R8G8B8, D3DPOOL_DEFAULT, &lpSurface, NULL);
328 }
330 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT, &lpSurface, NULL);
331 }
332 else if (colorMode==GRAPH_COLOR_XBGR) {
333 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_X8R8G8B8, D3DPOOL_DEFAULT, &lpSurface, NULL);
334 }
336 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_A4R4G4B4, D3DPOOL_DEFAULT, &lpSurface, NULL);
337 }
338 else { // GRAPH_COLOR_MONO, MONO16, RGB16
339 hr = lpD3DDevice->CreateOffscreenPlainSurface(viewData.xsize, viewData.ysize, D3DFMT_R5G6B5, D3DPOOL_DEFAULT, &lpSurface, NULL);
340 }
341
342 if (FAILED(hr)) {
345 MessageBox(_T("CDxDirectView::InitObject():\n\n") + mesg);
346 return;
347 }
348
350 if (!hasViewData) {
353 MessageBox(_T("CDxDirectView::InitObject():\n\n") + mesg);
354 return;
355 }
356 return;
357}
LPDIRECT3DDEVICE9 lpD3DDevice
D3DPRESENT_PARAMETERS d3dParam
LPDIRECT3DSURFACE9 lpBackBuffer
BOOL InitDevice(int xsize=0, int ysize=0, CWnd *cwnd=NULL)
LPDIRECT3DSURFACE9 lpSurface
virtual void OnInitialUpdate()
virtual void ExecRender(void)
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
virtual void InitObject(void)
virtual BOOL SetNewSurface(int ovsbpos=0)
bool doneErrorMessage
Definition ExFrame.h:51
BOOL hasViewData
Definition ExView.h:81
ExCmnHead viewData
Definition ExView.h:72
int origYSize
Definition ExView.h:95
CExFrame * pFrame
Definition ExView.h:77
double sizeXYRate
Definition ExView.h:86
int origXSize
Definition ExView.h:94
virtual void AssertValid() const
Definition ExView.cpp:130
virtual void Dump(CDumpContext &dc) const
Definition ExView.cpp:136
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)
Definition ExView.cpp:156
HRESULT ResetDx9Device(LPDIRECT3DDEVICE9, D3DPRESENT_PARAMETERS *, CDxBaseView *pviw=NULL)
POINT Dx9GetBackBuffer(LPDIRECT3DDEVICE9, LPDIRECT3DSURFACE9 *)
Definition Dx9.cpp:175
#define IDS_STR_DLTD_DATA
Definition resource.h:96
#define IDS_STR_FAIL_RESTR_DX9DEV
Definition resource.h:65
#define IDS_STR_ERROR
Definition resource.h:98
#define IDS_STR_FAIL_GET_DX9DEV
Definition resource.h:59
#define IDS_STR_FAIL_RETRNS_SURFACE
Definition resource.h:70
#define IDS_STR_FAIL_REGET_SURFACE
Definition resource.h:69
#define IDS_STR_FAIL_REGET_BAKBUF
Definition resource.h:68
#define IDS_STR_FAIL_CLR_WND
Definition resource.h:64
#define IDS_STR_FAIL_TRNS_BAKBUF
Definition resource.h:61
#define IDS_STR_FAIL_CRT_SURFACE
Definition resource.h:62
#define IDS_STR_FAIL_CRT_BAKBUF
Definition resource.h:60
#define IDS_STR_FAIL_TRNS_SURFACE
Definition resource.h:63