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

#include <DxVScrollView.h>

Inheritance diagram for CDxVScrollView:
Collaboration diagram for CDxVScrollView:

Public Member Functions

virtual void InitObject (void)
 
virtual void ExecRender ()
 
virtual BOOL SetNewSurface (int ovsbpos)
 
virtual void OnInitialUpdate ()
 
- 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 void OnDraw (CDC *pDC)
 
virtual ~CExView ()
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 
afx_msg void OnTimer (UINT_PTR nIDEvent)
 

Public Attributes

RECT dispRect
 
RECT renderRect
 
RECT bufferRect
 
int maxClientYSize
 
- 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

 CDxVScrollView ()
 
virtual ~CDxVScrollView ()
 
virtual void AssertValid () const
 
virtual void Dump (CDumpContext &dc) const
 
afx_msg void OnSize (UINT nType, int cx, int cy)
 
afx_msg void OnLButtonDblClk (UINT nFlags, CPoint point)
 
- 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 30 of file DxVScrollView.h.

Constructor & Destructor Documentation

◆ CDxVScrollView()

CDxVScrollView ( )
protected

Definition at line 25 of file DxVScrollView.cpp.

26{
27 cnstXSize = true;
28 activeWin = true;
29
30 // メモリ上の領域 dispRect = renderRect + vSBpos
31 dispRect.top = 0; // 表示するメモリの先頭(Y座標)
32 dispRect.bottom = 0; // 表示するメモリの最後(Y座標)
33 dispRect.right = 0; //
34 dispRect.left = 0; //
35
36 // サーフェイスの有効領域 または 表示領域の大きさ
37 renderRect.top = 0; //
38 renderRect.bottom = 0; //
39 renderRect.right = 0; //
40 renderRect.left = 0; //
41
42 // バックバッファの描画領域
43 bufferRect.top = 0; //
44 bufferRect.bottom = 0; //
45 bufferRect.right = 0; //
46 bufferRect.left = 0; //
47
49 vSBntch = 10;
50}
bool activeWin
Definition ExView.h:126
bool cnstXSize
Definition ExView.h:102

◆ ~CDxVScrollView()

~CDxVScrollView ( )
protectedvirtual

Definition at line 53 of file DxVScrollView.cpp.

54{
55}

Member Function Documentation

◆ AssertValid()

void AssertValid ( ) const
protectedvirtual

Reimplemented from CExView.

Definition at line 82 of file DxVScrollView.cpp.

83{
85}
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
protectedvirtual

Reimplemented from CExView.

Definition at line 89 of file DxVScrollView.cpp.

90{
92}
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 152 of file DxVScrollView.cpp.

153{
154 HRESULT hr;
155
156 // クライアント領域がメモリ領域より大きい場合の転送領域の計算
157 if (clientRect.bottom==0) bufferRect.bottom = 0;
158 else bufferRect.bottom = (int)(renderRect.bottom*bufferSize.y/(float)clientRect.bottom);
159 bufferRect.right = bufferSize.x;
160
161 hr = lpD3DDevice->Clear(0, NULL, D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER, D3DCOLOR_XRGB(255,255,255), 1.0f, 0);
162 if (FAILED(hr)) {
164 mesg.LoadString(IDS_STR_FAIL_CLR_WND);
165 MessageBox(_T("CDxVScrollView::ExecRender():\n\n") + mesg);
166 return;
167 }
168
170 if (FAILED(hr)) {
172 mesg.LoadString(IDS_STR_FAIL_TRNS_BAKBUF);
173 MessageBox(_T("CDxVScrollView::ExecRender():\n\n") + mesg);
174 return;
175 }
176
177 hr = lpD3DDevice->Present(NULL, NULL, NULL, NULL);
178 if (FAILED(hr)) {
179 //DEBUG_INFO("CDxVScrollView::ExecRender(): Resetting Device ...\n");
181 if (FAILED(hr)) {
184 MessageBox(_T("CDxVScrollView::ExecRender():\n\n") + mesg);
185 pFrame->SendMessage(WM_CLOSE);
186 //GetParentFrame()->DestroyWindow();
187 }
188 else ExecRender();
189 }
190}
LPDIRECT3DDEVICE9 lpD3DDevice
D3DPRESENT_PARAMETERS d3dParam
LPDIRECT3DSURFACE9 lpBackBuffer
LPDIRECT3DSURFACE9 lpSurface
virtual void ExecRender()
CExFrame * pFrame
Definition ExView.h:77
RECT clientRect
Definition ExView.h:85
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 CDxVScrollView::bufferRect, CDxBaseView::bufferSize, CExView::clientRect, CExView::cMin, CDxBaseView::d3dParam, CDxVScrollView::ExecRender(), IDS_STR_FAIL_CLR_WND, IDS_STR_FAIL_RESTR_DX9DEV, IDS_STR_FAIL_TRNS_BAKBUF, CDxBaseView::lpBackBuffer, CDxBaseView::lpD3DDevice, CDxBaseView::lpSurface, CExView::pFrame, CDxVScrollView::renderRect, and jbxwl::ResetDx9Device().

