I've added a new function that takes a pointer to a vector like this
Code: Select all
bool IsCollision(ENG_Rectangle *a, ENG_Rectangle *b, Vector2f *normal) {
/* Since the vector is a pointer then it could have been
intialized to any value so we need to make sure we initalize
the vectors X and Y to zero */
normal->x = normal->y = 0.0f;
// The distance between the two objects
Vector2f Distance;
// The absDistance between the objects
Vector2f absDistance;
// Calculate the distance between A and B
Distance.x = ( b->x - a->x );
Distance.y = ( b->y - a->y );
// Combine both rectangles and half the returned value
float XAdd = ( b->w + a->w ) / 2.0f;
float YAdd = ( b->h + a->h ) / 2.0f;
// Check if the Distance vector is below 0.0f
( Distance.x < 0.0f ) ? absDistance.x = Distance.x * -1 : absDistance.x = Distance.x;
( Distance.y < 0.0f ) ? absDistance.y = Distance.y * -1 : absDistance.y = Distance.y;
/*If the absDistance X is less than X add and the absDistance is less thank YAdd
then it dosen't take a genius to figure out they arn't colliding so return false*/
if( ! ( ( absDistance.x < XAdd ) && ( absDistance.y < YAdd ) ) ) {
return false;
}
/*Get the magnitute by the overlap of the two rectangles*/
float XMagnitute = XAdd - absDistance.x;
float YMagnitute = YAdd - absDistance.y;
/*Determin what axis we need to act on based on the overlap*/
if( XMagnitute < YMagnitute ) {
normal->x = ( Distance.x < 0) ? XMagnitute : -XMagnitute;
}
else {
normal->y = ( Distance.y < 0) ? YMagnitute : -YMagnitute;
}
// If we reached this point then we now know the was a collision
return true;
}
Now I'm sure I'm missing somthing obviouse here but lets say I'm walking to the right and I'm walking into some tiles this prevents the player from entering the tiles but if I press right and down then I slide down still not entering the tiles however if I walk right and up then I don't enter the tiles but I don't slide up them either.
But if I walk down into the tiles and left or right then the player slides across the tiles in either direction no problem.
But if I change the end of the function from this:
Code: Select all
/*Determin what axis we need to act on based on the overlap*/
if( XMagnitute < YMagnitute ) {
normal->x = ( Distance.x < 0) ? XMagnitute : -XMagnitute;
}
else {
normal->y = ( Distance.y < 0) ? YMagnitute : -YMagnitute;
}
Code: Select all
/*Determin what axis we need to act on based on the overlap*/
if( XMagnitute > YMagnitute ) {
normal->y = ( Distance.y < 0) ? YMagnitute : -YMagnitute;
}
else {
normal->x = ( Distance.x < 0) ? XMagnitute : -XMagnitute;
}
I hope I explained that ok.
Any questions or better yet solutions?