open_toontown_panda3d/panda/src/particlesystem/baseParticleFactory.cxx

110 lines
3.9 KiB
C++

// Filename: baseParticleFactory.cxx
// Created by: charles (05Jul00)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
//
// All use of this software is subject to the terms of the Panda 3d
// Software license. You should have received a copy of this license
// along with this source code; you will also find a current copy of
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
//
// To contact the maintainers of this program write to
// panda3d-general@lists.sourceforge.net .
//
////////////////////////////////////////////////////////////////////
#include "baseParticleFactory.h"
////////////////////////////////////////////////////////////////////
// Function : BaseParticleFactory
// Access : protected
// Description : constructor
////////////////////////////////////////////////////////////////////
BaseParticleFactory::
BaseParticleFactory() {
_mass_base = 1.0f;
_mass_spread = 0.0f;
_terminal_velocity_base = PhysicsObject::_default_terminal_velocity;
_terminal_velocity_spread = 0.0f;
_lifespan_base = 1.0f;
_lifespan_spread = 0.0f;
}
////////////////////////////////////////////////////////////////////
// Function : BaseParticleFactory
// Access : protected
// Description : copy constructor
////////////////////////////////////////////////////////////////////
BaseParticleFactory::
BaseParticleFactory(const BaseParticleFactory &copy) {
_terminal_velocity_base = copy._terminal_velocity_base;
_terminal_velocity_spread = copy._terminal_velocity_spread;
_lifespan_base = copy._lifespan_base;
_lifespan_spread = copy._lifespan_spread;
}
////////////////////////////////////////////////////////////////////
// Function : ~BaseParticleFactory
// Access : public virtual
// Description : destructor
////////////////////////////////////////////////////////////////////
BaseParticleFactory::
~BaseParticleFactory() {
}
////////////////////////////////////////////////////////////////////
// Function : make_particle
// Description : public
////////////////////////////////////////////////////////////////////
void BaseParticleFactory::
populate_particle(BaseParticle *bp) {
bp->set_lifespan(_lifespan_base + SPREAD(_lifespan_spread));
bp->set_mass(_mass_base + SPREAD(_mass_spread));
bp->set_terminal_velocity(_terminal_velocity_base + SPREAD(_terminal_velocity_spread));
bp->set_active(false);
bp->set_alive(false);
bp->set_age(0.0f);
bp->set_index(0);
populate_child_particle(bp);
}
////////////////////////////////////////////////////////////////////
// Function : output
// Access : Public
// Description : Write a string representation of this instance to
// <out>.
////////////////////////////////////////////////////////////////////
void BaseParticleFactory::
output(ostream &out) const {
#ifndef NDEBUG //[
out<<"BaseParticleFactory";
#endif //] NDEBUG
}
////////////////////////////////////////////////////////////////////
// Function : write
// Access : Public
// Description : Write a string representation of this instance to
// <out>.
////////////////////////////////////////////////////////////////////
void BaseParticleFactory::
write(ostream &out, int indent) const {
#ifndef NDEBUG //[
out.width(indent); out<<""; out<<"BaseParticleFactory:\n";
out.width(indent+2); out<<""; out<<"_lifespan_base "<<_lifespan_base<<"\n";
out.width(indent+2); out<<""; out<<"_lifespan_spread "<<_lifespan_spread<<"\n";
out.width(indent+2); out<<""; out<<"_mass_base "<<_mass_base<<"\n";
out.width(indent+2); out<<""; out<<"_mass_spread "<<_mass_spread<<"\n";
out.width(indent+2); out<<""; out<<"_terminal_velocity_base "<<_terminal_velocity_base<<"\n";
out.width(indent+2); out<<""; out<<"_terminal_velocity_spread "<<_terminal_velocity_spread<<"\n";
//ReferenceCount::write(out, indent+2);
#endif //] NDEBUG
}