Mercurial > mm7
annotate Render.h @ 1910:8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
author | Grumpy7 |
---|---|
date | Tue, 22 Oct 2013 00:39:04 -0700 |
parents | 9f93b5700e2d |
children | e60d9df73428 |
rev | line source |
---|---|
0 | 1 #pragma once |
1512 | 2 |
3 #include <cstdint> | |
4 #include <cstdio> | |
0 | 5 |
6 #include "lib\legacy_dx\d3d.h" | |
1802 | 7 #include "OSWindow.h" |
0 | 8 |
9 #include "VectorTypes.h" | |
10 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
11 struct Polygon; |
0 | 12 struct Texture; |
13 struct RGBTexture; | |
14 struct RenderBillboardTransform_local0; | |
15 struct ODMFace; | |
16 | |
17 | |
18 /* 119 */ | |
19 #pragma pack(push, 1) | |
20 struct RenderVertexSoft | |
21 { | |
22 inline RenderVertexSoft(): | |
23 flt_2C(0.0f) | |
24 {} | |
25 | |
26 Vec3_float_ vWorldPosition; | |
27 Vec3_float_ vWorldViewPosition; | |
28 float vWorldViewProjX; | |
29 float vWorldViewProjY; | |
168 | 30 float _rhw; |
0 | 31 float u; |
32 float v; | |
33 float flt_2C; | |
34 }; | |
35 #pragma pack(pop) | |
36 | |
37 | |
38 | |
39 /* 112 */ | |
40 #pragma pack(push, 1) | |
41 struct RenderVertexD3D3 | |
42 { | |
43 Vec3_float_ pos; | |
44 float rhw; | |
45 unsigned int diffuse; | |
46 unsigned int specular; | |
47 Vec2_float_ texcoord; | |
48 }; | |
1269 | 49 #pragma pack(pop) |
0 | 50 |
1016 | 51 class Sprite; |
52 class SpriteFrame; | |
0 | 53 |
54 /* 161 */ | |
55 #pragma pack(push, 1) | |
56 struct RenderBillboard | |
57 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
58 int _screenspace_x_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
59 int _screenspace_y_scaler_packedfloat; |
0 | 60 float fov_x; |
61 float fov_y; | |
194 | 62 union |
63 { | |
64 int sZValue; | |
65 struct | |
66 { | |
67 unsigned __int16 object_pid; | |
68 signed __int16 actual_z; | |
69 }; | |
70 }; | |
142 | 71 int field_14_actor_id; |
0 | 72 unsigned __int16 uHwSpriteID; |
73 __int16 uPalette; | |
74 __int16 uIndoorSectorID; | |
75 __int16 field_1E; | |
430 | 76 __int16 world_x; |
77 __int16 world_y; | |
78 __int16 world_z; | |
0 | 79 __int16 uScreenSpaceX; |
80 __int16 uScreenSpaceY; | |
657 | 81 unsigned __int16 dimming_level; |
0 | 82 unsigned int uTintColor; |
83 SpriteFrame *pSpriteFrame; | |
159 | 84 |
85 inline float GetFloatZ() const | |
86 { | |
194 | 87 return (float)object_pid / 65535.0f + (float)actual_z; |
159 | 88 } |
0 | 89 }; |
90 #pragma pack(pop) | |
91 | |
92 | |
93 #pragma pack(push, 1) | |
94 struct RenderD3D__DevInfo | |
95 { | |
96 unsigned int bIsDeviceCompatible; | |
97 char *pName; | |
98 char *pDescription; | |
99 GUID *pGUID; | |
100 unsigned int uCaps; | |
101 char *pDriverName; | |
102 char *pDeviceDesc; | |
103 char *pDDraw4DevDesc; | |
104 GUID *pDirectDrawGUID; | |
105 int uVideoMem; | |
106 }; | |
107 #pragma pack(pop) | |
108 | |
109 | |
110 | |
111 #pragma pack(push, 1) | |
112 struct RenderD3D_D3DDevDesc | |
113 { | |
114 int field_0; | |
115 int field_4; | |
116 int field_8; | |
117 int field_C; | |
118 int field_10; | |
119 char *pDriverName; | |
120 char *pDeviceDesc; | |
121 char *pDDraw4DevDesc; | |
122 GUID *pGUID; | |
123 unsigned int uVideoMem; | |
124 }; | |
125 #pragma pack(pop) | |
126 | |
127 | |
128 | |
129 | |
130 | |
131 | |
132 | |
133 | |
134 | |
135 /* 280 */ | |
136 #pragma pack(push, 1) | |
137 struct HWLTexture | |
138 { | |
139 inline HWLTexture(): | |
140 field_0(0), field_4(0), field_8(0), | |
141 field_C(0), field_10(0), field_14(0) | |
142 {} | |
143 | |
144 int field_0; | |
145 int field_4; | |
146 int field_8; | |
147 int field_C; | |
148 int field_10; | |
149 int field_14; | |
670 | 150 int uBufferWidth; |
151 int uBufferHeight; | |
152 int uAreaWidth; | |
153 int uAreaHeigth; | |
0 | 154 unsigned int uWidth; |
155 unsigned int uHeight; | |
670 | 156 int uAreaX; |
157 int uAreaY; | |
0 | 158 unsigned __int16 *pPixels; |
159 }; | |
160 #pragma pack(pop) | |
161 | |
162 | |
163 /* 185 */ | |
164 #pragma pack(push, 1) | |
165 struct RenderHWLContainer | |
166 { | |
167 RenderHWLContainer(); | |
168 bool Load(const wchar_t *pFilename); | |
169 bool Release(); | |
170 | |
171 HWLTexture *LoadTexture(const char *pName, int bMipMaps); | |
172 | |
173 FILE *pFile; | |
1512 | 174 uint32_t uSignature; |
0 | 175 unsigned int uDataOffset; |
176 unsigned int uNumItems; | |
177 char *pSpriteNames[50000]; | |
178 int pSpriteOffsets[50000]; | |
179 int bDumpDebug; | |
1583 | 180 int scale_hwls_to_half; |
0 | 181 }; |
182 #pragma pack(pop) | |
183 | |
184 | |
185 | |
186 /* 242 */ | |
187 #pragma pack(push, 1) | |
188 struct RenderBillboardD3D | |
189 { | |
190 enum OpacityType: unsigned __int32 | |
191 { | |
192 Transparent = 0, | |
193 Opaque_1 = 1, | |
194 Opaque_2 = 2, | |
195 Opaque_3 = 3, | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
196 NoBlend = 0xFFFFFFFF |
0 | 197 }; |
198 | |
199 IDirect3DTexture2 *pTexture; | |
200 unsigned int uNumVertices; | |
1390 | 201 RenderVertexD3D3 pQuads[4]; |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
202 float z_order; |
0 | 203 OpacityType uOpacity; |
204 int field_90; | |
205 int sZValue; | |
206 unsigned int uParentBillboardID; | |
207 }; | |
208 #pragma pack(pop) | |
209 | |
210 | |
211 | |
212 | |
213 #pragma pack(push, 1) | |
214 struct RenderD3D_aux | |
215 { | |
216 RenderD3D__DevInfo *pInfo; | |
217 RenderD3D_D3DDevDesc *ptr_4; | |
218 }; | |
219 #pragma pack(pop) | |
220 | |
221 | |
222 | |
223 /* 183 */ | |
224 #pragma pack(push, 1) | |
225 struct RenderD3D | |
226 { | |
227 RenderD3D(); | |
228 | |
229 void GetAvailableDevices(RenderD3D__DevInfo **pOutDevices); | |
230 void Release(); | |
231 bool CreateDevice(unsigned int uDeviceID, int bWindowed, HWND hWnd); | |
232 unsigned int GetDeviceCaps(); | |
233 void ClearTarget(unsigned int bClearColor, unsigned int uClearColor, unsigned int bClearDepth, float z_clear); | |
234 void Present(bool bForceBlit); | |
235 bool CreateTexture(unsigned int uTextureWidth, unsigned int uTextureHeight, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture, bool bAlphaChannel, bool bMipmaps, unsigned int uMinDeviceTexDim); | |
236 void HandleLostResources(); | |
237 | |
238 | |
239 unsigned int bWindowed; | |
240 int field_4; | |
241 int field_8; | |
242 HWND hWindow; | |
243 int field_10; | |
244 int field_14; | |
245 int field_18; | |
246 RenderD3D__DevInfo *pAvailableDevices; | |
247 IDirectDraw4 *pHost; | |
248 IDirect3D3 *pDirect3D; | |
249 IUnknown *pUnk; | |
250 IDirectDrawSurface4 *pBackBuffer; | |
251 IDirectDrawSurface4 *pFrontBuffer; | |
252 IDirectDrawSurface4 *pZBuffer; | |
253 IDirect3DDevice3 *pDevice; | |
254 IDirect3DViewport3 *pViewport; | |
255 int field_40; | |
256 int field_44; | |
257 char pErrorMessage[48]; | |
258 char field_78[208]; | |
259 }; | |
260 #pragma pack(pop) | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
261 extern struct RenderVertexD3D3 pVertices[50]; |
0 | 262 |
263 /* 182 */ | |
264 #pragma pack(push, 1) | |
265 struct Render | |
266 { | |
267 Render(); | |
268 ~Render(); | |
269 | |
270 static Render *Create() {return new Render;} | |
271 | |
1802 | 272 bool Initialize(bool bWindowed, OSWindow *window, bool bColoredLights, uint32_t uDetailLevel, bool bTinting); |
0 | 273 |
274 | |
275 bool IsColorKeySupported(IDirectDraw4 *); | |
276 void _49EBF1(); | |
277 void ClearBlack(); | |
278 void PresentBlackScreen(); | |
279 void SavePCXScreenshot(); | |
280 void _49F1BC(const char *a1); | |
810 | 281 void PackPCXpicture(unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size); |
0 | 282 FILE *SavePCXImage(const char *Filename, char *a3, int a4, int a5); |
283 void ClearTarget(unsigned int uColor); | |
284 void Release2(); | |
285 void Present(); | |
286 void _49FD3A(); | |
287 void CreateZBuffer(); | |
288 void Release(); | |
289 void CreateSomeTexture(); | |
1802 | 290 bool InitializeFullscreen(); |
291 bool SwitchToWindow(); | |
709 | 292 char RasterLine2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor); |
0 | 293 void ClearZBuffer(int a2, int a3); |
709 | 294 void SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW); |
0 | 295 void ParseTargetPixelFormat(); |
296 bool LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags); | |
297 bool LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags); | |
298 void CreateDirectDraw(); | |
299 void SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen); | |
300 void SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP); | |
301 void CreateFrontBuffer(); | |
302 void CreateBackBuffer(); | |
303 void CreateDirectDrawPrimarySurface(); | |
304 void CreateClipper(HWND a2); | |
305 void GetTargetPixelFormat(DDPIXELFORMAT *pOut); | |
306 void LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow); | |
307 void UnlockBackBuffer(); | |
308 void LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow); | |
309 void UnlockFrontBuffer(); | |
310 void RestoreFrontBuffer(); | |
311 HRESULT _4A184C(); | |
312 void PresentRect(RECT *a2, RECT *a3); | |
313 void BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags); | |
314 void BltBackToFontFast(int a2, int a3, RECT *a4); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
315 unsigned int Billboard_ProbablyAddToListAndSortByZOrder(float z); |
0 | 316 unsigned int GetBillboardDrawListSize(); |
317 unsigned int GetParentBillboardID(unsigned int uBillboardID); | |
318 void BeginSceneD3D(); | |
319 void DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene(); | |
349 | 320 unsigned int GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
321 void DrawPolygon(unsigned int uNumVertices, struct Polygon *a3, ODMFace *a4, IDirect3DTexture2 *pTexture); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
322 void DrawTerrainPolygon(unsigned int uNumVertices, struct Polygon *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders); |
1427 | 323 void DrawSkyPolygon(unsigned int uNumVertices, struct Polygon *pSkyPolygon, IDirect3DTexture2 *pTexture); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
324 void _4A2ED5(signed int a2, struct Polygon *a3, IDirect3DTexture2 *pHwTex); |
1262 | 325 void DrawIndoorPolygon(unsigned int uNumVertices, struct BLVFace *a3, IDirect3DTexture2 *pHwTex, struct Texture *pTex, int uPackedID, unsigned int uColor, int a8); |
1390 | 326 void DrawIndoorPolygonNoLight(unsigned int uNumVertices, unsigned int uFaceID); |
0 | 327 void MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle); |
328 void MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle); | |
657 | 329 void TransformBillboard(RenderBillboardTransform_local0 *a2, Sprite *pSprite, int dimming_level, RenderBillboard *pBillboard); |
717 | 330 void DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level); |
0 | 331 int MakeParticleBillboardAndPush_BLV_Software(int screenSpaceX, int screenSpaceY, int z, int lightColor, int a6); |
332 void DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9); | |
1390 | 333 void _4A4CC9_AddSomeBillboard(struct stru6_stru1_indoor_sw_billboard *a1, int diffuse); |
0 | 334 bool LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture); |
670 | 335 bool MoveSpriteToDevice(Sprite *pSprite); |
0 | 336 void BeginScene(); |
337 void EndScene(); | |
338 unsigned int _4A52F1(unsigned int this_, float a3); | |
727 | 339 void SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW); |
340 void ResetTextureClipRect(); | |
0 | 341 void DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4); |
1675 | 342 void CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, RGBTexture *pTexture); |
1262 | 343 void DrawTextureIndexed(unsigned int uX, unsigned int uY, struct Texture *a4); |
344 void ZBuffer_Fill_2(signed int a2, signed int a3, struct Texture *pTexture, int a5); | |
345 void DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, struct Texture *pTexture, int zVal); | |
346 void DrawTextureTransparent(unsigned int uX, unsigned int uY, struct Texture *pTexture); | |
1455 | 347 void DrawAura(unsigned int a2, unsigned int a3, struct Texture *a4, struct Texture *a5, int a6, int a7, int a8); |
1262 | 348 void _4A65CC(unsigned int x, unsigned int y, struct Texture *a4, struct Texture *a5, int a6, int a7, int a8); |
349 void DrawTransparentRedShade(unsigned int a2, unsigned int a3, struct Texture *a4); | |
350 void DrawTransparentGreenShade(signed int a2, signed int a3, struct Texture *pTexture); | |
1496 | 351 void GetLeather(unsigned int a2, unsigned int a3, struct Texture *a4, __int16 height); |
1268 | 352 void DrawTextPalette(int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8); |
0 | 353 void DrawText(signed int uOutX, signed int uOutY, unsigned __int8 *pFontPixels, unsigned int uCharWidth, unsigned int uCharHeight, unsigned __int16 *pFontPalette, unsigned __int16 uFaceColor, unsigned __int16 uShadowColor); |
354 void FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16); | |
355 int _4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, struct Vec2_int_ *pBitmapXY, unsigned __int16 *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7); | |
1262 | 356 void _4A6E7E(unsigned int a2, unsigned int a3, struct Texture *a4); |
1787 | 357 void DrawBuildingsD3D(); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
358 //struct BSPModel *DrawBuildingsSW(); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
359 //int OnOutdoorRedrawSW(); |
0 | 360 void DrawSkyD3D(); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
361 //int DrawSkySW(struct Span *a1, Polygon *a2, int a3); |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
362 void PrepareDecorationsRenderList_ODM(); |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
363 void DrawSpriteObjects_ODM(); |
0 | 364 void TransformBillboardsAndSetPalettesODM(); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
365 //float DrawBezierTerrain(); |
86 | 366 void RenderTerrainD3D(); |
985 | 367 void DrawTerrainD3D(int a1, int edx0, int a3, int unk4); |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
368 //void DrawTerrainSW(int a1, int a2, int a3, int a4); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1390
diff
changeset
|
369 //void ExecOutdoorDrawSW(); |
0 | 370 void ChangeBetweenWinFullscreenModes(); |
371 void DrawBillboardList_BLV(); | |
372 | |
373 | |
1802 | 374 //unsigned int bUserDirect3D; |
0 | 375 unsigned int bStartInWindow; |
376 unsigned int uDesiredDirect3DDevice; | |
377 unsigned int uAcquiredDirect3DDevice; | |
378 int field_10; | |
379 int field_14; | |
380 int field_18_locked_pitch; | |
709 | 381 int raster_clip_x; |
382 int raster_clip_y; // clipping rect for raster ops | |
383 int raster_clip_z; // like RasterLine2D for (mini)map | |
384 int raster_clip_w; | |
0 | 385 __int16 field_2C[65536]; |
386 __int16 field_2002C[65536]; | |
387 int field_4002C; | |
388 int field_40030; | |
389 int *pActiveZBuffer; | |
390 int *pDefaultZBuffer; | |
391 int field_4003C; | |
392 int field_40040; | |
393 int field_40044; | |
394 int field_40048; | |
395 int field_4004C; | |
1802 | 396 //HWND hWnd; |
397 OSWindow *window; | |
0 | 398 int field_40054; |
399 unsigned int bWindowMode; | |
400 int field_4005C[11]; | |
401 RenderD3D *pRenderD3D; | |
402 IDirectDraw4 *pDirectDraw4; | |
403 IDirectDrawSurface4 *pFrontBuffer4; | |
404 IDirectDrawSurface4 *pBackBuffer4; | |
405 IDirectDrawSurface4 *pColorKeySurface4; | |
406 IDirectDraw2 *pDirectDraw2; | |
407 IDirectDrawSurface2 *pFrontBuffer2; | |
408 IDirectDrawSurface2 *pBackBuffer2; | |
409 IDirectDrawSurface2 *pSomeSurface2; | |
410 DDPIXELFORMAT ddpfPrimareSuface; | |
411 unsigned int uTargetRBits; | |
412 unsigned int uTargetGBits; | |
413 unsigned int uTargetBBits; | |
414 unsigned int uTargetRMask; | |
415 unsigned int uTargetGMask; | |
416 unsigned int uTargetBMask; | |
417 unsigned int uNumSceneBegins; | |
418 int *ptr_400E8; | |
419 unsigned __int16 *pTargetSurface; | |
420 unsigned int uTargetSurfacePitch; | |
421 unsigned int uClipY; | |
422 unsigned int uClipX; | |
423 unsigned int uClipW; | |
424 unsigned int uClipZ; | |
425 unsigned int bClip; | |
426 unsigned int bColorKeySupported; | |
427 unsigned int uNumD3DSceneBegins; | |
428 int field_40110; | |
429 RenderHWLContainer pD3DBitmaps; | |
430 RenderHWLContainer pD3DSprites; | |
431 unsigned int bUseColoredLights; | |
432 unsigned int bRequiredTextureStagesAvailable; | |
433 unsigned int bTinting; | |
434 unsigned int uLevelOfDetail; | |
435 unsigned int uMaxDeviceTextureDim; | |
436 unsigned int uMinDeviceTextureDim; | |
437 int field_10365C; | |
438 unsigned int bUsingSpecular; | |
1512 | 439 uint32_t uFogColor; |
0 | 440 int field_103668; |
441 unsigned int pHDWaterBitmapIDs[7]; | |
442 char field_103688[32]; | |
265 | 443 int hd_water_current_frame; |
444 int hd_water_tile_id; | |
0 | 445 IDirectDrawSurface4 *pSurface; |
446 IDirect3DTexture2 *pTexture; | |
447 int field_1036B8; | |
448 int _gpu_memory_used; | |
1458 | 449 void ( *pBeforePresentFunction)(); |
0 | 450 int field_1036C4; |
1512 | 451 uint32_t bFogEnabled; |
0 | 452 int field_1036CC; |
453 RenderBillboardD3D pBillboardRenderListD3D[1000]; | |
454 unsigned int uNumBillboardsToDraw; | |
455 int field_129834; | |
456 unsigned int uCurrentlyLockedSurfacePitch; | |
457 unsigned __int16 *pCurrentlyLockedSurfaceDataPtr; | |
458 unsigned __int16 *pCurrentlyLockedSoftSurface; | |
1655 | 459 |
460 | |
1802 | 461 //int windowed_mode_width; |
462 //int windowed_mode_height; | |
0 | 463 }; |
464 #pragma pack(pop) | |
465 | |
466 extern struct IDirectDrawClipper *pDDrawClipper; | |
467 extern struct Render *pRenderer; // idb | |
67 | 468 extern struct pUnkTerrain *Unks; |
0 | 469 |
470 | |
471 | |
472 /* 248 */ | |
473 #pragma pack(push, 1) | |
474 struct RenderBillboardTransform_local0 | |
475 { | |
476 unsigned __int16 *pTarget; | |
477 int *pTargetZ; | |
478 int uScreenSpaceX; | |
479 int uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
480 int _screenspace_x_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
481 int _screenspace_y_scaler_packedfloat; |
0 | 482 char field_18[8]; |
483 unsigned __int16 *pPalette; | |
484 unsigned __int16 *pPalette2; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
485 union |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
486 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
487 int sZValue; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
488 struct |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
489 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
490 unsigned short object_pid; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
491 short zbuffer_depth; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
492 }; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
493 }; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
494 unsigned int uFlags; // & 4 - mirror horizontally |
0 | 495 unsigned int uTargetPitch; |
496 unsigned int uViewportX; | |
497 unsigned int uViewportY; | |
498 unsigned int uViewportZ; | |
499 unsigned int uViewportW; | |
500 int field_44; | |
501 int uParentBillboardID; | |
502 int uTintColor; | |
503 }; | |
504 #pragma pack(pop) | |
505 | |
506 | |
507 | |
508 | |
509 extern int uNumDecorationsDrawnThisFrame; // weak | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
510 extern RenderBillboard pBillboardRenderList[500]; |
0 | 511 extern unsigned int uNumBillboardsToDraw; |
512 extern int uNumSpritesDrawnThisFrame; // weak | |
513 | |
514 | |
515 | |
516 | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
517 extern RenderVertexSoft array_507D30[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
518 extern RenderVertexSoft array_50AC10[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
519 extern RenderVertexSoft array_73D150[20]; |
0 | 520 |
1413 | 521 extern RenderVertexD3D3 d3d_vertex_buffer[50]; |