How do I detect the collision of components, specifically JLabels (or ImageIcons?)? I have tried this:
add(test1);
test1.setLocation(x, y);
add(test2);
test1.setLocation(x1, y1);
validate();
if(intersects(test1, test2))
{
ehealth-=50;
}
public boolean intersects(JLabel testa, JLabel testb)
{
boolean b3 = false;
if(testa.contains(testb.getX(), testb.getY()))
{
b3 = true;
}
return b3;
}
When I run this, it does nothing!
I used to use Rectangle
, but it didn't go well with me. I was thinking about an image with a border (using paint.net) and moving an imageicon, but I don't know how to get the x of an ImageIcon or detect collision. I don't know how to detect collision of a label or increase the location either.
I have searched for collision detection with components/ImageIcons, but nothing has came up. I have also searched for getting the x of ImageIcons.
You can write it by yourself, just remember, that two areas intersects if their areas overlay, not just when one contains the x and y coordinates (for which you are testing).
If I were you, I would use
Area
. It already hascontains
andintersects
methods you need.Try using
computeIntersection()
method from SwingUtilities. According to the Javadoc for this method:Here's something that you can do with the above:
Another way, as @Jakub suggested was to use
intersects()
method of Area. Sample code for that would be something like this: