You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
864 B
29 lines
864 B
3 years ago
|
package sig.engine;
|
||
|
|
||
|
import java.awt.event.KeyEvent;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Arrays;
|
||
|
|
||
|
import net.java.games.input.Component;
|
||
|
|
||
|
public enum Action {
|
||
|
MOVE_RIGHT(new Key(KeyEvent.VK_RIGHT),new Key(KeyEvent.VK_D)),
|
||
|
MOVE_LEFT(new Key(KeyEvent.VK_LEFT),new Key(KeyEvent.VK_A)),
|
||
|
JUMP(new Key(KeyEvent.VK_SPACE),new Key(KeyEvent.VK_W)),
|
||
|
FALL(new Key(KeyEvent.VK_DOWN),new Key(KeyEvent.VK_S)),
|
||
|
SLIDE(new Key(KeyEvent.VK_CONTROL)),
|
||
|
LEVEL_EDITOR(new Key(KeyEvent.VK_F2)),
|
||
|
PLAY_GAME(new Key(KeyEvent.VK_F1)),;
|
||
|
|
||
|
float val;
|
||
|
|
||
|
Action(Component...components) {
|
||
|
KeyBind.KEYBINDS.put(this,new ArrayList<>(Arrays.asList(components)));
|
||
|
}
|
||
|
Action(Component axis,float val) {
|
||
|
ArrayList<Component> comps = new ArrayList<Component>();
|
||
|
comps.add(axis);
|
||
|
KeyBind.KEYBINDS.put(this,comps);
|
||
|
}
|
||
|
}
|