JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxBaseClass.cpp
Go to the documentation of this file.
1
2#include "DxBaseClass.h"
3
4
5using namespace jbxwl;
6
7
9// CDxBaseView for DirectX
10
11BEGIN_MESSAGE_MAP(jbxwl::CDxBaseView, CExView)
12END_MESSAGE_MAP()
13
14
16{
17 lpD3D = NULL;
18 lpD3DDevice = NULL; // DirectX9 3Dデバイス
19 lpBackBuffer = NULL; // バックバッファ
20 lpSurface = NULL; // サーフェース
21 lpTexture = NULL; // テクスチャ
22
23 lpDInput = NULL;
24 lpDMouse = NULL; // マウスデバイス
25 lpDKeyBoard = NULL; // キーボードバイス
26
27 bufferSize.x = bufferSize.y = 0;
28}
29
30
31
33{
34 //DEBUG_INFO("DESTRUCTOR: CDxBaseView\n");
35 if (pApp!=NULL) pApp->ViewDestructor(this); // 上位アプリケーションに通知
36
37// DXRELEASE(lpDMouse); // リリース禁止
38// DXRELEASE(lpDKeyBoard); // リリース禁止
43}
44
45
52BOOL CDxBaseView::InitDevice(int xsize, int ysize, CWnd* cwnd)
53{
54 lpD3D = GpD3D;
55 if (cwnd ==NULL) cwnd = this;
57
59 if (lpD3DDevice==NULL) return FALSE;
60
61 // インプットデバイス
64
65 return TRUE;
66}
67
68
69//
77
78
79//
80// デバイスのパラメータを設定する.オーバーロード可能.
81//
82void CDxBaseView::SetParameter(D3DPRESENT_PARAMETERS* d3dParam, int xsize, int ysize)
83{
84 RECT rect;
85
86 if (xsize>0 && ysize>0) {
87 rect.right = xsize;
88 rect.bottom = ysize;
89 }
90 else {
91 this->GetClientRect(&rect);
92 }
93 rect.right = (int)(rect.right*1.5);
94 rect.bottom = (int)(rect.bottom*1.5);
95
97 d3dParam->BackBufferWidth = rect.right;
98 d3dParam->BackBufferHeight = rect.bottom;
99 d3dParam->BackBufferCount = 1;
100 d3dParam->Windowed = TRUE;
101 d3dParam->SwapEffect = D3DSWAPEFFECT_DISCARD;
102// d3dParam->SwapEffect = D3DSWAPEFFECT_FLIP;
103 d3dParam->BackBufferFormat = D3DFMT_UNKNOWN;
104 d3dParam->EnableAutoDepthStencil = TRUE;
105 d3dParam->AutoDepthStencilFormat = D3DFMT_D16;
106}
107
108
109//
110// ウィンドウが画面に収まるように大きさを再計算する
111//
113{
115
116 lpD3D->GetAdapterDisplayMode(D3DADAPTER_DEFAULT, &disp); // ルートウィンドウのサイズ
117 int scrSize = Min(disp.Width, disp.Height)*2/3;
118
119 int sz = Max(pt.x, pt.y);
120 if (sz<=0) return pt;
121
122 double rs = 1.0;
123 if (sz>scrSize) {
124 rs = scrSize/sz;
125 pt.x = (int)(pt.x*rs);
126 pt.y = (int)(pt.y*rs);
127 }
128
129 //wRateSize.Format(" (%3d%%)", (int)(rs*100+0.5));
130 return pt;
131}
132
133
147{
148 int ret = 0;
150
151 if (lpDMouse!=NULL && activeWin) {
152 lpDMouse->Acquire();
153 HRESULT hr = lpDMouse->GetDeviceState(sizeof(DIMOUSESTATE), &dims);
154 if (SUCCEEDED(hr)) {
155 if (dims.rgbButtons[0]==0x80) ret = 1;
156 else if (dims.rgbButtons[1]==0x80) ret = 2;
157 else if (dims.rgbButtons[2]==0x80) ret = 3;
158 }
159// lpDMouse->Unacquire();
160 }
161 return ret;
162}
163
164
165void CDxBaseView::OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView)
166{
167 if (lpDMouse!=NULL) {
168 lpDMouse->Unacquire();
169 if (bActivate && pActivateView==this) {
170 lpDMouse->Acquire();
171 }
172 }
173
175}
176
177
178
180// CDxVTXBaseView クラス
181//
182
183BEGIN_MESSAGE_MAP(jbxwl::CDxVTXBaseView, CDxBaseView)
184 ON_WM_TIMER()
185END_MESSAGE_MAP()
186
187
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
203 startTime = (double)timeGetTime();
204
205 D3DXMatrixIdentity(&matRotate);
206 D3DXMatrixIdentity(&matTrans);
207 D3DXMatrixIdentity(&matTemp);
208}
209
210
211//
213{
214 //DEBUG_INFO("DESTRUCTOR: CDxVTXBaseView\n");
215 if (pApp!=NULL) pApp->ViewDestructor(this); // 上位アプリケーションに通知
216
217 ReleaseVB();
218}
219
220
221//
223{
224 if (rotation) {
225 rotation = false;
226 }
227 else {
229 rotation = true;
230 }
231 angleX = angleY = angleZ = 0.0;
232}
233
234
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}
296
297
298
300// 描画
301
302void CDxVTXBaseView::OnTimer(UINT_PTR nIDEvent)
303{
304 if (hasViewData) {
306 else ExecRotation();
307 ExecRender();
308 }
309 else DEBUG_ERROR("CDxVTXBaseView::OnTimer(): ERROR: 表示可能なデータがありません\n");
311}
312
313
314//
316{
317 if (hasViewData && timerID==-1) {
319 else ExecRotation();
320 ExecRender();
321 }
322 else if (!hasViewData) DEBUG_ERROR("CDxVTXBaseView::OnDraw(): ERROR: 表示可能なデータがありません\n");
323}
324
325
326
328
347HRESULT jbxwl::ResetDx9Device(LPDIRECT3DDEVICE9 lpD3DDevice, D3DPRESENT_PARAMETERS* pd3dParam, CDxBaseView* pviw)
348{
349 HRESULT hr = lpD3DDevice->TestCooperativeLevel();
350 if (hr==D3D_OK) return hr;
351
352 do {
353 Sleep(100);
354 hr = lpD3DDevice->TestCooperativeLevel();
355 } while (hr==D3DERR_DEVICELOST); // デバイスがリセットできるようになるまで待つ.
356
357 if (hr==D3DERR_DEVICENOTRESET) { // リセット可能
358 if (pviw!=NULL) pviw->ClearObject();
359
360 hr = lpD3DDevice->Reset(pd3dParam);
361 if (hr==D3D_OK) { // リセット成功
362 DEBUG_INFO("jbxwl::ResetDx9Device(): Reseted Dx9 Device.\n");
363 if (pviw!=NULL) pviw->InitObject();
364 }
365 else {
366 DEBUG_ERROR("jbxwl::ResetDx9Device(): Failed to Reset.\n");
367 }
368 }
369 return hr;
370}
#define DXRELEASE(d)
Definition Dx9.h:39
virtual void ViewDestructor(CExView *vw)
Definition ExClass.h:62
virtual void OnActivateView(BOOL bActivate, CView *pActivateView, CView *pDeactiveView)
LPDIRECT3DDEVICE9 lpD3DDevice
LPDIRECTINPUTDEVICE8 lpDKeyBoard
LPDIRECTINPUTDEVICE8 lpDMouse
D3DPRESENT_PARAMETERS d3dParam
virtual int GetMouseButton()
LPDIRECT3DSURFACE9 lpBackBuffer
LPDIRECT3D9 lpD3D
virtual void SetParameter(D3DPRESENT_PARAMETERS *d3dParam, int xsize, int ysize)
BOOL InitDevice(int xsize=0, int ysize=0, CWnd *cwnd=NULL)
POINT GetWindowDisplaySize(POINT pt)
virtual void ClearObject(void)
virtual void InitObject(void)
LPDIRECT3DSURFACE9 lpSurface
LPDIRECT3DTEXTURE9 lpTexture
virtual void OnDraw(CDC *pDC)
virtual void ReleaseVB(void)
virtual void ExecRotation(void)
afx_msg void OnTimer(UINT_PTR nIDEvent)
virtual void SwitchRotation(void)
virtual void ExecRender(void)
virtual void ExRotationAngle(void)
virtual void ExMouseWheel(void)
virtual void OnActivateView(BOOL bActivate, CView *pActivateView, CView *pDeactiveView)
Definition ExView.cpp:396
BOOL hasViewData
Definition ExView.h:81
bool ctrlMouse
Definition ExView.h:125
POINT ExecWindowReSize(int xs, int ys)
Definition ExView.cpp:276
CAppCallBack * pApp
Definition ExView.h:78
afx_msg void OnTimer(UINT_PTR nIDEvent)
Definition ExView.cpp:427
RECT clientRect
Definition ExView.h:85
bool activeWin
Definition ExView.h:126
bool doReSize
Definition ExView.h:121
POINT GetMousePos()
Definition ExView.cpp:303
LPDIRECTINPUTDEVICE8 GpDMouse
Definition Dx9.cpp:16
HRESULT ResetDx9Device(LPDIRECT3DDEVICE9, D3DPRESENT_PARAMETERS *, CDxBaseView *pviw=NULL)
LPDIRECTINPUTDEVICE8 GpDKeyBoard
Definition Dx9.cpp:17
LPDIRECT3DDEVICE9 Dx9CreateGraphic(LPDIRECT3D9, D3DPRESENT_PARAMETERS *, HWND)
Definition Dx9.cpp:93
LPDIRECT3D9 GpD3D
Definition Dx9.cpp:13