I have been stuck for a huge amount of time on this problem so seeking some advice.
I am recording sound via the iPhone's microphone and storing peak data that I have captured in an array.
I have also built in a particle generator (with openGL) that displays various visuals and am hoping to manipulate the number of particles and size of the emissions depending on the peak data that I have in my array. However I have been unsuccessful in doing this so far.
I have also tried to do the same thing with Jeff LeMarche's particle generator http://code.google.com/p/iphoneparticles/ and 71 squared's particle designer http://particledesigner.71squared.com/index.php?page=download with no success.
I have realised that I overall have no idea about which bits of the code I would need to alter to try and get the particle emissions to constantly change and update depending on the peak data that I have in my array?
Any guidance on the best way to do this?
Sorry about the noob question and thanks for the help.
Here is the bit of the particle emitter I am modifying where a new particle is initiated . As you can see I am trying to change the Variance of the particles emitted to reflect the changes in peak data from the array. Is this is right place/way to do this?
>self = [super init];
>if (self)
>{
>self.identifier = [ParticleEmitter3D getNextIdentifier];
>self.name = inName;
>self.position = inPosition;
>self.azimuthVariance = inAzimuthVariance;
>self.pitchVariance = inPitchVariance;
>self.speed = inSpeed;
>self.speedVariance = inSpeedVariance;
>self.particlesEmittedPerSecond = inParticlesEmittedPerSecond;
>for (int i = 1; i < [self.levelsArray count]; i++)
>self.particleEmitVariance = inParticlesEmittedVariance+[[self.levelsArray
>objectAtIndex:i] floatValue]*15;
>self.particleLifespan = inParticleLifespan;
>self.particleLifespanVariance = inParticleLifespanVariance;
>self.startColor = inStartColor;
>self.startColorVariance = inStartColorVariance;
>self.finishColor = inFinishColor;
>self.finishColorVariance = inFinishColorVariance;
>self.force = ingravity;
>self.forceVariance = inforceVariance;
>self.mode = inMode;
>self.particleSize = inParticleSize;
>self.particleSizeVariance = inParticleSizeVariance;
>self.texture = inTexture;
>lastDrawTime = 0.0;
>currentParticleCount = 1;
>}
>return self;