Mercurial > mm7
annotate Outdoor.h @ 2078:66cbc97b31fa
fix transparent fonts
author | Gloval |
---|---|
date | Wed, 04 Dec 2013 23:35:44 +0400 |
parents | 24033aa2e1f8 |
children | a869b0376b48 |
rev | line source |
---|---|
0 | 1 #pragma |
1016 | 2 |
0 | 3 #include "Indoor.h" |
630 | 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 | 6 |
767 | 7 #define DAY_ATTRIB_FOG 1 |
8 | |
0 | 9 /* 256 */ |
10 #pragma pack(push, 1) | |
11 struct ODMHeader | |
12 { | |
13 int uVersion; | |
14 char pMagic[4]; | |
15 unsigned int uCompressedSize; | |
16 unsigned int uDecompressedSize; | |
17 }; | |
18 #pragma pack(pop) | |
19 | |
20 | |
21 | |
22 /* 78 */ | |
23 #pragma pack(push, 1) | |
24 struct OutdoorLocationTileType | |
25 { | |
630 | 26 Tileset tileset; |
0 | 27 unsigned __int16 uTileID; |
28 }; | |
29 #pragma pack(pop) | |
30 | |
760 | 31 #pragma pack(push, 1) |
32 struct DMap | |
33 { | |
34 unsigned __int8 field0; | |
35 unsigned __int8 field1; | |
36 }; | |
37 #pragma pack(pop) | |
0 | 38 |
39 /* 79 */ | |
40 #pragma pack(push, 1) | |
41 struct OutdoorLocationTerrain | |
42 { | |
43 //----- (0047C794) -------------------------------------------------------- | |
44 inline OutdoorLocationTerrain() | |
45 { | |
760 | 46 pHeightmap = NULL; |
47 pTilemap = NULL; | |
48 pAttributemap = NULL; | |
49 pDmap = NULL;; | |
0 | 50 this->field_10 = 0; |
51 this->field_12 = 0; | |
52 | |
760 | 53 |
0 | 54 } |
55 | |
56 void _47C7A9(); | |
57 void Release(); | |
760 | 58 void FillDMap(int X, int Y, int W, int Z); |
0 | 59 int _47CB57(int a1, int a2, int a3); |
60 bool ZeroLandscape(); | |
61 bool Initialize(); | |
62 | |
63 | |
64 unsigned __int8 *pHeightmap; | |
65 unsigned __int8 *pTilemap; | |
66 unsigned __int8 *pAttributemap; | |
760 | 67 struct DMap *pDmap; |
0 | 68 __int16 field_10; |
69 __int16 field_12; | |
70 __int16 field_14; | |
71 __int16 field_16; | |
72 int field_18; | |
73 int field_1C; | |
74 }; | |
75 #pragma pack(pop) | |
76 | |
77 | |
78 /* 81 */ | |
79 #pragma pack(push, 1) | |
80 struct ODMFace | |
81 { | |
82 bool HasEventHint(); | |
83 | |
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 | 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 | 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;} |
2075 | 92 inline bool Ethereal() const {return (uAttributes & FACE_ETHEREAL) != 0;} |
0 | 93 |
94 struct Plane_int_ pFacePlane; | |
95 int zCalc1; | |
96 int zCalc2; | |
97 int zCalc3; | |
98 unsigned int uAttributes; | |
99 unsigned __int16 pVertexIDs[20]; | |
100 unsigned __int16 pTextureUIDs[20]; | |
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]; |
1632 | 105 __int16 uTextureID; |
0 | 106 __int16 sTextureDeltaU; |
107 __int16 sTextureDeltaV; | |
108 struct BBox_short_ pBoundingBox; | |
109 __int16 sCogNumber; | |
110 __int16 sCogTriggeredID; | |
111 __int16 sCogTriggerType; | |
112 char field_128; | |
113 char field_129; | |
114 unsigned __int8 uGradientVertex1; | |
115 unsigned __int8 uGradientVertex2; | |
116 unsigned __int8 uGradientVertex3; | |
117 unsigned __int8 uGradientVertex4; | |
118 unsigned __int8 uNumVertices; | |
119 unsigned __int8 uPolygonType; | |
120 unsigned __int8 uShadeType; | |
121 unsigned __int8 bVisible; | |
122 char field_132; | |
123 char field_133; | |
124 }; | |
125 #pragma pack(pop) | |
126 | |
127 | |
128 | |
129 #pragma pack(push, 1) | |
130 struct OutdoorLocation | |
131 { | |
1323 | 132 OutdoorLocation(); |
133 void subconstuctor(); | |
0 | 134 |
135 void ExecDraw(unsigned int bRedraw); | |
142 | 136 void PrepareActorsDrawList(); |
0 | 137 void CreateDebugLocation(); |
138 void Release(); | |
119 | 139 bool Load(const char *pFilename, ODMFace *File, size_t a4, int thisa); |
764 | 140 int GetTileIdByTileMapId(signed int a2); |
2006 | 141 unsigned int DoGetTileTexture(signed int uX, signed int uZ); |
0 | 142 int _47ED83(signed int a2, signed int a3); |
2006 | 143 int ActuallyGetSomeOtherTileInfo(signed int uX, signed int uY); |
2003 | 144 int DoGetHeightOnTerrain(signed int sX, signed int sZ); |
764 | 145 int GetSoundIdByPosition(signed int X_pos, signed int Y_pos, int a4); |
752 | 146 int UpdateDiscoveredArea(int a2, int a3, int a4); |
0 | 147 bool _47F04C(signed int a2, signed int a3); |
148 bool _47F097(signed int a2, signed int a3); | |
149 bool _47F0E2(); | |
150 bool PrepareDecorations(); | |
2065
87be06553c76
rename int _47F223_LooksLikeGenerateMonsterLoot() to void ArrangeSpriteObjects()
Ritor1
parents:
2006
diff
changeset
|
151 void ArrangeSpriteObjects(); |
0 | 152 bool InitalizeActors(int a1); |
630 | 153 bool LoadRoadTileset(); |
0 | 154 bool LoadTileGroupIds(); |
155 double GetFogDensityByTime(); | |
156 int GetSomeOtherTileInfo(int sX, int sY); | |
157 unsigned int GetTileTexture(int sX, int sZ); | |
158 int GetHeightOnTerrain(int sX, int sZ); | |
159 bool Initialize(const char *pFilename, int File, size_t uRespawnInterval, int thisa); | |
1583 | 160 //bool Release2(); |
0 | 161 bool GetTravelDestination(signed int sPartyX, signed int sPartyZ, char *pOut, signed int a5); |
162 void MessWithLUN(); | |
762 | 163 void UpdateSunlightVectors(); |
0 | 164 void UpdateFog(); |
165 int GetNumFoodRequiredToRestInCurrentPos(int x, signed int y, int z); | |
767 | 166 void SetFog(); |
0 | 167 void Draw(); |
168 | |
169 | |
170 char pLevelFilename[32]; | |
171 char pLocationFileName[32]; | |
172 char pLocationFileDescription[32]; | |
173 char pSkyTextureName[32]; | |
174 char pGroundTileset[32]; | |
630 | 175 OutdoorLocationTileType pTileTypes[4]; // [3] road tileset |
1267 | 176 int uNumBModels; |
0 | 177 struct OutdoorLocationTerrain pTerrain; |
760 | 178 void *pCmap; |
1052 | 179 BSPModel *pBModels; |
0 | 180 unsigned int numFaceIDListElems; |
181 unsigned __int16 *pFaceIDLIST; | |
182 unsigned int *pOMAP; | |
2006 | 183 signed int sSky_TextureID; |
184 signed int sMainTile_BitmapID; | |
0 | 185 __int16 field_F0; |
186 __int16 field_F2; | |
187 int field_F4; | |
188 char field_F8[968]; | |
189 unsigned int uNumSpawnPoints; | |
190 struct SpawnPointMM7 *pSpawnPoints; | |
191 struct DDM_DLV_Header ddm; | |
810 | 192 LocationTime_stru1 loc_time; |
193 //unsigned __int64 uLastVisitDay; | |
194 //char sky_texture_name[12]; | |
195 //int day_attrib; | |
196 //int day_fogrange_1; | |
197 //int day_fogrange_2; | |
198 // char field_510[24]; | |
752 | 199 unsigned char uUndiscoveredArea[88][11];//968 |
200 unsigned char uDicovered_area[88][11];//[968] | |
0 | 201 int field_CB8; |
638 | 202 int max_terrain_dimming_level; |
0 | 203 int field_CC0; |
204 unsigned int pSpriteIDs_LUN[8]; | |
205 unsigned int uSpriteID_LUNFULL; | |
206 int field_CE8; | |
207 unsigned int uSpriteID_LUN3_4_cp; | |
208 int field_CF0; | |
209 unsigned int uSpriteID_LUN1_2_cp; | |
210 int field_CF8; | |
211 unsigned int uSpriteID_LUN1_4_cp; | |
212 int field_D00; | |
213 unsigned __int16 uSpriteID_LUN_SUN; | |
214 __int16 field_D06; | |
215 int field_D08; | |
216 int field_D0C; | |
217 int field_D10; | |
218 int field_D14; | |
638 | 219 int inv_sunlight_x; |
220 int inv_sunlight_y; | |
221 int inv_sunlight_z; | |
0 | 222 int field_D24; |
223 int field_D28; | |
224 int field_D2C; | |
225 Vec3_int_ vSunlight; | |
226 int field_D3C; | |
227 int field_D40; | |
228 int field_D44; | |
229 int field_D48; | |
230 int field_D4C; | |
231 float field_D50; | |
232 int field_D54; | |
233 int field_D58; | |
234 int field_D5C; | |
235 int field_D60; | |
236 int field_D64; | |
237 char field_D68[111900]; | |
238 float fFogDensity; | |
239 int uLastSunlightUpdateMinute; | |
240 }; | |
241 #pragma pack(pop) | |
242 | |
243 | |
244 extern struct OutdoorLocation *pOutdoor; | |
245 | |
246 | |
247 | |
248 | |
249 | |
250 | |
251 | |
252 | |
253 | |
254 | |
255 |