mirror of
https://github.com/love2d/love.git
synced 2026-08-13 17:10:54 +02:00
Merged in lognz/love-minor2/particle system new features (pull request #85)
Particle System New Features --HG-- branch : minor
This commit is contained in:
@@ -66,6 +66,8 @@ ParticleSystem::ParticleSystem(Graphics *gfx, Texture *texture, uint32 size)
|
||||
, emissionRate(0)
|
||||
, emitCounter(0)
|
||||
, areaSpreadDistribution(DISTRIBUTION_NONE)
|
||||
, areaSpreadAngle(0)
|
||||
, areaSpreadIsRelativeDirection(false)
|
||||
, lifetime(-1)
|
||||
, life(0)
|
||||
, particleLifeMin(0)
|
||||
@@ -122,6 +124,8 @@ ParticleSystem::ParticleSystem(const ParticleSystem &p)
|
||||
, prevPosition(p.prevPosition)
|
||||
, areaSpreadDistribution(p.areaSpreadDistribution)
|
||||
, areaSpread(p.areaSpread)
|
||||
, areaSpreadAngle(p.areaSpreadAngle)
|
||||
, areaSpreadIsRelativeDirection(p.areaSpreadIsRelativeDirection)
|
||||
, lifetime(p.lifetime)
|
||||
, life(p.lifetime) // Initialize with the maximum life time.
|
||||
, particleLifeMin(p.particleLifeMin)
|
||||
@@ -261,38 +265,85 @@ void ParticleSystem::initParticle(Particle *p, float t)
|
||||
|
||||
p->position = pos;
|
||||
|
||||
min = direction - spread/2.0f;
|
||||
max = direction + spread/2.0f;
|
||||
float dir = (float) rng.random(min, max);
|
||||
|
||||
// In this switch statement, variables 'rand_y', 'min', and 'max'
|
||||
// are sometimes reused as data stores for performance reasons
|
||||
float rand_x, rand_y;
|
||||
switch (areaSpreadDistribution)
|
||||
{
|
||||
case DISTRIBUTION_UNIFORM:
|
||||
p->position.x += (float) rng.random(-areaSpread.getX(), areaSpread.getX());
|
||||
p->position.y += (float) rng.random(-areaSpread.getY(), areaSpread.getY());
|
||||
rand_x = (float) rng.random(-areaSpread.getX(), areaSpread.getX());
|
||||
rand_y = (float) rng.random(-areaSpread.getY(), areaSpread.getY());
|
||||
p->position.x += cosf(areaSpreadAngle) * rand_x - sinf(areaSpreadAngle) * rand_y;
|
||||
p->position.y += sinf(areaSpreadAngle) * rand_x + cosf(areaSpreadAngle) * rand_y;
|
||||
break;
|
||||
case DISTRIBUTION_NORMAL:
|
||||
p->position.x += (float) rng.randomNormal(areaSpread.getX());
|
||||
p->position.y += (float) rng.randomNormal(areaSpread.getY());
|
||||
rand_x = (float) rng.randomNormal(areaSpread.getX());
|
||||
rand_y = (float) rng.randomNormal(areaSpread.getY());
|
||||
p->position.x += cosf(areaSpreadAngle) * rand_x - sinf(areaSpreadAngle) * rand_y;
|
||||
p->position.y += sinf(areaSpreadAngle) * rand_x + cosf(areaSpreadAngle) * rand_y;
|
||||
break;
|
||||
case DISTRIBUTION_ELLIPSE:
|
||||
rand_x = (float) rng.random(-1, 1);
|
||||
rand_y = (float) rng.random(-1, 1);
|
||||
p->position.x += areaSpread.getX() * (rand_x * sqrt(1 - 0.5f*pow(rand_y, 2)));
|
||||
p->position.y += areaSpread.getY() * (rand_y * sqrt(1 - 0.5f*pow(rand_x, 2)));
|
||||
min = areaSpread.getX() * (rand_x * sqrt(1 - 0.5f*pow(rand_y, 2)));
|
||||
max = areaSpread.getY() * (rand_y * sqrt(1 - 0.5f*pow(rand_x, 2)));
|
||||
p->position.x += cosf(areaSpreadAngle) * min - sinf(areaSpreadAngle) * max;
|
||||
p->position.y += sinf(areaSpreadAngle) * min + cosf(areaSpreadAngle) * max;
|
||||
break;
|
||||
case DISTRIBUTION_BORDER_ELLIPSE:
|
||||
rand_x = (float) rng.random(0, LOVE_M_PI * 2);
|
||||
min = cosf(rand_x) * areaSpread.getX();
|
||||
max = sinf(rand_x) * areaSpread.getY();
|
||||
p->position.x += cosf(areaSpreadAngle) * min - sinf(areaSpreadAngle) * max;
|
||||
p->position.y += sinf(areaSpreadAngle) * min + cosf(areaSpreadAngle) * max;
|
||||
break;
|
||||
case DISTRIBUTION_BORDER_RECTANGLE:
|
||||
rand_x = (float) rng.random((areaSpread.getX() + areaSpread.getY()) * -2, (areaSpread.getX() + areaSpread.getY()) * 2);
|
||||
rand_y = areaSpread.getY() * 2;
|
||||
if (rand_x < -rand_y)
|
||||
{
|
||||
min = rand_x + rand_y + areaSpread.getX();
|
||||
p->position.x += cosf(areaSpreadAngle) * min - sinf(areaSpreadAngle) * -areaSpread.getY();
|
||||
p->position.y += sinf(areaSpreadAngle) * min + cosf(areaSpreadAngle) * -areaSpread.getY();
|
||||
}
|
||||
else if (rand_x < 0)
|
||||
{
|
||||
max = rand_x + areaSpread.getY();
|
||||
p->position.x += cosf(areaSpreadAngle) * -areaSpread.getX() - sinf(areaSpreadAngle) * max;
|
||||
p->position.y += sinf(areaSpreadAngle) * -areaSpread.getX() + cosf(areaSpreadAngle) * max;
|
||||
}
|
||||
else if (rand_x < rand_y)
|
||||
{
|
||||
max = rand_x - areaSpread.getY();
|
||||
p->position.x += cosf(areaSpreadAngle) * areaSpread.getX() - sinf(areaSpreadAngle) * max;
|
||||
p->position.y += sinf(areaSpreadAngle) * areaSpread.getX() + cosf(areaSpreadAngle) * max;
|
||||
}
|
||||
else
|
||||
{
|
||||
min = rand_x - rand_y - areaSpread.getX();
|
||||
p->position.x += cosf(areaSpreadAngle) * min - sinf(areaSpreadAngle) * areaSpread.getY();
|
||||
p->position.y += sinf(areaSpreadAngle) * min + cosf(areaSpreadAngle) * areaSpread.getY();
|
||||
}
|
||||
break;
|
||||
case DISTRIBUTION_NONE:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
// Determine if the origin of each particle is the center of the area
|
||||
if (areaSpreadIsRelativeDirection)
|
||||
dir += atan2(p->position.y - pos.getY(), p->position.x - pos.getX());
|
||||
|
||||
p->origin = pos;
|
||||
|
||||
min = speedMin;
|
||||
max = speedMax;
|
||||
float speed = (float) rng.random(min, max);
|
||||
|
||||
min = direction - spread/2.0f;
|
||||
max = direction + spread/2.0f;
|
||||
float dir = (float) rng.random(min, max);
|
||||
|
||||
p->velocity = love::Vector(cosf(dir), sinf(dir)) * speed;
|
||||
|
||||
p->linearAcceleration.x = (float) rng.random(linearAccelerationMin.x, linearAccelerationMax.x);
|
||||
@@ -523,6 +574,21 @@ void ParticleSystem::setAreaSpread(AreaSpreadDistribution distribution, float x,
|
||||
areaSpreadDistribution = distribution;
|
||||
}
|
||||
|
||||
void ParticleSystem::setAreaSpread(AreaSpreadDistribution distribution, float x, float y, float angle)
|
||||
{
|
||||
areaSpread = love::Vector(x, y);
|
||||
areaSpreadDistribution = distribution;
|
||||
areaSpreadAngle = angle;
|
||||
}
|
||||
|
||||
void ParticleSystem::setAreaSpread(AreaSpreadDistribution distribution, float x, float y, float angle, bool isRelativeDirection)
|
||||
{
|
||||
areaSpread = love::Vector(x, y);
|
||||
areaSpreadDistribution = distribution;
|
||||
areaSpreadAngle = angle;
|
||||
areaSpreadIsRelativeDirection = isRelativeDirection;
|
||||
}
|
||||
|
||||
ParticleSystem::AreaSpreadDistribution ParticleSystem::getAreaSpreadDistribution() const
|
||||
{
|
||||
return areaSpreadDistribution;
|
||||
@@ -533,6 +599,26 @@ const love::Vector &ParticleSystem::getAreaSpreadParameters() const
|
||||
return areaSpread;
|
||||
}
|
||||
|
||||
void ParticleSystem::setAreaSpreadAngle(float angle)
|
||||
{
|
||||
this->areaSpreadAngle = angle;
|
||||
}
|
||||
|
||||
float ParticleSystem::getAreaSpreadAngle() const
|
||||
{
|
||||
return areaSpreadAngle;
|
||||
}
|
||||
|
||||
void ParticleSystem::setAreaSpreadIsRelativeDirection(bool isRelativeDirection)
|
||||
{
|
||||
this->areaSpreadIsRelativeDirection = isRelativeDirection;
|
||||
}
|
||||
|
||||
bool ParticleSystem::getAreaSpreadIsRelativeDirection() const
|
||||
{
|
||||
return areaSpreadIsRelativeDirection;
|
||||
}
|
||||
|
||||
void ParticleSystem::setDirection(float direction)
|
||||
{
|
||||
this->direction = direction;
|
||||
@@ -1038,6 +1124,8 @@ StringMap<ParticleSystem::AreaSpreadDistribution, ParticleSystem::DISTRIBUTION_M
|
||||
{ "uniform", DISTRIBUTION_UNIFORM },
|
||||
{ "normal", DISTRIBUTION_NORMAL },
|
||||
{ "ellipse", DISTRIBUTION_ELLIPSE },
|
||||
{ "borderellipse", DISTRIBUTION_BORDER_ELLIPSE },
|
||||
{ "borderrectangle", DISTRIBUTION_BORDER_RECTANGLE }
|
||||
};
|
||||
|
||||
StringMap<ParticleSystem::AreaSpreadDistribution, ParticleSystem::DISTRIBUTION_MAX_ENUM> ParticleSystem::distributions(ParticleSystem::distributionsEntries, sizeof(ParticleSystem::distributionsEntries));
|
||||
|
||||
Reference in New Issue
Block a user