annotate Render.h @ 2074:121316212c1c

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