annotate Outdoor.h @ 1657:51a74615d956

DamagePlayerFromMonster continuing cleanup, part 3
author Grumpy7
date Wed, 18 Sep 2013 10:22:16 +0200
parents 69ab7593e7af
children 72af4d93bdfb
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"
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1323
diff changeset
5 #include "BSPModel.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
1391
cc9a3a24d61d Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents: 1323
diff changeset
85 static bool IsBackfaceCulled(struct ODMFace *a1, struct RenderVertexSoft *a2, struct Polygon *a3);
0
Ritor1
parents:
diff changeset
86
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
87 inline bool Invisible() const {return (uAttributes & FACE_INVISIBLE) != 0;}
0
Ritor1
parents:
diff changeset
88 inline bool Visible() const {return !Invisible();}
1113
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
89 inline bool Portal() const {return (uAttributes & FACE_PORTAL) != 0;}
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
90 inline bool Fluid() const {return (uAttributes & FACE_FLUID) != 0;}
39eaa6b00141 something to bool cast (performance warning) mostly fixed
Grumpy7
parents: 1052
diff changeset
91 inline bool Clickable() const {return (uAttributes & FACE_CLICKABLE) != 0;}
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];
1632
69ab7593e7af Out of bounds (id 65536) texture fixed.
Nomad
parents: 1583
diff changeset
104 __int16 uTextureID;
0
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 {
1323
bfde0563ecdc removed weather.h from indoor.h
Grumpy7
parents: 1276
diff changeset
131 OutdoorLocation();
bfde0563ecdc removed weather.h from indoor.h
Grumpy7
parents: 1276
diff changeset
132 void subconstuctor();
0
Ritor1
parents:
diff changeset
133
Ritor1
parents:
diff changeset
134 void ExecDraw(unsigned int bRedraw);
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 119
diff changeset
135 void PrepareActorsDrawList();
0
Ritor1
parents:
diff changeset
136 void CreateDebugLocation();
Ritor1
parents:
diff changeset
137 void Release();
119
be3c07c98861 Outdoor minimap fixed (didn't test wizard eye thou)
Nomad
parents: 0
diff changeset
138 bool Load(const char *pFilename, ODMFace *File, size_t a4, int thisa);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 760
diff changeset
139 int GetTileIdByTileMapId(signed int a2);
0
Ritor1
parents:
diff changeset
140 unsigned int DoGetTileTexture(unsigned int uX, unsigned int uZ);
Ritor1
parents:
diff changeset
141 int _47ED83(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
142 int ActuallyGetSomeOtherTileInfo(unsigned int uX, unsigned int uY);
Ritor1
parents:
diff changeset
143 int DoGetHeightOnTerrain(unsigned int uX, unsigned int uZ);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 760
diff changeset
144 int GetSoundIdByPosition(signed int X_pos, signed int Y_pos, int a4);
752
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
145 int UpdateDiscoveredArea(int a2, int a3, int a4);
0
Ritor1
parents:
diff changeset
146 bool _47F04C(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
147 bool _47F097(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
148 bool _47F0E2();
Ritor1
parents:
diff changeset
149 bool PrepareDecorations();
Ritor1
parents:
diff changeset
150 int _47F223_LooksLikeGenerateMonsterLoot();
Ritor1
parents:
diff changeset
151 bool InitalizeActors(int a1);
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
152 bool LoadRoadTileset();
0
Ritor1
parents:
diff changeset
153 bool LoadTileGroupIds();
Ritor1
parents:
diff changeset
154 double GetFogDensityByTime();
Ritor1
parents:
diff changeset
155 int GetSomeOtherTileInfo(int sX, int sY);
Ritor1
parents:
diff changeset
156 unsigned int GetTileTexture(int sX, int sZ);
Ritor1
parents:
diff changeset
157 int GetHeightOnTerrain(int sX, int sZ);
Ritor1
parents:
diff changeset
158 bool Initialize(const char *pFilename, int File, size_t uRespawnInterval, int thisa);
1583
75fafd8ced59 Allocator (CMemory) bye-bye
Nomad
parents: 1391
diff changeset
159 //bool Release2();
0
Ritor1
parents:
diff changeset
160 bool GetTravelDestination(signed int sPartyX, signed int sPartyZ, char *pOut, signed int a5);
Ritor1
parents:
diff changeset
161 void MessWithLUN();
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 752
diff changeset
162 void UpdateSunlightVectors();
0
Ritor1
parents:
diff changeset
163 void UpdateFog();
Ritor1
parents:
diff changeset
164 int GetNumFoodRequiredToRestInCurrentPos(int x, signed int y, int z);
767
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
165 void SetFog();
0
Ritor1
parents:
diff changeset
166 void Draw();
Ritor1
parents:
diff changeset
167
Ritor1
parents:
diff changeset
168
Ritor1
parents:
diff changeset
169 char pLevelFilename[32];
Ritor1
parents:
diff changeset
170 char pLocationFileName[32];
Ritor1
parents:
diff changeset
171 char pLocationFileDescription[32];
Ritor1
parents:
diff changeset
172 char pSkyTextureName[32];
Ritor1
parents:
diff changeset
173 char pGroundTileset[32];
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
174 OutdoorLocationTileType pTileTypes[4]; // [3] road tileset
1267
33e360a9b4bf some fixes in normals
Gloval
parents: 1262
diff changeset
175 int uNumBModels;
0
Ritor1
parents:
diff changeset
176 struct OutdoorLocationTerrain pTerrain;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
177 void *pCmap;
1052
d48c762de563 -nomarg
Nomad
parents: 1030
diff changeset
178 BSPModel *pBModels;
0
Ritor1
parents:
diff changeset
179 unsigned int numFaceIDListElems;
Ritor1
parents:
diff changeset
180 unsigned __int16 *pFaceIDLIST;
Ritor1
parents:
diff changeset
181 unsigned int *pOMAP;
Ritor1
parents:
diff changeset
182 unsigned int uSky_TextureID;
Ritor1
parents:
diff changeset
183 unsigned int uMainTile_BitmapID;
Ritor1
parents:
diff changeset
184 __int16 field_F0;
Ritor1
parents:
diff changeset
185 __int16 field_F2;
Ritor1
parents:
diff changeset
186 int field_F4;
Ritor1
parents:
diff changeset
187 char field_F8[968];
Ritor1
parents:
diff changeset
188 unsigned int uNumSpawnPoints;
Ritor1
parents:
diff changeset
189 struct SpawnPointMM7 *pSpawnPoints;
Ritor1
parents:
diff changeset
190 struct DDM_DLV_Header ddm;
810
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
191 LocationTime_stru1 loc_time;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
192 //unsigned __int64 uLastVisitDay;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
193 //char sky_texture_name[12];
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
194 //int day_attrib;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
195 //int day_fogrange_1;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
196 //int day_fogrange_2;
f5156b8c61ad savegame refactoring
Gloval
parents: 791
diff changeset
197 // char field_510[24];
752
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
198 unsigned char uUndiscoveredArea[88][11];//968
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
199 unsigned char uDicovered_area[88][11];//[968]
0
Ritor1
parents:
diff changeset
200 int field_CB8;
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
201 int max_terrain_dimming_level;
0
Ritor1
parents:
diff changeset
202 int field_CC0;
Ritor1
parents:
diff changeset
203 unsigned int pSpriteIDs_LUN[8];
Ritor1
parents:
diff changeset
204 unsigned int uSpriteID_LUNFULL;
Ritor1
parents:
diff changeset
205 int field_CE8;
Ritor1
parents:
diff changeset
206 unsigned int uSpriteID_LUN3_4_cp;
Ritor1
parents:
diff changeset
207 int field_CF0;
Ritor1
parents:
diff changeset
208 unsigned int uSpriteID_LUN1_2_cp;
Ritor1
parents:
diff changeset
209 int field_CF8;
Ritor1
parents:
diff changeset
210 unsigned int uSpriteID_LUN1_4_cp;
Ritor1
parents:
diff changeset
211 int field_D00;
Ritor1
parents:
diff changeset
212 unsigned __int16 uSpriteID_LUN_SUN;
Ritor1
parents:
diff changeset
213 __int16 field_D06;
Ritor1
parents:
diff changeset
214 int field_D08;
Ritor1
parents:
diff changeset
215 int field_D0C;
Ritor1
parents:
diff changeset
216 int field_D10;
Ritor1
parents:
diff changeset
217 int field_D14;
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
218 int inv_sunlight_x;
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
219 int inv_sunlight_y;
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 630
diff changeset
220 int inv_sunlight_z;
0
Ritor1
parents:
diff changeset
221 int field_D24;
Ritor1
parents:
diff changeset
222 int field_D28;
Ritor1
parents:
diff changeset
223 int field_D2C;
Ritor1
parents:
diff changeset
224 Vec3_int_ vSunlight;
Ritor1
parents:
diff changeset
225 int field_D3C;
Ritor1
parents:
diff changeset
226 int field_D40;
Ritor1
parents:
diff changeset
227 int field_D44;
Ritor1
parents:
diff changeset
228 int field_D48;
Ritor1
parents:
diff changeset
229 int field_D4C;
Ritor1
parents:
diff changeset
230 float field_D50;
Ritor1
parents:
diff changeset
231 int field_D54;
Ritor1
parents:
diff changeset
232 int field_D58;
Ritor1
parents:
diff changeset
233 int field_D5C;
Ritor1
parents:
diff changeset
234 int field_D60;
Ritor1
parents:
diff changeset
235 int field_D64;
Ritor1
parents:
diff changeset
236 char field_D68[111900];
Ritor1
parents:
diff changeset
237 float fFogDensity;
Ritor1
parents:
diff changeset
238 int uLastSunlightUpdateMinute;
Ritor1
parents:
diff changeset
239 };
Ritor1
parents:
diff changeset
240 #pragma pack(pop)
Ritor1
parents:
diff changeset
241
Ritor1
parents:
diff changeset
242
Ritor1
parents:
diff changeset
243 extern struct OutdoorLocation *pOutdoor;
Ritor1
parents:
diff changeset
244
Ritor1
parents:
diff changeset
245
Ritor1
parents:
diff changeset
246
Ritor1
parents:
diff changeset
247
Ritor1
parents:
diff changeset
248
Ritor1
parents:
diff changeset
249
Ritor1
parents:
diff changeset
250
Ritor1
parents:
diff changeset
251
Ritor1
parents:
diff changeset
252
Ritor1
parents:
diff changeset
253
Ritor1
parents:
diff changeset
254