JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CDxDirectView Class Reference

#include <DxDirectView.h>

Inheritance diagram for CDxDirectView:
Collaboration diagram for CDxDirectView:

Public Member Functions

virtual void InitObject (void)
 
virtual void ExecRender (void)
 
virtual BOOL SetNewSurface (int ovsbpos=0)
 
virtual void OnDraw (CDC *pDC)
 
virtual void OnInitialUpdate ()
 
virtual void AssertValid () const
 
virtual void Dump (CDumpContext &dc) const
 
- Public Member Functions inherited from CDxBaseView
 CDxBaseView ()
 
virtual ~CDxBaseView ()
 
virtual void SetState (void)
 
virtual void ClearObject (void)
 
virtual void SetParameter (D3DPRESENT_PARAMETERS *d3dParam, int xsize, int ysize)
 
POINT GetWindowDisplaySize (POINT pt)
 
BOOL InitDevice (int xsize=0, int ysize=0, CWnd *cwnd=NULL)
 
virtual int GetMouseButton ()
 
- Public Member Functions inherited from CExView
POINT GetMousePos ()
 
POINT SetWindowSize (int xs, int ys, BOOL first=TRUE)
 
POINT GetWindowSize (POINT pt)
 
POINT GetClientSize (POINT pt)
 
POINT GetWindowReSize (POINT pt)
 
POINT ExecWindowReSize (int xs, int ys)
 
void SetTitle (LPCTSTR title)
 
virtual void TimerStart (int tm=40)
 
virtual void TimerStop ()
 
virtual ~CExView ()
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 
afx_msg void OnTimer (UINT_PTR nIDEvent)
 

Public Attributes

RECT renderRect
 
- Public Attributes inherited from CDxBaseView
LPDIRECT3D9 lpD3D
 
LPDIRECT3DDEVICE9 lpD3DDevice
 
LPDIRECT3DSURFACE9 lpBackBuffer
 
LPDIRECT3DSURFACE9 lpSurface
 
LPDIRECT3DTEXTURE9 lpTexture
 
D3DPRESENT_PARAMETERS d3dParam
 
LPDIRECTINPUT8 lpDInput
 
LPDIRECTINPUTDEVICE8 lpDMouse
 
LPDIRECTINPUTDEVICE8 lpDKeyBoard
 
POINT bufferSize
 
- Public Attributes inherited from CExView
ExCmnHead viewData
 
ExCmnHead cmnHead
 
ExMSGraph< sWordmsGraph
 
CExDocumentpDoc
 
CExFramepFrame
 
CAppCallBackpApp
 
voidanyData
 
BOOL hasViewData
 
CString Title
 
RECT clientRect
 
double sizeXYRate
 
double clientRate
 
double sizeFac
 
int xsize
 
int ysize
 
int zsize
 
int origXSize
 
int origYSize
 
int initXSize
 
int initYSize
 
int prevXSize
 
int prevYSize
 
bool cnstSize
 
bool cnstXSize
 
bool cnstYSize
 
bool cnstXYRate
 
int maxXSize
 
int maxYSize
 
int vSBpos
 
int prevSBpos
 
int vSBmax
 
int vSBntch
 
bool vSBctrl
 
int viewMode
 
int colorMode
 
int cMax
 
int cMin
 
int vMax
 
int vMin
 
bool doReSize
 

Protected Member Functions

 CDxDirectView ()
 
virtual ~CDxDirectView ()
 
- Protected Member Functions inherited from CDxBaseView
virtual void OnActivateView (BOOL bActivate, CView *pActivateView, CView *pDeactiveView)
 
- Protected Member Functions inherited from CExView
 CExView ()
 
afx_msg void OnSize (UINT nType, int cx, int cy)
 
afx_msg void OnVScroll (UINT nSBCode, UINT nPos, CScrollBar *pScrollBar)
 
afx_msg BOOL OnMouseWheel (UINT nFlags, short zDelta, CPoint pt)
 

Additional Inherited Members

- Protected Attributes inherited from CExView
int timerID
 
bool ctrlMouse
 
bool activeWin
 

Detailed Description

Definition at line 20 of file DxDirectView.h.

Constructor & Destructor Documentation

◆ CDxDirectView()

CDxDirectView ( )
protected

Definition at line 18 of file DxDirectView.cpp.

19{
20}

◆ ~CDxDirectView()

~CDxDirectView ( )
protectedvirtual

Definition at line 24 of file DxDirectView.cpp.

25{
26}

Member Function Documentation

◆ AssertValid()

void AssertValid ( ) const
virtual

Reimplemented from CExView.

Definition at line 47 of file DxDirectView.cpp.

48{
50}
virtual void AssertValid() const
Definition ExView.cpp:130

References CExView::AssertValid().

Here is the call graph for this function:

◆ Dump()

void Dump ( CDumpContext & dc) const
virtual

Reimplemented from CExView.

Definition at line 54 of file DxDirectView.cpp.

55{
57}
virtual void Dump(CDumpContext &dc) const
Definition ExView.cpp:136

References CExView::cMin, and CExView::Dump().

Here is the call graph for this function:

◆ ExecRender()

void ExecRender ( void )
virtual

