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

#include <DxBaseClass.h>

Inheritance diagram for CDxVTXBaseView:
Collaboration diagram for CDxVTXBaseView:

Public Member Functions

 CDxVTXBaseView ()
 
virtual ~CDxVTXBaseView ()
 
virtual void OnInitialUpdate (void)
 
virtual void SetState (void)
 
virtual void ExecRender (void)
 
virtual void InitObject (void)
 
virtual BOOL PrepareVB (void)
 
virtual void ReleaseVB (void)
 
virtual void SwitchRotation (void)
 
virtual void ExecRotation (void)
 
virtual void ExMouseWheel (void)
 
virtual void ExRotationAngle (void)
 
afx_msg void OnTimer (UINT_PTR nIDEvent)
 
- Public Member Functions inherited from CDxBaseView
 CDxBaseView ()
 
virtual ~CDxBaseView ()
 
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 BOOL SetNewSurface (int ovsbpos=0)
 
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

LPDIRECT3DVERTEXBUFFER9 vb
 
LPDIRECT3DVERTEXBUFFER9 lb
 
D3DXMATRIX matWorld
 
D3DXMATRIX matView
 
D3DXMATRIX matProj
 
D3DXMATRIX matTrans
 
D3DXMATRIX matTemp
 
D3DXMATRIX matRotate
 
D3DXMATRIX matRotateX
 
D3DXMATRIX matRotateY
 
D3DXMATRIX matRotateZ
 
D3DXVECTOR3 center
 
double rTime
 
double gTime
 
double lTime
 
double startTime
 
double angle
 
double angleX
 
double angleY
 
double angleZ
 
double mWheelAc
 
double mWheelNotch
 
bool rotation
 
bool reverseZ
 
- 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

virtual void OnDraw (CDC *pDC)
 
- Protected Member Functions inherited from CDxBaseView
virtual void OnActivateView (BOOL bActivate, CView *pActivateView, CView *pDeactiveView)
 
- Protected Member Functions inherited from CExView
 CExView ()
 
virtual void AssertValid () const
 
virtual void Dump (CDumpContext &dc) const
 
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 168 of file DxBaseClass.h.

Constructor & Destructor Documentation

◆ CDxVTXBaseView()

Definition at line 188 of file DxBaseClass.cpp.

189{
190 vb = lb = NULL;
191
192 rotation = false;
193 ctrlMouse = true;
194 reverseZ = false;
195
196 angleX = angleY = angleZ = 0.0;
197 angle = 0.0;
198 rTime = gTime = 0.0;
199 lTime = 1.0;
200 mWheelAc = 0.0;
201 mWheelNotch = 1.0;
202
204
208}
LPDIRECT3DVERTEXBUFFER9 lb
LPDIRECT3DVERTEXBUFFER9 vb
bool ctrlMouse
Definition ExView.h:125

◆ ~CDxVTXBaseView()

~CDxVTXBaseView ( )
virtual

Definition at line 212 of file DxBaseClass.cpp.

213{
214 //DEBUG_INFO("DESTRUCTOR: CDxVTXBaseView\n");
215 if (pApp!=NULL) pApp->ViewDestructor(this); // 上位アプリケーションに通知
216
217 ReleaseVB();
218}
virtual void ViewDestructor(CExView *vw)
Definition ExClass.h:62
virtual void ReleaseVB(void)
CAppCallBack * pApp
Definition ExView.h:78

References CExView::cMin, CExView::pApp, CDxVTXBaseView::ReleaseVB(), and CAppCallBack::ViewDestructor().

Here is the call graph for this function:

Member Function Documentation

◆ ExecRender()

virtual void ExecRender ( void )
inlinevirtual

Reimplemented from CDxBaseView.

Reimplemented in CDxSRenderView.

Definition at line 195 of file DxBaseClass.h.

195{} // 描画

Referenced by CDxVTXBaseView::OnDraw(), and CDxVTXBaseView::OnTimer().

Here is the caller graph for this function:

◆ ExecRotation()

void ExecRotation ( void )
virtual

回転処理 この関数の外で,matTrans(平行移動)が定義されていること. DirectInput は挙動が怪しいので使いたくない....

Definition at line 240 of file DxBaseClass.cpp.

241{
242 HRESULT hr;
243
245
246 if (rotation) {
247 angle = angle + (rTime - gTime);
248 D3DXMatrixRotationY(&matRotateY, (float)angle/(200.0f*10));
249 D3DXMatrixRotationX(&matRotateX, (float)angle/(100.0f*10));
251 }
252
253 else {
255 double mwheel = 0.0;
256
257 if (lpDMouse!=NULL && activeWin) {
258 lpDMouse->Acquire();
259 hr = lpDMouse->GetDeviceState(sizeof(DIMOUSESTATE), &dims);
260 if (SUCCEEDED(hr)) {
261 if (ctrlMouse) { // ctrlMouse: マウスによる操作が可能かどうか.
262 mwheel = (double)dims.lZ; // マウス ホイール移動量
263 if (dims.rgbButtons[0]==0x80) {
264 POINT pt = GetMousePos();
265 if (pt.x>=0 && pt.y>=0) {
266 angleX = (double)dims.lX; // マウス X移動量
267 angleY = (double)dims.lY; // マウス Y移動量
268 ExRotationAngle(); // 呼び出し側の都合により角度を入れ替える.
269 lTime = rTime - gTime;
270 }
271 else ctrlMouse = false;
272 }
273 }
274 if (dims.rgbButtons[0]!=0x80 && !ctrlMouse) {
275 POINT pt = GetMousePos(); // クライアント領域内で左クリックすると
276 if (pt.x>=0 && pt.y>=0) ctrlMouse = true; // マウスによる操作が可能に.
277 }
278 }
279 }
280 if (mwheel!=0.0) {
282 ExMouseWheel();
283 }
284
289 angle = 0.0;
290 }
291 gTime = rTime;
292
294 lpD3DDevice->SetTransform(D3DTS_WORLD, &matWorld);
295}
LPDIRECT3DDEVICE9 lpD3DDevice
LPDIRECTINPUTDEVICE8 lpDMouse
virtual void ExRotationAngle(void)
virtual void ExMouseWheel(void)
bool activeWin
Definition ExView.h:126
POINT GetMousePos()
Definition ExView.cpp:303

References CExView::activeWin, CDxVTXBaseView::angle, CDxVTXBaseView::angleX, CDxVTXBaseView::angleY, CDxVTXBaseView::angleZ, CExView::cMin, CExView::ctrlMouse, CDxVTXBaseView::ExMouseWheel(), CDxVTXBaseView::ExRotationAngle(), CExView::GetMousePos(), CDxVTXBaseView::gTime, CDxBaseView::lpD3DDevice, CDxBaseView::lpDMouse, CDxVTXBaseView::lTime, CDxVTXBaseView::matRotate, CDxVTXBaseView::matRotateX, CDxVTXBaseView::matRotateY, CDxVTXBaseView::matRotateZ, CDxVTXBaseView::matTemp, CDxVTXBaseView::matTrans, CDxVTXBaseView::matWorld, CDxVTXBaseView::mWheelAc, CDxVTXBaseView::mWheelNotch, CDxVTXBaseView::rotation, CDxVTXBaseView::rTime, and CDxVTXBaseView::startTime.

Referenced by CDxVTXBaseView::OnDraw(), and CDxVTXBaseView::OnTimer().

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

◆ ExMouseWheel()

virtual void ExMouseWheel ( void )
inlinevirtual

Reimplemented in CDxSRenderView.

Definition at line 204 of file DxBaseClass.h.

204{} // マウスホイールによる操作の切り替え

Referenced by CDxVTXBaseView::ExecRotation().

Here is the caller graph for this function:

◆ ExRotationAngle()

virtual void ExRotationAngle ( void )
inlinevirtual

Reimplemented in CDxSRenderView.

Definition at line 205 of file DxBaseClass.h.

205{} // 回転方向の入れ替え

Referenced by CDxVTXBaseView::ExecRotation().

Here is the caller graph for this function:

◆ InitObject()

virtual void InitObject ( void )
inlinevirtual

Reimplemented from CDxBaseView.

Reimplemented in CDxSRenderView.

Definition at line 196 of file DxBaseClass.h.

196{SetState();} // デバイスリセット時のリソース再獲得関数
virtual void SetState(void)

References CDxVTXBaseView::SetState().

Here is the call graph for this function:

◆ OnDraw()

void OnDraw ( CDC * pDC)
protectedvirtual

Reimplemented from CExView.

Reimplemented in CDx3DDirectView, and CDxSRenderView.

Definition at line 315 of file DxBaseClass.cpp.

316{
317 if (hasViewData && timerID==-1) {
319 else ExecRotation();
320 ExecRender();
321 }
322 else if (!hasViewData) DEBUG_ERROR("CDxVTXBaseView::OnDraw(): ERROR: 表示可能なデータがありません\n");
323}
virtual void ExecRotation(void)
virtual void ExecRender(void)
BOOL hasViewData
Definition ExView.h:81
POINT ExecWindowReSize(int xs, int ys)
Definition ExView.cpp:276
RECT clientRect
Definition ExView.h:85
bool doReSize
Definition ExView.h:121

