vote up 1 vote down star

I need to make a game in Java for a project.

What I'm trying to do is a game where you have to go through a maze without touching the walls.

Is there a way to get the color of the pixel the mouse is over?

flag
Get the co-ordinates the mouse is at, this tells you which pixel it's over and then check the colour of that pixel. – Artelius Nov 3 at 23:51
1  
It's Java, not JAVA. – Kaleb Brasee Nov 3 at 23:59
Sorry about the grammar D: – Alan Nov 4 at 5:43

3 Answers

vote up 3 vote down check

You probably want java.awt.Robot.getPixelColor(x, y). It'll be faster than grabbing an image.

link|flag
Yes! Thank you, this is exactly what I needed. Thanks a lot everyone! – Alan Nov 4 at 5:44
vote up 1 vote down

This post answers your question precisely including a complete working code example. Basically, you can create an image from canvas on which you draw and call getRGB() on a pixel on the image.

link|flag
vote up 0 vote down

You want to implement the MouseMotionListener interface and do what Artelius mentioned, namely, get the coordinates of the mouse position and calculate the color of the pixel.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.