Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 12, 2006, 12:10:51 AM (18 years ago)
Author:
patrick
Message:

bsp_model: new collision reaction for the ground. not yet working completle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/lib/collision_reaction/cr_physics_ground_walk.cc

    r8288 r8323  
    5353void CRPhysicsGroundWalk::reactToCollision(Collision* collision)
    5454{
    55   CollisionEvent* ce = collision->getCollisionEvents().front();
    56   Vector normal = ce->getGroundNormal();
    57   normal.normalize();
    58 
    59   // put it back
    60   PRINTF(0)("putting it back\n");
    61   collision->getEntityB()->setVelocity(Vector());
    62 //  collision->getEntityB()->setAbsCoorSoft(this->lastPosition, 0.1);
    63 //   collision->getEntityB()->setAbsCoor(this->lastPosition/* + normal * (-5.0f)*/);
     55//   CollisionEvent* ce = collision->getCollisionEvents().front();
     56//   Vector normal = ce->getGroundNormal();
     57//   normal.normalize();
     58//
     59//   Vector position = ce->getCollisionPosition();
    6460
    6561
     62  if( this->lastPosition != collision->getEntityB()->getAbsCoor())
     63  {
     64  // put it back
     65    PRINTF(0)("putting it back to: \n");
     66    this->lastPosition.debug();
    6667
     68    collision->getEntityB()->setVelocity(Vector());
     69//  collision->getEntityB()->setAbsCoorSoft(this->lastPosition, 0.1);
     70    collision->getEntityB()->setAbsCoor(this->lastPosition);
     71  }
    6772}
    6873
     
    7681  this->lastPosition = owner->getAbsCoor();
    7782  this->lastDirection = owner->getAbsDir();
     83  PRINTF(0)("no collision: saving location: \n");
     84  this->lastPosition.debug();
    7885}
    7986
Note: See TracChangeset for help on using the changeset viewer.