Referenced by CDxVScrollView::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 218 of file DxVScrollView.cpp.

219{
221 if (bufferSize.x<0) {
224 MessageBox(_T("CDxVScrollView::InitObject():\n\n") + mesg);
225 return;
226 }
227
229 HRESULT hr = lpD3DDevice->CreateOffscreenPlainSurface(cmnHead.xsize, clientRect.bottom+1, D3DFMT_R5G6B5, D3DPOOL_DEFAULT, &lpSurface, NULL);
230 if (FAILED(hr)) {
233 MessageBox(_T("CDxVScrollView::InitObject():\n\n") + mesg);
234 return;
235 }
236
238 if (!hasViewData) {
241 MessageBox(_T("CDxVScrollView::InitObject():\n\n") + mesg);
242 return;
243 }
244 return;
245}
virtual BOOL SetNewSurface(int ovsbpos)
ExCmnHead cmnHead
Definition ExView.h:73
BOOL hasViewData
Definition ExView.h:81
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::clientRect, CExView::cMin, CExView::cmnHead, 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, CDxVScrollView::SetNewSurface(), and CExView::vSBpos.

Here is the call graph for this function:

◆ OnInitialUpdate()

void OnInitialUpdate ( void )
virtual

Reimplemented from CDxBaseView.

Definition at line 100 of file DxVScrollView.cpp.

101{
103 if (isNull(cmnHead.grptr)) return;
104
105 maxClientYSize = Min(cmnHead.ysize, this->maxYSize);
107 if (!rslt) {
108 // 失敗した場合は,領域が大きすぎる可能性がある
110 mesg.LoadString(IDS_STR_FAIL_GET_DX9DEV);
111 MessageBox(_T("CDxVScrollView::OnInitialUpdate():\n\n") + mesg);
113 return;
114 }
115
116 dispRect.right = cmnHead.xsize - 1; // dispRect.left = 0;
117 renderRect.right = cmnHead.xsize - 1;
118 dispRect.bottom = Min(cmnHead.ysize-1, clientRect.bottom);
119 renderRect.bottom = dispRect.bottom;
120
121 vSBpos = 0;
122 vSBmax = cmnHead.ysize - cmnHead.zsize; //(clientRect.bottom - clientRect.top + 1);
123 if (vSBmax<0) vSBmax = 0;
125
126 // グラフィックデータ用バックバッファ
128 if (bufferSize.x<0) {
130 mesg.LoadString(IDS_STR_FAIL_CRT_BAKBUF);
131 MessageBox(_T("CDxVScrollView::OnInitialUpdate():\n\n") + mesg);
133 return;
134 }
135
136 origXSize = cmnHead.xsize;
137 origYSize = cmnHead.zsize;
138 sizeXYRate = (float)cmnHead.zsize/(float)cmnHead.xsize;
139
140 //DEBUG_INFO("CDxVScrollView::OnInitialUpdate():\n");
141 SetWindowSize(cmnHead.xsize, cmnHead.zsize);
143
145 this->SetTitle(Title);
146
147 return;
148}
BOOL InitDevice(int xsize=0, int ysize=0, CWnd *cwnd=NULL)
ExCmnHead cmnHead
Definition ExDocument.h:53
bool doneErrorMessage
Definition ExFrame.h:51
CString Title
Definition ExView.h:83
int origYSize
Definition ExView.h:95
double sizeXYRate
Definition ExView.h:86
int origXSize
Definition ExView.h:94
void SetTitle(LPCTSTR title)
Definition ExView.cpp:348
CExDocument * pDoc
Definition ExView.h:76
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_BAKBUF
Definition resource.h:60

