Ejemplo n.º 1
0
 public static boolean isKeyPressed(int key) {
   if (USE_ONLY_DOWN) {
     if (key == SysKey.ANY_KEY) {
       return keys.length > 0 && only_key.isPressed();
     } else {
       return keys.contains(key) && only_key.isPressed();
     }
   } else {
     if (key == SysKey.ANY_KEY) {
       return keys.length > 0;
     } else {
       return keys.contains(key);
     }
   }
 }
Ejemplo n.º 2
0
 public static boolean isKeyRelease(int key) {
   if (key == SysKey.ANY_KEY) {
     return keys.length > 0 && !only_key.isPressed();
   } else {
     return keys.contains(key) && !only_key.isPressed();
   }
 }
Ejemplo n.º 3
0
 public static void addKey(int key) {
   keys.add(key);
 }
Ejemplo n.º 4
0
 public static void removeKey(int key) {
   keys.removeValue(key);
 }
Ejemplo n.º 5
0
 public static void clear() {
   keys.clear();
 }