Changeset 8534 in orxonox.OLD for branches/bsp_model/src
- Timestamp:
- Jun 16, 2006, 3:25:28 PM (18 years ago)
- Location:
- branches/bsp_model/src/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/lib/collision_reaction/collision_handle.cc
r8490 r8534 102 102 103 103 // add element 104 PRINTF( 0)("addTarget: %i \n", target);104 PRINTF(5)("addTarget: %i \n", target); 105 105 this->targetList.push_back(target); 106 106 } … … 176 176 177 177 c->registerCollisionEvent(collisionEvent); 178 PRINTF( 0)("Registering Collision Event: %s, %s\n", collisionEvent->getEntityA()->getClassName(), collisionEvent->getEntityB()->getClassName());178 PRINTF(5)("Registering Collision Event: %s, %s\n", collisionEvent->getEntityA()->getClassName(), collisionEvent->getEntityB()->getClassName()); 179 179 } 180 180 … … 230 230 if( collisionEvent->getEntityA() == this->owner) { 231 231 if( collisionEvent->getEntityB()->isA((ClassID)(*it))) { 232 PRINTF( 0)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(),232 PRINTF(5)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(), 233 233 collisionEvent->getEntityB()->getClassName(), *it); 234 234 return true; } … … 236 236 else { 237 237 if( collisionEvent->getEntityA()->isA((ClassID)(*it))) { 238 PRINTF( 0)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(),238 PRINTF(5)("I am: %s colliding with: %s is a %i filter ok\n", owner->getClassName(), 239 239 collisionEvent->getEntityA()->getClassName(), *it); 240 240 return true; } -
branches/bsp_model/src/lib/graphics/importer/bsp_manager.cc
r8533 r8534 996 996 else 997 997 { 998 999 1000 1001 998 999 1000 1001 1002 1002 if( this->outputFraction == 1.0f) 1003 1003 { … … 1027 1027 } 1028 1028 1029 1029 1030 1030 } 1031 1031 // Return the normal here: Normal's stored in this->collPlane; 1032 1032 if( collision) { 1033 PRINTF( 0)("We got a collision!! Are you sure: outputFraction = %f\n", this->outputFraction);1033 PRINTF(5)("We got a collision!! Are you sure: outputFraction = %f\n", this->outputFraction); 1034 1034 worldEntity->registerCollision(this->parent, worldEntity, Vector(this->collPlane->x, this->collPlane->y, this->collPlane->z), out); 1035 1035 } -
branches/bsp_model/src/lib/graphics/importer/md3/md3_animation_cfg.cc
r8533 r8534 94 94 } 95 95 96 this->dataStream.getline(buffer, 1024, '\n');97 std::string line(buffer);98 96 } 99 97 } 98 this->dataStream.getline(buffer, 1024, '\n'); 99 std::string line(buffer); 100 100 } 101 101 /*
Note: See TracChangeset
for help on using the changeset viewer.