Reimplemented from CDxBaseView.

Definition at line 274 of file DxDirectView.cpp.

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}
LPDIRECT3DDEVICE9 lpD3DDevice
D3DPRESENT_PARAMETERS d3dParam
LPDIRECT3DSURFACE9 lpBackBuffer
LPDIRECT3DSURFACE9 lpSurface
virtual void ExecRender(void)
CExFrame * pFrame
Definition ExView.h:77
HRESULT ResetDx9Device(LPDIRECT3DDEVICE9, D3DPRESENT_PARAMETERS *, CDxBaseView *pviw=NULL)
#define IDS_STR_FAIL_RESTR_DX9DEV
Definition resource.h:65
#define IDS_STR_FAIL_CLR_WND
Definition resource.h:64
#define IDS_STR_FAIL_TRNS_BAKBUF
Definition resource.h:61

References CExView::cMin, CDxBaseView::d3dParam, CDxDirectView::ExecRender(), IDS_STR_FAIL_CLR_WND, IDS_STR_FAIL_RESTR_DX9DEV, IDS_STR_FAIL_TRNS_BAKBUF, CDxBaseView::lpBackBuffer, CDxBaseView::lpD3DDevice, CDxBaseView::lpSurface, CExView::pFrame, and jbxwl::ResetDx9Device().

Referenced by CDxDirectView::ExecRender().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ InitObject()

void InitObject ( void )
virtual

Reimplemented from CDxBaseView.

Definition at line 309 of file DxDirectView.cpp.

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}
virtual BOOL SetNewSurface(int ovsbpos=0)
BOOL hasViewData
Definition ExView.h:81
ExCmnHead viewData
Definition ExView.h:72
POINT Dx9GetBackBuffer(LPDIRECT3DDEVICE9, LPDIRECT3DSURFACE9 *)
Definition Dx9.cpp:175
#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

References CDxBaseView::bufferSize, CExView::cMin, CExView::colorMode, jbxwl::Dx9GetBackBuffer(), CExView::hasViewData, IDS_STR_FAIL_REGET_BAKBUF, IDS_STR_FAIL_REGET_SURFACE, IDS_STR_FAIL_RETRNS_SURFACE, CDxBaseView::lpBackBuffer, CDxBaseView::lpD3DDevice, CDxBaseView::lpSurface, CDxDirectView::SetNewSurface(), and CExView::viewData.

Here is the call graph for this function:

◆ OnDraw()

void OnDraw ( CDC * pDC)
virtual

Reimplemented from CExView.

Definition at line 36 of file DxDirectView.cpp.

37{
38 CDocument* pDoc = GetDocument();
39
40 // TODO: 描画コードをここに追加してください.
41}
CExDocument * pDoc
Definition ExView.h:76

◆ OnInitialUpdate()

void OnInitialUpdate ( void )
virtual

Reimplemented from CDxBaseView.

Definition at line 66 of file DxDirectView.cpp.

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}
BOOL InitDevice(int xsize=0, int ysize=0, CWnd *cwnd=NULL)
bool doneErrorMessage
Definition ExFrame.h:51
int origYSize
Definition ExView.h:95
double sizeXYRate
Definition ExView.h:86
int origXSize
Definition ExView.h:94
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)
Definition ExView.cpp:156
#define IDS_STR_FAIL_GET_DX9DEV
Definition resource.h:59
#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

References CDxBaseView::bufferSize, CExView::cMin, CExView::colorMode, CExFrame::doneErrorMessage, jbxwl::Dx9GetBackBuffer(), CExView::hasViewData, IDS_STR_FAIL_CRT_BAKBUF, IDS_STR_FAIL_CRT_SURFACE, IDS_STR_FAIL_GET_DX9DEV, IDS_STR_FAIL_TRNS_SURFACE, CDxBaseView::InitDevice(), CDxBaseView::lpBackBuffer, CDxBaseView::lpD3DDevice, CDxBaseView::lpSurface, CExView::origXSize, CExView::origYSize, CExView::pFrame, CDxDirectView::renderRect, CDxDirectView::SetNewSurface(), CExView::SetWindowSize(), CExView::sizeXYRate, CExView::viewData, CExView::xsize, and CExView::ysize.

Here is the call graph for this function:

◆ SetNewSurface()

BOOL SetNewSurface ( int ovsbpos = 0)
virtual

Reimplemented from CExView.

Definition at line 167 of file DxDirectView.cpp.

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}
#define IDS_STR_DLTD_DATA
Definition resource.h:96
#define IDS_STR_ERROR
Definition resource.h:98

References CExView::cMin, CExView::colorMode, IDS_STR_DLTD_DATA, IDS_STR_ERROR, CDxBaseView::lpSurface, CDxDirectView::renderRect, and CExView::viewData.

Referenced by CDxDirectView::InitObject(), and CDxDirectView::OnInitialUpdate().

Here is the caller graph for this function:

Member Data Documentation

◆ renderRect

RECT renderRect

Definition at line 29 of file DxDirectView.h.

Referenced by CDxDirectView::OnInitialUpdate(), and CDxDirectView::SetNewSurface().


The documentation for this class was generated from the following files: