-
Notifications
You must be signed in to change notification settings - Fork 21
/
phys.cpp
461 lines (396 loc) · 12.6 KB
/
phys.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
#include "phys.h"
#include "main.h"
//=============================================================
//
// SimplePhysBlocks using own basic physics
//
//=============================================================
SimplePhysBlock::SimplePhysBlock(Context* context)
{
this->context = context;
ResourceCache* cache = context->GetSubsystem<ResourceCache>();
node = context->GetSubsystem<Game>()->scene_->CreateChild("Box");
node->SetPosition(Vector3((float)(rand()%2000+2000), (float)(rand()%2000)+2000, (float)(rand()%2000+2000)));
scale = 0.2+(float)(rand()%11)/10.0;
node->SetScale(scale);
model = node->CreateComponent<StaticModel>();
model->SetModel(cache->GetResource<Model>("Models/Box.mdl"));
model->SetMaterial(cache->GetResource<Material>("Materials/vcolors2.xml"));
model->SetCastShadows(true);
model->SetEnabled(false);
free = true;
}
SimplePhysBlock::~SimplePhysBlock()
{
}
bool SimplePhysBlock::IsTimeout()
{
return life <= 0? true: false;
}
void SimplePhysBlock::Bounce(Vector3 pos)
{
// World *w = context->GetSubsystem<Game>()->world;
// bool bounced = false;
// //if (w->Exists(pos.x_, pos.y_+1, pos.z_) || w->Exists(pos.x_, pos.y_, pos.z_) || (bounces > 0 && pos.y_ <= 1)) {
// if (w->Exists(pos.x_, pos.y_, pos.z_) || w->Exists(pos.x_, pos.y_+1, pos.z_) || (bounces > 0 && pos.y_ <= 1)) {
// bounced = true;
// vy *= e;
// }
// if (w->Exists(pos.x_-1, pos.y_, pos.z_)) {
// bounced = true;
// vx *= -e;
// }
// if (w->Exists(pos.x_+1, pos.y_, pos.z_)) {
// bounced = true;
// vx *= e;
// }
// if (w->Exists(pos.x_, pos.y_, pos.z_-1)) {
// bounced = true;
// vz *= -e;
// }
// if (w->Exists(pos.x_, pos.y_, pos.z_+1)) {
// bounced = true;
// vz *= e;
// }
// if(bounced) {
// bounces--;
// e += 0.05;
// }
}
void SimplePhysBlock::Update(float time, float delta)
{
if(free) {
return;
}
life -= delta;
Vector3 p = node->GetPosition();
if (life > 0 && p.y_ > -50) {
World *w = context->GetSubsystem<Game>()->world;
if(w->Exists(p.x_, p.y_, p.z_)) { // && scale
vy *= -1;
vy /= 1.8;
vx /= 1.5;
vz /= 1.5;
// if(fly_time.GetMSec(true) > 2000) {
// //w->Explode(p.x_, p.y_, p.z_, scale*5);
// // Disable();
// }
if(ptype == constants::PARTICLE_BLOOD) {
Color c = GetBloodColor();
if(Random(10) > 2) {
w->AddBlock((int)round(p.x_), (int)round(p.y_-1), (int)round(p.z_), c.r_, c.g_, c.b_);
}
if(Random(10) > 2) {
w->AddBlock((int)round(p.x_+1), (int)round(p.y_-1), (int)round(p.z_), c.r_, c.g_, c.b_);
}
if(Random(10) > 2) {
w->AddBlock((int)round(p.x_), (int)round(p.y_-1), (int)round(p.z_+1), c.r_, c.g_, c.b_);
}
if(Random(10) > 2) {
w->AddBlock((int)round(p.x_), (int)round(p.y_-1), (int)round(p.z_-1), c.r_, c.g_, c.b_);
}
if(Random(10) > 2) {
w->AddBlock((int)round(p.x_-1), (int)round(p.y_-1), (int)round(p.z_), c.r_, c.g_, c.b_);
}
}
}
vx += (fx/mass)*gravity * delta;
vy += (fy/mass)*gravity * delta;
vz += (fz/mass)*gravity * delta;
p.x_ += vx * delta;
p.y_ += vy * delta;
p.z_ += vz * delta;
node->SetPosition(p);
if(fx >= 0) {
fx -= 1.5;
if(fx < 0) {
fx = 0;
}
}
if(fx <= 0) {
fx += 1.5;
if(fx > 0) {
fx = 0;
}
}
if(fz >= 0) {
fz -= 1.5;
if(fz < 0) {
fz = 0;
}
}
if(fz <= 0) {
fz += 1.5;
if(fz > 0) {
fz = 0;
}
}
if((int)vx == 0 && (int)vz == 0) {
node->SetRotation(Quaternion(0,0,0,1));
Vector3 pos = node->GetPosition();
World *w = context->GetSubsystem<Game>()->world;
if(w->Exists((int)round(pos.x_), (int)round((pos.y_)), (int)round(pos.z_))) {
if((int)scale == 1) {
w->AddBlock((int)round(pos.x_), (int)round(pos.y_)+1, (int)round(pos.z_), color.x_, color.y_, color.z_);
}
Disable();
}
} else {
node->Pitch(vx);
node->Yaw(vy);
node->Roll(vz);
}
} else {
Disable();
}
}
void SimplePhysBlock::Disable()
{
// node->SetPosition(Vector3((float)(rand()%2000+2000), (float)(rand()%2000)+2000, (float)(rand()%2000+2000)));
//Node* n = node->GetChild("fire");
//ParticleEmitter *p = (ParticleEmitter*)n->GetComponent<ParticleEmitter>();
//std::cout << p << std::endl;
//p->SetEmitting(false);
// node->RemoveAllChildren("Light");
//3 node->RemoveChild(node->RemoveComponent(node->GetComponent<Light>());
//Node *n = node->GetChild("Light");
node->RemoveComponent(node->GetComponent<Light>());
model->SetEnabled(false);
free = true;
}
bool SimplePhysBlock::IsFree()
{
return free;
}
Vector4 SimplePhysBlock::GetColor()
{
Material* m = model->GetMaterial();
Variant v = m->GetShaderParameter("MatDiffColor");
return v.GetVector4();
}
Vector3 SimplePhysBlock::GetPosition()
{
return node->GetPosition();
}
void SimplePhysBlock::Set(Vector3 pos, Vector3 velocity, Vector3 color_, int power, int ptype_)
{
if(power == 0) {
power = 1;
}
model->SetEnabled(true);
node->SetPosition(pos);
color = color_;
SharedPtr<Material> m = model->GetMaterial()->Clone();
m->SetShaderParameter("MatDiffColor",Vector4(color.x_/255.0f, color.y_/255.0f, color.z_/255.0f, 0.2f));
model->SetMaterial(m);
ptype = ptype_;
free = false;
vx = 10-rand()%20;
vy = power*2+rand()%(power*2);
vz = 10-rand()%20;
fx = 0;
fy = 1+Random(20);
fz = 0;
mass = 0.5;
life = 5+rand()%10;
gravity = -9.82;
node->SetRotation(Quaternion(0,0,0,1));
fly_time = Timer();
if(ptype == constants::PARTICLE_FIRE && power > 1) {
if(Random(1000) < 10) {
ResourceCache* cache = context->GetSubsystem<ResourceCache>();
ParticleEmitter* emitter=node->CreateComponent<ParticleEmitter>();
emitter->SetEffect(cache->GetResource<ParticleEffect>("Particle/torch_fire.xml"));
if(Random(10) < 3) {
// Light
Light* light = node->CreateComponent<Light>();
light->SetLightType(LIGHT_POINT);
light->SetRange(5);
light->SetBrightness(1.2);
light->SetColor(Color(0.9,.5,0.0,1));
light->SetCastShadows(false);
}
}
} else if(ptype == constants::PARTICLE_BLOOD) {
Color c = GetBloodColor();
m->SetShaderParameter("MatDiffColor",Vector4(c.r_/255.0f, c.g_/255.0f, c.b_/255.0f, 1.0f));
}
fx = 20-Random(40);
fz = 20-Random(40);
// if(Random(10) < 2) {
// Node* n_smoke=node->CreateChild("smoke");
// n_smoke->Translate(Vector3(0, 0, 0));
// n_smoke->Scale(scale);
// ParticleEmitter* emitter2=n_particle->CreateComponent<ParticleEmitter>();
// emitter2->SetEffect(cache->GetResource<ParticleEffect>("Particle/smoke.xml"));
// }
}
//=============================================================
//
// Physblocs using the urho3d physics
//
//=============================================================
PhysBlock::PhysBlock(Context* context) //: LogicComponent(context)
{
this->context = context;
ResourceCache* cache = context->GetSubsystem<ResourceCache>();
node = context->GetSubsystem<Game>()->scene_->CreateChild("Box");
node->SetPosition(Vector3((float)(rand()%1000+1000), (float)(rand()%1000)+1000, (float)(rand()%1000+1000)));
float s = 0.1+(float)(rand()%11)/10.0;
node->SetScale(s);
model = node->CreateComponent<StaticModel>();
model->SetModel(cache->GetResource<Model>("Models/Box.mdl"));
model->SetMaterial(cache->GetResource<Material>("Materials/vcolors.xml"));
model->SetCastShadows(true);
// Create physics components, use a smaller mass also
shape = node->CreateComponent<CollisionShape>();
shape->SetBox(Vector3::ONE);
//shape->SetSphere(s);
body = node->CreateComponent<RigidBody>();
body->SetCollisionEventMode(COLLISION_NEVER);
body->SetMass(10.1f);
//body->SetLinearRestThreshold(5.0f);
//body->SetLinearDamping(0.4f);
// body->SetUseGravity(true);
body->SetFriction(30.0f);
body->SetRollingFriction(20.0f);
body->SetCollisionMask(1);
body->SetCollisionLayer(2);
model->SetEnabled(false);
free = true;
}
PhysBlock::~PhysBlock()
{
}
void PhysBlock::Disable()
{
//body->ReleaseBody();
// node->SetPosition(Vector3((float)(rand()%1000+1000), (float)(rand()%1000)+1000, (float)(rand()%1000+1000)));
model->SetEnabled(false);
free = true;
}
bool PhysBlock::IsFree()
{
return free;
}
bool PhysBlock::IsTimeout()
{
float end = context->GetSubsystem<Game>()->time->GetElapsedTime();
if(end >= end_time) {
//Disable();
return true;
}
return false;
}
bool PhysBlock::IsActive()
{
return body->IsActive();
}
Vector4 PhysBlock::GetColor()
{
Material* m = model->GetMaterial();
Variant v = m->GetShaderParameter("MatDiffColor");
//Vector4 c = v.GetVector4();
//return Vector3(c.x_, c.y_, c.z_);
return v.GetVector4();
}
Vector3 PhysBlock::GetPosition()
{
return body->GetPosition();
}
void PhysBlock::Set(Vector3 pos, Vector3 velocity, Vector3 color)
{
end_time = context->GetSubsystem<Game>()->time->GetElapsedTime() + (1+rand() % 5);
node->SetPosition(pos);
SharedPtr<Material> m = model->GetMaterial()->Clone();
m->SetShaderParameter("MatDiffColor",Vector4(color.x_/255.0f, color.y_/255.0f, color.z_/255.0f, 0.2f));
model->SetMaterial(m);
body->SetLinearVelocity(velocity*(float)OBJECT_VELOCITY);
//body->SetLinearVelocity(cameraNode_->GetRotation() * Vector3(0.0f, 0.25f, 1.0f) * OBJECT_VELOCITY);
model->SetEnabled(true);
free = false;
}
//=============================================================
//
// PhysPool
//
//=============================================================
PhysPool::PhysPool(Context* context, int maxBlocks, int maxSBlocks): LogicComponent(context)
{
for(int i = 0; i < maxBlocks; i++) {
blocks.push_back(new PhysBlock(context));
}
for(int i = 0; i < maxSBlocks; i++) {
simple_blocks.push_back(new SimplePhysBlock(context));
}
}
PhysPool::~PhysPool()
{
for(int i = 0; i < blocks.size(); i++) {
delete blocks[i];
}
for(int i = 0; i < simple_blocks.size(); i++) {
delete simple_blocks[i];
}
}
SimplePhysBlock* PhysPool::GetSimpleBlock(int idx)
{
return simple_blocks[idx];
}
PhysBlock* PhysPool::GetBlock(int idx)
{
return blocks[idx];
}
void PhysPool::Update(float time, float delta)
{
for(int i = 0; i < simple_blocks.size(); i++) {
simple_blocks[i]->Update(time, delta);
}
}
int PhysPool::SimpleSize()
{
return simple_blocks.size();
}
int PhysPool::Size()
{
return blocks.size();
}
void PhysPool::AddSimple(Vector3 pos, Vector3 velo, Vector3 color, int power, int type)
{
// Round-robin
if(++rr_sblock >= simple_blocks.size()) {
rr_sblock = 0;
}
if(!simple_blocks[rr_sblock]->free) {
simple_blocks[rr_sblock]->Disable();
}
simple_blocks[rr_sblock]->Set(pos, velo, color, power, type);
}
void PhysPool::Add(Vector3 pos, Vector3 velo, Vector3 color)
{
// Round-robin
if(++rr_block >= blocks.size()) {
rr_block = 0;
}
blocks[rr_block]->Set(pos, velo, color);
}
void PhysPool::AddSimpleRelative(Node* n, Vector3 pos, Vector3 velo, Vector3 color, int power)
{
// Round-robin
if(++rr_sblock >= simple_blocks.size()) {
rr_sblock = 0;
}
simple_blocks[rr_sblock]->node->SetParent(n);
simple_blocks[rr_sblock]->Set(pos, velo, color, power, 0);
simple_blocks[rr_sblock]->node->SetParent(context_->GetSubsystem<Game>()->scene_);
}
void PhysPool::AddRelative(Node* n, Vector3 pos, Vector3 velo, Vector3 color)
{
// Round-robin
if(++rr_block >= blocks.size()) {
rr_block = 0;
}
blocks[rr_block]->node->SetParent(n);
blocks[rr_block]->Set(pos, velo, color);
blocks[rr_block]->node->SetParent(context_->GetSubsystem<Game>()->scene_);
}