How to check for each side of an object separately?

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Post Reply
NewbiePeta
Prole
Posts: 6
Joined: Sat Sep 28, 2024 3:52 pm

How to check for each side of an object separately?

Post by NewbiePeta »

I'm a newbie, and I don't really know how to check collision for each side of an object separately. Yes, there is this function,

Code: Select all

function CheckCollision(x1,y1,w1,h1, x2,y2,w2,h2) 
	return x1 < x2+w2 and
         x2 < x1+w1 and
         y1 < y2+h2 and
         y2 < y1+h1 
end
but it detects the collision of objects in general.
User avatar
pgimeno
Party member
Posts: 3711
Joined: Sun Oct 18, 2015 2:58 pm

Re: How to check for each side of an object separately?

Post by pgimeno »

That function only tells you that the two rectangles intersect. Generally, when two rectangles intersect, you can't tell which sides are colliding; you can only tell that their intersection is not empty, and only in some special cases can you determine that the intersection lies completely in one of the sides of one of the rectangles. To put it shortly, the problem of "which sides are colliding" is not well defined.

However, given a previous position, you can tell which side a moving rectangle touched first when moving from its previous to its new position. That's what bump.lua calculates. It's not an easy calculation to do, so I'd suggest you to use that library.
User avatar
dusoft
Party member
Posts: 767
Joined: Fri Nov 08, 2013 12:07 am
Location: Europe usually
Contact:

Re: How to check for each side of an object separately?

Post by dusoft »

Or use the built-in polygon / collision handling.
User avatar
pgimeno
Party member
Posts: 3711
Joined: Sun Oct 18, 2015 2:58 pm

Re: How to check for each side of an object separately?

Post by pgimeno »

dusoft wrote: Tue Jan 14, 2025 7:46 am Or use the built-in polygon / collision handling.
That's a bad idea. The built-in polygon/collision handling means you need to convert the whole program to use love.physics, and that changes the approach of the code radically, meaning basically a rewrite. It may also bring with it some unexpected side effects of using love.physics. Often, custom simple physics are better than using love.physics, especially if all you need is AABB collisions.
User avatar
dusoft
Party member
Posts: 767
Joined: Fri Nov 08, 2013 12:07 am
Location: Europe usually
Contact:

Re: How to check for each side of an object separately?

Post by dusoft »

Yes, that's correct, polygons/physics are overkill for simple AABB. Bump is a good proxy lib for that if one does not need complex logic. Otherwise, love.physics gives an exact contact point, which is useful.
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 3 guests