2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (C) 2013 Henry van Merode. All rights reserved.
|
|
|
|
Copyright (c) 2015-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
http://www.cocos2d-x.org
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "CCPUInterParticleCollider.h"
|
|
|
|
#include "extensions/Particle3D/PU/CCPUParticleSystem3D.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
// Constants
|
|
|
|
const float PUParticle3DInterParticleCollider::DEFAULT_ADJUSTMENT = 1.0f;
|
2021-12-25 10:04:45 +08:00
|
|
|
const PUParticle3DInterParticleCollider::InterParticleCollisionResponse
|
|
|
|
PUParticle3DInterParticleCollider::DEFAULT_COLLISION_RESPONSE =
|
|
|
|
PUParticle3DInterParticleCollider::IPCR_AVERAGE_VELOCITY;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------
|
2021-12-25 10:04:45 +08:00
|
|
|
PUParticle3DInterParticleCollider::PUParticle3DInterParticleCollider()
|
|
|
|
: PUBaseCollider(), _adjustment(DEFAULT_ADJUSTMENT), _interParticleCollisionResponse(DEFAULT_COLLISION_RESPONSE)
|
|
|
|
{}
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
PUParticle3DInterParticleCollider::~PUParticle3DInterParticleCollider(void) {}
|
2019-11-23 20:27:39 +08:00
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
float PUParticle3DInterParticleCollider::getAdjustment() const
|
|
|
|
{
|
|
|
|
return _adjustment;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void PUParticle3DInterParticleCollider::setAdjustment(float adjustment)
|
|
|
|
{
|
|
|
|
_adjustment = adjustment;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
2021-12-25 10:04:45 +08:00
|
|
|
PUParticle3DInterParticleCollider::InterParticleCollisionResponse
|
|
|
|
PUParticle3DInterParticleCollider::getInterParticleCollisionResponse() const
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
return _interParticleCollisionResponse;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
2021-12-25 10:04:45 +08:00
|
|
|
void PUParticle3DInterParticleCollider::setInterParticleCollisionResponse(
|
|
|
|
PUParticle3DInterParticleCollider::InterParticleCollisionResponse interParticleCollisionResponse)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
_interParticleCollisionResponse = interParticleCollisionResponse;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void PUParticle3DInterParticleCollider::prepare()
|
|
|
|
{
|
|
|
|
// Activate spatial hashing
|
2021-12-25 10:04:45 +08:00
|
|
|
// particleTechnique->setSpatialHashingUsed(true);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void PUParticle3DInterParticleCollider::unPrepare()
|
|
|
|
{
|
|
|
|
// Deactivate spatial hashing
|
2021-12-25 10:04:45 +08:00
|
|
|
// particleTechnique->setSpatialHashingUsed(false);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
2021-12-25 10:04:45 +08:00
|
|
|
bool PUParticle3DInterParticleCollider::validateAndExecuteSphereCollision(PUParticle3D* particle1,
|
|
|
|
PUParticle3D* particle2,
|
|
|
|
float /*timeElapsed*/)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
PUParticle3D* vp1 = static_cast<PUParticle3D*>(particle1);
|
|
|
|
PUParticle3D* vp2 = static_cast<PUParticle3D*>(particle2);
|
|
|
|
if ((vp1->position - vp2->position).length() < _adjustment * (vp1->radius + vp2->radius))
|
|
|
|
{
|
|
|
|
/** Collision detected.
|
|
|
|
@remarks
|
|
|
|
The collision response calculation isn't accurate, but gives an acceptable result.
|
|
|
|
*/
|
|
|
|
Vec3 n = vp1->position - vp2->position;
|
|
|
|
n.normalize();
|
2021-12-25 10:04:45 +08:00
|
|
|
switch (_interParticleCollisionResponse)
|
|
|
|
{
|
|
|
|
case IPCR_AVERAGE_VELOCITY:
|
|
|
|
{
|
|
|
|
// Use average velocity; this keeps the particles in movement.
|
|
|
|
float velocity1 = vp1->direction.length();
|
|
|
|
float velocity2 = vp2->direction.length();
|
|
|
|
float averageVelocity = 0.5f * (velocity1 + velocity2);
|
|
|
|
vp1->direction = averageVelocity * vp2->mass * n;
|
|
|
|
vp2->direction = averageVelocity * vp1->mass * -n;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IPCR_ANGLE_BASED_VELOCITY:
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
// The new velocity is based on the angle between original direction and new direction.
|
|
|
|
// Note, that this usually means that the velocity decreases.
|
|
|
|
|
|
|
|
float velocity1 =
|
|
|
|
Vec3(std::abs(vp1->direction.x), std::abs(vp1->direction.y), std::abs(vp1->direction.z)).dot(n);
|
|
|
|
float velocity2 =
|
|
|
|
Vec3(std::abs(vp2->direction.x), std::abs(vp2->direction.y), std::abs(vp2->direction.z)).dot(n);
|
|
|
|
vp1->direction = velocity1 * vp2->mass * n;
|
|
|
|
vp2->direction = velocity2 * vp1->mass * -n;
|
|
|
|
}
|
|
|
|
break;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
vp1->direction *= _bouncyness;
|
|
|
|
vp2->direction *= _bouncyness;
|
|
|
|
vp1->addEventFlags(PUParticle3D::PEF_COLLIDED);
|
|
|
|
vp2->addEventFlags(PUParticle3D::PEF_COLLIDED);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void PUParticle3DInterParticleCollider::updatePUAffector(PUParticle3D* /*particle*/, float /*deltaTime*/)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
// CCASSERT(0, "nonsupport yet");
|
|
|
|
// for (auto iter : _particleSystem->getParticles())
|
2019-11-23 20:27:39 +08:00
|
|
|
//{
|
2021-12-25 10:04:45 +08:00
|
|
|
// PUParticle3D *particle = iter;
|
|
|
|
// Fast rejection: only visible, moving particles are able to collide, unless they are colliding already
|
|
|
|
// Changed && into || in V1.3.1
|
|
|
|
// if (//particle->particleType != Particle::PT_VISUAL ||
|
|
|
|
// particle->hasEventFlags(PUParticle3D::PEF_COLLIDED) ||
|
|
|
|
// particle->direction == Vec3::ZERO)
|
|
|
|
// {
|
|
|
|
// return;
|
|
|
|
// }
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
// // Determine whether neighbour particles are colliding.
|
|
|
|
// SpatialHashTable<Particle*>* hashtable = particleTechnique->getSpatialHashTable();
|
|
|
|
// if (hashtable)
|
|
|
|
// {
|
|
|
|
// SpatialHashTable<Particle*>::HashTableCell cell = hashtable->getCell(particle->position);
|
|
|
|
// if (cell.empty())
|
|
|
|
// return;
|
|
|
|
|
|
|
|
// unsigned int size = static_cast<unsigned int>(cell.size());
|
|
|
|
// for (unsigned int i = 0; i < size; ++i)
|
|
|
|
// {
|
|
|
|
// Particle* p = cell[i];
|
|
|
|
|
|
|
|
// // Don't check if it is the same particle or the particle is already colliding.
|
|
|
|
// if (particle != p && !p->hasEventFlags(PUParticle3D::PEF_COLLIDED))
|
|
|
|
// {
|
|
|
|
// // Check for collision
|
|
|
|
// if (validateAndExecuteSphereCollision(particle, p, deltaTime))
|
|
|
|
// {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
|
|
|
|
PUParticle3DInterParticleCollider* PUParticle3DInterParticleCollider::create()
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
auto pipc = new PUParticle3DInterParticleCollider();
|
2019-11-23 20:27:39 +08:00
|
|
|
pipc->autorelease();
|
|
|
|
return pipc;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void PUParticle3DInterParticleCollider::copyAttributesTo(PUAffector* affector)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
PUBaseCollider::copyAttributesTo(affector);
|
2021-12-25 10:04:45 +08:00
|
|
|
PUParticle3DInterParticleCollider* interParticleCollider =
|
|
|
|
static_cast<PUParticle3DInterParticleCollider*>(affector);
|
|
|
|
interParticleCollider->_adjustment = _adjustment;
|
2019-11-23 20:27:39 +08:00
|
|
|
interParticleCollider->_interParticleCollisionResponse = _interParticleCollisionResponse;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|