Ejemplo n.º 1
0
        /// <summary>
        /// InitializeParticle randomizes some properties for a particle, then
        /// calls initialize on it. It can be overriden by subclasses if they 
        /// want to modify the way particles are created. For example, 
        /// SmokePlumeParticleSystem overrides this function make all particles
        /// accelerate to the right, simulating wind.
        /// </summary>
        /// <param name="p">the particle to initialize</param>
        /// <param name="where">the position on the screen that the particle should be
        /// </param>
        protected virtual void InitializeParticle(Particle p, Vector2 where)
        {
            // first, call PickRandomDirection to figure out which way the particle
            // will be moving. velocity and acceleration's values will come from this.
            direction = PickRandomDirection();

            // pick some random values for our particle
            float velocity =
                AeroGame.RandomBetween(minInitialSpeed, maxInitialSpeed);
            float acceleration =
                AeroGame.RandomBetween(minAcceleration, maxAcceleration);
            float lifetime =
                AeroGame.RandomBetween(minLifetime, maxLifetime);
            float scale =
                AeroGame.RandomBetween(minScale, maxScale);
            float rotationSpeed =
                AeroGame.RandomBetween(minRotationSpeed, maxRotationSpeed);

            // then initialize it with those random values. initialize will save those,
            // and make sure it is marked as active.
            p.Initialize(
                where, velocity * direction, acceleration * direction,
                lifetime, scale, rotationSpeed);
        }