annotate Outdoor.h @ 1220:908c00615587

m
author Ritor1
date Sun, 02 Jun 2013 15:14:22 +0600
parents 39eaa6b00141
children 0aeac0b9ca30
rev   line source
0
Ritor1
parents:
diff changeset
1 #pragma
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 810
diff changeset
2
0
Ritor1
parents:
diff changeset
3 #include "Indoor.h"
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
4 #include "TileFrameTable.h"
810
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
5 #include "Weather.h"
1052
d48c762de563 -nomarg
Nomad
parents: 1030
diff changeset
6 #include "BSPModel.h"
0
Ritor1
parents:
diff changeset
7
767
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
8 #define DAY_ATTRIB_FOG 1
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
9
0
Ritor1
parents:
diff changeset
10 /* 256 */
Ritor1
parents:
diff changeset
11 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
12 struct ODMHeader
Ritor1
parents:
diff changeset
13 {
Ritor1
parents:
diff changeset
14 int uVersion;
Ritor1
parents:
diff changeset
15 char pMagic[4];
Ritor1
parents:
diff changeset
16 unsigned int uCompressedSize;
Ritor1
parents:
diff changeset
17 unsigned int uDecompressedSize;
Ritor1
parents:
diff changeset
18 };
Ritor1
parents:
diff changeset
19 #pragma pack(pop)
Ritor1
parents:
diff changeset
20
Ritor1
parents:
diff changeset
21
Ritor1
parents:
diff changeset
22
Ritor1
parents:
diff changeset
23 /* 78 */
Ritor1
parents:
diff changeset
24 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
25 struct OutdoorLocationTileType
Ritor1
parents:
diff changeset
26 {
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
27 Tileset tileset;
0
Ritor1
parents:
diff changeset
28 unsigned __int16 uTileID;
Ritor1
parents:
diff changeset
29 };
Ritor1
parents:
diff changeset
30 #pragma pack(pop)
Ritor1
parents:
diff changeset
31
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
32 #pragma pack(push, 1)
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
33 struct DMap
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
34 {
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
35 unsigned __int8 field0;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
36 unsigned __int8 field1;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
37 };
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
38 #pragma pack(pop)
0
Ritor1
parents:
diff changeset
39
Ritor1
parents:
diff changeset
40 /* 79 */
Ritor1
parents:
diff changeset
41 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
42 struct OutdoorLocationTerrain
Ritor1
parents:
diff changeset
43 {
Ritor1
parents:
diff changeset
44 //----- (0047C794) --------------------------------------------------------
Ritor1
parents:
diff changeset
45 inline OutdoorLocationTerrain()
Ritor1
parents:
diff changeset
46 {
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
47 pHeightmap = NULL;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
48 pTilemap = NULL;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
49 pAttributemap = NULL;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
50 pDmap = NULL;;
0
Ritor1
parents:
diff changeset
51 this->field_10 = 0;
Ritor1
parents:
diff changeset
52 this->field_12 = 0;
Ritor1
parents:
diff changeset
53
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
54
0
Ritor1
parents:
diff changeset
55 }
Ritor1
parents:
diff changeset
56
Ritor1
parents:
diff changeset
57 void _47C7A9();
Ritor1
parents:
diff changeset
58 void Release();
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
59 void FillDMap(int X, int Y, int W, int Z);
0
Ritor1
parents:
diff changeset
60 int _47CB57(int a1, int a2, int a3);
Ritor1
parents:
diff changeset
61 bool ZeroLandscape();
Ritor1
parents:
diff changeset
62 bool Initialize();
Ritor1
parents:
diff changeset
63
Ritor1
parents:
diff changeset
64
Ritor1
parents:
diff changeset
65 unsigned __int8 *pHeightmap;
Ritor1
parents:
diff changeset
66 unsigned __int8 *pTilemap;
Ritor1
parents:
diff changeset
67 unsigned __int8 *pAttributemap;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
68 struct DMap *pDmap;
0
Ritor1
parents:
diff changeset
69 __int16 field_10;
Ritor1
parents:
diff changeset
70 __int16 field_12;
Ritor1
parents:
diff changeset
71 __int16 field_14;
Ritor1
parents:
diff changeset
72 __int16 field_16;
Ritor1
parents:
diff changeset
73 int field_18;
Ritor1
parents:
diff changeset
74 int field_1C;
Ritor1
parents:
diff changeset
75 };
Ritor1
parents:
diff changeset
76 #pragma pack(pop)
Ritor1
parents:
diff changeset
77
Ritor1
parents:
diff changeset
78
Ritor1
parents:
diff changeset
79 /* 81 */
Ritor1
parents:
diff changeset
80 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
81 struct ODMFace
Ritor1
parents:
diff changeset
82 {
Ritor1
parents:
diff changeset
83 bool HasEventHint();
Ritor1
parents:
diff changeset
84
Ritor1
parents:
diff changeset
85
Ritor1
parents:
diff changeset
86 static bool IsBackfaceCulled(struct ODMFace *a1, struct RenderVertexSoft *a2, struct stru148 *a3);
Ritor1
parents:
diff changeset
87
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
88 inline bool Invisible() const {return (uAttributes & FACE_INVISIBLE) != 0;}
0
Ritor1
parents:
diff changeset
89 inline bool Visible() const {return !Invisible();}
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
90 inline bool Portal() const {return (uAttributes & FACE_PORTAL) != 0;}
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
91 inline bool Fluid() const {return (uAttributes & FACE_FLUID) != 0;}
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
92 inline bool Clickable() const {return (uAttributes & FACE_CLICKABLE) != 0;}
0
Ritor1
parents:
diff changeset
93
Ritor1
parents:
diff changeset
94 struct Plane_int_ pFacePlane;
Ritor1
parents:
diff changeset
95 int zCalc1;
Ritor1
parents:
diff changeset
96 int zCalc2;
Ritor1
parents:
diff changeset
97 int zCalc3;
Ritor1
parents:
diff changeset
98 unsigned int uAttributes;
Ritor1
parents:
diff changeset
99 unsigned __int16 pVertexIDs[20];
Ritor1
parents:
diff changeset
100 unsigned __int16 pTextureUIDs[20];
Ritor1
parents:
diff changeset
101 unsigned __int16 pTextureVIDs[20];
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
102 signed __int16 pXInterceptDisplacements[20];
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
103 signed __int16 pYInterceptDisplacements[20];
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
104 signed __int16 pZInterceptDisplacements[20];
0
Ritor1
parents:
diff changeset
105 unsigned __int16 uTextureID;
Ritor1
parents:
diff changeset
106 __int16 sTextureDeltaU;
Ritor1
parents:
diff changeset
107 __int16 sTextureDeltaV;
Ritor1
parents:
diff changeset
108 struct BBox_short_ pBoundingBox;
Ritor1
parents:
diff changeset
109 __int16 sCogNumber;
Ritor1
parents:
diff changeset
110 __int16 sCogTriggeredID;
Ritor1
parents:
diff changeset
111 __int16 sCogTriggerType;
Ritor1
parents:
diff changeset
112 char field_128;
Ritor1
parents:
diff changeset
113 char field_129;
Ritor1
parents:
diff changeset
114 unsigned __int8 uGradientVertex1;
Ritor1
parents:
diff changeset
115 unsigned __int8 uGradientVertex2;
Ritor1
parents:
diff changeset
116 unsigned __int8 uGradientVertex3;
Ritor1
parents:
diff changeset
117 unsigned __int8 uGradientVertex4;
Ritor1
parents:
diff changeset
118 unsigned __int8 uNumVertices;
Ritor1
parents:
diff changeset
119 unsigned __int8 uPolygonType;
Ritor1
parents:
diff changeset
120 unsigned __int8 uShadeType;
Ritor1
parents:
diff changeset
121 unsigned __int8 bVisible;
Ritor1
parents:
diff changeset
122 char field_132;
Ritor1
parents:
diff changeset
123 char field_133;
Ritor1
parents:
diff changeset
124 };
Ritor1
parents:
diff changeset
125 #pragma pack(pop)
Ritor1
parents:
diff changeset
126
Ritor1
parents:
diff changeset
127
Ritor1
parents:
diff changeset
128
Ritor1
parents:
diff changeset
129 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
130 struct OutdoorLocation
Ritor1
parents:
diff changeset
131 {
Ritor1
parents:
diff changeset
132 //----- (004626BA) --------------------------------------------------------
Ritor1
parents:
diff changeset
133 OutdoorLocation()
Ritor1
parents:
diff changeset
134 {
Ritor1
parents:
diff changeset
135 subconstuctor();
Ritor1
parents:
diff changeset
136 uLastSunlightUpdateMinute = 0;
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 142
diff changeset
137
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 142
diff changeset
138 uNumBModels = 0;
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 142
diff changeset
139 pBModels = nullptr;
0
Ritor1
parents:
diff changeset
140 }
Ritor1
parents:
diff changeset
141 //----- (004626CD) --------------------------------------------------------
Ritor1
parents:
diff changeset
142 void subconstuctor()
Ritor1
parents:
diff changeset
143 {
Ritor1
parents:
diff changeset
144 //OutdoorLocationTerrain::OutdoorLocationTerrain(&this->pTerrain);
Ritor1
parents:
diff changeset
145 field_F0 = 0;
Ritor1
parents:
diff changeset
146 field_F4 = 0x40000000u;
Ritor1
parents:
diff changeset
147 //DLVHeader::DLVHeader(&v1->ddm);
Ritor1
parents:
diff changeset
148 pSpawnPoints = 0;
Ritor1
parents:
diff changeset
149 pBModels = 0;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
150 pCmap = 0;
0
Ritor1
parents:
diff changeset
151 pFaceIDLIST = 0;
Ritor1
parents:
diff changeset
152 pOMAP = 0;
Ritor1
parents:
diff changeset
153 }
Ritor1
parents:
diff changeset
154
Ritor1
parents:
diff changeset
155 void ExecDraw(unsigned int bRedraw);
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 119
diff changeset
156 void PrepareActorsDrawList();
0
Ritor1
parents:
diff changeset
157 void CreateDebugLocation();
Ritor1
parents:
diff changeset
158 void Release();
119
be3c07c98861 Outdoor minimap fixed (didn't test wizard eye thou)
Nomad
parents: 0
diff changeset
159 bool Load(const char *pFilename, ODMFace *File, size_t a4, int thisa);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 760
diff changeset
160 int GetTileIdByTileMapId(signed int a2);
0
Ritor1
parents:
diff changeset
161 unsigned int DoGetTileTexture(unsigned int uX, unsigned int uZ);
Ritor1
parents:
diff changeset
162 int _47ED83(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
163 int ActuallyGetSomeOtherTileInfo(unsigned int uX, unsigned int uY);
Ritor1
parents:
diff changeset
164 int DoGetHeightOnTerrain(unsigned int uX, unsigned int uZ);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 760
diff changeset
165 int GetSoundIdByPosition(signed int X_pos, signed int Y_pos, int a4);
752
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
166 int UpdateDiscoveredArea(int a2, int a3, int a4);
0
Ritor1
parents:
diff changeset
167 bool _47F04C(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
168 bool _47F097(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
169 bool _47F0E2();
Ritor1
parents:
diff changeset
170 bool PrepareDecorations();
Ritor1
parents:
diff changeset
171 int _47F223_LooksLikeGenerateMonsterLoot();
Ritor1
parents:
diff changeset
172 bool InitalizeActors(int a1);
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
173 bool LoadRoadTileset();
0
Ritor1
parents:
diff changeset
174 bool LoadTileGroupIds();
Ritor1
parents:
diff changeset
175 double GetFogDensityByTime();
Ritor1
parents:
diff changeset
176 int GetSomeOtherTileInfo(int sX, int sY);
Ritor1
parents:
diff changeset
177 unsigned int GetTileTexture(int sX, int sZ);
Ritor1
parents:
diff changeset
178 int GetHeightOnTerrain(int sX, int sZ);
Ritor1
parents:
diff changeset
179 bool Initialize(const char *pFilename, int File, size_t uRespawnInterval, int thisa);
Ritor1
parents:
diff changeset
180 bool Release2();
Ritor1
parents:
diff changeset
181 bool GetTravelDestination(signed int sPartyX, signed int sPartyZ, char *pOut, signed int a5);
Ritor1
parents:
diff changeset
182 void MessWithLUN();
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 752
diff changeset
183 void UpdateSunlightVectors();
0
Ritor1
parents:
diff changeset
184 void UpdateFog();
Ritor1
parents:
diff changeset
185 int GetNumFoodRequiredToRestInCurrentPos(int x, signed int y, int z);
767
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
186 void SetFog();
0
Ritor1
parents:
diff changeset
187 void Draw();
Ritor1
parents:
diff changeset
188
Ritor1
parents:
diff changeset
189
Ritor1
parents:
diff changeset
190 char pLevelFilename[32];
Ritor1
parents:
diff changeset
191 char pLocationFileName[32];
Ritor1
parents:
diff changeset
192 char pLocationFileDescription[32];
Ritor1
parents:
diff changeset
193 char pSkyTextureName[32];
Ritor1
parents:
diff changeset
194 char pGroundTileset[32];
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
195 OutdoorLocationTileType pTileTypes[4]; // [3] road tileset
0
Ritor1
parents:
diff changeset
196 unsigned int uNumBModels;
Ritor1
parents:
diff changeset
197 struct OutdoorLocationTerrain pTerrain;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
198 void *pCmap;
1052
d48c762de563 -nomarg
Nomad
parents: 1030
diff changeset
199 BSPModel *pBModels;
0
Ritor1
parents:
diff changeset
200 unsigned int numFaceIDListElems;
Ritor1
parents:
diff changeset
201 unsigned __int16 *pFaceIDLIST;
Ritor1
parents:
diff changeset
202 unsigned int *pOMAP;
Ritor1
parents:
diff changeset
203 unsigned int uSky_TextureID;
Ritor1
parents:
diff changeset
204 unsigned int uMainTile_BitmapID;
Ritor1
parents:
diff changeset
205 __int16 field_F0;
Ritor1
parents:
diff changeset
206 __int16 field_F2;
Ritor1
parents:
diff changeset
207 int field_F4;
Ritor1
parents:
diff changeset
208 char field_F8[968];
Ritor1
parents:
diff changeset
209 unsigned int uNumSpawnPoints;
Ritor1
parents:
diff changeset
210 struct SpawnPointMM7 *pSpawnPoints;
Ritor1
parents:
diff changeset
211 struct DDM_DLV_Header ddm;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
212 LocationTime_stru1 loc_time;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
213 //unsigned __int64 uLastVisitDay;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
214 //char sky_texture_name[12];
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
215 //int day_attrib;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
216 //int day_fogrange_1;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
217 //int day_fogrange_2;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
218 // char field_510[24];
752
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
219 unsigned char uUndiscoveredArea[88][11];//968
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
220 unsigned char uDicovered_area[88][11];//[968]
0
Ritor1
parents:
diff changeset
221 int field_CB8;
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
222 int max_terrain_dimming_level;
0
Ritor1
parents:
diff changeset
223 int field_CC0;
Ritor1
parents:
diff changeset
224 unsigned int pSpriteIDs_LUN[8];
Ritor1
parents:
diff changeset
225 unsigned int uSpriteID_LUNFULL;
Ritor1
parents:
diff changeset
226 int field_CE8;
Ritor1
parents:
diff changeset
227 unsigned int uSpriteID_LUN3_4_cp;
Ritor1
parents:
diff changeset
228 int field_CF0;
Ritor1
parents:
diff changeset
229 unsigned int uSpriteID_LUN1_2_cp;
Ritor1
parents:
diff changeset
230 int field_CF8;
Ritor1
parents:
diff changeset
231 unsigned int uSpriteID_LUN1_4_cp;
Ritor1
parents:
diff changeset
232 int field_D00;
Ritor1
parents:
diff changeset
233 unsigned __int16 uSpriteID_LUN_SUN;
Ritor1
parents:
diff changeset
234 __int16 field_D06;
Ritor1
parents:
diff changeset
235 int field_D08;
Ritor1
parents:
diff changeset
236 int field_D0C;
Ritor1
parents:
diff changeset
237 int field_D10;
Ritor1
parents:
diff changeset
238 int field_D14;
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
239 int inv_sunlight_x;
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
240 int inv_sunlight_y;
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
241 int inv_sunlight_z;
0
Ritor1
parents:
diff changeset
242 int field_D24;
Ritor1
parents:
diff changeset
243 int field_D28;
Ritor1
parents:
diff changeset
244 int field_D2C;
Ritor1
parents:
diff changeset
245 Vec3_int_ vSunlight;
Ritor1
parents:
diff changeset
246 int field_D3C;
Ritor1
parents:
diff changeset
247 int field_D40;
Ritor1
parents:
diff changeset
248 int field_D44;
Ritor1
parents:
diff changeset
249 int field_D48;
Ritor1
parents:
diff changeset
250 int field_D4C;
Ritor1
parents:
diff changeset
251 float field_D50;
Ritor1
parents:
diff changeset
252 int field_D54;
Ritor1
parents:
diff changeset
253 int field_D58;
Ritor1
parents:
diff changeset
254 int field_D5C;
Ritor1
parents:
diff changeset
255 int field_D60;
Ritor1
parents:
diff changeset
256 int field_D64;
Ritor1
parents:
diff changeset
257 char field_D68[111900];
Ritor1
parents:
diff changeset
258 float fFogDensity;
Ritor1
parents:
diff changeset
259 int uLastSunlightUpdateMinute;
Ritor1
parents:
diff changeset
260 };
Ritor1
parents:
diff changeset
261 #pragma pack(pop)
Ritor1
parents:
diff changeset
262
Ritor1
parents:
diff changeset
263
Ritor1
parents:
diff changeset
264 extern struct OutdoorLocation *pOutdoor;
Ritor1
parents:
diff changeset
265
Ritor1
parents:
diff changeset
266
Ritor1
parents:
diff changeset
267
Ritor1
parents:
diff changeset
268
Ritor1
parents:
diff changeset
269
Ritor1
parents:
diff changeset
270
Ritor1
parents:
diff changeset
271
Ritor1
parents:
diff changeset
272
Ritor1
parents:
diff changeset
273
Ritor1
parents:
diff changeset
274
Ritor1
parents:
diff changeset
275
Ritor1
parents:
diff changeset
276
Ritor1
parents:
diff changeset
277 #include "Outdoor_stuff.h"