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;
link|improve this question
can you post some sample data... – govi Mar 10 '11 at 17:15
Hi govi, Thanks for the reply. Modified the original post and added some sample code. – Nlks Mar 10 '11 at 19:23
im have no idea about audio engineering, but i think peak data is a sampled output of the original audio. assuming that, then you might want to change number of particles per second and the speed... – govi Mar 10 '11 at 20:29
Yeah I've figured out that those are the values I need to change. My question is how do I get those values to update constantly on my particle emitters as I get new peak data in my array? The above code is not working. Sorry if that was unclear. – Nlks Mar 10 '11 at 23:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.