annotate DecalBuilder.cpp @ 53:fd2fd234a66c

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