annotate Indoor.h @ 1191:f30e67ca6f72

m
author Ritor1
date Fri, 07 Jun 2013 13:20:59 +0600
parents 39eaa6b00141
children 0dbf6c4dd029
rev   line source
0
Ritor1
parents:
diff changeset
1 #pragma once
Ritor1
parents:
diff changeset
2 #include "VectorTypes.h"
810
f5156b8c61ad savegame refactoring
Gloval
parents: 795
diff changeset
3 #include "Weather.h"
0
Ritor1
parents:
diff changeset
4
Ritor1
parents:
diff changeset
5
Ritor1
parents:
diff changeset
6
Ritor1
parents:
diff changeset
7 /* 319 */
Ritor1
parents:
diff changeset
8 enum LEVEL_TYPE
Ritor1
parents:
diff changeset
9 {
Ritor1
parents:
diff changeset
10 LEVEL_null = 0,
Ritor1
parents:
diff changeset
11 LEVEL_Indoor = 0x1,
Ritor1
parents:
diff changeset
12 LEVEL_Outdoor = 0x2,
Ritor1
parents:
diff changeset
13 };
Ritor1
parents:
diff changeset
14 extern LEVEL_TYPE uCurrentlyLoadedLevelType;
Ritor1
parents:
diff changeset
15
Ritor1
parents:
diff changeset
16
Ritor1
parents:
diff changeset
17
Ritor1
parents:
diff changeset
18
Ritor1
parents:
diff changeset
19
Ritor1
parents:
diff changeset
20 /* 74 */
Ritor1
parents:
diff changeset
21 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
22 struct LevelDecoration
Ritor1
parents:
diff changeset
23 {
Ritor1
parents:
diff changeset
24 LevelDecoration();
Ritor1
parents:
diff changeset
25 int GetGlobalEvent();
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1053
diff changeset
26 bool IsInteractive();
0
Ritor1
parents:
diff changeset
27 bool _47A825();
Ritor1
parents:
diff changeset
28
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30 unsigned __int16 uDecorationDescID;
Ritor1
parents:
diff changeset
31 __int16 field_2;
Ritor1
parents:
diff changeset
32 struct Vec3_int_ vPosition;
Ritor1
parents:
diff changeset
33 int field_10_y_rot;
Ritor1
parents:
diff changeset
34 __int16 uCog;
Ritor1
parents:
diff changeset
35 __int16 field_16_event_id;
Ritor1
parents:
diff changeset
36 __int16 field_18;
Ritor1
parents:
diff changeset
37 __int16 field_1A;
Ritor1
parents:
diff changeset
38 __int16 _idx_in_stru123;
Ritor1
parents:
diff changeset
39 __int16 field_1E;
Ritor1
parents:
diff changeset
40 };
Ritor1
parents:
diff changeset
41 #pragma pack(pop)
Ritor1
parents:
diff changeset
42 extern LevelDecoration pLevelDecorations[3000];
Ritor1
parents:
diff changeset
43 extern size_t uNumLevelDecorations;
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 469
diff changeset
44 extern LevelDecoration* activeLevelDecoration;
0
Ritor1
parents:
diff changeset
45
Ritor1
parents:
diff changeset
46
Ritor1
parents:
diff changeset
47
Ritor1
parents:
diff changeset
48
Ritor1
parents:
diff changeset
49
Ritor1
parents:
diff changeset
50
Ritor1
parents:
diff changeset
51
Ritor1
parents:
diff changeset
52
Ritor1
parents:
diff changeset
53 /* 86 */
Ritor1
parents:
diff changeset
54 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
55 struct SpawnPointMM6
Ritor1
parents:
diff changeset
56 {
Ritor1
parents:
diff changeset
57 Vec3_int_ vPosition;
Ritor1
parents:
diff changeset
58 unsigned __int16 uRadius;
Ritor1
parents:
diff changeset
59 unsigned __int16 uKind;
Ritor1
parents:
diff changeset
60 unsigned __int16 uIndex;
Ritor1
parents:
diff changeset
61 unsigned __int16 uAttributes;
Ritor1
parents:
diff changeset
62 };
Ritor1
parents:
diff changeset
63 #pragma pack(pop)
Ritor1
parents:
diff changeset
64
Ritor1
parents:
diff changeset
65
Ritor1
parents:
diff changeset
66
Ritor1
parents:
diff changeset
67 /* 102 */
Ritor1
parents:
diff changeset
68 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
69 struct SpawnPointMM7
Ritor1
parents:
diff changeset
70 {
Ritor1
parents:
diff changeset
71 //----- (00448DD6) --------------------------------------------------------
Ritor1
parents:
diff changeset
72 SpawnPointMM7()
Ritor1
parents:
diff changeset
73 {
Ritor1
parents:
diff changeset
74 uRadius = 32;
Ritor1
parents:
diff changeset
75 uAttributes = 0;
Ritor1
parents:
diff changeset
76 uIndex = 0;
Ritor1
parents:
diff changeset
77 uKind = 0;
Ritor1
parents:
diff changeset
78 uGroup = 0;
Ritor1
parents:
diff changeset
79 }
Ritor1
parents:
diff changeset
80
Ritor1
parents:
diff changeset
81
Ritor1
parents:
diff changeset
82 Vec3_int_ vPosition;
Ritor1
parents:
diff changeset
83 unsigned __int16 uRadius;
Ritor1
parents:
diff changeset
84 unsigned __int16 uKind;
Ritor1
parents:
diff changeset
85 unsigned __int16 uIndex;
Ritor1
parents:
diff changeset
86 unsigned __int16 uAttributes;
Ritor1
parents:
diff changeset
87 unsigned int uGroup;
Ritor1
parents:
diff changeset
88 };
Ritor1
parents:
diff changeset
89 #pragma pack(pop)
Ritor1
parents:
diff changeset
90
Ritor1
parents:
diff changeset
91
Ritor1
parents:
diff changeset
92
Ritor1
parents:
diff changeset
93
Ritor1
parents:
diff changeset
94
Ritor1
parents:
diff changeset
95
Ritor1
parents:
diff changeset
96
Ritor1
parents:
diff changeset
97
Ritor1
parents:
diff changeset
98
Ritor1
parents:
diff changeset
99
Ritor1
parents:
diff changeset
100 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
101 struct DDM_DLV_Header
Ritor1
parents:
diff changeset
102 {
Ritor1
parents:
diff changeset
103 //----- (00462607) --------------------------------------------------------
Ritor1
parents:
diff changeset
104 inline DDM_DLV_Header()
Ritor1
parents:
diff changeset
105 {
Ritor1
parents:
diff changeset
106 this->uLastRepawnDay = 0;
Ritor1
parents:
diff changeset
107 this->uNumRespawns = 0;
Ritor1
parents:
diff changeset
108 this->uReputation = 0;
Ritor1
parents:
diff changeset
109 this->field_C_alert = 0;
Ritor1
parents:
diff changeset
110 this->uNumFacesInBModels = 0;
Ritor1
parents:
diff changeset
111 this->uNumDecorations = 0;
Ritor1
parents:
diff changeset
112 this->uNumBModels = 0;
Ritor1
parents:
diff changeset
113 }
Ritor1
parents:
diff changeset
114
Ritor1
parents:
diff changeset
115
Ritor1
parents:
diff changeset
116 int uNumRespawns;
Ritor1
parents:
diff changeset
117 int uLastRepawnDay;
Ritor1
parents:
diff changeset
118 int uReputation;
Ritor1
parents:
diff changeset
119 int field_C_alert;
Ritor1
parents:
diff changeset
120 unsigned int uNumFacesInBModels;
Ritor1
parents:
diff changeset
121 unsigned int uNumDecorations;
Ritor1
parents:
diff changeset
122 unsigned int uNumBModels;
Ritor1
parents:
diff changeset
123 int field_1C;
Ritor1
parents:
diff changeset
124 int field_20;
Ritor1
parents:
diff changeset
125 int field_24;
Ritor1
parents:
diff changeset
126 };
Ritor1
parents:
diff changeset
127 #pragma pack(pop)
Ritor1
parents:
diff changeset
128
Ritor1
parents:
diff changeset
129
Ritor1
parents:
diff changeset
130
Ritor1
parents:
diff changeset
131 /* 291 */
Ritor1
parents:
diff changeset
132 enum PolygonType : __int8
Ritor1
parents:
diff changeset
133 {
Ritor1
parents:
diff changeset
134 POLYGON_Invalid = 0x0,
Ritor1
parents:
diff changeset
135 POLYGON_VerticalWall = 0x1,
Ritor1
parents:
diff changeset
136 POLYGON_unk = 0x2,
Ritor1
parents:
diff changeset
137 POLYGON_Floor = 0x3,
Ritor1
parents:
diff changeset
138 POLYGON_InBetweenFloorAndWall = 0x4,
Ritor1
parents:
diff changeset
139 POLYGON_Ceiling = 0x5,
Ritor1
parents:
diff changeset
140 POLYGON_InBetweenCeilingAndWall = 0x6,
Ritor1
parents:
diff changeset
141 };
Ritor1
parents:
diff changeset
142
Ritor1
parents:
diff changeset
143 /* 90 */
Ritor1
parents:
diff changeset
144 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
145 struct BLVHeader
Ritor1
parents:
diff changeset
146 {
Ritor1
parents:
diff changeset
147 char field_0[104];
Ritor1
parents:
diff changeset
148 unsigned int uFaces_fdata_Size;
Ritor1
parents:
diff changeset
149 unsigned int uSector_rdata_Size;
Ritor1
parents:
diff changeset
150 unsigned int uSector_lrdata_Size;
Ritor1
parents:
diff changeset
151 unsigned int uDoors_ddata_Size;
Ritor1
parents:
diff changeset
152 char field_78[16];
Ritor1
parents:
diff changeset
153 };
Ritor1
parents:
diff changeset
154 #pragma pack(pop)
Ritor1
parents:
diff changeset
155
Ritor1
parents:
diff changeset
156
Ritor1
parents:
diff changeset
157
Ritor1
parents:
diff changeset
158 /* 96 */
Ritor1
parents:
diff changeset
159 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
160 struct BLVSectorMM8
Ritor1
parents:
diff changeset
161 {
Ritor1
parents:
diff changeset
162 int dword_000074;
Ritor1
parents:
diff changeset
163 };
Ritor1
parents:
diff changeset
164 #pragma pack(pop)
Ritor1
parents:
diff changeset
165
Ritor1
parents:
diff changeset
166 /* 97 */
Ritor1
parents:
diff changeset
167 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
168 struct BLVLightMM6
Ritor1
parents:
diff changeset
169 {
Ritor1
parents:
diff changeset
170 Vec3_short_ vPosition;
Ritor1
parents:
diff changeset
171 __int16 uRadius;
Ritor1
parents:
diff changeset
172 __int16 uAttributes;
Ritor1
parents:
diff changeset
173 unsigned __int16 uBrightness;
Ritor1
parents:
diff changeset
174 };
Ritor1
parents:
diff changeset
175 #pragma pack(pop)
Ritor1
parents:
diff changeset
176
Ritor1
parents:
diff changeset
177 /* 98 */
Ritor1
parents:
diff changeset
178 #pragma pack(push, 1)
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
179 struct BLVLightMM7 //10h
0
Ritor1
parents:
diff changeset
180 {
Ritor1
parents:
diff changeset
181 struct Vec3_short_ vPosition;
Ritor1
parents:
diff changeset
182 __int16 uRadius;
Ritor1
parents:
diff changeset
183 char uRed;
Ritor1
parents:
diff changeset
184 char uGreen;
Ritor1
parents:
diff changeset
185 char uBlue;
Ritor1
parents:
diff changeset
186 char uType;
Ritor1
parents:
diff changeset
187 __int16 uAtributes; // & 0x08 doesn't light faces
Ritor1
parents:
diff changeset
188 __int16 uBrightness;
Ritor1
parents:
diff changeset
189 };
Ritor1
parents:
diff changeset
190 #pragma pack(pop)
Ritor1
parents:
diff changeset
191
Ritor1
parents:
diff changeset
192 /* 99 */
Ritor1
parents:
diff changeset
193 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
194 struct BLVLightMM8
Ritor1
parents:
diff changeset
195 {
Ritor1
parents:
diff changeset
196 int uID;
Ritor1
parents:
diff changeset
197 };
Ritor1
parents:
diff changeset
198 #pragma pack(pop)
Ritor1
parents:
diff changeset
199
Ritor1
parents:
diff changeset
200
Ritor1
parents:
diff changeset
201
Ritor1
parents:
diff changeset
202 /* 100 */
Ritor1
parents:
diff changeset
203 #pragma pack(push, 1)
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
204 struct BLVDoor //50h
0
Ritor1
parents:
diff changeset
205 {
Ritor1
parents:
diff changeset
206 enum State: unsigned __int16
Ritor1
parents:
diff changeset
207 {
Ritor1
parents:
diff changeset
208 Closed = 0,
Ritor1
parents:
diff changeset
209 Opening = 1,
Ritor1
parents:
diff changeset
210 Open = 2,
Ritor1
parents:
diff changeset
211 Closing = 3
Ritor1
parents:
diff changeset
212 };
Ritor1
parents:
diff changeset
213
Ritor1
parents:
diff changeset
214 unsigned int uAttributes;
Ritor1
parents:
diff changeset
215 unsigned int uDoorID;
Ritor1
parents:
diff changeset
216 unsigned int uTimeSinceTriggered;
Ritor1
parents:
diff changeset
217 Vec3_int_ vDirection;
Ritor1
parents:
diff changeset
218 int uMoveLength;
Ritor1
parents:
diff changeset
219 int uOpenSpeed;
Ritor1
parents:
diff changeset
220 int uCloseSpeed;
Ritor1
parents:
diff changeset
221 unsigned __int16 *pVertexIDs;
Ritor1
parents:
diff changeset
222 unsigned __int16 *pFaceIDs;
Ritor1
parents:
diff changeset
223 unsigned __int16 *pSectorIDs;
Ritor1
parents:
diff changeset
224 __int16 *pDeltaUs;
Ritor1
parents:
diff changeset
225 __int16 *pDeltaVs;
Ritor1
parents:
diff changeset
226 unsigned __int16 *pXOffsets;
Ritor1
parents:
diff changeset
227 unsigned __int16 *pYOffsets;
Ritor1
parents:
diff changeset
228 unsigned __int16 *pZOffsets;
Ritor1
parents:
diff changeset
229 unsigned __int16 uNumVertices;
Ritor1
parents:
diff changeset
230 unsigned __int16 uNumFaces;
Ritor1
parents:
diff changeset
231 __int16 field_48;
Ritor1
parents:
diff changeset
232 unsigned __int16 uNumOffsets;
Ritor1
parents:
diff changeset
233 State uState;
Ritor1
parents:
diff changeset
234 __int16 field_4E;
Ritor1
parents:
diff changeset
235 };
Ritor1
parents:
diff changeset
236 #pragma pack(pop)
Ritor1
parents:
diff changeset
237
Ritor1
parents:
diff changeset
238 /* 101 */
Ritor1
parents:
diff changeset
239 #pragma pack(push, 1)
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
240 struct BLVMapOutline //0C
0
Ritor1
parents:
diff changeset
241 {
Ritor1
parents:
diff changeset
242 unsigned __int16 uVertex1ID;
Ritor1
parents:
diff changeset
243 unsigned __int16 uVertex2ID;
Ritor1
parents:
diff changeset
244 unsigned __int16 uFace1ID;
Ritor1
parents:
diff changeset
245 unsigned __int16 uFace2ID;
Ritor1
parents:
diff changeset
246 __int16 sZ;
Ritor1
parents:
diff changeset
247 unsigned __int16 uFlags;
Ritor1
parents:
diff changeset
248 };
Ritor1
parents:
diff changeset
249 #pragma pack(pop)
Ritor1
parents:
diff changeset
250
Ritor1
parents:
diff changeset
251
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
252 #define FACE_PORTAL 0x00000001 // portal/two-sided
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
253 #define FACE_CAN_SATURATE_COLOR 0x00000002
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 711
diff changeset
254 #define FACE_FLUID 0x00000010 // wavy animated water or lava
1030
7735bdb3c30f Doors and other bmodel triggers are now clickable.
Nomad
parents: 1026
diff changeset
255 #define FACE_DONT_CACHE_TEXTURE 0x00000040 // do not load face texture if it isn't loaded already
795
472ca68386d4 more stru10 & stru9
Nomad
parents: 794
diff changeset
256 #define FACE_XY_PLANE 0x00000100
472ca68386d4 more stru10 & stru9
Nomad
parents: 794
diff changeset
257 #define FACE_XZ_PLANE 0x00000200
472ca68386d4 more stru10 & stru9
Nomad
parents: 794
diff changeset
258 #define FACE_YZ_PLANE 0x00000400
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
259 #define FACE_INVISIBLE 0x00002000
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
260 #define FACE_TEXTURE_FRAME 0x00004000 // Texture ID is a frameset from TextureFrameTable, otherwise BitmapID
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
261 #define FACE_OUTLINED 0x00010000 // outline face edges
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
262 #define FACE_TEXTURE_FLOW 0x00040000 // The texture moves slowly. For horizontal facets only.
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
263 #define FACE_DO_NOT_LIGHT 0x00400000
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
264 #define FACE_CLICKABLE 0x02000000 // Event can be triggered by clicking on the facet.
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
265 #define FACE_PRESSURE_PLATE 0x04000000 // Event can be triggered by stepping on the facet.
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 595
diff changeset
266 #define FACE_ETHEREAL 0x20000000 // Untouchable. You can pass through it.
1053
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1030
diff changeset
267 #define FACE_PICKED 0x80000000
0
Ritor1
parents:
diff changeset
268
Ritor1
parents:
diff changeset
269 /* 93 */
Ritor1
parents:
diff changeset
270 #pragma pack(push, 1)
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
271 struct BLVFace //60h
0
Ritor1
parents:
diff changeset
272 {
Ritor1
parents:
diff changeset
273 //----- (0046ED02) --------------------------------------------------------
Ritor1
parents:
diff changeset
274 inline BLVFace()
Ritor1
parents:
diff changeset
275 {
Ritor1
parents:
diff changeset
276 this->uNumVertices = 0;
Ritor1
parents:
diff changeset
277 this->uAttributes = 0;
Ritor1
parents:
diff changeset
278 this->uFaceExtraID = 0;
Ritor1
parents:
diff changeset
279 this->pVertexIDs = 0;
Ritor1
parents:
diff changeset
280 this->pZInterceptDisplacements = 0;
Ritor1
parents:
diff changeset
281 this->pYInterceptDisplacements = 0;
Ritor1
parents:
diff changeset
282 this->pXInterceptDisplacements = 0;
Ritor1
parents:
diff changeset
283 }
Ritor1
parents:
diff changeset
284
Ritor1
parents:
diff changeset
285 char _get_normals(Vec3_int_ *a2, Vec3_int_ *a3);
Ritor1
parents:
diff changeset
286 struct Texture *GetTexture();
1025
8b492d4722d4 Intersection
Ritor1
parents: 837
diff changeset
287 void FromODM(struct ODMFace *face);
0
Ritor1
parents:
diff changeset
288
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1053
diff changeset
289 inline bool Invisible() const {return (uAttributes & FACE_INVISIBLE) != 0;}
0
Ritor1
parents:
diff changeset
290 inline bool Visible() const {return !Invisible();}
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1053
diff changeset
291 inline bool Portal() const {return (uAttributes & FACE_PORTAL) != 0;}
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1053
diff changeset
292 inline bool Fluid() const {return (uAttributes & FACE_FLUID) != 0;}
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1053
diff changeset
293 inline bool Clickable() const {return (uAttributes & FACE_CLICKABLE) != 0;}
0
Ritor1
parents:
diff changeset
294
Ritor1
parents:
diff changeset
295
Ritor1
parents:
diff changeset
296 struct Plane_float_ pFacePlane;
Ritor1
parents:
diff changeset
297 struct Plane_int_ pFacePlane_old;
Ritor1
parents:
diff changeset
298 int zCalc1;
Ritor1
parents:
diff changeset
299 int zCalc2;
Ritor1
parents:
diff changeset
300 int zCalc3;
Ritor1
parents:
diff changeset
301 unsigned int uAttributes;
Ritor1
parents:
diff changeset
302 unsigned __int16 *pVertexIDs;
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
303 signed __int16 *pXInterceptDisplacements;
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
304 signed __int16 *pYInterceptDisplacements;
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
305 signed __int16 *pZInterceptDisplacements;
0
Ritor1
parents:
diff changeset
306 signed __int16 *pVertexUIDs;
Ritor1
parents:
diff changeset
307 signed __int16 *pVertexVIDs;
Ritor1
parents:
diff changeset
308 unsigned __int16 uFaceExtraID;
Ritor1
parents:
diff changeset
309 unsigned __int16 uBitmapID;
Ritor1
parents:
diff changeset
310 unsigned __int16 uSectorID;
Ritor1
parents:
diff changeset
311 __int16 uBackSectorID;
Ritor1
parents:
diff changeset
312 struct BBox_short_ pBounding;
Ritor1
parents:
diff changeset
313 PolygonType uPolygonType;
Ritor1
parents:
diff changeset
314 unsigned __int8 uNumVertices;
Ritor1
parents:
diff changeset
315 char field_5E;
Ritor1
parents:
diff changeset
316 char field_5F;
Ritor1
parents:
diff changeset
317 };
Ritor1
parents:
diff changeset
318 #pragma pack(pop)
Ritor1
parents:
diff changeset
319
Ritor1
parents:
diff changeset
320 /* 94 */
Ritor1
parents:
diff changeset
321 #pragma pack(push, 1)
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
322 struct BLVFaceExtra //24h
0
Ritor1
parents:
diff changeset
323 {
428
24936a5ff8ca level hints
Gloval
parents: 194
diff changeset
324 bool HasEventint();
0
Ritor1
parents:
diff changeset
325
Ritor1
parents:
diff changeset
326 __int16 field_0;
Ritor1
parents:
diff changeset
327 __int16 field_2;
Ritor1
parents:
diff changeset
328 __int16 field_4;
Ritor1
parents:
diff changeset
329 __int16 field_6;
Ritor1
parents:
diff changeset
330 __int16 field_8;
Ritor1
parents:
diff changeset
331 __int16 field_A;
Ritor1
parents:
diff changeset
332 __int16 field_C;
Ritor1
parents:
diff changeset
333 unsigned __int16 uAdditionalBitmapID;
Ritor1
parents:
diff changeset
334 __int16 field_10;
Ritor1
parents:
diff changeset
335 __int16 field_12;
Ritor1
parents:
diff changeset
336 __int16 sTextureDeltaU;
Ritor1
parents:
diff changeset
337 __int16 sTextureDeltaV;
Ritor1
parents:
diff changeset
338 __int16 sCogNumber;
Ritor1
parents:
diff changeset
339 unsigned __int16 uEventID;
Ritor1
parents:
diff changeset
340 __int16 field_1C;
Ritor1
parents:
diff changeset
341 __int16 field_1E;
Ritor1
parents:
diff changeset
342 __int16 field_20;
Ritor1
parents:
diff changeset
343 __int16 field_22;
Ritor1
parents:
diff changeset
344 };
Ritor1
parents:
diff changeset
345 #pragma pack(pop)
Ritor1
parents:
diff changeset
346
Ritor1
parents:
diff changeset
347 /* 95 */
Ritor1
parents:
diff changeset
348 #pragma pack(push, 1)
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
349 struct BLVSector //0x74
0
Ritor1
parents:
diff changeset
350 {
Ritor1
parents:
diff changeset
351 int field_0;
Ritor1
parents:
diff changeset
352 unsigned __int16 uNumFloors;
Ritor1
parents:
diff changeset
353 __int16 field_6;
Ritor1
parents:
diff changeset
354 unsigned __int16 *pFloors;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
355 unsigned __int16 uNumWalls;
0
Ritor1
parents:
diff changeset
356 __int16 field_E;
Ritor1
parents:
diff changeset
357 unsigned __int16 *pWalls;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
358 unsigned __int16 uNumCeilings;
0
Ritor1
parents:
diff changeset
359 __int16 field_16;
Ritor1
parents:
diff changeset
360 unsigned __int16 *pCeilings;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
361 unsigned __int16 uNumFluids;
0
Ritor1
parents:
diff changeset
362 __int16 field_1E;
Ritor1
parents:
diff changeset
363 unsigned __int16 *pFluids;
Ritor1
parents:
diff changeset
364 __int16 uNumPortals;
Ritor1
parents:
diff changeset
365 __int16 field_26;
Ritor1
parents:
diff changeset
366 unsigned __int16 *pPortals;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
367 unsigned __int16 uNumFaces;
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
368 unsigned __int16 uNumNonBSPFaces;
0
Ritor1
parents:
diff changeset
369 unsigned __int16 *pFaceIDs;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
370 unsigned __int16 uNumCylinderFaces;
0
Ritor1
parents:
diff changeset
371 __int16 field_36;
Ritor1
parents:
diff changeset
372 int pCylinderFaces;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
373 unsigned __int16 uNumCogs;
0
Ritor1
parents:
diff changeset
374 __int16 field_3E;
Ritor1
parents:
diff changeset
375 unsigned __int16 *pCogs;
Ritor1
parents:
diff changeset
376 unsigned __int16 uNumDecorations;
Ritor1
parents:
diff changeset
377 __int16 field_46;
Ritor1
parents:
diff changeset
378 unsigned __int16 *pDecorationIDs;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
379 unsigned __int16 uNumMarkers;
0
Ritor1
parents:
diff changeset
380 __int16 field_4E;
Ritor1
parents:
diff changeset
381 unsigned __int16 *pMarkers;
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 520
diff changeset
382 unsigned __int16 uNumLights;
0
Ritor1
parents:
diff changeset
383 __int16 field_56;
Ritor1
parents:
diff changeset
384 unsigned __int16 *pLights;
Ritor1
parents:
diff changeset
385 __int16 uWaterLevel;
Ritor1
parents:
diff changeset
386 __int16 uMistLevel;
Ritor1
parents:
diff changeset
387 __int16 uLightDistanceMultiplier;
Ritor1
parents:
diff changeset
388 __int16 uMinAmbientLightLevel;
Ritor1
parents:
diff changeset
389 __int16 uFirstBSPNode;
Ritor1
parents:
diff changeset
390 __int16 exit_tag;
Ritor1
parents:
diff changeset
391 BBox_short_ pBounding;
Ritor1
parents:
diff changeset
392 };
Ritor1
parents:
diff changeset
393 #pragma pack(pop)
Ritor1
parents:
diff changeset
394
Ritor1
parents:
diff changeset
395
Ritor1
parents:
diff changeset
396 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
397 struct BLVMapOutlines
Ritor1
parents:
diff changeset
398 {
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
399 int uNumOutlines;
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
400 BLVMapOutline pOutlines[7000];
0
Ritor1
parents:
diff changeset
401 };
Ritor1
parents:
diff changeset
402 #pragma pack(pop)
Ritor1
parents:
diff changeset
403
Ritor1
parents:
diff changeset
404
Ritor1
parents:
diff changeset
405
810
f5156b8c61ad savegame refactoring
Gloval
parents: 795
diff changeset
406
0
Ritor1
parents:
diff changeset
407
Ritor1
parents:
diff changeset
408
Ritor1
parents:
diff changeset
409
Ritor1
parents:
diff changeset
410 /* 89 */
Ritor1
parents:
diff changeset
411 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
412 struct IndoorLocation
Ritor1
parents:
diff changeset
413 {
Ritor1
parents:
diff changeset
414 //----- (00462592) --------------------------------------------------------
Ritor1
parents:
diff changeset
415 inline IndoorLocation()
Ritor1
parents:
diff changeset
416 {
Ritor1
parents:
diff changeset
417 bLoaded = 0;
Ritor1
parents:
diff changeset
418 ptr_0002B8_sector_lrdata = 0;
Ritor1
parents:
diff changeset
419 ptr_0002B4_doors_ddata = 0;
Ritor1
parents:
diff changeset
420 ptr_0002B0_sector_rdata = 0;
1006
e865f349aa41 ui cleanup
Gloval
parents: 837
diff changeset
421 pLFaces = 0;
0
Ritor1
parents:
diff changeset
422 pVertices = 0;
Ritor1
parents:
diff changeset
423 pFaces = 0;
Ritor1
parents:
diff changeset
424 pFaceExtras = 0;
Ritor1
parents:
diff changeset
425 pSectors = 0;
Ritor1
parents:
diff changeset
426 pLights = 0;
Ritor1
parents:
diff changeset
427 pDoors = 0;
Ritor1
parents:
diff changeset
428 pNodes = 0;
Ritor1
parents:
diff changeset
429 pMapOutlines = 0;
Ritor1
parents:
diff changeset
430 uNumSpawnPoints = 0;
Ritor1
parents:
diff changeset
431 pSpawnPoints = 0;
Ritor1
parents:
diff changeset
432 }
Ritor1
parents:
diff changeset
433
Ritor1
parents:
diff changeset
434 int GetSector(int sX, int sY, int sZ);
Ritor1
parents:
diff changeset
435 void Release();
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
436 bool Alloc();
0
Ritor1
parents:
diff changeset
437 bool Load(char *pFilename, int a3, size_t i, char *pDest);
Ritor1
parents:
diff changeset
438 void Draw();
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
439 void ToggleLight(signed int uLightID, unsigned int bToggle);
0
Ritor1
parents:
diff changeset
440
Ritor1
parents:
diff changeset
441 static unsigned int GetLocationIndex(const char *Str1);
Ritor1
parents:
diff changeset
442 static void ExecDraw(bool bD3D);
Ritor1
parents:
diff changeset
443 static void ExecDraw_sw(unsigned int uFaceID);
794
Nomad
parents: 791
diff changeset
444 static void ExecDraw_d3d(unsigned int uFaceID, struct IndoorCameraD3D_Vec4 *pVertices, unsigned int uNumVertices, struct RenderVertexSoft *pPortalBounding);
0
Ritor1
parents:
diff changeset
445
Ritor1
parents:
diff changeset
446 char pFilename[32];
Ritor1
parents:
diff changeset
447 char field_20[48];
Ritor1
parents:
diff changeset
448 unsigned int bLoaded;
Ritor1
parents:
diff changeset
449 char field_54[404];
Ritor1
parents:
diff changeset
450 struct BLVHeader blv;
Ritor1
parents:
diff changeset
451 unsigned int uNumVertices;
Ritor1
parents:
diff changeset
452 struct Vec3_short_ *pVertices;
Ritor1
parents:
diff changeset
453 unsigned int uNumFaces;
Ritor1
parents:
diff changeset
454 struct BLVFace *pFaces;
Ritor1
parents:
diff changeset
455 unsigned int uNumFaceExtras;
Ritor1
parents:
diff changeset
456 struct BLVFaceExtra *pFaceExtras;
Ritor1
parents:
diff changeset
457 int uNumSectors;
Ritor1
parents:
diff changeset
458 struct BLVSector *pSectors;
Ritor1
parents:
diff changeset
459 int uNumLights;
Ritor1
parents:
diff changeset
460 struct BLVLightMM7 *pLights;
Ritor1
parents:
diff changeset
461 int uNumDoors;
Ritor1
parents:
diff changeset
462 struct BLVDoor *pDoors;
Ritor1
parents:
diff changeset
463 unsigned int uNumNodes;
Ritor1
parents:
diff changeset
464 struct BSPNode *pNodes;
Ritor1
parents:
diff changeset
465 BLVMapOutlines *pMapOutlines;
1006
e865f349aa41 ui cleanup
Gloval
parents: 837
diff changeset
466 unsigned __int16 *pLFaces;
0
Ritor1
parents:
diff changeset
467 unsigned __int16 *ptr_0002B0_sector_rdata;
Ritor1
parents:
diff changeset
468 unsigned __int16 *ptr_0002B4_doors_ddata;
Ritor1
parents:
diff changeset
469 unsigned __int16 *ptr_0002B8_sector_lrdata;
Ritor1
parents:
diff changeset
470 unsigned int uNumSpawnPoints;
Ritor1
parents:
diff changeset
471 struct SpawnPointMM7 *pSpawnPoints;
Ritor1
parents:
diff changeset
472 struct DDM_DLV_Header dlv;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 795
diff changeset
473 LocationTime_stru1 stru1;
837
bebc19f3d2af Save/load work with some problems
Gloval
parents: 810
diff changeset
474 char _visible_outlines[875];
bebc19f3d2af Save/load work with some problems
Gloval
parents: 810
diff changeset
475 char padding;
0
Ritor1
parents:
diff changeset
476 };
Ritor1
parents:
diff changeset
477 #pragma pack(pop)
Ritor1
parents:
diff changeset
478
Ritor1
parents:
diff changeset
479 extern IndoorLocation *pIndoor;
Ritor1
parents:
diff changeset
480
Ritor1
parents:
diff changeset
481
Ritor1
parents:
diff changeset
482
Ritor1
parents:
diff changeset
483
Ritor1
parents:
diff changeset
484
Ritor1
parents:
diff changeset
485
Ritor1
parents:
diff changeset
486
Ritor1
parents:
diff changeset
487
Ritor1
parents:
diff changeset
488
Ritor1
parents:
diff changeset
489
Ritor1
parents:
diff changeset
490
Ritor1
parents:
diff changeset
491
Ritor1
parents:
diff changeset
492 /* 263 */
Ritor1
parents:
diff changeset
493 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
494 struct IndoorLocation_drawstru
Ritor1
parents:
diff changeset
495 {
Ritor1
parents:
diff changeset
496 int field_0_timer;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 0
diff changeset
497 int uFlags; // & INDOOR_CAMERA_DRAW_D3D_OUTLINES: render d3d outlines
0
Ritor1
parents:
diff changeset
498 Vec3_int_ vPosition;
Ritor1
parents:
diff changeset
499 int sRotationY;
Ritor1
parents:
diff changeset
500 int sRotationX;
Ritor1
parents:
diff changeset
501 int field_1C_mb_fov;
Ritor1
parents:
diff changeset
502 unsigned __int16 *pRenderTarget;
Ritor1
parents:
diff changeset
503 unsigned int uTargetWidth;
Ritor1
parents:
diff changeset
504 unsigned int uTargetHeight;
711
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
505 signed int uViewportX;
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
506 signed int uViewportY;
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
507 signed int uViewportZ;
a5e587c8e30e some cleaning
Gloval
parents: 676
diff changeset
508 signed int uViewportW;
0
Ritor1
parents:
diff changeset
509 int field_3C;
Ritor1
parents:
diff changeset
510 int *pTargetZ;
Ritor1
parents:
diff changeset
511 };
Ritor1
parents:
diff changeset
512 #pragma pack(pop)
Ritor1
parents:
diff changeset
513
Ritor1
parents:
diff changeset
514
Ritor1
parents:
diff changeset
515
Ritor1
parents:
diff changeset
516
Ritor1
parents:
diff changeset
517
Ritor1
parents:
diff changeset
518
Ritor1
parents:
diff changeset
519
Ritor1
parents:
diff changeset
520
Ritor1
parents:
diff changeset
521
Ritor1
parents:
diff changeset
522
Ritor1
parents:
diff changeset
523
Ritor1
parents:
diff changeset
524
Ritor1
parents:
diff changeset
525 /* 162 */
Ritor1
parents:
diff changeset
526 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
527 struct BLVRenderParams
Ritor1
parents:
diff changeset
528 {
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 711
diff changeset
529 inline BLVRenderParams():
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 711
diff changeset
530 uFlags(0)
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 711
diff changeset
531 {}
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 711
diff changeset
532
0
Ritor1
parents:
diff changeset
533 int Reset(struct IndoorLocation_drawstru *a2);
Ritor1
parents:
diff changeset
534
Ritor1
parents:
diff changeset
535 int field_0_timer_;
186
d65528fc3bda D3D constants, shore tiles, camera flags
Nomad
parents: 0
diff changeset
536 int uFlags; // & INDOOR_CAMERA_DRAW_D3D_OUTLINES: render d3d outlines
0
Ritor1
parents:
diff changeset
537 Vec3_int_ vPartyPos;
Ritor1
parents:
diff changeset
538 int sPartyRotY;
Ritor1
parents:
diff changeset
539 int sPartyRotX;
Ritor1
parents:
diff changeset
540 int uPartySectorID;
Ritor1
parents:
diff changeset
541 int sCosineY;
Ritor1
parents:
diff changeset
542 int sSineY;
Ritor1
parents:
diff changeset
543 int sCosineNegX;
Ritor1
parents:
diff changeset
544 int sSineNegX;
Ritor1
parents:
diff changeset
545 float fCosineY;
Ritor1
parents:
diff changeset
546 float fSineY;
Ritor1
parents:
diff changeset
547 float fCosineNegX;
Ritor1
parents:
diff changeset
548 float fSineNegX;
Ritor1
parents:
diff changeset
549 int field_40;
1006
e865f349aa41 ui cleanup
Gloval
parents: 837
diff changeset
550 int field_44;//float
0
Ritor1
parents:
diff changeset
551 unsigned __int16 *pRenderTarget;
Ritor1
parents:
diff changeset
552 unsigned int uTargetWidth;
Ritor1
parents:
diff changeset
553 unsigned int uTargetHeight;
Ritor1
parents:
diff changeset
554 unsigned int uViewportX;
Ritor1
parents:
diff changeset
555 unsigned int uViewportY;
Ritor1
parents:
diff changeset
556 unsigned int uViewportZ;
Ritor1
parents:
diff changeset
557 unsigned int uViewportW;
Ritor1
parents:
diff changeset
558 int field_64;
Ritor1
parents:
diff changeset
559 int *pTargetZBuffer;
Ritor1
parents:
diff changeset
560 int uViewportHeight;
Ritor1
parents:
diff changeset
561 int field_70;
Ritor1
parents:
diff changeset
562 int uViewportCenterX;
Ritor1
parents:
diff changeset
563 int uViewportCenterY;
Ritor1
parents:
diff changeset
564 struct BspRenderer_stru2 *field_7C;
Ritor1
parents:
diff changeset
565 unsigned int uNumFacesRenderedThisFrame;
Ritor1
parents:
diff changeset
566 int field_84;
Ritor1
parents:
diff changeset
567 int field_88;
Ritor1
parents:
diff changeset
568 int field_8C;
Ritor1
parents:
diff changeset
569 int field_90;
Ritor1
parents:
diff changeset
570 int field_94;
Ritor1
parents:
diff changeset
571 };
Ritor1
parents:
diff changeset
572 #pragma pack(pop)
Ritor1
parents:
diff changeset
573
Ritor1
parents:
diff changeset
574 extern struct BLVRenderParams *pBLVRenderParams;
Ritor1
parents:
diff changeset
575
Ritor1
parents:
diff changeset
576
Ritor1
parents:
diff changeset
577
Ritor1
parents:
diff changeset
578
Ritor1
parents:
diff changeset
579
Ritor1
parents:
diff changeset
580 #include "Indoor_stuff.h"