annotate Outdoor.h @ 1036:7f8be9f9769e

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