References CExView::clientRect, CExView::cMin, CExView::doReSize, CDxVTXBaseView::ExecRender(), CDxVTXBaseView::ExecRotation(), CExView::ExecWindowReSize(), CExView::hasViewData, and CExView::timerID.

Here is the call graph for this function:

◆ OnInitialUpdate()

virtual void OnInitialUpdate ( void )
inlinevirtual

Reimplemented from CDxBaseView.

Reimplemented in CDxSRenderView, and CDx3DDirectView.

Definition at line 193 of file DxBaseClass.h.

193{} // 初期化

Referenced by CDx3DDirectView::OnInitialUpdate().

Here is the caller graph for this function:

◆ OnTimer()

void OnTimer ( UINT_PTR nIDEvent)

Definition at line 302 of file DxBaseClass.cpp.

303{
304 if (hasViewData) {
306 else ExecRotation();
307 ExecRender();
308 }
309 else DEBUG_ERROR("CDxVTXBaseView::OnTimer(): ERROR: 表示可能なデータがありません\n");
311}
afx_msg void OnTimer(UINT_PTR nIDEvent)
Definition ExView.cpp:427

References CExView::clientRect, CExView::cMin, CExView::doReSize, CDxVTXBaseView::ExecRender(), CDxVTXBaseView::ExecRotation(), CExView::ExecWindowReSize(), CExView::hasViewData, and CExView::OnTimer().

Here is the call graph for this function:

◆ PrepareVB()

virtual BOOL PrepareVB ( void )
inlinevirtual

Reimplemented in CDxSRenderView.

Definition at line 198 of file DxBaseClass.h.

198{return TRUE;} // 頂点バッファのセット

References CExView::cMin.

◆ ReleaseVB()

virtual void ReleaseVB ( void )
inlinevirtual

Definition at line 199 of file DxBaseClass.h.

199{DXRELEASE(vb); DXRELEASE(lb);} // 頂点バッファの開放
#define DXRELEASE(d)
Definition Dx9.h:39

References DXRELEASE, CDxVTXBaseView::lb, and CDxVTXBaseView::vb.

Referenced by CDxVTXBaseView::~CDxVTXBaseView().

Here is the caller graph for this function:

◆ SetState()

virtual void SetState ( void )
inlinevirtual

Reimplemented from CDxBaseView.

Reimplemented in CDxSRenderView.

Definition at line 194 of file DxBaseClass.h.

194{} // 環境設定

Referenced by CDxVTXBaseView::InitObject().

Here is the caller graph for this function:

◆ SwitchRotation()

void SwitchRotation ( void )
virtual

Member Data Documentation

◆ angle

double angle

Definition at line 179 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ angleX

◆ angleY

◆ angleZ

◆ center

D3DXVECTOR3 center

Definition at line 176 of file DxBaseClass.h.

Referenced by CDxSRenderView::OnInitialUpdate(), and CDxSRenderView::SetState().

◆ gTime

double gTime

Definition at line 178 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation(), and CDxVTXBaseView::SwitchRotation().

◆ lb

Definition at line 171 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ReleaseVB().

◆ lTime

double lTime

Definition at line 178 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ matProj

D3DXMATRIX matProj

Definition at line 173 of file DxBaseClass.h.

Referenced by CDxSRenderView::SetState().

◆ matRotate

D3DXMATRIX matRotate

Definition at line 175 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ matRotateX

D3DXMATRIX matRotateX

Definition at line 175 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ matRotateY

D3DXMATRIX matRotateY

Definition at line 175 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ matRotateZ

D3DXMATRIX matRotateZ

Definition at line 175 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ matTemp

D3DXMATRIX matTemp

Definition at line 174 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ matTrans

D3DXMATRIX matTrans

Definition at line 174 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation(), and CDxSRenderView::SetState().

◆ matView

D3DXMATRIX matView

Definition at line 173 of file DxBaseClass.h.

Referenced by CDxSRenderView::ExMouseWheel().

◆ matWorld

D3DXMATRIX matWorld

Definition at line 173 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ mWheelAc

◆ mWheelNotch

double mWheelNotch

Definition at line 181 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation().

◆ reverseZ

bool reverseZ

Definition at line 183 of file DxBaseClass.h.

Referenced by CDxSRenderView::OnInitialUpdate(), and CDxSRenderView::PrepareVB().

◆ rotation

bool rotation

Definition at line 182 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation(), and CDxVTXBaseView::SwitchRotation().

◆ rTime

double rTime

Definition at line 178 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation(), and CDxVTXBaseView::SwitchRotation().

◆ startTime

double startTime

Definition at line 178 of file DxBaseClass.h.

Referenced by CDxVTXBaseView::ExecRotation(), and CDxVTXBaseView::SwitchRotation().

◆ vb


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