JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxSRenderView.cpp
Go to the documentation of this file.
1//
2// DxSRenderView.cpp : インプリメンテーション ファイル
3//
4
5#include "MFCBase.h"
6#include "DxSRenderView.h"
7
8
9#ifdef _DEBUG
10#define new DEBUG_NEW
11#undef THIS_FILE
12static char THIS_FILE[] = __FILE__;
13#endif
14
15
16using namespace jbxl;
17using namespace jbxwl;
18
19
41// CDxSRenderView
42
43IMPLEMENT_DYNCREATE(CDxSRenderView, CExView)
44
45
47{
48 cnstXYRate = true;
49// rotation = true;
50 pCounter = NULL;
51 volumeColor = TRUE;
52}
53
54
58
59
60BEGIN_MESSAGE_MAP(CDxSRenderView, CDxVTXBaseView)
61 //{{AFX_MSG_MAP(CDxSRenderView)
62 ON_WM_TIMER()
63 //}}AFX_MSG_MAP
64END_MESSAGE_MAP()
65
66
67
69// CDxSRenderView 描画
70/*
71void CDxSRenderView::OnDraw(CDC* pDC)
72{
73 //CDocument* pDoc = GetDocument();
74 // TODO: この位置に描画用のコードを追加してください
75 //ExecWindowReSize();
76 //ExecRender();
77}
78*/
79
80
81
83// CDxSRenderView 診断
84
85#ifdef _DEBUG
90
91
92void CDxSRenderView::Dump(CDumpContext& dc) const
93{
95}
96#endif //_DEBUG
97
98
99
101// CDxSRenderView メッセージ ハンドラ
102
103
105{
106// CDxVTXBaseView::OnInitialUpdate();
107
109 if (msGraph.isNull()) return;
110
111 double rzxy = msGraph.RZxy;
112 if (rzxy==0.0) rzxy = 1.0;
113
114 Rbound.xmax = msGraph.xs;
115 Rbound.ymax = msGraph.ys;
116 Rbound.zmax = (int)(msGraph.zs/rzxy+0.5);
117 Rbound.xmin = Rbound.ymin = Rbound.zmin = 0;
118
119 center = D3DXVECTOR3((Rbound.xmax + Rbound.xmin)/2.f,
120 (Rbound.ymax + Rbound.ymin)/2.f,
121 (Rbound.zmax + Rbound.zmin)/2.f);
122 xsize = Rbound.xmax - Rbound.xmin + 1;
123 ysize = Rbound.ymax - Rbound.ymin + 1;
124 zsize = Rbound.zmax - Rbound.zmin + 1;
125 msize = Max(xsize, ysize);
126 msize = Max(msize, zsize);
127
128 sizeFac = Min(sizeFac, 1.0/msize);
129
130 int dxsize = msize;
132 if (Dx9ReverseZMode) reverseZ = true;
133 else reverseZ = false;
134
136 if (!rslt) {
138 mesg.LoadString(IDS_STR_FAIL_GET_DX9DEV);
139 MessageBox(_T("CDxSRenderView::OnInitialUpdate():\n\n") + mesg);
141 return;
142 }
143
144 if (!PrepareVB()) return;
145 SetState();
146
150
151 //DEBUG_INFO("CDxSRenderView::OnInitialUpdate():\n");
154
156 this->SetTitle(Title);
157
158 return;
159}
160
161
163{
166// D3DMATERIAL9 m_material;
168
169 lpD3DDevice->GetDeviceCaps(&caps);
170// if (!(caps.FVFCaps & D3DFVFCAPS_PSIZE)) {
171// MessageBox("CDxSRenderView::SetState\n\nD3DFVF_PSIZE をサポートしていない");
172// double pointsize = 3.0;
173// double pointsize = 4.0;
174// lpD3DDevice->SetRenderState(D3DRS_POINTSIZE, *((DWORD*)&pointsize));
175// }
176
177 // Z バッファ有効化
178 lpD3DDevice->SetRenderState(D3DRS_ZENABLE, TRUE);
179
180 // アルファブレンディング無効化
181 lpD3DDevice->SetRenderState(D3DRS_ALPHABLENDENABLE, FALSE);
182
183 // ポリゴンの両面を描画
184 lpD3DDevice->SetRenderState(D3DRS_CULLMODE, D3DCULL_NONE);
185
186 // フィルタ設定
187 lpD3DDevice->SetSamplerState(0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR);
188
189 // レンダリング時の色の計算方法の設定
190 lpD3DDevice->SetTextureStageState(0, D3DTSS_COLOROP, D3DTOP_MODULATE);
191
192 // ライト
193 lpD3DDevice->SetRenderState(D3DRS_LIGHTING, TRUE);
194 ZeroMemory(&m_light, sizeof(D3DLIGHT9));
196 m_light.Diffuse.r = 1.0f;
197 m_light.Diffuse.g = 1.0f;
198 m_light.Diffuse.b = 1.0f;
199
200 // ライト0 の方向
201// mVecDir = D3DXVECTOR3(1.0f, -1.0f, -2.0f);
202 mVecDir = D3DXVECTOR3(1.0f, -2.0f, -1.0f);
203// mVecDir = D3DXVECTOR3(1.0f, 2.0f, 1.0f);
205 lpD3DDevice->SetLight(0, &m_light);
206 lpD3DDevice->LightEnable(0, TRUE);
207
208 // ライト1 の方向
209// mVecDir = D3DXVECTOR3(1.0, 1.0, 1.0);
210// D3DXVec3Normalize((D3DXVECTOR3*)&m_light.Direction, &mVecDir);
211// lpD3DDevice->SetLight(1, &m_light);
212// lpD3DDevice->LightEnable(1, TRUE);
213//
214 // ライト2 の方向
215// mVecDir = D3DXVECTOR3(-1.0, 1.0, -1.0);
216// D3DXVec3Normalize((D3DXVECTOR3*)&m_light.Direction, &mVecDir);
217// lpD3DDevice->SetLight(2, &m_light);
218// lpD3DDevice->LightEnable(2, TRUE);
219
220 // プロジェクション行列を設定: 視界 60度,近くの限界 0.1,遠くの限界 10*msize*sizeFac
221 //D3DXMatrixPerspectiveFovLH(&matProj, (float)(60.0*PI/180.0), 1.0f, 0.1f, (float)(10.0*msize*sizeFac));
222 D3DXMatrixPerspectiveFovLH(&matProj, (float)(PI/3.0), 1.0f, 0.1f, (float)(10.0*msize*sizeFac));
223 lpD3DDevice->SetTransform(D3DTS_PROJECTION, &matProj);
224
225 // カメラの制御: カメラの位置,物体の位置,カメラの上方向の傾き()
226// D3DXMatrixLookAtLH(&matView, &D3DXVECTOR3(0,0,1.5f*msize*sizeFac), &D3DXVECTOR3(0,0,0), &D3DXVECTOR3(0,1,0));
227// D3DXMatrixLookAtLH(&matView, &D3DXVECTOR3(0,-1.5f*msize*sizeFac,0), &D3DXVECTOR3(0,0,0), &D3DXVECTOR3(0,0,-1));
228// lpD3DDevice->SetTransform(D3DTS_VIEW, &matView);
229 if (mWheelAc==0.0) mWheelAc = 1.5*msize*sizeFac;
230 ExMouseWheel();
231
232 // 頂点フォーマット設定
233 lpD3DDevice->SetFVF(FVF_SVERTEXV);
234
235 D3DXMatrixTranslation(&matTrans, -(float)(center.x*sizeFac), -(float)(center.y*sizeFac), (float)(center.z*sizeFac));
236 lpD3DDevice->SetTransform(D3DTS_WORLD, &matTrans);
237}
238
239
240//
242{
243 if (Xabs(mWheelAc)<1.0) mWheelAc = Sign(mWheelAc);
244
245 // カメラの制御: カメラの位置,物体の位置,カメラの上方向の傾き()
246 D3DXMatrixLookAtLH(&matView, &D3DXVECTOR3(0.0f, (float)mWheelAc, 0.0f), &D3DXVECTOR3(0,0,0), &D3DXVECTOR3(0,0,1));
247 lpD3DDevice->SetTransform(D3DTS_VIEW, &matView);
248
249 double pointsize = sizeFac/Xabs(mWheelAc)*1000.0;
250 lpD3DDevice->SetRenderState(D3DRS_POINTSIZE, *((DWORD*)&pointsize));
251}
252
253
254//
256{
257 HRESULT hr;
258
259 // 画面のクリア
260 hr = lpD3DDevice->Clear(0, NULL, D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER, D3DCOLOR_XRGB(0,0,96), 1.0f, 0);
261 if (FAILED(hr)) { DEBUG_ERROR("CDxSRenderView::ExecRender(): ERROR: 画面クリアに失敗しました\n"); return;}
262
263 // シーンの描画開始
264 hr = lpD3DDevice->BeginScene();
265 if (FAILED(hr)) { DEBUG_ERROR("CDxSRenderView::ExecRender(): ERROR: シーンの開始に失敗しました\n"); return;}
266
267 hr = lpD3DDevice->SetStreamSource(0, vb, 0, sizeof(SVERTEXV));
268 if (FAILED(hr)) { DEBUG_ERROR("CDxSRenderView::ExecRender(): ERROR: ストリームの設定に失敗しました\n"); lpD3DDevice->EndScene(); return;}
269
271 if (FAILED(hr)) { DEBUG_ERROR("CDxSRenderView::ExecRender(): ERROR: プリミティブ描画に失敗しました\n"); lpD3DDevice->EndScene(); return;}
272
273 hr = lpD3DDevice->EndScene();
274 if (FAILED(hr)) { DEBUG_ERROR("CDxSRenderView::ExecRender(): ERROR: シーンの終了に失敗しました\n"); return;}
275 // シーンの描画終了
276
277 // 画面表示
278 hr = lpD3DDevice->Present(NULL, NULL, NULL, NULL);
279 if (FAILED(hr)) { // デバイスチェック
280// DEBUG_INFO("CDxSRenderView:ExecRender(): Resetting Device ....\n");
282 if (FAILED(hr)) {
285 MessageBox(_T("CDxSRenderView::ExecRender():\n\n") + mesg);
286 pFrame->SendMessage(WM_CLOSE);
287 //GetParentFrame()->DestroyWindow();
288 }
289 }
290}
291
292
293// 頂点バッファの準備
295{
296 int i, j, k;
297 int x, y, z;
298 int ii, jj, kk;
299 int is, js, ks;
300 int ie, je, ke;
301 double rzxy;
302
303 // 新しいカウンタ
305 if (pCounter!=NULL) {
307 mesg.LoadString(IDS_STR_PROC_VERTEX_BUF);
308 char* mbstr = ts2mbs(mesg);
310 ::free(mbstr);
311 }
312
314 if (datano<=0) {
315 if (pCounter!=NULL) {
316 pCounter->Stop();
320 }
322 if (datano==-1) {
324 noti.LoadString(IDS_STR_CANCEL);
325 MessageBox(_T("CDxSRenderView::PrepareVB():\n\n") + mesg, noti);
326 }
327 else if (datano==0) {
328 mesg.LoadString(IDS_STR_INFO_VERTEX_ZERO);
329 noti.LoadString(IDS_STR_INFO);
330 MessageBox(_T("CDxSRenderView::PrepareVB():\n\n") + mesg, noti);
331 }
332 else {
333 mesg.LoadString(IDS_STR_ERR_VERTEX_NUM);
334 noti.LoadString(IDS_STR_ERROR);
335 MessageBox(_T("CDxSRenderView::PrepareVB():\n\n") + mesg, noti);
336 }
337 return FALSE;
338 }
339
340 lpD3DDevice->CreateVertexBuffer(sizeof(SVERTEXV)*datano, 0, FVF_SVERTEXV, D3DPOOL_MANAGED, &vb, NULL);
341 if (vb==NULL) {
342 if (pCounter!=NULL) {
343 pCounter->Stop();
345 }
348 noti.LoadString(IDS_STR_ERROR);
349 MessageBox(_T("CDxSRenderView::PrepareVB():\n\n") + mesg, noti);
350 return FALSE;
351 }
352
353 SVERTEXV *v;
354 vb->Lock(0, 0, (void **)&v, 0);
355
356 rzxy = msGraph.RZxy;
357 if (rzxy==0.0) rzxy = 1.0;
358
359 int cnt= 0;
360 for (k=0; k<msGraph.zs; k++) {
361 for (j=0; j<msGraph.ys; j++) {
362 for (i=0; i<msGraph.xs; i++) {
363 x = y = z = 0;
364 bool chk = false;
365 if (msGraph.point(i, j, k)!=0) {
366 is = js = ks = -1;
367 ie = je = ke = 1;
368
369 // 境界
370 if (i==0) { is = 0; x = -10; chk = true;} // -9-1
371 if (i==msGraph.xs-1) { ie = 0; x = 10; chk = true;} // 9+1
372 if (j==0) { js = 0; y = -10; chk = true;}
373 if (j==msGraph.ys-1) { je = 0; y = 10; chk = true;}
374 if (k==0) { ks = 0; z = -10; chk = true;}
375 if (k==msGraph.zs-1) { ke = 0; z = 10; chk = true; if (msGraph.zs==1) z = -10;}
376
377 // サーフェイスの判定
378 for (kk=ks; kk<=ke; kk++)
379 for (jj=js; jj<=je; jj++)
380 for (ii=is; ii<=ie; ii++) {
381 if (msGraph.point(i+ii, j+jj, k+kk)==0) {
382 x = x + ii;
383 y = y + jj;
384 z = z + kk;
385 chk = true;
386 }
387 }
388
389 // サーフェイス
390 if (chk) {
391 //
392 v[cnt].ps = 3.5f;
393 v[cnt].x = i*(float)sizeFac;
394 v[cnt].y = j*(float)sizeFac;
395
396 if (reverseZ) v[cnt].z = -(msGraph.zs-1-k)*(float)(sizeFac/rzxy); // Z軸の反転
397 else v[cnt].z = -k*(float)(sizeFac/rzxy);
398
399 int n2 = x*x + y*y + z*z;
400 if (n2!=0) {
401 float nn = (float)sqrt((double)n2);
402
403 v[cnt].nx = x/nn;
404 v[cnt].ny = y/nn;
405
406 if (reverseZ) v[cnt].nz = z/nn; // Z軸の反転
407 else v[cnt].nz = -z/nn;
408 }
409 //
410 else {
411 v[cnt].nx = -1.0f;
412 v[cnt].ny = 1.0f;
413 v[cnt].nz = 1.0f;
414 }
415
416 if (volumeColor) {
417 if (msGraph.color == GRAPH_COLOR_R4G4B4A4 || msGraph.color == GRAPH_COLOR_RGBA16) {
418 v[cnt].color = Dx9Word2RGBA((uWord)msGraph.point(i, j, k));
419 }
420 else if (msGraph.color == GRAPH_COLOR_A4R4G4B4 || msGraph.color == GRAPH_COLOR_ARGB16) {
421 v[cnt].color = Dx9Word2ARGB((uWord)msGraph.point(i, j, k));
422 }
423 else {
424 v[cnt].color = Dx9Word2RGB((uWord)msGraph.point(i, j, k));
425 }
426 }
427 else {
428 v[cnt].color = D3DCOLOR_RGBA(192, 192, 192, 192);
429 }
430 cnt++;
431 }
432 }
433 }
434 }
435
436 // カウンタ
437 if (pCounter!=NULL) {
438 pCounter->SetPos(msGraph.xs*msGraph.ys*msGraph.zs + (k+1)*msGraph.xs*msGraph.ys);
439 if (pCounter->isCanceled()) {
440 pCounter->Stop();
442 vb->Unlock();
443 DXRELEASE(vb);
444
447 mesg.LoadString(IDS_STR_CANCEL);
448 MessageBox(_T("CDxSRenderView::PrepareVB():\n\n") + mesg, noti);
449
452 return FALSE;
453 }
454 }
455 }
456
457 datano = cnt;
458 vb->Unlock();
459
460 if (pCounter!=NULL) {
461 pCounter->Stop();
463 }
464 return TRUE;
465}
466
467
468//
469// (angleX, angleY -> angle?, angle?)
470//
472{
473 angleZ = -angleX;
474 angleX = -angleY;
475 angleY = 0.0;
476}
477
478
479//
481{
483// TimerStop();
484}
485
486
487//
489{
490 SetState();
491// TimerStart();
493}
494
495
496//
498{
499 int i, j, k;
500 int ii, jj, kk;
501 int is, js, ks;
502 int ie, je, ke;
503 int cnt = 0;
504
505 for (k=0; k<msGraph.zs; k++) {
506 for (j=0; j<msGraph.ys; j++) {
507 for (i=0; i<msGraph.xs; i++) {
508 bool chk = false;
509 if (msGraph.point(i, j, k)!=0) {
510 is = js = ks = -1;
511 ie = je = ke = 1;
512
513 if (i==0 || i==msGraph.xs-1 ||
514 j==0 || j==msGraph.ys-1 ||
515 k==0 || k==msGraph.zs-1 ) chk = true;
516 else {
517 for (kk=ks; kk<=ke; kk++)
518 for (jj=js; jj<=je; jj++)
519 for (ii=is; ii<=ie; ii++) {
520 if (msGraph.point(i+ii, j+jj, k+kk)==0) chk = true;
521 }
522 }
523 }
524 if (chk) cnt++;
525 }
526 }
527 if (pCounter!=NULL) {
528 pCounter->SetPos((k+1)*msGraph.xs*msGraph.ys);
529 if (pCounter->isCanceled()) return -1;
530 }
531 }
532 return cnt;
533}
#define DXRELEASE(d)
Definition Dx9.h:39
static char THIS_FILE[]
#define FVF_SVERTEXV
#define MSG_DEFAULT_WINDOW_SIZE
Definition ExClass.h:19
LPDIRECT3DDEVICE9 lpD3DDevice
D3DPRESENT_PARAMETERS d3dParam
BOOL InitDevice(int xsize=0, int ysize=0, CWnd *cwnd=NULL)
virtual void InitObject()
virtual void OnInitialUpdate()
CProgressBarDLG * pCounter
virtual void ExecRender()
virtual void ExRotationAngle()
virtual void ClearObject()
virtual void AssertValid() const
virtual void ExMouseWheel()
virtual void Dump(CDumpContext &dc) const
LPDIRECT3DVERTEXBUFFER9 vb
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
bool cancelOperation
Definition ExFrame.h:52
bool doneErrorMessage
Definition ExFrame.h:51
CString Title
Definition ExView.h:83
BOOL hasViewData
Definition ExView.h:81
int origYSize
Definition ExView.h:95
CExFrame * pFrame
Definition ExView.h:77
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
ExMSGraph< sWord > msGraph
Definition ExView.h:74
virtual void AssertValid() const
Definition ExView.cpp:130
double sizeFac
Definition ExView.h:88
virtual void Dump(CDumpContext &dc) const
Definition ExView.cpp:136
POINT SetWindowSize(int xs, int ys, BOOL first=TRUE)
Definition ExView.cpp:156
virtual void SetPos(int pos)
virtual void Start(int m=100, char *tn=NULL)
BOOL Dx9ReverseZMode
Definition Dx9.cpp:21
HRESULT ResetDx9Device(LPDIRECT3DDEVICE9, D3DPRESENT_PARAMETERS *, CDxBaseView *pviw=NULL)
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57
D3DCOLOR Dx9Word2RGB(uWord pp)
Definition Dx9.h:110
D3DCOLOR Dx9Word2ARGB(uWord pp)
Definition Dx9.h:88
HRESULT Dx9DrawPrimitive(LPDIRECT3DDEVICE9, D3DPRIMITIVETYPE, UINT, UINT)
Definition Dx9.cpp:335
void deleteNull(T *&ptr)
Definition WinTools.h:229
D3DCOLOR Dx9Word2RGBA(uWord pp)
Definition Dx9.h:66
#define IDS_STR_CANCEL_VERTEX_BUF_SET1
Definition resource.h:87
#define IDS_STR_ERR_VERTEX_NUM
Definition resource.h:90
#define IDS_STR_PROC_VERTEX_BUF
Definition resource.h:113
#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_INFO
Definition resource.h:102
#define IDS_STR_FAIL_GET_VERTEX_BUF
Definition resource.h:91
#define IDS_STR_CANCEL
Definition resource.h:101
#define IDS_STR_CANCEL_VERTEX_BUF_SET2
Definition resource.h:88
#define IDS_STR_INFO_VERTEX_ZERO
Definition resource.h:89
#define IDD_PROGBAR
Definition resource.h:6