-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCRenderer.cpp
executable file
·394 lines (301 loc) · 8.29 KB
/
CRenderer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#include "CRenderer.h"
using namespace std;
CRenderer::CRenderer() {
_render = 1;
}
bool CRenderer::initD3D() {
//Variables
fstream init;
D3DDISPLAYMODE disp;
UINT device;
string temp;
UINT mode;
//Création de l'objet DD8
_dd3d = Direct3DCreate8(D3D_SDK_VERSION);
if (!_dd3d) {
MessageBox(mainHwnd,"Erreur", "Impossible de créer l'objet DD3D", MB_OK);
return false;
}
//Recupère les modes depuis un fichier
init.open(file,ios::in);
if (init.fail()) {
MessageBox(NULL, "Impossible d'ouvrir le fichier", "erreur", MB_OK);
return false;
}
init >> device;
init >> mode;
init.close();
_dd3d->EnumAdapterModes(device, mode, &disp);
//Definition du backbuffer
parms.BackBufferCount = 1;
parms.BackBufferWidth = disp.Width;
parms.BackBufferHeight= disp.Height;
parms.BackBufferFormat = D3DFMT_A8R8G8B8;
//multisampling
parms.MultiSampleType = D3DMULTISAMPLE_NONE;
//Defition de la méthode de swaping
parms.SwapEffect = D3DSWAPEFFECT_FLIP;
//Rattachement de la fenêtre
parms.hDeviceWindow = mainHwnd;
//Mode fullscreen
parms.Windowed = FALSE;
//depth buffer information
parms.EnableAutoDepthStencil = true ;
parms.AutoDepthStencilFormat = D3DFMT_D16 ;
//flags
parms.Flags = 0 ;
//rafraichissement et temps de présentation
parms.FullScreen_RefreshRateInHz = disp.RefreshRate ; //use mode's refresh rate
parms.FullScreen_PresentationInterval = D3DPRESENT_INTERVAL_DEFAULT ;
HRESULT hr;
hr = _dd3d->CreateDevice ( device , D3DDEVTYPE_HAL , mainHwnd , D3DCREATE_HARDWARE_VERTEXPROCESSING , &parms , &_dd3dInter ) ;
if ( FAILED ( hr ) )
{
//impossible de créer un device en HALL.. donc on essaie en REF
hr = _dd3d->CreateDevice ( D3DADAPTER_DEFAULT , D3DDEVTYPE_REF , mainHwnd , D3DCREATE_SOFTWARE_VERTEXPROCESSING , &parms , &_dd3dInter ) ;
if ( FAILED ( hr ) )
{
//Impossible de crééer en REF donc on quitte
MessageBox(NULL, "erreur", "erreur", MB_OK);
return false;
}
else
{
//on a reussi a le creer en REF, on sauvegarde cette information
_devType = D3DDEVTYPE_REF ;
}
}
else
{
//le device est créé en HAL, on sauvegarde cette information
_devType = D3DDEVTYPE_HAL ;
}
//Definition du viewport
_viewPort.X = 0;
_viewPort.Y = 0;
_viewPort.Height = disp.Height;
_viewPort.Width = disp.Width;
_viewPort.MinZ = 0.0f;
_viewPort.MaxZ = 1.0f;
if (FAILED(_dd3dInter->SetViewport(&_viewPort))){
MessageBox(NULL, "Impossible de créer le viewPort", "erreur", MB_OK);
return false;
}
//set vertex shader
_dd3dInter->SetVertexShader ( CUSTOM_VERTEX_FVF ) ;
//turn off lighting
_dd3dInter->SetRenderState ( D3DRS_LIGHTING , FALSE ) ;
//set render to wireframe
//_dd3dInter->SetRenderState(D3DRS_FILLMODE,D3DFILL_WIREFRAME);
_dd3dInter->SetRenderState (D3DRS_CLIPPING, false);
// active l'alpha testing
_dd3dInter->SetRenderState(D3DRS_ALPHATESTENABLE, TRUE);
_dd3dInter->SetRenderState(D3DRS_ALPHAREF, 0x01);
_dd3dInter->SetRenderState(D3DRS_ALPHAFUNC, D3DCMP_GREATEREQUAL);
// set scrolling to 0
//CGod::setWorld(*_tile);
return true;
}
bool CRenderer::loadMap(LPCSTR path) {
// chargement de la texture
fstream map;
POINT ms;
short alea;
//Chargement du texture set
map.open(path, ios::in);
_texture = new CTileSet("images/tile_solle.bmp", parms.BackBufferFormat);
_units = new CTileSet("images/bomber.bmp", parms.BackBufferFormat);
short count = _texture->getCount();
// initialisation des vertex
for (int i = 0; i<MAPSIZE; i++)
for (int j = 0; j<MAPSIZE ; j++){
ms.x = i;
ms.y = j;
map >> alea;
_tile[i][j].setPos(ms);
_tile[i][j].setSurf(_texture->getTexture(alea));
}
/* CGod *player;
vertexCoord pos;
ms.x = 1;
ms.y = 1;
vect = tilePlotter(ms);
player = new CGod(vect);
player->setAnimeSet(_units);
_dobjects = new CGoList();
_dobjects->_current = player;*/
_dobjects = NULL;
ptScreenAnchor.x = (parms.BackBufferWidth - (MAPSIZE*TILEWIDTH))>>1;
ptScreenAnchor.y = (parms.BackBufferHeight - (MAPSIZE*TILEHEIGHT))>>1;
map.close();
return true;
}
void CRenderer::clearD3D() {
if (_texture) {
_texture->Destroy();
_texture = NULL;
}
if (_units) {
_units->Destroy();
_units = NULL;
}
if (_dd3d) {
_dd3d->Release();
_dd3d = NULL;
}
if (_dd3dInter)
{
_dd3dInter->Release();
_dd3dInter=NULL;
}
}
bool CRenderer::changeResolution(UINT mode) {
D3DDISPLAYMODE disp;
_dd3d->EnumAdapterModes(D3DADAPTER_DEFAULT, mode, &disp);
parms.BackBufferCount = 1;
parms.BackBufferWidth = disp.Width;
parms.BackBufferHeight= disp.Height;
parms.BackBufferFormat = disp.Format;
//multisampling
parms.MultiSampleType = D3DMULTISAMPLE_NONE;
//Defition de la méthode de swaping
parms.SwapEffect = D3DSWAPEFFECT_COPY;
//Rattachement de la fenêtre
parms.hDeviceWindow = mainHwnd;
//Mode fullscreen
parms.Windowed = false;
//depth buffer information
parms.EnableAutoDepthStencil = FALSE ;
parms.AutoDepthStencilFormat = D3DFMT_UNKNOWN ;
//flags
parms.Flags = 0 ;
//rafraichissement et temps de présentation
parms.FullScreen_RefreshRateInHz = disp.RefreshRate ; //use mode's refresh rate
parms.FullScreen_PresentationInterval = D3DPRESENT_INTERVAL_DEFAULT;
if (FAILED(_dd3dInter->Reset(&parms)))
return false;
return true;
}
void CRenderer::renderFrame(const RECT *src, const RECT *dest)
{
if (_render) {
// on commence par netoyer l'ecran
_dd3dInter->Clear(0 , NULL , D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER , D3DCOLOR_XRGB ( 0, 0 , 0 ) , 1.0f, 0 );
// quelques variables utiles
CGo* toDraw = NULL;
CGos* toDrawCGos = NULL;
CGod* toDrawCGod = NULL;
CGoList* parse = NULL;
// on commence par dessiner les objets statiques
for (int i = 0; i<MAPSIZE; i++)
for (int j = 0; j<MAPSIZE; j++)
_tile[i][j].render(ptScreenAnchor);
// puis on dessine les objects dynamiques
parse = _dobjects;
while (parse) {
toDraw = parse->_current;
switch(toDraw->getType()){
case 0: {
toDrawCGos = (CGos*)toDraw;
toDrawCGos->render(ptScreenAnchor);
toDrawCGos = NULL;
}
break;
case 1: {
toDrawCGod = (CGod*)toDraw;
toDrawCGod->render(ptScreenAnchor, false);
toDrawCGod = NULL;
}
break;
}
parse = parse->_next;
}
toDraw = NULL;
// enfin on met a jour le frontbuffer en testant le alt-tab
if (_dd3dInter->Present(src, dest, mainHwnd, NULL)==D3DERR_DEVICELOST)
{
while (_dd3dInter->TestCooperativeLevel()==D3DERR_DEVICELOST);
if (_dd3dInter->TestCooperativeLevel()==D3DERR_DEVICENOTRESET)
_dd3dInter->Reset(&parms);
else PostQuitMessage(0);
}
_render=1;
}
}
vertexCoord CRenderer::tilePlotter(POINT mouse){
vertexCoord retour;
retour.x = TILEWIDTH * mouse.x;
retour.y = TILEHEIGHT* mouse.y ;
return retour;
}
void CRenderer::tileWalker(POINT* depart, short dir) {
switch(dir) {
case (ISO_NORTH):
{
depart->y-=1;
depart->x-=1;
}
break;
case (ISO_SOUTH):
{
depart->y++;
depart->x++;
}
break;
case (ISO_EAST):
{
depart->x++;
depart->y--;
}
break;
case (ISO_WEST):
{
depart->x-=1;
depart->y++;
}
break;
case (ISO_SOUTHEAST):
{
depart->x++;
}
break;
case (ISO_SOUTHWEST) :
{
depart->y++;
}
break;
case (ISO_NORTHWEST):
{
depart->x--;
}
break;
case (ISO_NORTHEAST):
{
depart->y--;
}
break;
}
}
POINT CRenderer::mouseMapper(POINT mouse) {
mouse.x-= ptScreenAnchor.x;
mouse.y-= ptScreenAnchor.y;
POINT retour;
POINT temp;
retour.x = 0;
retour.y = 0;
temp.x = 0;
temp.y = 0;
vertexCoord origine = tilePlotter(retour);
temp.x = mouse.x - origine.x;
temp.y = mouse.y - origine.y+(TILEHEIGHT>>1);
retour.x = temp.y +(temp.x>>1);
retour.y =temp.y -(temp.x>>1);
retour.x =retour.x/TILEHEIGHT;
retour.y =retour.y/TILEHEIGHT;
if (retour.x>=0 && retour.y >=0 && retour.x<MAPSIZE && retour.y<MAPSIZE)
_tile[retour.x][retour.y].setColor(D3DCOLOR_XRGB(255, 0, 0));
return retour;
}
CRenderer::~CRenderer() {
clearD3D();
}