mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-08 04:41:51 +09:00
Former-commit-id: 1647fa32ef6894bd7db44f741f07c2f4dcdf9054 Former-commit-id: 0e5810dcfbe1fd59b13e7cabe9f1e93c5542da2d
155 lines
3.4 KiB
Java
155 lines
3.4 KiB
Java
package org.newdawn.slick.util;
|
|
|
|
import org.newdawn.slick.Input;
|
|
import org.newdawn.slick.InputListener;
|
|
|
|
/**
|
|
* An implement implementation of the InputListener interface
|
|
*
|
|
* @author kevin
|
|
*/
|
|
public class InputAdapter implements InputListener {
|
|
/** A flag to indicate if we're accepting input here */
|
|
private boolean acceptingInput = true;
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerButtonPressed(int, int)
|
|
*/
|
|
public void controllerButtonPressed(int controller, int button) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerButtonReleased(int, int)
|
|
*/
|
|
public void controllerButtonReleased(int controller, int button) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerDownPressed(int)
|
|
*/
|
|
public void controllerDownPressed(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerDownReleased(int)
|
|
*/
|
|
public void controllerDownReleased(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerLeftPressed(int)
|
|
*/
|
|
public void controllerLeftPressed(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerLeftReleased(int)
|
|
*/
|
|
public void controllerLeftReleased(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerRightPressed(int)
|
|
*/
|
|
public void controllerRightPressed(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerRightReleased(int)
|
|
*/
|
|
public void controllerRightReleased(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerUpPressed(int)
|
|
*/
|
|
public void controllerUpPressed(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#controllerUpReleased(int)
|
|
*/
|
|
public void controllerUpReleased(int controller) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#inputEnded()
|
|
*/
|
|
public void inputEnded() {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#isAcceptingInput()
|
|
*/
|
|
public boolean isAcceptingInput() {
|
|
return acceptingInput;
|
|
}
|
|
|
|
/**
|
|
* Indicate if we should be accepting input of any sort
|
|
*
|
|
* @param acceptingInput True if we should accept input
|
|
*/
|
|
public void setAcceptingInput(boolean acceptingInput) {
|
|
this.acceptingInput = acceptingInput;
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#keyPressed(int, char)
|
|
*/
|
|
public void keyPressed(int key, char c) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#keyReleased(int, char)
|
|
*/
|
|
public void keyReleased(int key, char c) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#mouseMoved(int, int, int, int)
|
|
*/
|
|
public void mouseMoved(int oldx, int oldy, int newx, int newy) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#mousePressed(int, int, int)
|
|
*/
|
|
public void mousePressed(int button, int x, int y) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#mouseReleased(int, int, int)
|
|
*/
|
|
public void mouseReleased(int button, int x, int y) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#mouseWheelMoved(int)
|
|
*/
|
|
public void mouseWheelMoved(int change) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#setInput(org.newdawn.slick.Input)
|
|
*/
|
|
public void setInput(Input input) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.InputListener#mouseClicked(int, int, int, int)
|
|
*/
|
|
public void mouseClicked(int button, int x, int y, int clickCount) {
|
|
}
|
|
|
|
public void mouseDragged(int oldx, int oldy, int newx, int newy) {
|
|
}
|
|
|
|
/**
|
|
* @see org.newdawn.slick.ControlledInputReciever#inputStarted()
|
|
*/
|
|
public void inputStarted() {
|
|
|
|
}
|
|
}
|