mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 20:31:51 +09:00
Former-commit-id: 1647fa32ef6894bd7db44f741f07c2f4dcdf9054 Former-commit-id: 0e5810dcfbe1fd59b13e7cabe9f1e93c5542da2d
434 lines
9.8 KiB
Java
434 lines
9.8 KiB
Java
package org.newdawn.slick.gui;
|
|
|
|
import org.newdawn.slick.Color;
|
|
import org.newdawn.slick.Graphics;
|
|
import org.newdawn.slick.Image;
|
|
import org.newdawn.slick.Input;
|
|
import org.newdawn.slick.Sound;
|
|
import org.newdawn.slick.geom.Rectangle;
|
|
import org.newdawn.slick.geom.Shape;
|
|
|
|
/**
|
|
* A mouse over area that can be used for menus or buttons
|
|
*
|
|
* @author kevin
|
|
*/
|
|
public class MouseOverArea extends AbstractComponent {
|
|
/** The default state */
|
|
private static final int NORMAL = 1;
|
|
|
|
/** The mouse down state */
|
|
private static final int MOUSE_DOWN = 2;
|
|
|
|
/** The mouse over state */
|
|
private static final int MOUSE_OVER = 3;
|
|
|
|
/** The normalImage being displayed in normal state */
|
|
private Image normalImage;
|
|
|
|
/** The normalImage being displayed in mouseOver state */
|
|
private Image mouseOverImage;
|
|
|
|
/** The normalImage being displayed in mouseDown state */
|
|
private Image mouseDownImage;
|
|
|
|
/** The colour used in normal state */
|
|
private Color normalColor = Color.white;
|
|
|
|
/** The colour used in mouseOver state */
|
|
private Color mouseOverColor = Color.white;
|
|
|
|
/** The colour used in mouseDown state */
|
|
private Color mouseDownColor = Color.white;
|
|
|
|
/** The sound for mouse over */
|
|
private Sound mouseOverSound;
|
|
|
|
/** The sound for mouse down */
|
|
private Sound mouseDownSound;
|
|
|
|
/** The shape defining the area */
|
|
private Shape area;
|
|
|
|
/** The current normalImage being displayed */
|
|
private Image currentImage;
|
|
|
|
/** The current color being used */
|
|
private Color currentColor;
|
|
|
|
/** True if the mouse is over the area */
|
|
private boolean over;
|
|
|
|
/** True if the mouse button is pressed */
|
|
private boolean mouseDown;
|
|
|
|
/** The state of the area */
|
|
private int state = NORMAL;
|
|
|
|
/** True if the mouse has been up since last press */
|
|
private boolean mouseUp;
|
|
|
|
/**
|
|
* Create a new mouse over area
|
|
*
|
|
* @param container
|
|
* The container displaying the mouse over area
|
|
* @param image
|
|
* The normalImage to display
|
|
* @param x
|
|
* The position of the area
|
|
* @param y
|
|
* the position of the area
|
|
* @param listener
|
|
* A listener to add to the area
|
|
*/
|
|
public MouseOverArea(GUIContext container, Image image, int x, int y, ComponentListener listener) {
|
|
this(container, image, x, y, image.getWidth(), image.getHeight());
|
|
addListener(listener);
|
|
}
|
|
|
|
/**
|
|
* Create a new mouse over area
|
|
*
|
|
* @param container
|
|
* The container displaying the mouse over area
|
|
* @param image
|
|
* The normalImage to display
|
|
* @param x
|
|
* The position of the area
|
|
* @param y
|
|
* the position of the area
|
|
*/
|
|
public MouseOverArea(GUIContext container, Image image, int x, int y) {
|
|
this(container, image, x, y, image.getWidth(), image.getHeight());
|
|
}
|
|
|
|
/**
|
|
* Create a new mouse over area
|
|
*
|
|
* @param container
|
|
* The container displaying the mouse over area
|
|
* @param image
|
|
* The normalImage to display
|
|
* @param x
|
|
* The position of the area
|
|
* @param y
|
|
* the position of the area
|
|
* @param width
|
|
* The width of the area
|
|
* @param height
|
|
* The height of the area
|
|
* @param listener
|
|
* A listener to add to the area
|
|
*/
|
|
public MouseOverArea(GUIContext container, Image image, int x, int y,
|
|
int width, int height, ComponentListener listener) {
|
|
this(container,image,x,y,width,height);
|
|
addListener(listener);
|
|
}
|
|
|
|
/**
|
|
* Create a new mouse over area
|
|
*
|
|
* @param container
|
|
* The container displaying the mouse over area
|
|
* @param image
|
|
* The normalImage to display
|
|
* @param x
|
|
* The position of the area
|
|
* @param y
|
|
* the position of the area
|
|
* @param width
|
|
* The width of the area
|
|
* @param height
|
|
* The height of the area
|
|
*/
|
|
public MouseOverArea(GUIContext container, Image image, int x, int y,
|
|
int width, int height) {
|
|
this(container,image,new Rectangle(x,y,width,height));
|
|
}
|
|
|
|
/**
|
|
* Create a new mouse over area
|
|
*
|
|
* @param container
|
|
* The container displaying the mouse over area
|
|
* @param image
|
|
* The normalImage to display
|
|
* @param shape
|
|
* The shape defining the area of the mouse sensitive zone
|
|
*/
|
|
public MouseOverArea(GUIContext container, Image image, Shape shape) {
|
|
super(container);
|
|
|
|
area = shape;
|
|
normalImage = image;
|
|
currentImage = image;
|
|
mouseOverImage = image;
|
|
mouseDownImage = image;
|
|
|
|
currentColor = normalColor;
|
|
|
|
state = NORMAL;
|
|
Input input = container.getInput();
|
|
over = area.contains(input.getMouseX(), input.getMouseY());
|
|
mouseDown = input.isMouseButtonDown(0);
|
|
updateImage();
|
|
}
|
|
|
|
/**
|
|
* Moves the component.
|
|
*
|
|
* @param x X coordinate
|
|
* @param y Y coordinate
|
|
*/
|
|
public void setLocation(float x, float y) {
|
|
if (area != null) {
|
|
area.setX(x);
|
|
area.setY(y);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the x coordinate of this area
|
|
*
|
|
* @param x The new x coordinate of this area
|
|
*/
|
|
public void setX(float x) {
|
|
area.setX(x);
|
|
}
|
|
|
|
/**
|
|
* Set the y coordinate of this area
|
|
*
|
|
* @param y The new y coordinate of this area
|
|
*/
|
|
public void setY(float y) {
|
|
area.setY(y);
|
|
}
|
|
|
|
/**
|
|
* Returns the position in the X coordinate
|
|
*
|
|
* @return x
|
|
*/
|
|
public int getX() {
|
|
return (int) area.getX();
|
|
}
|
|
|
|
/**
|
|
* Returns the position in the Y coordinate
|
|
*
|
|
* @return y
|
|
*/
|
|
public int getY() {
|
|
return (int) area.getY();
|
|
}
|
|
|
|
/**
|
|
* Set the normal color used on the image in the default state
|
|
*
|
|
* @param color
|
|
* The color to be used
|
|
*/
|
|
public void setNormalColor(Color color) {
|
|
normalColor = color;
|
|
}
|
|
|
|
/**
|
|
* Set the color to be used when the mouse is over the area
|
|
*
|
|
* @param color
|
|
* The color to be used when the mouse is over the area
|
|
*/
|
|
public void setMouseOverColor(Color color) {
|
|
mouseOverColor = color;
|
|
}
|
|
|
|
/**
|
|
* Set the color to be used when the mouse is down the area
|
|
*
|
|
* @param color
|
|
* The color to be used when the mouse is down the area
|
|
*/
|
|
public void setMouseDownColor(Color color) {
|
|
mouseDownColor = color;
|
|
}
|
|
|
|
/**
|
|
* Set the normal image used on the image in the default state
|
|
*
|
|
* @param image
|
|
* The image to be used
|
|
*/
|
|
public void setNormalImage(Image image) {
|
|
normalImage = image;
|
|
}
|
|
|
|
/**
|
|
* Set the image to be used when the mouse is over the area
|
|
*
|
|
* @param image
|
|
* The image to be used when the mouse is over the area
|
|
*/
|
|
public void setMouseOverImage(Image image) {
|
|
mouseOverImage = image;
|
|
}
|
|
|
|
/**
|
|
* Set the image to be used when the mouse is down the area
|
|
*
|
|
* @param image
|
|
* The image to be used when the mouse is down the area
|
|
*/
|
|
public void setMouseDownImage(Image image) {
|
|
mouseDownImage = image;
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.gui.AbstractComponent#render(org.newdawn.slick.gui.GUIContext,
|
|
* org.newdawn.slick.Graphics)
|
|
*/
|
|
public void render(GUIContext container, Graphics g) {
|
|
if (currentImage != null) {
|
|
|
|
int xp = (int) (area.getX() + ((getWidth() - currentImage.getWidth()) / 2));
|
|
int yp = (int) (area.getY() + ((getHeight() - currentImage.getHeight()) / 2));
|
|
|
|
currentImage.draw(xp, yp, currentColor);
|
|
} else {
|
|
g.setColor(currentColor);
|
|
g.fill(area);
|
|
}
|
|
updateImage();
|
|
}
|
|
|
|
/**
|
|
* Update the current normalImage based on the mouse state
|
|
*/
|
|
private void updateImage() {
|
|
if (!over) {
|
|
currentImage = normalImage;
|
|
currentColor = normalColor;
|
|
state = NORMAL;
|
|
mouseUp = false;
|
|
} else {
|
|
if (mouseDown) {
|
|
if ((state != MOUSE_DOWN) && (mouseUp)) {
|
|
if (mouseDownSound != null) {
|
|
mouseDownSound.play();
|
|
}
|
|
currentImage = mouseDownImage;
|
|
currentColor = mouseDownColor;
|
|
state = MOUSE_DOWN;
|
|
|
|
notifyListeners();
|
|
mouseUp = false;
|
|
}
|
|
|
|
return;
|
|
} else {
|
|
mouseUp = true;
|
|
if (state != MOUSE_OVER) {
|
|
if (mouseOverSound != null) {
|
|
mouseOverSound.play();
|
|
}
|
|
currentImage = mouseOverImage;
|
|
currentColor = mouseOverColor;
|
|
state = MOUSE_OVER;
|
|
}
|
|
}
|
|
}
|
|
|
|
mouseDown = false;
|
|
state = NORMAL;
|
|
}
|
|
|
|
/**
|
|
* Set the mouse over sound effect
|
|
*
|
|
* @param sound
|
|
* The mouse over sound effect
|
|
*/
|
|
public void setMouseOverSound(Sound sound) {
|
|
mouseOverSound = sound;
|
|
}
|
|
|
|
/**
|
|
* Set the mouse down sound effect
|
|
*
|
|
* @param sound
|
|
* The mouse down sound effect
|
|
*/
|
|
public void setMouseDownSound(Sound sound) {
|
|
mouseDownSound = sound;
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.util.InputAdapter#mouseMoved(int, int, int, int)
|
|
*/
|
|
public void mouseMoved(int oldx, int oldy, int newx, int newy) {
|
|
over = area.contains(newx, newy);
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.util.InputAdapter#mouseDragged(int, int, int, int)
|
|
*/
|
|
public void mouseDragged(int oldx, int oldy, int newx, int newy) {
|
|
mouseMoved(oldx, oldy, newx, newy);
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.util.InputAdapter#mousePressed(int, int, int)
|
|
*/
|
|
public void mousePressed(int button, int mx, int my) {
|
|
over = area.contains(mx, my);
|
|
if (button == 0) {
|
|
mouseDown = true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.util.InputAdapter#mouseReleased(int, int, int)
|
|
*/
|
|
public void mouseReleased(int button, int mx, int my) {
|
|
over = area.contains(mx, my);
|
|
if (button == 0) {
|
|
mouseDown = false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.gui.AbstractComponent#getHeight()
|
|
*/
|
|
public int getHeight() {
|
|
return (int) (area.getMaxY() - area.getY());
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.gui.AbstractComponent#getWidth()
|
|
*/
|
|
public int getWidth() {
|
|
return (int) (area.getMaxX() - area.getX());
|
|
}
|
|
|
|
/**
|
|
* Check if the mouse is over this area
|
|
*
|
|
* @return True if the mouse is over this area
|
|
*/
|
|
public boolean isMouseOver() {
|
|
return over;
|
|
}
|
|
|
|
/**
|
|
* Set the location of this area
|
|
*
|
|
* @param x The x coordinate of this area
|
|
* @param y The y coordiante of this area
|
|
*/
|
|
public void setLocation(int x, int y) {
|
|
setLocation((float) x,(float) y);
|
|
}
|
|
}
|