annotate ParticleEngine.cpp @ 2128:0d0aa7c1ccdd

Savegame_screenshot continue
author Ritor1
date Sat, 28 Dec 2013 00:32:08 +0600
parents 259df09dfb50
children 9bd7522cdbbb
rev   line source
0
Ritor1
parents:
diff changeset
1 #include "ParticleEngine.h"
2044
28cb79ae2f6f Time.h rename
Ritor1
parents: 2037
diff changeset
2 #include "Timer.h"
0
Ritor1
parents:
diff changeset
3 #include "Render.h"
Ritor1
parents:
diff changeset
4 #include "Viewport.h"
Ritor1
parents:
diff changeset
5 #include "Outdoor.h"
Ritor1
parents:
diff changeset
6 #include "Game.h"
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
7 #include "Outdoor_stuff.h"
2037
7a9477135943 Renamed Math.h -> OurMath.h (file resolution was sometimes ambiguous)
Nomad
parents: 2002
diff changeset
8 #include "OurMath.h"
0
Ritor1
parents:
diff changeset
9 #include "LOD.h"
Ritor1
parents:
diff changeset
10
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 871
diff changeset
11 #include "Sprites.h"
0
Ritor1
parents:
diff changeset
12 #include "mm7_data.h"
Ritor1
parents:
diff changeset
13
1410
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
14 TrailParticleGenerator trail_particle_generator;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
15
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
16
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
17 //----- (00440DF5) --------------------------------------------------------
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
18 void TrailParticleGenerator::AddParticle(int x, int y, int z, int bgr16)
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
19 {
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
20 particles[num_particles].x = x;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
21 particles[num_particles].y = y;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
22 particles[num_particles].z = z;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
23 particles[num_particles].time_to_live = rand() % 64 + 256;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
24 particles[num_particles].time_left = particles[num_particles].time_to_live;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
25 particles[num_particles].bgr16 = bgr16;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
26
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
27 num_particles++;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
28 assert(num_particles < 100);
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
29 }
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
30
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
31 //----- (00440E91) --------------------------------------------------------
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
32 void TrailParticleGenerator::GenerateTrailParticles(int x, int y, int z, int bgr16)
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
33 {
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
34 for (int i = 0; i < 5 + rand() % 6; ++i)
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
35 AddParticle(rand() % 33 + x - 16,
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
36 rand() % 33 + y - 16,
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
37 rand() % 33 + z, bgr16);
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
38 }
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
39
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
40 //----- (00440F07) --------------------------------------------------------
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
41 void TrailParticleGenerator::UpdateParticles()
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
42 {
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
43 for (uint i = 0; i < 100; ++i)
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
44 {
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
45 if (particles[i].time_left > 0)
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
46 {
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
47 particles[i].x += rand() % 5 + 4;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
48 particles[i].y += rand() % 5 - 2;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
49 particles[i].z += rand() % 5 - 2;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
50 particles[i].time_left -= pEventTimer->uTimeElapsed;
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
51 }
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
52 }
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
53 }
38df78aba732 deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents: 1390
diff changeset
54
0
Ritor1
parents:
diff changeset
55 //----- (0048AAC5) --------------------------------------------------------
Ritor1
parents:
diff changeset
56 ParticleEngine::ParticleEngine()
Ritor1
parents:
diff changeset
57 {
Ritor1
parents:
diff changeset
58 for (uint i = 0; i < 500; ++i)
Ritor1
parents:
diff changeset
59 memset(&pParticles[i], 0, sizeof(pParticles[i]));
Ritor1
parents:
diff changeset
60
Ritor1
parents:
diff changeset
61 ResetParticles();
Ritor1
parents:
diff changeset
62 }
Ritor1
parents:
diff changeset
63
Ritor1
parents:
diff changeset
64 //----- (0048AAF6) --------------------------------------------------------
Ritor1
parents:
diff changeset
65 void ParticleEngine::ResetParticles()
Ritor1
parents:
diff changeset
66 {
Ritor1
parents:
diff changeset
67 memset(pParticles, 0, 500 * sizeof(*pParticles));
Ritor1
parents:
diff changeset
68 uStartParticle = 500;
Ritor1
parents:
diff changeset
69 uEndParticle = 0;
Ritor1
parents:
diff changeset
70 uTimeElapsed = 0;
Ritor1
parents:
diff changeset
71 }
Ritor1
parents:
diff changeset
72
Ritor1
parents:
diff changeset
73 //----- (0048AB23) --------------------------------------------------------
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
74 void ParticleEngine::AddParticle(Particle_sw *a2)
0
Ritor1
parents:
diff changeset
75 {
Ritor1
parents:
diff changeset
76 signed int v2; // eax@2
Ritor1
parents:
diff changeset
77 Particle *v3; // edx@2
Ritor1
parents:
diff changeset
78 Particle *v4; // esi@10
Ritor1
parents:
diff changeset
79 int v5; // ecx@10
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
80 //char v6; // zf@10
0
Ritor1
parents:
diff changeset
81
Ritor1
parents:
diff changeset
82 if ( !pMiscTimer->bPaused )
Ritor1
parents:
diff changeset
83 {
Ritor1
parents:
diff changeset
84 v2 = 0;
Ritor1
parents:
diff changeset
85 v3 = (Particle *)this;
Ritor1
parents:
diff changeset
86 do
Ritor1
parents:
diff changeset
87 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
88 if (v3->type == ParticleType_Invalid)
0
Ritor1
parents:
diff changeset
89 break;
Ritor1
parents:
diff changeset
90 ++v2;
Ritor1
parents:
diff changeset
91 ++v3;
Ritor1
parents:
diff changeset
92 }
Ritor1
parents:
diff changeset
93 while ( v2 < 500 );
Ritor1
parents:
diff changeset
94 if ( v2 < 500 )
Ritor1
parents:
diff changeset
95 {
Ritor1
parents:
diff changeset
96 if ( v2 < this->uStartParticle )
Ritor1
parents:
diff changeset
97 this->uStartParticle = v2;
Ritor1
parents:
diff changeset
98 if ( v2 > this->uEndParticle )
Ritor1
parents:
diff changeset
99 this->uEndParticle = v2;
Ritor1
parents:
diff changeset
100 v4 = &this->pParticles[v2];
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
101 v4->type = a2->type;
0
Ritor1
parents:
diff changeset
102 v4->x = a2->x;
Ritor1
parents:
diff changeset
103 v4->y = a2->y;
Ritor1
parents:
diff changeset
104 v4->z = a2->z;
Ritor1
parents:
diff changeset
105 v4->_x = a2->x;
Ritor1
parents:
diff changeset
106 v4->_y = a2->y;
Ritor1
parents:
diff changeset
107 v4->_z = a2->z;
1390
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1029
diff changeset
108 v4->flt_10 = a2->r;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1029
diff changeset
109 v4->flt_14 = a2->g;
613c77e51e38 Messed with spell effects drawing a bit.
Nomad
parents: 1029
diff changeset
110 v4->flt_18 = a2->b;
0
Ritor1
parents:
diff changeset
111 v5 = a2->uDiffuse;
Ritor1
parents:
diff changeset
112 v4->uParticleColor = v5;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
113 v4->uLightColor_bgr = v5;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
114 //v6 = (v4->uType & 4) == 0;
0
Ritor1
parents:
diff changeset
115 v4->timeToLive = a2->timeToLive;
Ritor1
parents:
diff changeset
116 v4->uTextureID = a2->uTextureID;
Ritor1
parents:
diff changeset
117 v4->flt_28 = a2->flt_28;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
118 if (v4->type & ParticleType_Rotating)
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
119 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
120 v4->rotation_speed = (rand() % 256) - 128;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
121 v4->angle = rand();
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
122 }
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
123 else
0
Ritor1
parents:
diff changeset
124 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
125 v4->rotation_speed = 0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
126 v4->angle = 0;
0
Ritor1
parents:
diff changeset
127 }
Ritor1
parents:
diff changeset
128 }
Ritor1
parents:
diff changeset
129 }
Ritor1
parents:
diff changeset
130 }
Ritor1
parents:
diff changeset
131
Ritor1
parents:
diff changeset
132 //----- (0048ABF3) --------------------------------------------------------
Ritor1
parents:
diff changeset
133 void ParticleEngine::Draw()
Ritor1
parents:
diff changeset
134 {
Ritor1
parents:
diff changeset
135 uTimeElapsed += pEventTimer->uTimeElapsed;
Ritor1
parents:
diff changeset
136 pLines.uNumLines = 0;
Ritor1
parents:
diff changeset
137
573
Nomad
parents: 323
diff changeset
138 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
Nomad
parents: 323
diff changeset
139 DrawParticles_BLV();
Nomad
parents: 323
diff changeset
140 else
Nomad
parents: 323
diff changeset
141 DrawParticles_ODM();
0
Ritor1
parents:
diff changeset
142
Ritor1
parents:
diff changeset
143 if (pRenderer->pRenderD3D)
Ritor1
parents:
diff changeset
144 {
Ritor1
parents:
diff changeset
145 if (pLines.uNumLines)
Ritor1
parents:
diff changeset
146 {
Ritor1
parents:
diff changeset
147 pRenderer->pRenderD3D->pDevice->SetTexture(0, 0);
Ritor1
parents:
diff changeset
148 pRenderer->pRenderD3D->pDevice->DrawPrimitive(
Ritor1
parents:
diff changeset
149 D3DPT_LINELIST,
Ritor1
parents:
diff changeset
150 D3DFVF_XYZRHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR | D3DFVF_TEX1,
Ritor1
parents:
diff changeset
151 pLines.pLineVertices,
Ritor1
parents:
diff changeset
152 pLines.uNumLines,
Ritor1
parents:
diff changeset
153 D3DDP_DONOTLIGHT);
Ritor1
parents:
diff changeset
154 }
Ritor1
parents:
diff changeset
155 }
Ritor1
parents:
diff changeset
156 }
Ritor1
parents:
diff changeset
157
Ritor1
parents:
diff changeset
158 //----- (0048AC65) --------------------------------------------------------
Ritor1
parents:
diff changeset
159 void ParticleEngine::UpdateParticles()
Ritor1
parents:
diff changeset
160 {
Ritor1
parents:
diff changeset
161 unsigned int time; // edi@1
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
162 //int v5; // eax@3
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
163 //char v6; // sf@4
0
Ritor1
parents:
diff changeset
164 float v7; // ST4C_4@11
Ritor1
parents:
diff changeset
165 double v8; // st7@12
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
166 //int v9; // eax@12
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
167 //double v10; // st7@14
0
Ritor1
parents:
diff changeset
168 signed int v19; // [sp+38h] [bp-14h]@1
Ritor1
parents:
diff changeset
169 int v20; // [sp+3Ch] [bp-10h]@1
Ritor1
parents:
diff changeset
170 unsigned int time_; // [sp+40h] [bp-Ch]@1
Ritor1
parents:
diff changeset
171 int v22; // [sp+44h] [bp-8h]@12
Ritor1
parents:
diff changeset
172
Ritor1
parents:
diff changeset
173 v20 = 0;
Ritor1
parents:
diff changeset
174 time = pMiscTimer->bPaused == 0 ? pEventTimer->uTimeElapsed : 0;
Ritor1
parents:
diff changeset
175 v19 = 500;
Ritor1
parents:
diff changeset
176 time_ = pMiscTimer->bPaused == 0 ? pEventTimer->uTimeElapsed : 0;
Ritor1
parents:
diff changeset
177
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
178 for (uint i = uStartParticle; i <= uEndParticle; ++i)
0
Ritor1
parents:
diff changeset
179 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1643
diff changeset
180 Particle* p = &pParticles[i];
0
Ritor1
parents:
diff changeset
181
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
182 if (p->type == ParticleType_Invalid)
0
Ritor1
parents:
diff changeset
183 continue;
Ritor1
parents:
diff changeset
184
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
185 if (p->timeToLive <= time)
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
186 {
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
187 p->timeToLive = 0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
188 p->type = ParticleType_Invalid;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
189 continue;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
190 }
0
Ritor1
parents:
diff changeset
191 p->timeToLive -= time;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
192
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
193 if (p->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
194 {
Ritor1
parents:
diff changeset
195 p->_x = p->x;
Ritor1
parents:
diff changeset
196 p->_y = p->y;
Ritor1
parents:
diff changeset
197 p->_z = p->z;
Ritor1
parents:
diff changeset
198 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
199
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
200 if (p->type & ParticleType_1)
0
Ritor1
parents:
diff changeset
201 p->flt_18 = p->flt_18 - (double)(signed int)time_ * 5.0;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
202
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
203 if (p->type & ParticleType_8)
0
Ritor1
parents:
diff changeset
204 {
Ritor1
parents:
diff changeset
205 v7 = (double)(signed int)time_;
Ritor1
parents:
diff changeset
206 *(float *)&p->x += (double)(rand() % 5 - 2) * v7 / 16.0f;
Ritor1
parents:
diff changeset
207 *(float *)&p->y += (double)(rand() % 5 - 2) * v7 / 16.0f;
Ritor1
parents:
diff changeset
208 *(float *)&p->z += (double)(rand() % 5 + 4) * v7 / 16.0f;
Ritor1
parents:
diff changeset
209 }
Ritor1
parents:
diff changeset
210 v8 = (double)(signed int)time_ / 128.0f;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
211 //v9 = (signed int)(time * p->rotation_speed) / 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
212
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
213 p->x += v8 * p->flt_10;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
214 p->y += v8 * p->flt_14;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
215 p->z += v8 * p->flt_18;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
216
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
217 p->angle += time * p->rotation_speed / 16;
0
Ritor1
parents:
diff changeset
218 v22 = 2 * p->timeToLive;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
219 if (v22 >= 255 )
0
Ritor1
parents:
diff changeset
220 v22 = 255;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
221 //v10 = (double)v22 * 0.0039215689;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
222 p->uLightColor_bgr = ((uint)floorf(p->b * (v22 / 255.0f) + 0.5) << 16) |
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
223 ((uint)floorf(p->g * (v22 / 255.0f) + 0.5) << 8) |
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
224 ((uint)floorf(p->r * (v22 / 255.0f) + 0.5) << 0);
0
Ritor1
parents:
diff changeset
225 if ( i < v19 )
Ritor1
parents:
diff changeset
226 v19 = i;
Ritor1
parents:
diff changeset
227 if ( i > v20 )
Ritor1
parents:
diff changeset
228 v20 = i;
Ritor1
parents:
diff changeset
229 }
Ritor1
parents:
diff changeset
230
Ritor1
parents:
diff changeset
231 uEndParticle = v20;
Ritor1
parents:
diff changeset
232 uStartParticle = v19;
Ritor1
parents:
diff changeset
233 }
Ritor1
parents:
diff changeset
234
Ritor1
parents:
diff changeset
235 //----- (0048AE74) --------------------------------------------------------
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
236 bool ParticleEngine::ViewProject_TrueIfStillVisible_BLV(unsigned int uParticleID)
0
Ritor1
parents:
diff changeset
237 {
Ritor1
parents:
diff changeset
238 Particle *pParticle; // esi@1
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
239 //double v56; // ST28_8@2
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
240 //float v4; // eax@4
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
241 //double v5; // ST34_8@4
0
Ritor1
parents:
diff changeset
242 signed __int64 v6; // qtt@4
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
243 //double v7; // st7@4
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
244 //float v8; // ST18_4@4
0
Ritor1
parents:
diff changeset
245 int v9; // ecx@4
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
246 //int v10; // eax@4
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
247 //double v11; // ST44_8@7
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
248 //double v12; // ST4C_8@7
0
Ritor1
parents:
diff changeset
249 double v13; // ST4C_8@7
Ritor1
parents:
diff changeset
250 int v14; // ecx@7
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
251 //signed __int64 v15; // qtt@7
0
Ritor1
parents:
diff changeset
252 int v16; // eax@7
Ritor1
parents:
diff changeset
253 int v17; // edx@7
Ritor1
parents:
diff changeset
254 float v18; // edx@7
Ritor1
parents:
diff changeset
255 int v19; // eax@7
Ritor1
parents:
diff changeset
256 int v20; // edx@7
Ritor1
parents:
diff changeset
257 int v21; // ST50_4@8
Ritor1
parents:
diff changeset
258 int v22; // ebx@8
Ritor1
parents:
diff changeset
259 int v23; // ecx@10
Ritor1
parents:
diff changeset
260 int v24; // edi@10
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
261 //double v25; // ST44_8@12
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
262 //double v26; // ST4C_8@12
0
Ritor1
parents:
diff changeset
263 int v27; // edi@12
Ritor1
parents:
diff changeset
264 int v28; // ST40_4@12
Ritor1
parents:
diff changeset
265 int v29; // ecx@12
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
266 //signed __int64 v30; // qtt@12
0
Ritor1
parents:
diff changeset
267 int v31; // eax@12
Ritor1
parents:
diff changeset
268 int v32; // edx@12
Ritor1
parents:
diff changeset
269 float v33; // edx@12
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
270 //int v34; // eax@12
0
Ritor1
parents:
diff changeset
271 int v35; // ecx@12
Ritor1
parents:
diff changeset
272 int v36; // ST38_4@13
Ritor1
parents:
diff changeset
273 int v37; // ST30_4@15
Ritor1
parents:
diff changeset
274 int v38; // eax@16
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
275 //signed __int64 v40; // qtt@18
0
Ritor1
parents:
diff changeset
276 int v41; // eax@18
Ritor1
parents:
diff changeset
277 int v42; // ecx@18
Ritor1
parents:
diff changeset
278 int v43; // eax@18
Ritor1
parents:
diff changeset
279 unsigned __int64 v44; // qax@18
1029
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
280 //double v45; // st7@18
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
281 //int v46; // ecx@18
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
282 //float v47; // ST18_4@18
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
283 //unsigned __int64 v48; // qax@18
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
284 int y_int_; // [sp+10h] [bp-40h]@2
0
Ritor1
parents:
diff changeset
285 int a2; // [sp+18h] [bp-38h]@10
Ritor1
parents:
diff changeset
286 int x_int; // [sp+20h] [bp-30h]@2
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
287 int z_int_; // [sp+24h] [bp-2Ch]@2
0
Ritor1
parents:
diff changeset
288 int z_int_4; // [sp+28h] [bp-28h]@8
Ritor1
parents:
diff changeset
289 int z; // [sp+3Ch] [bp-14h]@3
Ritor1
parents:
diff changeset
290 double a5; // [sp+40h] [bp-10h]@4
Ritor1
parents:
diff changeset
291 int a6; // [sp+48h] [bp-8h]@4
Ritor1
parents:
diff changeset
292 int y; // [sp+4Ch] [bp-4h]@3
Ritor1
parents:
diff changeset
293
Ritor1
parents:
diff changeset
294 pParticle = &this->pParticles[uParticleID];
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
295 if (pParticle->type == ParticleType_Invalid)
0
Ritor1
parents:
diff changeset
296 return 0;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
297 //uParticleID = LODWORD(pParticle->x);
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
298 //v56 = *(float *)&uParticleID + 6.7553994e15;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
299 x_int = floorf(pParticle->x + 0.5f);
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
300 //uParticleID = LODWORD(pParticle->y);
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
301 //y_int_ = *(float *)&uParticleID + 6.7553994e15;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
302 y_int_ = floorf(pParticle->y + 0.5f);
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
303 //uParticleID = LODWORD(pParticle->z);
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
304 //z_int_ = *(float *)&uParticleID + 6.7553994e15;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
305 z_int_ = floorf(pParticle->z + 0.5f);
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
306 /*if ( !pRenderer->pRenderD3D )
0
Ritor1
parents:
diff changeset
307 {
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
308 if (pGame->pIndoorCameraD3D->sRotationX)
0
Ritor1
parents:
diff changeset
309 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
310 if (pParticle->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
311 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
312 //v11 = pParticle->_x + 6.7553994e15;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
313 int _uParticleID = (int)(floorf(pParticle->_x + 0.5f) - pBLVRenderParams->vPartyPos.x) << 16;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
314 //v12 = pParticle->_y + 6.7553994e15;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
315 y = (int)(floorf(pParticle->_y + 0.5f) - pBLVRenderParams->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
316 z = (unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
317 HIDWORD(a5) = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16)
0
Ritor1
parents:
diff changeset
318 - z;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
319 a6 = (unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
320 //v13 = pParticle->_z + 6.7553994e15;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
321 _uParticleID = (int)(floorf(pParticle->_z + 0.5f) - pBLVRenderParams->vPartyPos.z) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
322 z = ((unsigned __int64)(SHIDWORD(a5) * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16)
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
323 - ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16);
0
Ritor1
parents:
diff changeset
324 v14 = z;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
325 HIDWORD(v13) = (unsigned __int64)(SHIDWORD(a5) * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
326 HIDWORD(a5) = (unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
327 //LODWORD(v15) = pBLVRenderParams->field_40 << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
328 //HIDWORD(v15) = pBLVRenderParams->field_40 >> 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
329 //v16 = v15 / z;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
330 v16 = fixpoint_div(pBLVRenderParams->field_40, z);
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
331 v17 = (unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
332 pParticle->_screenspace_scale = v16;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
333 _uParticleID = (unsigned __int64)(v16 * (signed __int64)(a6 + v17)) >> 16;
0
Ritor1
parents:
diff changeset
334 LODWORD(v18) = pBLVRenderParams->uViewportCenterX
Ritor1
parents:
diff changeset
335 - ((signed int)((unsigned __int64)(v16 * (signed __int64)(a6 + v17)) >> 16) >> 16);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
336 v19 = pParticle->_screenspace_scale;
0
Ritor1
parents:
diff changeset
337 pParticle->uScreenSpaceZ = v18;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
338 _uParticleID = (unsigned __int64)(v19 * (signed __int64)(HIDWORD(v13) + HIDWORD(a5))) >> 16;
0
Ritor1
parents:
diff changeset
339 v20 = pBLVRenderParams->uViewportCenterY
Ritor1
parents:
diff changeset
340 - ((signed int)((unsigned __int64)(v19 * (signed __int64)(HIDWORD(v13) + HIDWORD(a5))) >> 16) >> 16);
Ritor1
parents:
diff changeset
341 pParticle->sZValue2 = v14;
Ritor1
parents:
diff changeset
342 pParticle->uScreenSpaceW = v20;
Ritor1
parents:
diff changeset
343 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
344 int _uParticleID = (x_int - pBLVRenderParams->vPartyPos.x) << 16;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
345 y = (y_int_ - pBLVRenderParams->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
346 HIDWORD(a5) = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16)
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
347 - ((unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16);
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
348 a6 = (unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
349 z_int_4 = (unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
350 _uParticleID = (z_int_ - pBLVRenderParams->vPartyPos.z) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
351 v21 = (unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
352 v22 = ((unsigned __int64)(SHIDWORD(a5) * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) - v21;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
353 z = ((unsigned __int64)(SHIDWORD(a5) * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16) - v21;
0
Ritor1
parents:
diff changeset
354 if ( v22 < (signed int)0x40000u || v22 > (signed int)0x1F400000u )
Ritor1
parents:
diff changeset
355 return 0;
Ritor1
parents:
diff changeset
356 v23 = a6 + z_int_4;
Ritor1
parents:
diff changeset
357 a2 = a6 + z_int_4;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
358 v24 = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_x) >> 16)
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
359 + ((unsigned __int64)(SHIDWORD(a5) * (signed __int64)pGame->pIndoorCameraD3D->int_sine_x) >> 16);
0
Ritor1
parents:
diff changeset
360 }
Ritor1
parents:
diff changeset
361 else
Ritor1
parents:
diff changeset
362 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
363 if (pParticle->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
364 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
365 //v25 = pParticle->_x + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
366 int _uParticleID = ((int)floorf(pParticle->_x + 0.5f) - pBLVRenderParams->vPartyPos.x) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
367 //v26 = pParticle->_y + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
368 y = ((int)floorf(pParticle->_y + 0.5f) - pBLVRenderParams->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
369 auto _hiword_v25 = (__int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
370 v27 = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - _hiword_v25;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
371 z = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - _hiword_v25;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
372 v28 = (unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
373 //a5 = pParticle->_z + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
374 v29 = ((int)floorf(pParticle->_z + 0.5f) - pBLVRenderParams->vPartyPos.z) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
375 //LODWORD(v30) = pBLVRenderParams->field_40 << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
376 //HIDWORD(v30) = pBLVRenderParams->field_40 >> 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
377 //v31 = v30 / z;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
378 v31 = fixpoint_div(pBLVRenderParams->field_40, z);
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
379 v32 = (unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
380 pParticle->_screenspace_scale = v31;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
381 _uParticleID = (unsigned __int64)(v31 * (signed __int64)(v28 + v32)) >> 16;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
382 LODWORD(v33) = pBLVRenderParams->uViewportCenterX - ((signed int)((unsigned __int64)(v31 * (signed __int64)(v28 + v32)) >> 16) >> 16);
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
383 //v34 = pParticle->_screenspace_scale;
0
Ritor1
parents:
diff changeset
384 pParticle->uScreenSpaceZ = v33;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
385 v35 = pBLVRenderParams->uViewportCenterY - ((signed int)((unsigned __int64)(pParticle->_screenspace_scale * (signed __int64)v29) >> 16) >> 16);
0
Ritor1
parents:
diff changeset
386 pParticle->sZValue2 = v27;
Ritor1
parents:
diff changeset
387 pParticle->uScreenSpaceW = v35;
Ritor1
parents:
diff changeset
388 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
389 int _uParticleID = (x_int - pBLVRenderParams->vPartyPos.x) << 16;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
390 y = (y_int_ - pBLVRenderParams->vPartyPos.y) << 16;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
391 v36 = (unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
392 v22 = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v36;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
393 z = ((unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16) - v36;
0
Ritor1
parents:
diff changeset
394 if ( v22 < 262144 || v22 > 524288000 )
Ritor1
parents:
diff changeset
395 return 0;
1642
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
396 v37 = (unsigned __int64)((signed int)_uParticleID * (signed __int64)pGame->pIndoorCameraD3D->int_sine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
397 _uParticleID = (unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16;
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
398 v23 = v37 + ((unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16);
8971dc85b8fb More camera unifications.
Nomad
parents: 1640
diff changeset
399 a2 = v37 + ((unsigned __int64)(y * (signed __int64)pGame->pIndoorCameraD3D->int_cosine_y) >> 16);
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
400 v24 = (z_int_ - pBLVRenderParams->vPartyPos.z) << 16;
0
Ritor1
parents:
diff changeset
401 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
402 int _uParticleID = abs(v23);
0
Ritor1
parents:
diff changeset
403 v38 = abs(v22);
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
404 if ( v38 >= (signed int)_uParticleID )
0
Ritor1
parents:
diff changeset
405 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
406 //LODWORD(v40) = pBLVRenderParams->field_40 << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
407 //HIDWORD(v40) = pBLVRenderParams->field_40 >> 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
408 v41 = fixpoint_div(pBLVRenderParams->field_40, z);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
409 pParticle->_screenspace_scale = v41;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
410 _uParticleID = (unsigned __int64)(v41 * (signed __int64)a2) >> 16;
0
Ritor1
parents:
diff changeset
411 v42 = pBLVRenderParams->uViewportCenterX - ((signed int)((unsigned __int64)(v41 * (signed __int64)a2) >> 16) >> 16);
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
412 v43 = pParticle->_screenspace_scale;
0
Ritor1
parents:
diff changeset
413 pParticle->uScreenSpaceX = v42;
Ritor1
parents:
diff changeset
414 v44 = v43 * (signed __int64)v24;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
415 //uParticleID = v44 >> 16;
0
Ritor1
parents:
diff changeset
416 LODWORD(v44) = (signed int)(v44 >> 16) >> 16;
Ritor1
parents:
diff changeset
417 pParticle->uScreenSpaceY = pBLVRenderParams->uViewportCenterY - v44;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
418 pParticle->_screenspace_scale = fixpoint_mul(fixpoint_from_float(pParticle->flt_28), pParticle->_screenspace_scale);
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
419 pParticle->sZValue = z;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
420 return true;
0
Ritor1
parents:
diff changeset
421 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
422 return false;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
423 }*/
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
424
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
425 int x;
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
426 if ( !pGame->pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible_BLV(
0
Ritor1
parents:
diff changeset
427 x_int,
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
428 y_int_,
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
429 z_int_,
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
430 &x,
0
Ritor1
parents:
diff changeset
431 &y,
Ritor1
parents:
diff changeset
432 &z,
Ritor1
parents:
diff changeset
433 1) )
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
434 return false;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
435 pGame->pIndoorCameraD3D->Project(x, y, z, &pParticle->uScreenSpaceX, &pParticle->uScreenSpaceY);
0
Ritor1
parents:
diff changeset
436 pParticle->flt_5C = pGame->pIndoorCameraD3D->fov_x;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
437 //v4 = pParticle->flt_5C;
0
Ritor1
parents:
diff changeset
438 pParticle->flt_60 = pGame->pIndoorCameraD3D->fov_y;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
439 //v5 = v4 + 6.7553994e15;
0
Ritor1
parents:
diff changeset
440 LODWORD(v6) = 0;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
441 HIDWORD(v6) = floorf(pParticle->flt_5C + 0.5f);
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
442 //v7 = pParticle->flt_28;
1029
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
443 //pParticle->_screenspace_scale = v6 / x;
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
444 //v8 = v7;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
445 pParticle->_screenspace_scale = fixpoint_mul(fixpoint_from_float(pParticle->flt_28), v6 / x);
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
446 pParticle->sZValue = x;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
447 return true;
0
Ritor1
parents:
diff changeset
448 }
Ritor1
parents:
diff changeset
449
Ritor1
parents:
diff changeset
450
Ritor1
parents:
diff changeset
451
Ritor1
parents:
diff changeset
452
Ritor1
parents:
diff changeset
453 //----- (0048B5B3) --------------------------------------------------------
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
454 bool ParticleEngine::ViewProject_TrueIfStillVisible_ODM(unsigned int uID)
0
Ritor1
parents:
diff changeset
455 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
456 //ParticleEngine *v2; // ST18_4@1
0
Ritor1
parents:
diff changeset
457 int v3; // ebx@1
Ritor1
parents:
diff changeset
458 int v4; // edi@1
Ritor1
parents:
diff changeset
459 int v5; // ecx@1
Ritor1
parents:
diff changeset
460 Particle *v6; // esi@1
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
461 //double v7; // ST14_8@2
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
462 //double v8; // ST34_8@4
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
463 //double v9; // ST3C_8@4
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
464 //int v10; // ST50_4@4
0
Ritor1
parents:
diff changeset
465 int v11; // ST44_4@4
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
466 //double v12; // ST48_8@4
0
Ritor1
parents:
diff changeset
467 signed __int64 v13; // qtt@4
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
468 //int v14; // eax@4
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
469 //int v15; // ST28_4@4
0
Ritor1
parents:
diff changeset
470 int v16; // edi@6
Ritor1
parents:
diff changeset
471 int v17; // eax@6
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
472 //double v18; // ST2C_8@8
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
473 //double v19; // ST34_8@8
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
474 //int v20; // ST50_4@8
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
475 //double v21; // ST34_8@8
0
Ritor1
parents:
diff changeset
476 signed __int64 v22; // qtt@8
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
477 //int v23; // eax@8
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
478 //int v24; // ST28_4@8
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
479 //int v25; // edx@8
0
Ritor1
parents:
diff changeset
480 int v26; // edx@9
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
481 //int v27; // eax@9
0
Ritor1
parents:
diff changeset
482 int v28; // ebx@12
Ritor1
parents:
diff changeset
483 signed __int64 v29; // qtt@13
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
484 //int v30; // eax@13
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
485 //int v31; // ST1C_4@13
1029
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
486 //double v32; // st7@13
0
Ritor1
parents:
diff changeset
487 signed int v33; // eax@13
1029
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
488 //int v34; // ecx@13
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
489 //float v35; // ST04_4@13
0
Ritor1
parents:
diff changeset
490 int v36; // eax@13
Ritor1
parents:
diff changeset
491 int v37; // esi@15
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
492 //double v39; // [sp+10h] [bp-40h]@2
0
Ritor1
parents:
diff changeset
493 int v40; // [sp+14h] [bp-3Ch]@12
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
494 //int v41; // [sp+1Ch] [bp-34h]@2
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
495 //double v42; // [sp+20h] [bp-30h]@2
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
496 //int v43; // [sp+24h] [bp-2Ch]@5
0
Ritor1
parents:
diff changeset
497 int v44; // [sp+2Ch] [bp-24h]@1
Ritor1
parents:
diff changeset
498 int v45; // [sp+40h] [bp-10h]@5
Ritor1
parents:
diff changeset
499 int X_4; // [sp+48h] [bp-8h]@5
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
500 //int v47; // [sp+4Ch] [bp-4h]@5
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
501 //int v48; // [sp+4Ch] [bp-4h]@9
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
502 //int uIDc; // [sp+58h] [bp+8h]@4
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
503 //int uIDd; // [sp+58h] [bp+8h]@4
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
504 //int uIDe; // [sp+58h] [bp+8h]@5
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
505 //int uIDa; // [sp+58h] [bp+8h]@5
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
506 //int uIDf; // [sp+58h] [bp+8h]@8
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
507 //int uIDb; // [sp+58h] [bp+8h]@9
0
Ritor1
parents:
diff changeset
508
1640
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
509 v3 = stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationX);
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
510 v44 = stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationX);
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
511 v4 = stru_5C6E00->Cos(pGame->pIndoorCameraD3D->sRotationY);
afc1c3514dd5 Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents: 1638
diff changeset
512 v5 = stru_5C6E00->Sin(pGame->pIndoorCameraD3D->sRotationY);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
513
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
514 v6 = &pParticles[uID];
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
515 if (v6->type == ParticleType_Invalid)
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
516 return false;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
517
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
518 //v7 = v6->x + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
519 //v41 = LODWORD(v7);
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
520 //v39 = v6->y + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
521 //v42 = v6->z + 6.7553994e15;
0
Ritor1
parents:
diff changeset
522 if ( v3 )
Ritor1
parents:
diff changeset
523 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
524 if (v6->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
525 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
526 //v8 = v6->_x + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
527 //uIDc = (LODWORD(v8) - pIndoorCamera->pos.x) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
528 //v9 = v6->_y + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
529 //v10 = (LODWORD(v9) - pIndoorCamera->pos.y) << 16;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
530 v11 = fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v4) + fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v5);
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
531 //HIDWORD(v8) = fixpoint_sub_unknown(v6->x - pIndoorCamera->pos.x, v5);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
532 //v12 = v6->_z + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
533 //uIDd = (LODWORD(v12) - pIndoorCamera->pos.z) << 16;
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1643
diff changeset
534 long long _hidword_v12 = fixpoint_mul(v11, v3) + fixpoint_sub_unknown(v6->z - pGame->pIndoorCameraD3D->vPartyPos.z, v44);
0
Ritor1
parents:
diff changeset
535 LODWORD(v13) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
536 HIDWORD(v13) = SLOWORD(pODMRenderParams->int_fov_rad);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
537 //v14 = v13 / _hidword_v12;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
538 v6->_screenspace_scale = v13 / _hidword_v12;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
539 //v15 = v6->_screenspace_scale;
0
Ritor1
parents:
diff changeset
540 v6->uScreenSpaceX = pViewport->uScreenCenterX
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
541 - ((signed int)((unsigned __int64)(v6->_screenspace_scale
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
542 * (signed __int64)(fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v4)
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
543 - fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v5))) >> 16) >> 16);
0
Ritor1
parents:
diff changeset
544 v6->uScreenSpaceY = pViewport->uScreenCenterY
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
545 - ((signed int)((unsigned __int64)(v6->_screenspace_scale
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
546 * (signed __int64)(fixpoint_sub_unknown(v6->z - pGame->pIndoorCameraD3D->vPartyPos.z, v3)
0
Ritor1
parents:
diff changeset
547 - ((unsigned __int64)(v11 * (signed __int64)v44) >> 16))) >> 16) >> 16);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
548 v6->sZValue = _hidword_v12;
0
Ritor1
parents:
diff changeset
549 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
550 //uIDe = (v41 - pIndoorCamera->pos.x) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
551 //v47 = (LODWORD(v39) - pIndoorCamera->pos.y) << 16;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
552 v45 = fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v4) + fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v5);
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
553 //HIDWORD(v42) = fixpoint_sub_unknown(v6->x - pIndoorCamera->pos.x, v5);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
554 //uIDa = (LODWORD(v42) - pIndoorCamera->pos.z) << 16;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
555 X_4 = fixpoint_sub_unknown(v6->z - pGame->pIndoorCameraD3D->vPartyPos.z, v44) + fixpoint_mul(v45, v3);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
556 if ( X_4 < 0x40000 )
0
Ritor1
parents:
diff changeset
557 return 0;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
558 v16 = fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v4) - fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v5);
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
559 v17 = fixpoint_sub_unknown(v6->z - pGame->pIndoorCameraD3D->vPartyPos.z, v3) - fixpoint_mul(v45, v44);
0
Ritor1
parents:
diff changeset
560 }
Ritor1
parents:
diff changeset
561 else
Ritor1
parents:
diff changeset
562 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
563 if (v6->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
564 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
565 //v18 = v6->_x + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
566 //uIDf = (LODWORD(v18) - pIndoorCamera->pos.x) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
567 //v19 = v6->_y + 6.7553994e15;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
568 //v20 = (LODWORD(v19) - pIndoorCamera->pos.y) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
569 //v21 = v6->_z + 6.7553994e15;
0
Ritor1
parents:
diff changeset
570 LODWORD(v22) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
571 HIDWORD(v22) = SLOWORD(pODMRenderParams->int_fov_rad);
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1643
diff changeset
572 long long _var_123 = fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v4) + fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v5);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
573 //v23 = v22 / _var_123;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
574 v6->_screenspace_scale = v22 / _var_123;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
575 //v24 = v6->_screenspace_scale;
0
Ritor1
parents:
diff changeset
576 v6->uScreenSpaceX = pViewport->uScreenCenterX
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
577 - ((signed int)((unsigned __int64)(v6->_screenspace_scale
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
578 * (signed __int64)(fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v4)
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
579 - fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v5))) >> 16) >> 16);
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
580 v6->uScreenSpaceY = pViewport->uScreenCenterY - (fixpoint_sub_unknown(v6->z, v6->_screenspace_scale) >> 16);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
581 v6->sZValue = _var_123;
0
Ritor1
parents:
diff changeset
582 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
583 //uIDb = (v41 - pIndoorCamera->pos.x) << 16;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
584 //v48 = (LODWORD(v39) - pIndoorCamera->pos.y) << 16;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
585 v26 = fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v5);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
586 //v27 = v26 + ((unsigned __int64)(uIDb * (signed __int64)v4) >> 16);
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
587 X_4 = v26 + fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v4);
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
588 if ( X_4 < 0x40000 || X_4 > (pODMRenderParams->uPickDepth - 1000) << 16 )
0
Ritor1
parents:
diff changeset
589 return 0;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
590 v17 = v6->z;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
591 v16 = fixpoint_sub_unknown(v6->y - pGame->pIndoorCameraD3D->vPartyPos.y, v4) - fixpoint_sub_unknown(v6->x - pGame->pIndoorCameraD3D->vPartyPos.x, v5);
0
Ritor1
parents:
diff changeset
592 }
Ritor1
parents:
diff changeset
593 v40 = v17;
Ritor1
parents:
diff changeset
594 v28 = abs(v16);
Ritor1
parents:
diff changeset
595 if ( abs(X_4) >= v28 )
Ritor1
parents:
diff changeset
596 {
Ritor1
parents:
diff changeset
597 LODWORD(v29) = 0;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
598 HIDWORD(v29) = SLOWORD(pODMRenderParams->int_fov_rad);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
599 //v30 = v29 / X_4;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
600 v6->_screenspace_scale = v29 / X_4;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
601 //v31 = v6->_screenspace_scale;
0
Ritor1
parents:
diff changeset
602 v6->uScreenSpaceX = pViewport->uScreenCenterX
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
603 - ((signed int)((unsigned __int64)(v6->_screenspace_scale * (signed __int64)v16) >> 16) >> 16);
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
604 v33 = (signed int)((unsigned __int64)(v6->_screenspace_scale * (signed __int64)v40) >> 16) >> 16;
1029
c94d6a37d298 Pointing a face with mouse fixed.
Nomad
parents: 1016
diff changeset
605 //v34 = pViewport->uScreenCenterY - v33;
0
Ritor1
parents:
diff changeset
606 v6->uScreenSpaceY = pViewport->uScreenCenterY - v33;
1643
7182930263b3 fixpoint functions renaming
zipi
parents: 1642
diff changeset
607 v6->_screenspace_scale = fixpoint_mul(fixpoint_from_float(v6->flt_28), v6->_screenspace_scale);
0
Ritor1
parents:
diff changeset
608 v6->sZValue = X_4;
Ritor1
parents:
diff changeset
609 v36 = v6->uScreenSpaceX;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 630
diff changeset
610 if ( v36 >= (signed int)pViewport->uViewportTL_X )
0
Ritor1
parents:
diff changeset
611 {
693
e0a1fccc89b1 map render fixes
Gloval
parents: 630
diff changeset
612 if ( v36 < (signed int)pViewport->uViewportBR_X )
0
Ritor1
parents:
diff changeset
613 {
Ritor1
parents:
diff changeset
614 v37 = v6->uScreenSpaceY;
693
e0a1fccc89b1 map render fixes
Gloval
parents: 630
diff changeset
615 if ( v37 >= (signed int)pViewport->uViewportTL_Y )
0
Ritor1
parents:
diff changeset
616 {
693
e0a1fccc89b1 map render fixes
Gloval
parents: 630
diff changeset
617 if ( v37 < (signed int)pViewport->uViewportBR_Y )
0
Ritor1
parents:
diff changeset
618 return 1;
Ritor1
parents:
diff changeset
619 }
Ritor1
parents:
diff changeset
620 }
Ritor1
parents:
diff changeset
621 }
Ritor1
parents:
diff changeset
622 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
623 return false;
0
Ritor1
parents:
diff changeset
624 }
Ritor1
parents:
diff changeset
625
Ritor1
parents:
diff changeset
626 //----- (0048BBA6) --------------------------------------------------------
Ritor1
parents:
diff changeset
627 void ParticleEngine::DrawParticles_BLV()
Ritor1
parents:
diff changeset
628 {
Ritor1
parents:
diff changeset
629 int v11; // eax@18
Ritor1
parents:
diff changeset
630 int v12; // ecx@20
Ritor1
parents:
diff changeset
631 int v13; // edx@20
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
632 //Particle *v14; // eax@28
0
Ritor1
parents:
diff changeset
633 RenderBillboardTransform_local0 v15; // [sp+Ch] [bp-58h]@1
Ritor1
parents:
diff changeset
634
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1980
diff changeset
635 v15.sParentBillboardID = -1;
0
Ritor1
parents:
diff changeset
636
Ritor1
parents:
diff changeset
637 for (uint i = uStartParticle; i < uEndParticle; ++i)
Ritor1
parents:
diff changeset
638 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1643
diff changeset
639 Particle* p = &pParticles[i];
0
Ritor1
parents:
diff changeset
640
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
641 if (p->type == ParticleType_Invalid)
0
Ritor1
parents:
diff changeset
642 continue;
Ritor1
parents:
diff changeset
643
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
644 if (!ViewProject_TrueIfStillVisible_BLV(i))
0
Ritor1
parents:
diff changeset
645 continue;
Ritor1
parents:
diff changeset
646
Ritor1
parents:
diff changeset
647 if (p->uScreenSpaceX >= pBLVRenderParams->uViewportX &&
Ritor1
parents:
diff changeset
648 p->uScreenSpaceX < pBLVRenderParams->uViewportZ &&
Ritor1
parents:
diff changeset
649 p->uScreenSpaceY >= pBLVRenderParams->uViewportY &&
Ritor1
parents:
diff changeset
650 p->uScreenSpaceY < pBLVRenderParams->uViewportW)
Ritor1
parents:
diff changeset
651 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
652 if (!pRenderer->pRenderD3D)
0
Ritor1
parents:
diff changeset
653 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
654 __debugbreak();
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
655 /*v11 = 13 * p->_screenspace_scale >> 16;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
656 if ( v11 > 30 )
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
657 v11 = 30;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
658 v12 = p->uScreenSpaceY - v11;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
659 v13 = p->uScreenSpaceX - (v11 >> 1);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
660 if ( v13 + v11 < (signed int)pViewport->uViewportTL_X
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
661 || v13 >= (signed int)pViewport->uViewportBR_X
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
662 || v12 + v11 < (signed int)pViewport->uViewportTL_Y
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
663 || v12 >= (signed int)pViewport->uViewportBR_Y )
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
664 {
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
665 ;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
666 }
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
667 else
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
668 {
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
669 pRenderer->MakeParticleBillboardAndPush_BLV_Software(v13, v12, p->sZValue, p->uLightColor_bgr, v11);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
670 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
671 }
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
672 //else
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
673
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
674 if (p->type & ParticleType_Diffuse)
0
Ritor1
parents:
diff changeset
675 {
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
676 //v14 = &pParticles[i];
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
677 v15._screenspace_x_scaler_packedfloat = p->_screenspace_scale / 4;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
678 v15._screenspace_y_scaler_packedfloat = p->_screenspace_scale / 4;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
679 v15.uScreenSpaceX = p->uScreenSpaceX;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
680 v15.uScreenSpaceY = p->uScreenSpaceY;
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
681 v15.sZValue = p->sZValue;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
682 pRenderer->MakeParticleBillboardAndPush_BLV(&v15, 0, p->uLightColor_bgr, p->angle);
0
Ritor1
parents:
diff changeset
683 return;
Ritor1
parents:
diff changeset
684 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
685 if (p->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
686 {
Ritor1
parents:
diff changeset
687 if (pLines.uNumLines < 100)
Ritor1
parents:
diff changeset
688 {
Ritor1
parents:
diff changeset
689 pLines.pLineVertices[2 * pLines.uNumLines].pos.x = p->uScreenSpaceX;
Ritor1
parents:
diff changeset
690 pLines.pLineVertices[2 * pLines.uNumLines].pos.y = p->uScreenSpaceY;
Ritor1
parents:
diff changeset
691 pLines.pLineVertices[2 * pLines.uNumLines].pos.z = 1.0 - 1.0 / ((short)p->sZValue * 0.061758894);
Ritor1
parents:
diff changeset
692 pLines.pLineVertices[2 * pLines.uNumLines].rhw = 1.0;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
693 pLines.pLineVertices[2 * pLines.uNumLines].diffuse = p->uLightColor_bgr;
0
Ritor1
parents:
diff changeset
694 pLines.pLineVertices[2 * pLines.uNumLines].specular = 0;
Ritor1
parents:
diff changeset
695 pLines.pLineVertices[2 * pLines.uNumLines].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
696 pLines.pLineVertices[2 * pLines.uNumLines].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
697
Ritor1
parents:
diff changeset
698 pLines.pLineVertices[2 * pLines.uNumLines + 1].pos.x = p->uScreenSpaceZ;
Ritor1
parents:
diff changeset
699 pLines.pLineVertices[2 * pLines.uNumLines + 1].pos.y = p->uScreenSpaceW;
Ritor1
parents:
diff changeset
700 pLines.pLineVertices[2 * pLines.uNumLines + 1].pos.z = 1.0 - 1.0 / ((short)p->sZValue2 * 0.061758894);
Ritor1
parents:
diff changeset
701 pLines.pLineVertices[2 * pLines.uNumLines + 1].rhw = 1.0;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
702 pLines.pLineVertices[2 * pLines.uNumLines + 1].diffuse = p->uLightColor_bgr;
0
Ritor1
parents:
diff changeset
703 pLines.pLineVertices[2 * pLines.uNumLines + 1].specular = 0;
Ritor1
parents:
diff changeset
704 pLines.pLineVertices[2 * pLines.uNumLines + 1].texcoord.x = 0.0;
Ritor1
parents:
diff changeset
705 pLines.pLineVertices[2 * pLines.uNumLines++ + 1].texcoord.y = 0.0;
Ritor1
parents:
diff changeset
706 }
Ritor1
parents:
diff changeset
707 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
708 if (p->type & ParticleType_Bitmap)
0
Ritor1
parents:
diff changeset
709 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
710 v15._screenspace_x_scaler_packedfloat = p->_screenspace_scale;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
711 v15._screenspace_y_scaler_packedfloat = p->_screenspace_scale;
0
Ritor1
parents:
diff changeset
712 v15.uScreenSpaceX = p->uScreenSpaceX;
Ritor1
parents:
diff changeset
713 v15.uScreenSpaceY = p->uScreenSpaceY;
Ritor1
parents:
diff changeset
714 v15.sZValue = p->sZValue;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
715 pRenderer->MakeParticleBillboardAndPush_BLV(&v15, pBitmaps_LOD->pHardwareTextures[p->uTextureID], p->uLightColor_bgr, p->angle);
0
Ritor1
parents:
diff changeset
716 }
619
574cc56e05e9 ParticleEngine crash in temple
Nomad
parents: 573
diff changeset
717 if (p->type & ParticleType_Sprite)
0
Ritor1
parents:
diff changeset
718 {
144
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
719 v15._screenspace_x_scaler_packedfloat = p->_screenspace_scale;
8ab4484c22e0 Billboard drawing's up (actors, decorations, misc sprites)
Nomad
parents: 64
diff changeset
720 v15._screenspace_y_scaler_packedfloat = p->_screenspace_scale;
0
Ritor1
parents:
diff changeset
721 v15.uScreenSpaceX = p->uScreenSpaceX;
Ritor1
parents:
diff changeset
722 v15.uScreenSpaceY = p->uScreenSpaceY;
Ritor1
parents:
diff changeset
723 v15.sZValue = p->sZValue;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
724 pRenderer->MakeParticleBillboardAndPush_BLV(&v15, pSprites_LOD->pHardwareSprites[p->uTextureID].pTexture, p->uLightColor_bgr, p->angle);
0
Ritor1
parents:
diff changeset
725 }
Ritor1
parents:
diff changeset
726 }
Ritor1
parents:
diff changeset
727 }
Ritor1
parents:
diff changeset
728 }
Ritor1
parents:
diff changeset
729
Ritor1
parents:
diff changeset
730 //----- (0048BEEF) --------------------------------------------------------
Ritor1
parents:
diff changeset
731 void ParticleEngine::DrawParticles_ODM()
Ritor1
parents:
diff changeset
732 {
62
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
733 ParticleEngine *pParticleEngine; // esi@1
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
734 //int pParticleNum; // eax@1
0
Ritor1
parents:
diff changeset
735 unsigned __int8 v3; // zf@1
Ritor1
parents:
diff changeset
736 char v4; // sf@1
Ritor1
parents:
diff changeset
737 unsigned __int8 v5; // of@1
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
738 //char *v7; // edi@2
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
739 //int v8; // eax@6
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
740 //signed int pNumLines; // eax@8
0
Ritor1
parents:
diff changeset
741 int v10; // eax@14
Ritor1
parents:
diff changeset
742 int v11; // ecx@16
Ritor1
parents:
diff changeset
743 int v12; // edx@16
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
744 //Particle *pParticle; // eax@24
62
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
745 RenderBillboardTransform_local0 pBillboard; // [sp+Ch] [bp-58h]@1
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
746 //int v15; // [sp+5Ch] [bp-8h]@9
0
Ritor1
parents:
diff changeset
747 int v16; // [sp+60h] [bp-4h]@1
Ritor1
parents:
diff changeset
748
2002
2e6c63bdcfa9 RenderBillboardD3D initialization
zipi
parents: 1980
diff changeset
749 pBillboard.sParentBillboardID = -1;
62
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
750 pParticleEngine = this;
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
751 //v2 = this->uStartParticle;
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
752 //v5 = v2 > this->uEndParticle;// v5 = __OFSUB__(v2, this->uEndParticle);
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
753 //v3 = v2 == this->uEndParticle;
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
754 //v4 = v2 - this->uEndParticle < 0;
80484cf3a683 23.01.13 DrawParticles_ODM
Ritor1
parents: 61
diff changeset
755 //v16 = this->uStartParticle;
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
756 for (uint i = uStartParticle; i <= uEndParticle; ++i)
0
Ritor1
parents:
diff changeset
757 {
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1643
diff changeset
758 Particle* particle = &pParticles[i];
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
759 if (particle->type == ParticleType_Invalid || !ViewProject_TrueIfStillVisible_ODM(i))
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
760 continue;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
761
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
762 if ( !pRenderer->pRenderD3D )
0
Ritor1
parents:
diff changeset
763 {
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
764 __debugbreak();
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
765 /*v10 = 13 * particle->_screenspace_scale >> 16;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
766 if ( v10 > 30 )
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
767 v10 = 30;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
768 v11 = particle->uScreenSpaceX - (v10 >> 1);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
769 v12 = particle->uScreenSpaceY - v10;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
770 if ( v11 + v10 < pViewport->uViewportTL_X
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
771 || v11 >= pViewport->uViewportBR_X
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
772 || particle->uScreenSpaceY < pViewport->uViewportTL_Y
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
773 || v12 >= (signed int)pViewport->uViewportBR_Y )
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
774 {
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
775 ;
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
776 }
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
777 else
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
778 {
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
779 pRenderer->MakeParticleBillboardAndPush_BLV_Software(v11, v12, particle->sZValue, particle->uLightColor_bgr, v10);
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
780 }*/
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
781 }
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
782 //else
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
783
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
784 //v8 = *(_DWORD *)(v7 - 82);
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
785 if (particle->type & ParticleType_Diffuse)
0
Ritor1
parents:
diff changeset
786 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
787 pBillboard._screenspace_x_scaler_packedfloat = particle->_screenspace_scale / 4;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
788 pBillboard._screenspace_y_scaler_packedfloat = particle->_screenspace_scale / 4;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
789 pBillboard.uScreenSpaceX = particle->uScreenSpaceX;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
790 pBillboard.uScreenSpaceY = particle->uScreenSpaceY;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
791 pBillboard.sZValue = particle->sZValue;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
792 pRenderer->MakeParticleBillboardAndPush_ODM(&pBillboard, 0, particle->uLightColor_bgr, particle->angle);
0
Ritor1
parents:
diff changeset
793 return;
Ritor1
parents:
diff changeset
794 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
795 if (particle->type & ParticleType_Line)
0
Ritor1
parents:
diff changeset
796 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
797 if (pLines.uNumLines < 100)
0
Ritor1
parents:
diff changeset
798 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
799 pLines.pLineVertices[2 * pLines.uNumLines].pos.x = particle->uScreenSpaceX;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
800 pLines.pLineVertices[2 * pLines.uNumLines].pos.y = particle->uScreenSpaceY;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
801 pLines.pLineVertices[2 * pLines.uNumLines].pos.z = 1.0 - 1.0 / ((double)particle->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
802 pLines.pLineVertices[2 * pLines.uNumLines].rhw = 1.0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
803 pLines.pLineVertices[2 * pLines.uNumLines].diffuse = particle->uLightColor_bgr;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
804 pLines.pLineVertices[2 * pLines.uNumLines].specular = 0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
805 pLines.pLineVertices[2 * pLines.uNumLines].texcoord.x = 0.0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
806 pLines.pLineVertices[2 * pLines.uNumLines].texcoord.y = 0.0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
807
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
808 pLines.pLineVertices[2 * pLines.uNumLines + 1].pos.x = particle->uScreenSpaceZ;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
809 pLines.pLineVertices[2 * pLines.uNumLines + 1].pos.y = particle->uScreenSpaceW;
1637
2c71fa8913d2 class OutdoorCamera -> ODMRenderParams
Nomad
parents: 1410
diff changeset
810 pLines.pLineVertices[2 * pLines.uNumLines + 1].pos.z = 1.0 - 1.0 / ((double)particle->zbuffer_depth * 1000.0 / (double)pODMRenderParams->shading_dist_mist);
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
811 pLines.pLineVertices[2 * pLines.uNumLines + 1].rhw = 1.0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
812 pLines.pLineVertices[2 * pLines.uNumLines + 1].diffuse = particle->uLightColor_bgr;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
813 pLines.pLineVertices[2 * pLines.uNumLines + 1].specular = 0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
814 pLines.pLineVertices[2 * pLines.uNumLines + 1].texcoord.x = 0.0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
815 pLines.pLineVertices[2 * pLines.uNumLines + 1].texcoord.y = 0.0;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
816 pLines.uNumLines++;
0
Ritor1
parents:
diff changeset
817 }
Ritor1
parents:
diff changeset
818 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
819 if (particle->type & ParticleType_Bitmap)
0
Ritor1
parents:
diff changeset
820 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
821 pBillboard._screenspace_x_scaler_packedfloat = particle->_screenspace_scale;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
822 pBillboard._screenspace_y_scaler_packedfloat = particle->_screenspace_scale;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
823 pBillboard.uScreenSpaceX = particle->uScreenSpaceX;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
824 pBillboard.uScreenSpaceY = particle->uScreenSpaceY;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
825 pBillboard.sZValue = particle->sZValue;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
826 pRenderer->MakeParticleBillboardAndPush_ODM(&pBillboard, pBitmaps_LOD->pHardwareTextures[particle->uTextureID], particle->uLightColor_bgr, particle->angle);
0
Ritor1
parents:
diff changeset
827 }
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
828 if (particle->type & ParticleType_Sprite)
0
Ritor1
parents:
diff changeset
829 {
871
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
830 pBillboard._screenspace_x_scaler_packedfloat = particle->_screenspace_scale;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
831 pBillboard._screenspace_y_scaler_packedfloat = particle->_screenspace_scale;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
832 pBillboard.uScreenSpaceX = particle->uScreenSpaceX;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
833 pBillboard.uScreenSpaceY = particle->uScreenSpaceY;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
834 pBillboard.sZValue = particle->sZValue;
710cf848ad24 Particle engine made working.
Nomad
parents: 693
diff changeset
835 pRenderer->MakeParticleBillboardAndPush_ODM(&pBillboard, pSprites_LOD->pHardwareSprites[particle->uTextureID].pTexture, particle->uLightColor_bgr, particle->angle);
2069
259df09dfb50 32bits almost there
Nomad
parents: 2044
diff changeset
836 }
0
Ritor1
parents:
diff changeset
837 }
Ritor1
parents:
diff changeset
838 }