Mercurial > mm7
annotate Render.h @ 1448:5a5d0c713d47
some turn engine renaming
author | Gloval |
---|---|
date | Tue, 06 Aug 2013 00:52:46 +0400 |
parents | 34b08429a6b8 |
children | 613c77e51e38 |
rev | line source |
---|---|
0 | 1 #pragma once |
2 #include <stdio.h> | |
3 | |
4 #include "lib\legacy_dx\d3d.h" | |
5 #include "OSAPI.h" | |
6 | |
7 #include "VectorTypes.h" | |
8 | |
9 struct stru148; | |
10 struct Texture; | |
11 struct RGBTexture; | |
12 struct RenderBillboardTransform_local0; | |
13 struct ODMFace; | |
14 | |
15 | |
16 /* 119 */ | |
17 #pragma pack(push, 1) | |
18 struct RenderVertexSoft | |
19 { | |
20 inline RenderVertexSoft(): | |
21 flt_2C(0.0f) | |
22 {} | |
23 | |
24 Vec3_float_ vWorldPosition; | |
25 Vec3_float_ vWorldViewPosition; | |
26 float vWorldViewProjX; | |
27 float vWorldViewProjY; | |
168 | 28 float _rhw; |
0 | 29 float u; |
30 float v; | |
31 float flt_2C; | |
32 }; | |
33 #pragma pack(pop) | |
34 | |
35 | |
36 | |
37 /* 112 */ | |
38 #pragma pack(push, 1) | |
39 struct RenderVertexD3D3 | |
40 { | |
41 Vec3_float_ pos; | |
42 float rhw; | |
43 unsigned int diffuse; | |
44 unsigned int specular; | |
45 Vec2_float_ texcoord; | |
46 }; | |
1269 | 47 #pragma pack(pop) |
0 | 48 |
1016 | 49 class Sprite; |
50 class SpriteFrame; | |
0 | 51 |
52 /* 161 */ | |
53 #pragma pack(push, 1) | |
54 struct RenderBillboard | |
55 { | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
56 int _screenspace_x_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
57 int _screenspace_y_scaler_packedfloat; |
0 | 58 float fov_x; |
59 float fov_y; | |
194 | 60 union |
61 { | |
62 int sZValue; | |
63 struct | |
64 { | |
65 unsigned __int16 object_pid; | |
66 signed __int16 actual_z; | |
67 }; | |
68 }; | |
142 | 69 int field_14_actor_id; |
0 | 70 unsigned __int16 uHwSpriteID; |
71 __int16 uPalette; | |
72 __int16 uIndoorSectorID; | |
73 __int16 field_1E; | |
430 | 74 __int16 world_x; |
75 __int16 world_y; | |
76 __int16 world_z; | |
0 | 77 __int16 uScreenSpaceX; |
78 __int16 uScreenSpaceY; | |
657 | 79 unsigned __int16 dimming_level; |
0 | 80 unsigned int uTintColor; |
81 SpriteFrame *pSpriteFrame; | |
159 | 82 |
83 inline float GetFloatZ() const | |
84 { | |
194 | 85 return (float)object_pid / 65535.0f + (float)actual_z; |
159 | 86 } |
0 | 87 }; |
88 #pragma pack(pop) | |
89 | |
90 | |
91 #pragma pack(push, 1) | |
92 struct RenderD3D__DevInfo | |
93 { | |
94 unsigned int bIsDeviceCompatible; | |
95 char *pName; | |
96 char *pDescription; | |
97 GUID *pGUID; | |
98 unsigned int uCaps; | |
99 char *pDriverName; | |
100 char *pDeviceDesc; | |
101 char *pDDraw4DevDesc; | |
102 GUID *pDirectDrawGUID; | |
103 int uVideoMem; | |
104 }; | |
105 #pragma pack(pop) | |
106 | |
107 | |
108 | |
109 #pragma pack(push, 1) | |
110 struct RenderD3D_D3DDevDesc | |
111 { | |
112 int field_0; | |
113 int field_4; | |
114 int field_8; | |
115 int field_C; | |
116 int field_10; | |
117 char *pDriverName; | |
118 char *pDeviceDesc; | |
119 char *pDDraw4DevDesc; | |
120 GUID *pGUID; | |
121 unsigned int uVideoMem; | |
122 }; | |
123 #pragma pack(pop) | |
124 | |
125 | |
126 | |
127 | |
128 | |
129 | |
130 | |
131 | |
132 | |
133 /* 280 */ | |
134 #pragma pack(push, 1) | |
135 struct HWLTexture | |
136 { | |
137 inline HWLTexture(): | |
138 field_0(0), field_4(0), field_8(0), | |
139 field_C(0), field_10(0), field_14(0) | |
140 {} | |
141 | |
142 int field_0; | |
143 int field_4; | |
144 int field_8; | |
145 int field_C; | |
146 int field_10; | |
147 int field_14; | |
670 | 148 int uBufferWidth; |
149 int uBufferHeight; | |
150 int uAreaWidth; | |
151 int uAreaHeigth; | |
0 | 152 unsigned int uWidth; |
153 unsigned int uHeight; | |
670 | 154 int uAreaX; |
155 int uAreaY; | |
0 | 156 unsigned __int16 *pPixels; |
157 }; | |
158 #pragma pack(pop) | |
159 | |
160 | |
161 /* 185 */ | |
162 #pragma pack(push, 1) | |
163 struct RenderHWLContainer | |
164 { | |
165 RenderHWLContainer(); | |
166 bool Load(const wchar_t *pFilename); | |
167 bool Release(); | |
168 | |
169 HWLTexture *LoadTexture(const char *pName, int bMipMaps); | |
170 | |
171 FILE *pFile; | |
172 uint uSignature; | |
173 unsigned int uDataOffset; | |
174 unsigned int uNumItems; | |
175 char *pSpriteNames[50000]; | |
176 int pSpriteOffsets[50000]; | |
177 int bDumpDebug; | |
178 int field_61A94_scale_hwls_to_half; | |
179 }; | |
180 #pragma pack(pop) | |
181 | |
182 | |
183 | |
184 /* 242 */ | |
185 #pragma pack(push, 1) | |
186 struct RenderBillboardD3D | |
187 { | |
188 enum OpacityType: unsigned __int32 | |
189 { | |
190 Transparent = 0, | |
191 Opaque_1 = 1, | |
192 Opaque_2 = 2, | |
193 Opaque_3 = 3, | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
194 NoBlend = 0xFFFFFFFF |
0 | 195 }; |
196 | |
197 IDirect3DTexture2 *pTexture; | |
198 unsigned int uNumVertices; | |
199 RenderVertexD3D3 pQuards[4]; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
200 float z_order; |
0 | 201 OpacityType uOpacity; |
202 int field_90; | |
203 int sZValue; | |
204 unsigned int uParentBillboardID; | |
205 }; | |
206 #pragma pack(pop) | |
207 | |
208 | |
209 | |
210 | |
211 #pragma pack(push, 1) | |
212 struct RenderD3D_aux | |
213 { | |
214 RenderD3D__DevInfo *pInfo; | |
215 RenderD3D_D3DDevDesc *ptr_4; | |
216 }; | |
217 #pragma pack(pop) | |
218 | |
219 | |
220 | |
221 /* 183 */ | |
222 #pragma pack(push, 1) | |
223 struct RenderD3D | |
224 { | |
225 RenderD3D(); | |
226 | |
227 static bool DoesRaiseExceptions(); | |
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 | |
272 bool Initialize(bool bWindowed, uint uDefaultDevice, | |
273 bool bColoredLights, uint uDetailLevel, uint bTinting); | |
274 | |
275 | |
276 bool IsColorKeySupported(IDirectDraw4 *); | |
277 void _49EBF1(); | |
278 void ClearBlack(); | |
279 void PresentBlackScreen(); | |
280 void SavePCXScreenshot(); | |
281 void _49F1BC(const char *a1); | |
810 | 282 void PackPCXpicture(unsigned short* picture_data, int wight, int heidth, void *data_buff, int max_buff_size,unsigned int* packed_size); |
0 | 283 FILE *SavePCXImage(const char *Filename, char *a3, int a4, int a5); |
284 void ClearTarget(unsigned int uColor); | |
285 void Release2(); | |
286 void Present(); | |
287 void _49FD3A(); | |
288 void CreateZBuffer(); | |
289 void Release(); | |
290 void CreateSomeTexture(); | |
291 bool InitializeFullscreen(HWND hWnd); | |
292 bool SwitchToWindow(HWND hWnd); | |
709 | 293 char RasterLine2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor); |
0 | 294 void ClearZBuffer(int a2, int a3); |
709 | 295 void SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW); |
0 | 296 void ParseTargetPixelFormat(); |
297 bool LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags); | |
298 bool LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags); | |
299 void CreateDirectDraw(); | |
300 void SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen); | |
301 void SetDirectDrawDisplayMode(unsigned int uWidth, unsigned int uHeight, unsigned int uBPP); | |
302 void CreateFrontBuffer(); | |
303 void CreateBackBuffer(); | |
304 void CreateDirectDrawPrimarySurface(); | |
305 void CreateClipper(HWND a2); | |
306 void GetTargetPixelFormat(DDPIXELFORMAT *pOut); | |
307 void LockRenderSurface(void **pOutSurfacePtr, unsigned int *pOutPixelsPerRow); | |
308 bool UsingDirect3D(); | |
309 void UnlockBackBuffer(); | |
310 void LockFrontBuffer(void **pOutSurface, unsigned int *pOutPixelsPerRow); | |
311 void UnlockFrontBuffer(); | |
312 void RestoreFrontBuffer(); | |
313 HRESULT _4A184C(); | |
314 void PresentRect(RECT *a2, RECT *a3); | |
315 void BltToFront(RECT *pDstRect, IDirectDrawSurface *pSrcSurface, RECT *pSrcRect, unsigned int uBltFlags); | |
316 void BltBackToFontFast(int a2, int a3, RECT *a4); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
317 unsigned int Billboard_ProbablyAddToListAndSortByZOrder(float z); |
0 | 318 unsigned int GetBillboardDrawListSize(); |
319 unsigned int GetParentBillboardID(unsigned int uBillboardID); | |
320 void BeginSceneD3D(); | |
321 void DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene(); | |
349 | 322 unsigned int GetActorTintColor(float a2, int tint, int a4, int a5, RenderBillboard *a6); |
0 | 323 void DrawPolygon(unsigned int uNumVertices, stru148 *a3, ODMFace *a4, IDirect3DTexture2 *pTexture); |
186 | 324 void DrawTerrainPolygon(unsigned int uNumVertices, stru148 *a4, IDirect3DTexture2 *a5, bool transparent, bool clampAtTextureBorders); |
852 | 325 void DrawSkyPolygon(unsigned int uNumVertices, stru148 *a3, IDirect3DTexture2 *pTexture); |
0 | 326 void _4A2ED5(signed int a2, stru148 *a3, IDirect3DTexture2 *pHwTex); |
1262 | 327 void DrawIndoorPolygon(unsigned int uNumVertices, struct BLVFace *a3, IDirect3DTexture2 *pHwTex, struct Texture *pTex, int uPackedID, unsigned int uColor, int a8); |
0 | 328 void MakeParticleBillboardAndPush_BLV(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle); |
329 void MakeParticleBillboardAndPush_ODM(RenderBillboardTransform_local0 *a2, IDirect3DTexture2 *a3, unsigned int uDiffuse, int angle); | |
657 | 330 void TransformBillboard(RenderBillboardTransform_local0 *a2, Sprite *pSprite, int dimming_level, RenderBillboard *pBillboard); |
717 | 331 void DrawBillboard_Indoor(RenderBillboardTransform_local0 *pSoftBillboard, Sprite *pSprite, int dimming_level); |
0 | 332 int MakeParticleBillboardAndPush_BLV_Software(int screenSpaceX, int screenSpaceY, int z, int lightColor, int a6); |
333 void DrawProjectile(float srcX, float srcY, float a3, float a4, float dstX, float dstY, float a7, float a8, IDirect3DTexture2 *a9); | |
334 void _4A4CC9(struct stru6_stru1_indoor_sw_billboard *a1, int a2); | |
335 bool LoadTexture(const char *pName, unsigned int bMipMaps, IDirectDrawSurface4 **pOutSurface, IDirect3DTexture2 **pOutTexture); | |
670 | 336 bool MoveSpriteToDevice(Sprite *pSprite); |
0 | 337 void BeginScene(); |
338 void EndScene(); | |
339 unsigned int _4A52F1(unsigned int this_, float a3); | |
727 | 340 void SetTextureClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW); |
341 void ResetTextureClipRect(); | |
0 | 342 void DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, RGBTexture *a4); |
343 void _4A5D33(unsigned int a2, unsigned int a3, int a4, int a5, RGBTexture *pTexture); | |
1262 | 344 void DrawTextureIndexed(unsigned int uX, unsigned int uY, struct Texture *a4); |
345 void ZBuffer_Fill_2(signed int a2, signed int a3, struct Texture *pTexture, int a5); | |
346 void DrawMaskToZBuffer(signed int uOutX, unsigned int uOutY, struct Texture *pTexture, int zVal); | |
347 void DrawTextureTransparent(unsigned int uX, unsigned int uY, struct Texture *pTexture); | |
348 void _4A63E6(unsigned int a2, unsigned int a3, struct Texture *a4, struct Texture *a5, int a6, int a7, int a8); | |
349 void _4A65CC(unsigned int x, unsigned int y, struct Texture *a4, struct Texture *a5, int a6, int a7, int a8); | |
350 void DrawTransparentRedShade(unsigned int a2, unsigned int a3, struct Texture *a4); | |
351 void DrawTransparentGreenShade(signed int a2, signed int a3, struct Texture *pTexture); | |
352 void _4A6A68(unsigned int a2, unsigned int a3, struct Texture *a4, __int16 height); | |
1268 | 353 void DrawTextPalette(int x, int y, unsigned char* font_pixels, int a5, unsigned int uFontHeight, unsigned __int16 *pPalette, int a8); |
0 | 354 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); |
355 void FillRectFast(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, unsigned int uColor16); | |
356 int _4A6DF5(unsigned __int16 *pBitmap, unsigned int uBitmapPitch, struct Vec2_int_ *pBitmapXY, unsigned __int16 *pTarget, unsigned int uTargetPitch, Vec4_int_ *a7); | |
1262 | 357 void _4A6E7E(unsigned int a2, unsigned int a3, struct Texture *a4); |
0 | 358 char DrawBuildingsD3D(); |
359 struct BSPModel *DrawBuildingsSW(); | |
360 int OnOutdoorRedrawSW(); | |
361 void DrawSkyD3D(); | |
362 int DrawSkySW(struct Span *a1, stru148 *a2, int a3); | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
363 void PrepareDecorationsRenderList_ODM(); |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
430
diff
changeset
|
364 void DrawSpriteObjects_ODM(); |
0 | 365 void TransformBillboardsAndSetPalettesODM(); |
366 float DrawBezierTerrain(); | |
86 | 367 void RenderTerrainD3D(); |
985 | 368 void DrawTerrainD3D(int a1, int edx0, int a3, int unk4); |
369 void DrawTerrainSW(int a1, int a2, int a3, int a4); | |
973 | 370 void ExecOutdoorDrawSW(); |
0 | 371 void ChangeBetweenWinFullscreenModes(); |
372 void DrawBillboardList_BLV(); | |
373 | |
374 | |
375 unsigned int bUserDirect3D; | |
376 unsigned int bStartInWindow; | |
377 unsigned int uDesiredDirect3DDevice; | |
378 unsigned int uAcquiredDirect3DDevice; | |
379 int field_10; | |
380 int field_14; | |
381 int field_18_locked_pitch; | |
709 | 382 int raster_clip_x; |
383 int raster_clip_y; // clipping rect for raster ops | |
384 int raster_clip_z; // like RasterLine2D for (mini)map | |
385 int raster_clip_w; | |
0 | 386 __int16 field_2C[65536]; |
387 __int16 field_2002C[65536]; | |
388 int field_4002C; | |
389 int field_40030; | |
390 int *pActiveZBuffer; | |
391 int *pDefaultZBuffer; | |
392 int field_4003C; | |
393 int field_40040; | |
394 int field_40044; | |
395 int field_40048; | |
396 int field_4004C; | |
397 HWND hWnd; | |
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; | |
439 uint uFogColor; | |
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; | |
449 void (__cdecl *pBeforePresentFunction)(); | |
450 int field_1036C4; | |
451 uint bFogEnabled; | |
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; | |
459 }; | |
460 #pragma pack(pop) | |
461 | |
462 extern struct IDirectDrawClipper *pDDrawClipper; | |
463 extern struct Render *pRenderer; // idb | |
67 | 464 extern struct pUnkTerrain *Unks; |
0 | 465 |
466 | |
467 | |
468 /* 248 */ | |
469 #pragma pack(push, 1) | |
470 struct RenderBillboardTransform_local0 | |
471 { | |
472 unsigned __int16 *pTarget; | |
473 int *pTargetZ; | |
474 int uScreenSpaceX; | |
475 int uScreenSpaceY; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
476 int _screenspace_x_scaler_packedfloat; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
477 int _screenspace_y_scaler_packedfloat; |
0 | 478 char field_18[8]; |
479 unsigned __int16 *pPalette; | |
480 unsigned __int16 *pPalette2; | |
144
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
481 union |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
482 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
483 int sZValue; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
484 struct |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
485 { |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
486 unsigned short object_pid; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
487 short zbuffer_depth; |
8ab4484c22e0
Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents:
142
diff
changeset
|
488 }; |
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 int uFlags; // & 4 - mirror horizontally |
0 | 491 unsigned int uTargetPitch; |
492 unsigned int uViewportX; | |
493 unsigned int uViewportY; | |
494 unsigned int uViewportZ; | |
495 unsigned int uViewportW; | |
496 int field_44; | |
497 int uParentBillboardID; | |
498 int uTintColor; | |
499 }; | |
500 #pragma pack(pop) | |
501 | |
502 | |
503 | |
504 | |
505 extern int uNumDecorationsDrawnThisFrame; // weak | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
506 extern RenderBillboard pBillboardRenderList[500]; |
0 | 507 extern unsigned int uNumBillboardsToDraw; |
508 extern int uNumSpritesDrawnThisFrame; // weak | |
509 | |
510 | |
511 | |
512 | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
513 extern RenderVertexSoft array_507D30[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
514 extern RenderVertexSoft array_508690[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
515 extern RenderVertexSoft array_508FF0[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
516 extern RenderVertexSoft array_509950[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
517 extern RenderVertexSoft array_50A2B0[50]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
518 extern RenderVertexSoft array_50AC10[50]; |
0 | 519 |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
520 extern RenderVertexSoft array_73D150[20]; |
0 | 521 |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
522 extern RenderVertexD3D3 d3d_vertex_buffer[50]; |
0 | 523 |
524 extern RenderVertexSoft *ptr_801A04; | |
525 extern RenderVertexSoft *ptr_801A08; | |
526 | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
527 extern RenderVertexSoft pVerticesSR_801A10[384]; |
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
528 extern RenderVertexSoft pVerticesSR_806210[384]; |