annotate DecalBuilder.cpp @ 124:acf7f12714a7

Party skills
author Nomad
date Fri, 16 Nov 2012 13:56:53 +0200
parents fdacbc653945
children
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #include "DecalBuilder.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2 #include "Game.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3 #include "Time.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4 #include "stru314.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5 #include "Outdoor.h"
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
6 #include "Log.h"
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8 #include "mm7_data.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13
27
be2066176d89 On level initialization
Nomad
parents: 2
diff changeset
14 struct DecalBuilder *pDecalBuilder = new DecalBuilder;
be2066176d89 On level initialization
Nomad
parents: 2
diff changeset
15 struct BloodsplatContainer *pBloodsplatContainer = new BloodsplatContainer;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18 //----- (0043B570) --------------------------------------------------------
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
19 double DecalBuilder_stru0::_43B570_get_color_mult_by_time()
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 double result; // st7@3
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
22
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
23 if (field_1C_flags & 1)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24 {
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
25 if ((field_20_time - pEventTimer->Time() + 384) / 384.0 >= 0.0)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
26 result = (field_20_time - pEventTimer->Time() + 384) / 384.0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
27 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
28 result = 0.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
29 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
30 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
31 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
32 result = 1.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
33 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
34 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
35 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
36
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
37
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
38
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
39
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
40
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
41 //----- (0043B6EF) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
42 bool BloodsplatContainer::AddBloodsplat(float x, float y, float z, float radius, char r, char g, char b)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
43 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
44 int *v8; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
45 int v9; // eax@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
46 Bloodsplat *v10; // eax@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
47 int *result; // eax@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
48 int v12; // ecx@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
49
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
50 v8 = &this->uNumBloodsplats;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
51 if ( this->uNumBloodsplats == 64 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
52 *v8 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
53 v9 = 5 * (*v8)++;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
54 v10 = &this->std__vector_pBloodsplats[8 * v9 / 0x28u];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
55 v10->x = x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
56 v10->y = y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
57 v10->z = z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
58 v10->radius = radius;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
59 v10->r = r;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
60 v10->g = g;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
61 v10->b = b;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
62 result = (int *)&this->std__vector_pBloodsplats_size;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
63 v12 = this->std__vector_pBloodsplats_size + 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
64 if ( v12 > 64 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
65 v12 = 64;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
66 *result = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
67 LOBYTE(result) = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
68 return (bool)result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
69 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
70
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
71 //----- (0049B490) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
72 bool DecalBuilder::AddBloodsplat(float x, float y, float z, float r, float g, float b, float radius, int a8, int a9)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
73 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
74 //double v10; // ST1C_8@1
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
75 char v11; // ST24_1@1
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
76 //double v12; // ST1C_8@1
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
77 //double v13; // ST1C_8@1
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
78 int a7a; // [sp+40h] [bp+18h]@1
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
79 //float arg14a; // [sp+44h] [bp+1Ch]@1
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
80 //float arg14b; // [sp+44h] [bp+1Ch]@1
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
81 //float arg14c; // [sp+44h] [bp+1Ch]@1
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
82
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
83 /*arg14a = b * 255.0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
84 v10 = arg14a + 6.7553994e15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
85 v11 = LOBYTE(v10);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
86 arg14b = g * 255.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
87 v12 = arg14b + 6.7553994e15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
88 a7a = LODWORD(v12);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
89 arg14c = r * 255.0;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
90 v13 = arg14c + 6.7553994e15;*/
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
91 return pBloodsplatContainer->AddBloodsplat(x, y, z, radius,
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
92 //SLOBYTE(v13), a7a, v11);
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
93 r * 255.0f,
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
94 g * 255.0f,
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
95 b * 255.0f);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
96 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
97
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
98 //----- (0049B525) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
99 void DecalBuilder::Reset(unsigned int bPreserveBloodsplats)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
100 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
101 if ( !bPreserveBloodsplats )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
102 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
103 pBloodsplatContainer->std__vector_pBloodsplats_size = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
104 pBloodsplatContainer->uNumBloodsplats = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
105 }
27
be2066176d89 On level initialization
Nomad
parents: 2
diff changeset
106 std__vector_pDecals_size = 0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
107 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
108
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
109 //----- (0049B540) --------------------------------------------------------
50
fde5c5acb66e BLV render
Nomad
parents: 45
diff changeset
110 char DecalBuilder::ApplyDecals(int a2, char a3, stru154 *a4, int a5, RenderVertexSoft *a6, IndoorCameraD3D_Vec4 *a7, char a8, unsigned int uSectorID)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
111 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 char *v9; // eax@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
113 signed int v10; // ecx@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
114 RenderVertexSoft *v11; // eax@10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
115 unsigned int v12; // edx@10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
116 RenderVertexSoft *v13; // esi@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
117 RenderVertexSoft *v14; // edi@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
118 char v15; // zf@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
119 stru154 *v16; // esi@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
120 double v18; // st7@17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
121 double v19; // st6@17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
122 float v20; // eax@17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
123 Bloodsplat *v21; // esi@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
124 int v22; // eax@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
125 int v23; // ecx@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
126 double v24; // st7@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
127 int v25; // ebx@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
128 double v26; // st7@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
129 int v27; // edi@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
130 double v28; // st7@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
131 int v29; // ST10_4@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
132 int v30; // ST08_4@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
133 DecalBuilder *v31; // esi@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
134 int v32; // [sp+4h] [bp-44h]@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
135 RenderVertexSoft *v33; // [sp+8h] [bp-40h]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
136 stru314 *v34; // [sp+Ch] [bp-3Ch]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
137 float v35; // [sp+10h] [bp-38h]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
138 float v36; // [sp+14h] [bp-34h]@17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
139 int v37; // [sp+18h] [bp-30h]@17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
140 int a5a; // [sp+28h] [bp-20h]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
141 int v39; // [sp+2Ch] [bp-1Ch]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
142 int v40; // [sp+30h] [bp-18h]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
143 int v41; // [sp+34h] [bp-14h]@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
144 int v42; // [sp+38h] [bp-10h]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
145 int v43; // [sp+3Ch] [bp-Ch]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
146 DecalBuilder *thisa; // [sp+40h] [bp-8h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
147 RenderVertexSoft *a11; // [sp+44h] [bp-4h]@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
148
68
fdacbc653945 BLV render: first image
Nomad
parents: 59
diff changeset
149 __debugbreak();
fdacbc653945 BLV render: first image
Nomad
parents: 59
diff changeset
150
50
fde5c5acb66e BLV render
Nomad
parents: 45
diff changeset
151 auto a9 = uSectorID;
fde5c5acb66e BLV render
Nomad
parents: 45
diff changeset
152
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
153 thisa = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
154 if ( !a5 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
155 return 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
156
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
157 static RenderVertexSoft static_AE4F90[64];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
158 static bool __init_flag1 = false;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
159 if (!__init_flag1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
160 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
161 __init_flag1 = true;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
162
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
163 for (uint i = 0; i < 64; ++i)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
164 static_AE4F90[i].flt_2C = 0.0f;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
165 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
166
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
167 static stru314 static_AE4F60; // idb
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
168 /*static bool __init_flag2 = false;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
169 if (!__init_flag2)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
170 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
171 __init_flag2 = true;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
172
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
173 stru314::stru314(&static_AE4F60);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
174 }*/
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
175
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
176 a11 = a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
177 if ( a7 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
178 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
179 if ( a5 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
180 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
181 v11 = static_AE4F90;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
182 v12 = (char *)a6 - (char *)static_AE4F90;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
183 a6 = (RenderVertexSoft *)a5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
184 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
185 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
186 v13 = (RenderVertexSoft *)((char *)v11 + v12);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
187 v14 = v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
188 ++v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
189 v15 = a6 == (RenderVertexSoft *)1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
190 a6 = (RenderVertexSoft *)((char *)a6 - 1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
191 memcpy(v14, v13, 0x30u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
192 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
193 while ( !v15 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
194 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
195 v16 = a4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
196 if ( pGame->pIndoorCameraD3D->_437376(a4, static_AE4F90, (unsigned int *)&a5) == 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
197 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
198 if ( !a5 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
199 return 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
200 a11 = static_AE4F90;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
201 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
202 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
203 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
204 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
205 v16 = a4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
206 }
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
207 v18 = v16->face_plane.vNormal.z;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
208 v19 = v16->face_plane.vNormal.y;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
209 v20 = v16->face_plane.vNormal.x;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
210 v37 = (int)&static_AE4F60.field_1C;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
211 static_AE4F60.field_4.y = v19;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
212 static_AE4F60.field_4.x = v20;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
213 LODWORD(v36) = (DWORD)&static_AE4F60.field_10;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
214 static_AE4F60.field_4.z = v18;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
215 static_AE4F60.dist = v16->face_plane.dist;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
216 if ( !pGame->pIndoorCameraD3D->GetFacetOrientation(
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
217 v16->polygonType,
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
218 &static_AE4F60.field_4,
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
219 &static_AE4F60.field_10,
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
220 &static_AE4F60.field_1C) )
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
221 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
222 MessageBoxW(nullptr, L"Error: Failed to get the facet orientation", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\PolyProjector.cpp:101", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
223 }
50
fde5c5acb66e BLV render
Nomad
parents: 45
diff changeset
224 int _a7 = 0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
225 if ( thisa->uNumDecals > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
226 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
227 a6 = (RenderVertexSoft *)thisa->std__vector_30B00C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
228 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
229 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
230 v21 = &pBloodsplatContainer->std__vector_pBloodsplats[LODWORD(a6->vWorldPosition.x)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
231 *(float *)&v37 = v21->z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
232 v36 = v21->y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
233 v35 = v21->x;
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
234 v22 = _43F5C8_get_point_light_level_with_respect_to_lights(a2, a9, v35, v36, *(float *)&v37);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
235 v23 = v21->b;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
236 v24 = v21->x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
237 v42 = v22;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
238 BYTE3(v22) = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
239 *(short *)((char *)&v22 + 1) = v21->r;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
240 LOBYTE(v22) = v21->g;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
241 v43 = v23 | (v22 << 8);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
242 v25 = (signed __int64)v24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
243 v26 = v21->z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
244 v27 = (signed __int64)v21->y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
245 v37 = a8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
246 v40 = (signed __int64)v26;
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
247 v28 = v21->dot_dist;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
248 LODWORD(v36) = (uint32)a11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
249 a5a = v25;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
250 v39 = v27;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
251 LODWORD(v35) = a5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
252 v34 = &static_AE4F60;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
253 *(float *)&v33 = v28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
254 v32 = v23 | (v22 << 8);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
255 *(float *)&v29 = v21->radius;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
256 v30 = (int)v21;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
257 v31 = thisa;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
258 if ( !thisa->_49B790_build_decal_geometry(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
259 v42,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
260 a3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
261 v30,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
262 (int)&a5a,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
263 v29,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
264 v43,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
265 v33,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
266 &static_AE4F60,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
267 a5,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
268 a11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
269 a8) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
270 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
271 MessageBoxW(nullptr, L"Error: Failed to build decal geometry", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\PolyProjector.cpp:114", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
272 }
50
fde5c5acb66e BLV render
Nomad
parents: 45
diff changeset
273 ++_a7;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
274 a6 = (RenderVertexSoft *)((char *)a6 + 4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
275 }
50
fde5c5acb66e BLV render
Nomad
parents: 45
diff changeset
276 while ( _a7 < v31->uNumDecals );
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
277 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
278 return 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
279 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
280
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
281 //----- (0049B790) --------------------------------------------------------
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
282 char DecalBuilder::_49B790_build_decal_geometry(int a2, char a3, int a4, int a5, int a6, unsigned int uColorMultiplier, RenderVertexSoft *a8, stru314 *a9, signed int a10, RenderVertexSoft *a11, char uClipFlags)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
283 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
284 DecalBuilder *v12; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
285 Decal *v13; // edi@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
286 char *v14; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
287 double v15; // st7@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
288 double v16; // st7@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
289 int v17; // eax@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
290 stru314 *v18; // ebx@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
291 double v19; // st7@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
292 double v20; // st7@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
293 double v21; // st7@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
294 double v22; // st6@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
295 double v23; // st6@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
296 double v24; // st5@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
297 char *v25; // eax@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
298 signed int v26; // ecx@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
299 double v27; // st5@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
300 double v28; // st7@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
301 double v29; // st7@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
302 char result; // al@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
303 unsigned int *v31; // edi@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
304 RenderVertexSoft *v32; // ebx@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
305 std::string *v33; // ecx@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
306 int v34; // eax@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
307 const char *v35; // [sp-Ch] [bp-2Ch]@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
308 int v36; // [sp-8h] [bp-28h]@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
309 std::string v37; // [sp-4h] [bp-24h]@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
310 float v38; // [sp+8h] [bp-18h]@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
311 RenderVertexSoft *v39; // [sp+Ch] [bp-14h]@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
312 unsigned int *v40; // [sp+10h] [bp-10h]@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
313
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
314 v12 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
315 if ( *(float *)&a6 == 0.0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
316 goto LABEL_24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
317 v13 = &this->std__vector_pDecals[this->field_308008];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
318 v14 = (char *)&this->std__vector_pDecals[this->field_308008].field_C1C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
319 this->std__vector_pDecals[this->field_308008].field_C18 = (DecalBuilder_stru0 *)a4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
320 *(int *)v14 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
321 if ( a3 & 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
322 *(int *)v14 = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
323 v15 = *(float *)&a6 - *(float *)&a8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
324 *(float *)&this->field_30C028 = v15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
325 v16 = sqrt((*(float *)&a6 + *(float *)&a6 - v15) * v15);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
326 *(float *)&v12->field_30C02C = v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
327 v17 = a5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
328 v18 = a9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
329 v12->flt_30C030 = 1.0 - (*(float *)&a6 - v16) / *(float *)&a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
330 v13->field_C08 = (signed __int64)((double)*(signed int *)v17 - *(float *)&a8 * v18->field_4.x);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
331 v13->field_C0A = (signed __int64)((double)*(signed int *)(a5 + 4) - *(float *)&a8 * v18->field_4.y);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
332 v19 = *(float *)&a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
333 v13->field_C0C = (signed __int64)((double)*(signed int *)(a5 + 8) - *(float *)&a8 * v18->field_4.z);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
334 v20 = v19 * v12->flt_30C030;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
335 a8 = v13->pVertices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
336 v12->field_30C034 = v20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
337 v12->field_30C010 = v20 * v18->field_10.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
338 v12->field_30C014 = v20 * v18->field_10.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
339 v12->field_30C018 = v20 * v18->field_10.z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
340 v12->field_30C01C = v20 * v18->field_1C.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
341 v12->field_30C020 = v20 * v18->field_1C.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
342 v12->field_30C024 = v20 * v18->field_1C.z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
343 a6 = v13->field_C08;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
344 v21 = (double)a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
345 v22 = v21 - v12->field_30C01C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
346 a6 = v13->field_C0A;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
347 v13->pVertices[0].vWorldPosition.x = v22 + v12->field_30C010;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
348 v23 = (double)a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
349 v24 = v23 - v12->field_30C020 + v12->field_30C014;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
350 v25 = (char *)&v13->pVertices[0].vWorldPosition.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
351 a6 = v13->field_C0C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
352 v26 = 4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
353 v13->pVertices[0].vWorldPosition.y = v24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
354 v27 = (double)a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
355 *(float *)&a6 = v27;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
356 v13->pVertices[0].vWorldPosition.z = v27 - v12->field_30C024 + v12->field_30C018;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
357 v13->pVertices[0].u = 0.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
358 v13->pVertices[0].v = 0.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
359 v13->pVertices[1].vWorldPosition.x = v21 - v12->field_30C01C - v12->field_30C010;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
360 v13->pVertices[1].vWorldPosition.y = v23 - v12->field_30C020 - v12->field_30C014;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
361 v13->pVertices[1].vWorldPosition.z = v27 - v12->field_30C024 - v12->field_30C018;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
362 v13->pVertices[1].u = 0.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
363 v13->pVertices[1].v = 1.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
364 v13->pVertices[2].vWorldPosition.x = v21 + v12->field_30C01C - v12->field_30C010;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
365 v13->pVertices[2].vWorldPosition.y = v23 + v12->field_30C020 - v12->field_30C014;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
366 v13->pVertices[2].vWorldPosition.z = v27 + v12->field_30C024 - v12->field_30C018;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
367 v13->pVertices[2].u = 1.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
368 v13->pVertices[2].v = 1.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
369 v13->pVertices[3].vWorldPosition.x = v21 + v12->field_30C01C + v12->field_30C010;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
370 v13->pVertices[3].vWorldPosition.y = v23 + v12->field_30C020 + v12->field_30C014;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
371 v13->pVertices[3].vWorldPosition.z = *(float *)&a6 + v12->field_30C024 + v12->field_30C018;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
372 v13->pVertices[3].u = 1.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
373 v13->pVertices[3].v = 0.0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
374 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
375 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
376 v28 = v18->field_4.y * *(float *)v25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
377 + *((float *)v25 - 1) * v18->field_4.x
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
378 + *((float *)v25 + 1) * v18->field_4.z
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
379 + v18->dist;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
380 *((float *)v25 - 1) = *((float *)v25 - 1) - v28 * v18->field_4.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
381 *(float *)v25 = *(float *)v25 - v28 * v18->field_4.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
382 v25 += 48;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
383 --v26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
384 *((float *)v25 - 11) = *((float *)v25 - 11) - v28 * v18->field_4.z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
385 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
386 while ( v26 );
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
387 v13->uColorMultiplier = uColorMultiplier;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
388 v40 = (unsigned int *)&v13->uNumVertices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
389 v39 = v13->pVertices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
390 v13->uNumVertices = 4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
391 v13->field_C14 = a2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
392 v29 = v18->field_4.z;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
393 a6 = (int)&v13->uNumVertices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
394 v38 = v29;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
395 result = pGame->pStru9Instance->_4980B9(a11, a10, v18->field_4.x, v18->field_4.y, v38, v39, v40);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
396 if ( result )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
397 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
398 v31 = (unsigned int *)a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
399 if ( !*(int *)a6 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
400 goto LABEL_24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
401 v32 = a8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
402 v40 = *(unsigned int **)a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
403 v39 = a8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
404 pGame->pIndoorCameraD3D->ViewTransform(a8, (unsigned int)v40);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
405 v40 = 0;
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
406 pGame->pIndoorCameraD3D->Project(v32, *v31, 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
407 if ( !(uClipFlags & 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
408 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
409 LABEL_19:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
410 ++v12->field_308008;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
411 v34 = 1024;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
412 if ( v12->field_308008 == 1024 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
413 v12->field_308008 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
414 if ( (signed int)(v12->std__vector_pDecals_size + 1) <= 1024 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
415 v34 = v12->std__vector_pDecals_size + 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
416 v12->std__vector_pDecals_size = v34;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
417 goto LABEL_24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
418 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
419 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
420 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
421 if ( uClipFlags & 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
422 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
423 v40 = (unsigned int *)&a8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
424 v39 = v12->pVertices;
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
425 pGame->pIndoorCameraD3D->_436CDC_mess_with_lightmap__clipflag_2(v32, *v31, v12->pVertices, (unsigned int *)&a8);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
426 LABEL_14:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
427 v40 = v31;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
428 v39 = v12->pVertices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
429 pGame->pIndoorCameraD3D->_437143((unsigned int)a8, v32, v12->pVertices, v31);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
430 goto LABEL_18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
431 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
432 if ( uClipFlags & 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
433 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
434 v40 = (unsigned int *)&a8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
435 v39 = v12->pVertices;
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
436 pGame->pIndoorCameraD3D->_436F09_mess_with_lightmap__clipflag_4(v32, *v31, v12->pVertices, (unsigned int *)&a8);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
437 goto LABEL_14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
438 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
439 v39 = (RenderVertexSoft *)"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\PolyProjector.cpp:258";
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
440 v35 = "Undefined clip flag specified";
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
441 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
442 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
443 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
444 v39 = (RenderVertexSoft *)"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\PolyProjector.cpp:263";
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
445 v35 = "Lightpoly builder native indoor clipping not implemented";
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
446 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
447 MessageBoxA(nullptr, v35, (const char *)v39, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
448 LABEL_18:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
449 if ( *(float *)&a8 != 0.0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
450 goto LABEL_19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
451 LABEL_24:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
452 result = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
453 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
454 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
455 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
456
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
457 //----- (0049BBBD) --------------------------------------------------------
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
458 bool DecalBuilder::ApplyBloodsplatDecals_IndoorFace(unsigned int uFaceID)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
459 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
460 double v7; // st7@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
461
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
462 if (!pBloodsplatContainer->std__vector_pBloodsplats_size)
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
463 return true;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
464
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
465 auto pFace = &pIndoor->pFaces[uFaceID];
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
466
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
467 if (pFace->uAttributes & 0x400000)
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
468 return true;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
469 if (pFace->Animated())
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
470 return true;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
471
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
472 for (uint i = 0; i < pBloodsplatContainer->std__vector_pBloodsplats_size; ++i)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
473 {
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
474 auto pBloodsplat = pBloodsplatContainer->std__vector_pBloodsplats + i;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
475 if (pFace->pBounding.x1 - pBloodsplat->radius < pBloodsplat->x &&
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
476 pFace->pBounding.x2 + pBloodsplat->radius > pBloodsplat->x &&
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
477 pFace->pBounding.y1 - pBloodsplat->radius < pBloodsplat->y &&
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
478 pFace->pBounding.y2 + pBloodsplat->radius > pBloodsplat->y &&
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
479 pFace->pBounding.z1 - pBloodsplat->radius < pBloodsplat->z &&
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
480 pFace->pBounding.z2 + pBloodsplat->radius > pBloodsplat->z)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
481 {
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
482 v7 = pFace->pFacePlane.vNormal.z * pBloodsplat->z +
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
483 pFace->pFacePlane.vNormal.y * pBloodsplat->y +
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
484 pFace->pFacePlane.vNormal.x * pBloodsplat->x +
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
485 pFace->pFacePlane.dist;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
486 if (v7 <= pBloodsplat->radius)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
487 {
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
488 pBloodsplat->dot_dist = v7;
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
489 std__vector_30B00C[uNumDecals++] = i;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
490 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
491 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
492 }
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
493
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
494 return true;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
495 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
496
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
497 //----- (0049BCEB) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
498 char DecalBuilder::ApplyDecals_OutdoorFace(ODMFace *pFace)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
499 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
500 int v2; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
501 unsigned int v3; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
502 char *v4; // edx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
503 double v5; // ST1C_8@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
504 double v6; // ST14_8@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
505 double v7; // ST0C_8@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
506 double v8; // st7@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
507 unsigned int v10; // [sp+20h] [bp-1Ch]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
508
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
509 v2 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
510 this->uNumDecals = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
511 v10 = pBloodsplatContainer->std__vector_pBloodsplats_size;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
512 if ( pBloodsplatContainer->std__vector_pBloodsplats_size )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
513 {
59
5159d2e6f559 BLV render
Nomad
parents: 50
diff changeset
514 v3 = pFace->uAttributes;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
515 if ( !(v3 & 0x400000) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
516 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
517 if ( !(v3 & 0x10) && (signed int)pBloodsplatContainer->std__vector_pBloodsplats_size > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
518 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
519 v4 = (char *)&pBloodsplatContainer->std__vector_pBloodsplats[0].y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
520 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
521 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
522 if ( (double)pFace->pBoundingBox.x1 - *((float *)v4 + 2) < *((float *)v4 - 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
523 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
524 if ( (double)pFace->pBoundingBox.x2 + *((float *)v4 + 2) > *((float *)v4 - 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
525 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
526 if ( (double)pFace->pBoundingBox.y1 - *((float *)v4 + 2) < *(float *)v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
527 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
528 if ( (double)pFace->pBoundingBox.y2 + *((float *)v4 + 2) > *(float *)v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
529 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
530 if ( (double)pFace->pBoundingBox.z1 - *((float *)v4 + 2) < *((float *)v4 + 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
531 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
532 if ( (double)pFace->pBoundingBox.z2 + *((float *)v4 + 2) > *((float *)v4 + 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
533 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
534 v5 = *((float *)v4 - 1) + 6.7553994e15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
535 v6 = *(float *)v4 + 6.7553994e15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
536 v7 = *((float *)v4 + 1) + 6.7553994e15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
537 v8 = (double)((pFace->pFacePlane.dist
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
538 + LODWORD(v5) * pFace->pFacePlane.vNormal.x
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
539 + LODWORD(v6) * pFace->pFacePlane.vNormal.y
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
540 + LODWORD(v7) * pFace->pFacePlane.vNormal.z) >> 16);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
541 if ( v8 <= *((float *)v4 + 2) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
542 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
543 *((float *)v4 + 3) = v8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
544 this->std__vector_30B00C[this->uNumDecals++] = v2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
545 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
546 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
547 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
548 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
549 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
550 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
551 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
552 ++v2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
553 v4 += 40;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
554 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
555 while ( v2 < (signed int)v10 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
556 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
557 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
558 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
559 return 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
560 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
561
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
562 //----- (0049BE8A) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
563 bool DecalBuilder::_49BE8A(struct stru148 *a2, float a3, int a4, RenderVertexSoft *a5, unsigned int uStripType, char a7)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
564 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
565 bool result; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
566 RenderVertexSoft *v8; // edi@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
567 float v9; // ebx@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
568 char *v10; // esi@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
569 float v11; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
570 float v12; // eax@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
571 double v13; // st7@13
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
572 double v14; // st7@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
573 int v15; // eax@20
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
574 int v16; // eax@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
575 int v17; // edx@24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
576 DecalBuilder *v18; // eax@24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
577 std::string v19; // [sp-18h] [bp-54h]@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
578 const char *v20; // [sp-8h] [bp-44h]@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
579 int v21; // [sp-4h] [bp-40h]@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
580 double v22; // [sp+Ch] [bp-30h]@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
581 unsigned int v23; // [sp+14h] [bp-28h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
582 DecalBuilder *v24; // [sp+18h] [bp-24h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
583 int v25; // [sp+1Ch] [bp-20h]@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
584 float v26; // [sp+20h] [bp-1Ch]@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
585 int v27; // [sp+24h] [bp-18h]@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
586 float v28; // [sp+28h] [bp-14h]@13
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
587 float v29; // [sp+2Ch] [bp-10h]@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
588 float v30; // [sp+30h] [bp-Ch]@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
589 float v31; // [sp+34h] [bp-8h]@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
590 bool v32; // [sp+38h] [bp-4h]@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
591
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
592 this->uNumDecals = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
593 result = pBloodsplatContainer->std__vector_pBloodsplats_size;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
594 v24 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
595 v23 = pBloodsplatContainer->std__vector_pBloodsplats_size;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
596 if ( pBloodsplatContainer->std__vector_pBloodsplats_size )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
597 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
598 v32 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
599 if ( (signed int)pBloodsplatContainer->std__vector_pBloodsplats_size > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
600 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
601 v8 = a5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
602 v9 = a3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
603 v10 = (char *)&pBloodsplatContainer->std__vector_pBloodsplats[0].y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
604 while ( uStripType != 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
605 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
606 if ( uStripType == 3 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
607 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
608 if ( a7 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
609 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
610 a3 = v8->vWorldPosition.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
611 v31 = v8[2].vWorldPosition.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
612 v30 = v8[1].vWorldPosition.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
613 v12 = v8[2].vWorldPosition.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
614 goto LABEL_7;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
615 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
616 a3 = v8[1].vWorldPosition.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
617 v11 = v8[2].vWorldPosition.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
618 LABEL_6:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
619 v31 = v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
620 v30 = v8[1].vWorldPosition.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
621 v12 = v8->vWorldPosition.y;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
622 LABEL_7:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
623 v29 = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
624 goto LABEL_13;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
625 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
626 MessageBoxW(nullptr, L"Uknown strip type detected!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\PolyProjector.cpp:434", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
627 LABEL_13:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
628 v21 = uStripType;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
629 v13 = pGame->pIndoorCameraD3D->GetPolygonMinZ(v8, uStripType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
630 v21 = uStripType;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
631 v28 = v13;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
632 v26 = pGame->pIndoorCameraD3D->GetPolygonMaxZ(v8, uStripType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
633 if ( a3 - *((float *)v10 + 2) < *((float *)v10 - 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
634 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
635 if ( v31 + *((float *)v10 + 2) > *((float *)v10 - 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
636 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
637 if ( v30 - *((float *)v10 + 2) < *(float *)v10 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
638 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
639 if ( v29 + *((float *)v10 + 2) > *(float *)v10 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
640 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
641 if ( v28 - *((float *)v10 + 2) < *((float *)v10 + 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
642 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
643 if ( v26 + *((float *)v10 + 2) > *((float *)v10 + 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
644 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
645 Vec3_float_::NegDot(&v8->vWorldPosition, (Vec3_float_ *)LODWORD(v9), (float *)a4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
646 v26 = *(float *)(LODWORD(v9) + 4) * *(float *)v10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
647 + *(float *)(LODWORD(v9) + 8) * *((float *)v10 + 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
648 + *(unsigned int *)LODWORD(v9) * *((float *)v10 - 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
649 + *(float *)a4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
650 v22 = v26 + 6.7553994e15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
651 v25 = LODWORD(v22);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
652 v14 = (double)SLODWORD(v22);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
653 v28 = v14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
654 if ( v14 <= *((float *)v10 + 2) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
655 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
656 v15 = *(int *)&a2->flags;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
657 if ( v15 & 2 || BYTE1(v15) & 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
658 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
659 v16 = *((int *)v10 + 5);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
660 if ( !(v16 & 1) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
661 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
662 LOBYTE(v16) = v16 | 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
663 *((int *)v10 + 5) = v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
664 *((_QWORD *)v10 + 3) = pEventTimer->Time();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
665 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
666 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
667 v17 = v32;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
668 *((int *)v10 + 3) = LODWORD(v28);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
669 v18 = v24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
670 v24->std__vector_30B00C[v24->uNumDecals] = v17;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
671 ++v18->uNumDecals;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
672 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
673 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
674 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
675 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
676 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
677 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
678 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
679 ++v32;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
680 v10 += 40;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
681 result = v32;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
682 if ( v32 >= (signed int)v23 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
683 goto LABEL_26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
684 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
685 a3 = v8->vWorldPosition.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
686 v11 = v8[3].vWorldPosition.x;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
687 goto LABEL_6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
688 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
689 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
690 LABEL_26:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
691 LOBYTE(result) = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
692 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
693 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
694
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
695 //----- (0049C095) --------------------------------------------------------
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
696 void DecalBuilder::DrawDecal(Decal *pDecal, float z_bias)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
697 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
698 signed int v21; // [sp+Ch] [bp-864h]@15
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
699 RenderVertexD3D3 pVerticesD3D[64]; // [sp+20h] [bp-850h]@6
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
700
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
701 if (pDecal->uNumVertices < 3)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
702 {
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
703 Log::Warning(L"Decal has < 3 vertices");
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
704 return;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
705 }
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
706
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
707 float color_mult;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
708 if ( pDecal->field_C1C & 1 )
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
709 color_mult = 1.0;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
710 else
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
711 color_mult = pDecal->field_C18->_43B570_get_color_mult_by_time();
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
712
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
713 for (uint i = 0; i < pDecal->uNumVertices; ++i)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
714 {
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
715 uint uTint = pRenderer->GetActorTintColor(pDecal->pVertices[i].vWorldViewPosition.x, pDecal->field_C14, 0, 0, nullptr);
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
716
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
717 uint uTintR = (uTint >> 16) & 0xFF,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
718 uTintG = (uTint >> 8) & 0xFF,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
719 uTintB = uTint & 0xFF;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
720
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
721 uint uDecalColorMultR = (pDecal->uColorMultiplier >> 16) & 0xFF,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
722 uDecalColorMultG = (pDecal->uColorMultiplier >> 8) & 0xFF,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
723 uDecalColorMultB = pDecal->uColorMultiplier & 0xFF;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
724
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
725 uint uFinalR = floorf(uTintR / 255.0 * color_mult * uDecalColorMultR + 0.0f),
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
726 uFinalG = floorf(uTintG / 255.0 * color_mult * uDecalColorMultG + 0.0f),
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
727 uFinalB = floorf(uTintB / 255.0 * color_mult * uDecalColorMultB + 0.0f);
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
728
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
729
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
730 float v15;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
731 if (fabs(z_bias) < 1e-5)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
732 v15 = 1.0 - 1.0 / ((1.0f / get_shading_dist_mist()) * pDecal->pVertices[i].vWorldViewPosition.x * 1000.0);
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
733 else
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
734 {
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
735 v15 = 1.0 - 1.0 / ((1.0f / get_shading_dist_mist()) * pDecal->pVertices[i].vWorldViewPosition.x * 1000.0) - z_bias;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
736 if (v15 < 0.000099999997)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
737 v15 = 0.000099999997;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
738 }
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
739
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
740 pVerticesD3D[i].pos.z = v15;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
741
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
742 pVerticesD3D[i].pos.x = pDecal->pVertices[i].vWorldViewProjX;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
743 pVerticesD3D[i].pos.y = pDecal->pVertices[i].vWorldViewProjY;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
744 pVerticesD3D[i].texcoord.x = pDecal->pVertices[i].u;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
745 pVerticesD3D[i].texcoord.y = pDecal->pVertices[i].v;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
746 pVerticesD3D[i].diffuse = (uFinalR << 16) | (uFinalG << 8) | uFinalB;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
747 pVerticesD3D[i].specular = 0;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
748 pVerticesD3D[i].rhw = 1.0 / pDecal->pVertices[i].vWorldViewPosition.x;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
749 }
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
750
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
751 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
752 v21 = D3DDP_DONOTLIGHT | D3DDP_DONOTCLIP | D3DDP_DONOTUPDATEEXTENTS;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
753 else
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
754 v21 = D3DDP_DONOTLIGHT;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
755
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
756 ErrD3D(pRenderer->pRenderD3D->pDevice->DrawPrimitive(D3DPT_TRIANGLEFAN,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
757 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
758 pVerticesD3D,
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
759 pDecal->uNumVertices,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
760 v21));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
761 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
762
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
763 //----- (0049C2CD) --------------------------------------------------------
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
764 void DecalBuilder::DrawDecals(float z_bias)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
765 {
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
766 for (uint i = 0; i < std__vector_pDecals_size; ++i)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
767 DrawDecal(std__vector_pDecals + i, z_bias);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
768 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
769
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
770 //----- (0049C304) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
771 void DecalBuilder::DrawBloodsplats()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
772 {
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
773 if (!std__vector_pDecals_size)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
774 return;
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
775
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
776 if (pRenderer->bUsingSpecular)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
777 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 0));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
778 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTextureStageState(0, D3DTSS_ADDRESS, 3));
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
779
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
780 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, 1));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
781 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, 0));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
782 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 1u));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
783 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, 2u));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
784 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, 2u));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
785 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DITHERENABLE, 0));
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
786
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
787 auto pTex = pGame->pIndoorCameraD3D->LoadTextureAndGetHardwarePtr("hwsplat04");
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
788 ErrD3D(pRenderer->pRenderD3D->pDevice->SetTexture(0, pTex));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
789
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
790 DrawDecals(0.00039999999);
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
791 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_CULLMODE, 2u));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
792 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ZWRITEENABLE, 1u));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
793 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_ALPHABLENDENABLE, 0));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
794 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_SRCBLEND, 2u));
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
795 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_DESTBLEND, 1u));
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
796
45
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
797 if (pRenderer->bUsingSpecular)
bcc051713d20 BLV render & seffects
Nomad
parents: 27
diff changeset
798 ErrD3D(pRenderer->pRenderD3D->pDevice->SetRenderState(D3DRENDERSTATE_FOGENABLE, 1u));
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
799 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
800
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
801 //----- (0049C550) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
802 void DecalBuilder::DrawDecalDebugOutlines()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
803 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
804 DecalBuilder *v1; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
805 signed int v2; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
806 RenderVertexSoft *v3; // edi@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
807
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
808 v1 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
809 v2 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
810 if ( (signed int)this->std__vector_pDecals_size > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
811 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
812 v3 = this->std__vector_pDecals[0].pVertices;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
813 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
814 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
815 pGame->pIndoorCameraD3D->debug_outline_sw(v3, *((int *)v3 - 1), 0xC86400u, 0.0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
816 ++v2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
817 v3 = (RenderVertexSoft *)((char *)v3 + 3104);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
818 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
819 while ( v2 < (signed int)v1->std__vector_pDecals_size );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
820 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
821 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
822
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
823 //----- (0040E4C2) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
824 void Decal::Decal_base_ctor()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
825 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
826 uNumVertices = -1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
827 for (uint i = 0; i < 64; ++i)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
828 pVertices[i].flt_2C = 0.0f;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
829 }