Changeset 9406 in orxonox.OLD for trunk/src/lib/particles/particle_system.cc
- Timestamp:
- Jul 24, 2006, 11:09:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/particles/particle_system.cc
r9235 r9406 32 32 #include <algorithm> 33 33 34 using namespace std; 34 35 35 /** 36 36 * standard constructor … … 139 139 { 140 140 PRINTF(2)("Tried to load an Element of type '%s' that should be a ParticleEmitter onto '%s::%s'.\n", 141 emitter->getClass Name(), this->getClassName(), this->getName());141 emitter->getClassCName(), this->getClassCName(), this->getCName()); 142 142 delete emitter; 143 143 } … … 145 145 else 146 146 { 147 PRINTF(2)("Could not Generate Emitter for system %s::%s (wrong type in XML-format)\n", this->getClass Name(), getName());147 PRINTF(2)("Could not Generate Emitter for system %s::%s (wrong type in XML-format)\n", this->getClassCName(), getCName()); 148 148 } 149 149 } … … 157 157 { 158 158 this->maxCount = maxCount; 159 PRINTF(4)("MAXCOUNT of %s::%s is %d\n", this->getClass Name(), this->getName(),maxCount);159 PRINTF(4)("MAXCOUNT of %s::%s is %d\n", this->getClassCName(), this->getCName(), maxCount); 160 160 } 161 161 … … 170 170 this->lifeSpan = lifeSpan; 171 171 this->randomLifeSpan = randomLifeSpan; 172 PRINTF(4)("LifeTime of %s::%s is %f\n", this->getClass Name(), this->getName(), lifeSpan);172 PRINTF(4)("LifeTime of %s::%s is %f\n", this->getClassCName(), this->getCName(), lifeSpan); 173 173 } 174 174 … … 188 188 this->conserve = conserve; 189 189 190 PRINTF(4)("Conserve of %s::%s is %f\n", this->getClass Name(), this->getName(),conserve);190 PRINTF(4)("Conserve of %s::%s is %f\n", this->getClassCName(), this->getCName(), conserve); 191 191 } 192 192 … … 206 206 207 207 PRINTF(4)("Radius of %s::%s at timeSlice %f is %f with a Random of %f\n", 208 this->getClass Name(), this->getName(),lifeCycleTime, radius, randRadius);208 this->getClassCName(), this->getCName(), lifeCycleTime, radius, randRadius); 209 209 } 210 210 … … 237 237 238 238 PRINTF(4)("Color of %s::%s on timeslice %f is r:%f g:%f b:%f a:%f\n", 239 this->getClass Name(), this->getName(), lifeCycleTime, red, green, blue, alpha);239 this->getClassCName(), this->getCName(), lifeCycleTime, red, green, blue, alpha); 240 240 } 241 241 … … 278 278 (*emitter)->updateNode(.1), (*emitter)->updateNode(.1); 279 279 280 PRINTF(4)("Precaching %s::%s %d seconds %d timesPerSecond\n", this->getClass Name(), this->getName(), seconds, ticksPerSecond);280 PRINTF(4)("Precaching %s::%s %d seconds %d timesPerSecond\n", this->getClassCName(), this->getCName(), seconds, ticksPerSecond); 281 281 for (unsigned int i = 0; i < seconds*ticksPerSecond; i++) 282 282 this->tick(1.0/(float)ticksPerSecond); … … 460 460 int i = 1; 461 461 Particle* tmpPart = this->deadList; 462 while ( tmpPart = tmpPart->next) { ++i; }462 while ((tmpPart = tmpPart->next) != NULL) { ++i; } 463 463 PRINT(0)("count: %d\n", i); 464 464 }
Note: See TracChangeset
for help on using the changeset viewer.