annotate Outdoor.h @ 800:e6bab3f2c1be

Слияние
author Ritor1
date Mon, 25 Mar 2013 10:40:44 +0600
parents 346f7069676a
children f5156b8c61ad
rev   line source
0
Ritor1
parents:
diff changeset
1 #pragma
Ritor1
parents:
diff changeset
2 #include "BSPModel.h"
Ritor1
parents:
diff changeset
3 #include "OutdoorCamera.h"
Ritor1
parents:
diff changeset
4 #include "Indoor.h"
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
5 #include "TileFrameTable.h"
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 768
diff changeset
6 #include "MapInfo.h"
0
Ritor1
parents:
diff changeset
7
Ritor1
parents:
diff changeset
8
767
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
9
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
10 #define DAY_ATTRIB_FOG 1
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
11
0
Ritor1
parents:
diff changeset
12 /* 256 */
Ritor1
parents:
diff changeset
13 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
14 struct ODMHeader
Ritor1
parents:
diff changeset
15 {
Ritor1
parents:
diff changeset
16 int uVersion;
Ritor1
parents:
diff changeset
17 char pMagic[4];
Ritor1
parents:
diff changeset
18 unsigned int uCompressedSize;
Ritor1
parents:
diff changeset
19 unsigned int uDecompressedSize;
Ritor1
parents:
diff changeset
20 };
Ritor1
parents:
diff changeset
21 #pragma pack(pop)
Ritor1
parents:
diff changeset
22
Ritor1
parents:
diff changeset
23
Ritor1
parents:
diff changeset
24
Ritor1
parents:
diff changeset
25 /* 78 */
Ritor1
parents:
diff changeset
26 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
27 struct OutdoorLocationTileType
Ritor1
parents:
diff changeset
28 {
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
29 Tileset tileset;
0
Ritor1
parents:
diff changeset
30 unsigned __int16 uTileID;
Ritor1
parents:
diff changeset
31 };
Ritor1
parents:
diff changeset
32 #pragma pack(pop)
Ritor1
parents:
diff changeset
33
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
34 #pragma pack(push, 1)
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
35 struct DMap
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
36 {
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
37 unsigned __int8 field0;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
38 unsigned __int8 field1;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
39 };
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
40 #pragma pack(pop)
0
Ritor1
parents:
diff changeset
41
Ritor1
parents:
diff changeset
42 /* 79 */
Ritor1
parents:
diff changeset
43 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
44 struct OutdoorLocationTerrain
Ritor1
parents:
diff changeset
45 {
Ritor1
parents:
diff changeset
46 //----- (0047C794) --------------------------------------------------------
Ritor1
parents:
diff changeset
47 inline OutdoorLocationTerrain()
Ritor1
parents:
diff changeset
48 {
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
49 pHeightmap = NULL;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
50 pTilemap = NULL;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
51 pAttributemap = NULL;
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
52 pDmap = NULL;;
0
Ritor1
parents:
diff changeset
53 this->field_10 = 0;
Ritor1
parents:
diff changeset
54 this->field_12 = 0;
Ritor1
parents:
diff changeset
55
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
56
0
Ritor1
parents:
diff changeset
57 }
Ritor1
parents:
diff changeset
58
Ritor1
parents:
diff changeset
59 void _47C7A9();
Ritor1
parents:
diff changeset
60 void Release();
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
61 void FillDMap(int X, int Y, int W, int Z);
0
Ritor1
parents:
diff changeset
62 int _47CB57(int a1, int a2, int a3);
Ritor1
parents:
diff changeset
63 bool ZeroLandscape();
Ritor1
parents:
diff changeset
64 bool Initialize();
Ritor1
parents:
diff changeset
65
Ritor1
parents:
diff changeset
66
Ritor1
parents:
diff changeset
67 unsigned __int8 *pHeightmap;
Ritor1
parents:
diff changeset
68 unsigned __int8 *pTilemap;
Ritor1
parents:
diff changeset
69 unsigned __int8 *pAttributemap;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
70 struct DMap *pDmap;
0
Ritor1
parents:
diff changeset
71 __int16 field_10;
Ritor1
parents:
diff changeset
72 __int16 field_12;
Ritor1
parents:
diff changeset
73 __int16 field_14;
Ritor1
parents:
diff changeset
74 __int16 field_16;
Ritor1
parents:
diff changeset
75 int field_18;
Ritor1
parents:
diff changeset
76 int field_1C;
Ritor1
parents:
diff changeset
77 };
Ritor1
parents:
diff changeset
78 #pragma pack(pop)
Ritor1
parents:
diff changeset
79
Ritor1
parents:
diff changeset
80
Ritor1
parents:
diff changeset
81 /* 81 */
Ritor1
parents:
diff changeset
82 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
83 struct ODMFace
Ritor1
parents:
diff changeset
84 {
Ritor1
parents:
diff changeset
85 bool HasEventHint();
Ritor1
parents:
diff changeset
86
Ritor1
parents:
diff changeset
87
Ritor1
parents:
diff changeset
88 static bool IsBackfaceCulled(struct ODMFace *a1, struct RenderVertexSoft *a2, struct stru148 *a3);
Ritor1
parents:
diff changeset
89
Ritor1
parents:
diff changeset
90 inline bool Invisible() const {return uAttributes & FACE_INVISIBLE;}
Ritor1
parents:
diff changeset
91 inline bool Visible() const {return !Invisible();}
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 783
diff changeset
92 inline bool Portal() const {return uAttributes & FACE_PORTAL;}
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 783
diff changeset
93 inline bool Fluid() const {return uAttributes & FACE_FLUID;}
0
Ritor1
parents:
diff changeset
94
Ritor1
parents:
diff changeset
95 struct Plane_int_ pFacePlane;
Ritor1
parents:
diff changeset
96 int zCalc1;
Ritor1
parents:
diff changeset
97 int zCalc2;
Ritor1
parents:
diff changeset
98 int zCalc3;
Ritor1
parents:
diff changeset
99 unsigned int uAttributes;
Ritor1
parents:
diff changeset
100 unsigned __int16 pVertexIDs[20];
Ritor1
parents:
diff changeset
101 unsigned __int16 pTextureUIDs[20];
Ritor1
parents:
diff changeset
102 unsigned __int16 pTextureVIDs[20];
676
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
103 signed __int16 pXInterceptDisplacements[20];
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
104 signed __int16 pYInterceptDisplacements[20];
ecfb1b3c9a39 BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents: 638
diff changeset
105 signed __int16 pZInterceptDisplacements[20];
0
Ritor1
parents:
diff changeset
106 unsigned __int16 uTextureID;
Ritor1
parents:
diff changeset
107 __int16 sTextureDeltaU;
Ritor1
parents:
diff changeset
108 __int16 sTextureDeltaV;
Ritor1
parents:
diff changeset
109 struct BBox_short_ pBoundingBox;
Ritor1
parents:
diff changeset
110 __int16 sCogNumber;
Ritor1
parents:
diff changeset
111 __int16 sCogTriggeredID;
Ritor1
parents:
diff changeset
112 __int16 sCogTriggerType;
Ritor1
parents:
diff changeset
113 char field_128;
Ritor1
parents:
diff changeset
114 char field_129;
Ritor1
parents:
diff changeset
115 unsigned __int8 uGradientVertex1;
Ritor1
parents:
diff changeset
116 unsigned __int8 uGradientVertex2;
Ritor1
parents:
diff changeset
117 unsigned __int8 uGradientVertex3;
Ritor1
parents:
diff changeset
118 unsigned __int8 uGradientVertex4;
Ritor1
parents:
diff changeset
119 unsigned __int8 uNumVertices;
Ritor1
parents:
diff changeset
120 unsigned __int8 uPolygonType;
Ritor1
parents:
diff changeset
121 unsigned __int8 uShadeType;
Ritor1
parents:
diff changeset
122 unsigned __int8 bVisible;
Ritor1
parents:
diff changeset
123 char field_132;
Ritor1
parents:
diff changeset
124 char field_133;
Ritor1
parents:
diff changeset
125 };
Ritor1
parents:
diff changeset
126 #pragma pack(pop)
Ritor1
parents:
diff changeset
127
Ritor1
parents:
diff changeset
128
Ritor1
parents:
diff changeset
129
Ritor1
parents:
diff changeset
130 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
131 struct OutdoorLocation
Ritor1
parents:
diff changeset
132 {
Ritor1
parents:
diff changeset
133 //----- (004626BA) --------------------------------------------------------
Ritor1
parents:
diff changeset
134 OutdoorLocation()
Ritor1
parents:
diff changeset
135 {
Ritor1
parents:
diff changeset
136 subconstuctor();
Ritor1
parents:
diff changeset
137 uLastSunlightUpdateMinute = 0;
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 142
diff changeset
138
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 142
diff changeset
139 uNumBModels = 0;
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 142
diff changeset
140 pBModels = nullptr;
0
Ritor1
parents:
diff changeset
141 }
Ritor1
parents:
diff changeset
142 //----- (004626CD) --------------------------------------------------------
Ritor1
parents:
diff changeset
143 void subconstuctor()
Ritor1
parents:
diff changeset
144 {
Ritor1
parents:
diff changeset
145 //OutdoorLocationTerrain::OutdoorLocationTerrain(&this->pTerrain);
Ritor1
parents:
diff changeset
146 field_F0 = 0;
Ritor1
parents:
diff changeset
147 field_F4 = 0x40000000u;
Ritor1
parents:
diff changeset
148 //DLVHeader::DLVHeader(&v1->ddm);
Ritor1
parents:
diff changeset
149 pSpawnPoints = 0;
Ritor1
parents:
diff changeset
150 pBModels = 0;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
151 pCmap = 0;
0
Ritor1
parents:
diff changeset
152 pFaceIDLIST = 0;
Ritor1
parents:
diff changeset
153 pOMAP = 0;
Ritor1
parents:
diff changeset
154 }
Ritor1
parents:
diff changeset
155
Ritor1
parents:
diff changeset
156 void ExecDraw(unsigned int bRedraw);
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 119
diff changeset
157 void PrepareActorsDrawList();
0
Ritor1
parents:
diff changeset
158 void CreateDebugLocation();
Ritor1
parents:
diff changeset
159 void Release();
119
be3c07c98861 Outdoor minimap fixed (didn't test wizard eye thou)
Nomad
parents: 0
diff changeset
160 bool Load(const char *pFilename, ODMFace *File, size_t a4, int thisa);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 760
diff changeset
161 int GetTileIdByTileMapId(signed int a2);
0
Ritor1
parents:
diff changeset
162 unsigned int DoGetTileTexture(unsigned int uX, unsigned int uZ);
Ritor1
parents:
diff changeset
163 int _47ED83(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
164 int ActuallyGetSomeOtherTileInfo(unsigned int uX, unsigned int uY);
Ritor1
parents:
diff changeset
165 int DoGetHeightOnTerrain(unsigned int uX, unsigned int uZ);
764
90bcfb56c8f9 sound cleaning
Gloval
parents: 760
diff changeset
166 int GetSoundIdByPosition(signed int X_pos, signed int Y_pos, int a4);
752
8b29c4121f6f map mask
Gloval
parents: 676
diff changeset
167 int UpdateDiscoveredArea(int a2, int a3, int a4);
0
Ritor1
parents:
diff changeset
168 bool _47F04C(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
169 bool _47F097(signed int a2, signed int a3);
Ritor1
parents:
diff changeset
170 bool _47F0E2();
Ritor1
parents:
diff changeset
171 bool PrepareDecorations();
Ritor1
parents:
diff changeset
172 int _47F223_LooksLikeGenerateMonsterLoot();
Ritor1
parents:
diff changeset
173 bool InitalizeActors(int a1);
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
174 bool LoadRoadTileset();
0
Ritor1
parents:
diff changeset
175 bool LoadTileGroupIds();
Ritor1
parents:
diff changeset
176 double GetFogDensityByTime();
Ritor1
parents:
diff changeset
177 int GetSomeOtherTileInfo(int sX, int sY);
Ritor1
parents:
diff changeset
178 unsigned int GetTileTexture(int sX, int sZ);
Ritor1
parents:
diff changeset
179 int GetHeightOnTerrain(int sX, int sZ);
Ritor1
parents:
diff changeset
180 bool Initialize(const char *pFilename, int File, size_t uRespawnInterval, int thisa);
Ritor1
parents:
diff changeset
181 bool Release2();
Ritor1
parents:
diff changeset
182 bool GetTravelDestination(signed int sPartyX, signed int sPartyZ, char *pOut, signed int a5);
Ritor1
parents:
diff changeset
183 void MessWithLUN();
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 752
diff changeset
184 void UpdateSunlightVectors();
0
Ritor1
parents:
diff changeset
185 void UpdateFog();
Ritor1
parents:
diff changeset
186 int GetNumFoodRequiredToRestInCurrentPos(int x, signed int y, int z);
767
45615cacad31 Fog fixed
Nomad
parents: 763
diff changeset
187 void SetFog();
0
Ritor1
parents:
diff changeset
188 void Draw();
Ritor1
parents:
diff changeset
189
Ritor1
parents:
diff changeset
190
Ritor1
parents:
diff changeset
191 char pLevelFilename[32];
Ritor1
parents:
diff changeset
192 char pLocationFileName[32];
Ritor1
parents:
diff changeset
193 char pLocationFileDescription[32];
Ritor1
parents:
diff changeset
194 char pSkyTextureName[32];
Ritor1
parents:
diff changeset
195 char pGroundTileset[32];
630
1b813023fcbd Tilesets change according to current season
Nomad
parents: 227
diff changeset
196 OutdoorLocationTileType pTileTypes[4]; // [3] road tileset
0
Ritor1
parents:
diff changeset
197 unsigned int uNumBModels;
Ritor1
parents:
diff changeset
198 struct OutdoorLocationTerrain pTerrain;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
199 void *pCmap;
0
Ritor1
parents:
diff changeset
200 struct BSPModel *pBModels;
Ritor1
parents:
diff changeset
201 unsigned int numFaceIDListElems;
Ritor1
parents:
diff changeset
202 unsigned __int16 *pFaceIDLIST;
Ritor1
parents:
diff changeset
203 unsigned int *pOMAP;
Ritor1
parents:
diff changeset
204 unsigned int uSky_TextureID;
Ritor1
parents:
diff changeset
205 unsigned int uMainTile_BitmapID;
Ritor1
parents:
diff changeset
206 __int16 field_F0;
Ritor1
parents:
diff changeset
207 __int16 field_F2;
Ritor1
parents:
diff changeset
208 int field_F4;
Ritor1
parents:
diff changeset
209 char field_F8[968];
Ritor1
parents:
diff changeset
210 unsigned int uNumSpawnPoints;
Ritor1
parents:
diff changeset
211 struct SpawnPointMM7 *pSpawnPoints;
Ritor1
parents:
diff changeset
212 struct DDM_DLV_Header ddm;
Ritor1
parents:
diff changeset
213 unsigned __int64 uLastVisitDay;
760
7f1487b74571 some outdoor cleaning
Gloval
parents: 752
diff changeset
214 char sky_texture_name[12];
0
Ritor1
parents:
diff changeset
215 int day_attrib;
Ritor1
parents:
diff changeset
216 int day_fogrange_1;
Ritor1
parents:
diff changeset
217 int day_fogrange_2;
Ritor1
parents:
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
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 768
diff changeset
270 extern MapStartPoint uLevel_StartingPointType; // weak
0
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
Ritor1
parents:
diff changeset
278
Ritor1
parents:
diff changeset
279 #include "Outdoor_stuff.h"