annotate Outdoor.h @ 1311:1dee26137a92

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