Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5065 in orxonox.OLD


Ignore:
Timestamp:
Aug 18, 2005, 1:41:24 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: changelog

Location:
orxonox/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/ChangeLog

    r5025 r5065  
     12005-08-16      Patrick Boenzli <boenzli@orxonox.ethz.ch>
     2        Integrated the collision detection into the orxonox framework. It
     3        bases on object-oriented-bounding boxes. The tree is spawned out of
     4        any polygon soup.
     5
    162005-08-15      Benjamin Grauer <bensch@orxonox.ethz.ch>
    27        Reimplemented the IniParser.
     
    1419        the Factory-style.
    1520        Faster algorithm in the GarbageCollector, that only checks collectables.
     21
     222005-07-23      Patrick Boenzli <boenzli@orxonox.ethz.ch>
     23        Implemented a spatial separation algorithm that separates any polygon
     24        soup into a quadtree. The tree leafs are hold in a hash table for
     25        fast lookup.
    1626
    17272005-07-14      Benjamin Grauer <bensch@orxonox.ethz.ch>
  • orxonox/trunk/src/world_entities/npc.cc

    r5064 r5065  
    4242{
    4343  if (entity->isA(CL_PROJECTILE))
    44     PRINTF(0)("collision %s vs %s @ (%f,%f,%f)\n", this->getName(), entity->getName(), location.x, location.y, location.z);
     44    PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getName(), entity->getName(), location.x, location.y, location.z);
    4545  this->setVisibiliy(false);
    4646  State::getWorldEntityList()->remove(this);
  • orxonox/trunk/src/world_entities/world_entity.cc

    r5061 r5065  
    134134void WorldEntity::collidesWith(WorldEntity* entity, const Vector& location)
    135135{
    136   PRINTF(0)("collision %s vs %s @ (%f,%f,%f)\n", this->getClassName(), entity->getClassName(), location.x, location.y, location.z);
     136  PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getClassName(), entity->getClassName(), location.x, location.y, location.z);
    137137}
    138138
Note: See TracChangeset for help on using the changeset viewer.