References CDxBaseView::bufferSize, CExView::clientRect, CExView::cMin, CExDocument::cmnHead, CExView::cmnHead, CDxVScrollView::dispRect, CExFrame::doneErrorMessage, jbxwl::Dx9GetBackBuffer(), CExView::hasViewData, IDS_STR_FAIL_CRT_BAKBUF, IDS_STR_FAIL_GET_DX9DEV, CDxBaseView::InitDevice(), CDxBaseView::lpBackBuffer, CDxBaseView::lpD3DDevice, CDxVScrollView::maxClientYSize, CExView::origXSize, CExView::origYSize, CExView::pDoc, CExView::pFrame, CExDocument::preTitle, CExDocument::pstTitle, CDxVScrollView::renderRect, CExView::SetTitle(), CExView::SetWindowSize(), CExView::sizeXYRate, CExDocument::Title, CExView::Title, CExView::vSBmax, and CExView::vSBpos.

Here is the call graph for this function:

◆ OnLButtonDblClk()

void OnLButtonDblClk ( UINT nFlags,
CPoint point )
protected

Definition at line 263 of file DxVScrollView.cpp.

264{
266}
virtual void onLButtonDBLClick()
Definition ExFrame.h:58

References CExFrame::onLButtonDBLClick(), and CExView::pFrame.

Here is the call graph for this function:

◆ OnSize()

void OnSize ( UINT nType,
int cx,
int cy )
protected

Definition at line 194 of file DxVScrollView.cpp.

195{
197
198 if (pFrame!=NULL) {
200
201 vSBmax = cmnHead.ysize - Min(cmnHead.ysize-1, clientRect.bottom) - 1;
202 if (vSBmax<0) vSBmax = 0;
203 if (vSBpos>vSBmax) vSBpos = vSBmax;
205
207
208 HRESULT hr;
209 hr = lpD3DDevice->CreateOffscreenPlainSurface(cmnHead.xsize, clientRect.bottom+1, D3DFMT_R5G6B5, D3DPOOL_DEFAULT, &lpSurface, NULL);
210 if (FAILED(hr)) return;
211
213 }
214}
#define DXRELEASE(d)
Definition Dx9.h:39
afx_msg void OnSize(UINT nType, int cx, int cy)
Definition ExView.cpp:410

References CExView::clientRect, CExView::cMin, CExView::cmnHead, DXRELEASE, CDxBaseView::lpD3DDevice, CDxBaseView::lpSurface, CExView::OnSize(), CExView::pFrame, CDxVScrollView::SetNewSurface(), CExView::vSBmax, and CExView::vSBpos.

Here is the call graph for this function:

◆ SetNewSurface()

BOOL SetNewSurface ( int ovsbpos)
virtual

Reimplemented from CExView.

Definition at line 248 of file DxVScrollView.cpp.

249{
250 renderRect.bottom = Min(cmnHead.ysize-1, clientRect.bottom);
251 dispRect.bottom = renderRect.bottom + vSBpos;
252 dispRect.top = vSBpos;
255 if (FAILED(hr)) return FALSE;
256
258 return TRUE;
259}

References CExView::clientRect, CExView::cMin, CExView::cmnHead, CDxVScrollView::dispRect, CDxBaseView::lpSurface, CDxVScrollView::renderRect, and CExView::vSBpos.

Referenced by CDxVScrollView::InitObject(), and CDxVScrollView::OnSize().

Here is the caller graph for this function:

Member Data Documentation

◆ bufferRect

RECT bufferRect

Definition at line 40 of file DxVScrollView.h.

Referenced by CDxVScrollView::ExecRender().

◆ dispRect

RECT dispRect

◆ maxClientYSize

int maxClientYSize

Definition at line 41 of file DxVScrollView.h.

Referenced by CDxVScrollView::OnInitialUpdate().

◆ renderRect


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