2022-12-05 16:04:05 +02:00
|
|
|
public class NetworkInput
|
|
|
|
|
{
|
2022-12-08 03:28:59 +02:00
|
|
|
public const int SKIP_BYTE = (1 << 0);
|
|
|
|
|
public const int UP_BYTE = (1 << 1);
|
|
|
|
|
public const int DOWN_BYTE = (1 << 2);
|
|
|
|
|
public const int LEFT_BYTE = (1 << 3);
|
|
|
|
|
public const int RIGHT_BYTE = (1 << 4);
|
|
|
|
|
public const int LIGHT_BYTE = (1 << 5);
|
|
|
|
|
public const int MEDIUM_BYTE = (1 << 6);
|
|
|
|
|
public const int HEAVY_BYTE = (1 << 7);
|
|
|
|
|
public const int ARCANA_BYTE = (1 << 8);
|
|
|
|
|
public const int GRAB_BYTE = (1 << 9);
|
|
|
|
|
public const int SHADOW_BYTE = (1 << 10);
|
|
|
|
|
public const int BLUE_FRENZY_BYTE = (1 << 11);
|
|
|
|
|
public const int RED_FRENZY_BYTE = (1 << 12);
|
|
|
|
|
public const int DASH_FORWARD_BYTE = (1 << 13);
|
|
|
|
|
public const int DASH_BACKWARD_BYTE = (1 << 14);
|
2023-10-26 22:42:28 +03:00
|
|
|
public const int NEUTRAL_BYTE = (1 << 15);
|
|
|
|
|
public const int UP_RIGHT_BYTE = (1 << 16);
|
|
|
|
|
public const int UP_LEFT_BYTE = (1 << 17);
|
|
|
|
|
public const int DOWN_RIGHT_BYTE = (1 << 18);
|
|
|
|
|
public const int DOWN_LEFT_BYTE = (1 << 19);
|
2022-12-05 16:04:05 +02:00
|
|
|
|
2023-07-01 23:48:47 +03:00
|
|
|
public static bool IS_LOCAL = true;
|
|
|
|
|
public static bool ONE_UP_INPUT;
|
|
|
|
|
public static bool ONE_DOWN_INPUT;
|
|
|
|
|
public static bool ONE_LEFT_INPUT;
|
|
|
|
|
public static bool ONE_RIGHT_INPUT;
|
2023-10-26 22:42:28 +03:00
|
|
|
public static bool ONE_UP_RIGHT_INPUT;
|
|
|
|
|
public static bool ONE_UP_LEFT_INPUT;
|
|
|
|
|
public static bool ONE_DOWN_RIGHT_INPUT;
|
|
|
|
|
public static bool ONE_DOWN_LEFT_INPUT;
|
|
|
|
|
public static bool ONE_NEUTRAL_INPUT;
|
2023-07-01 23:48:47 +03:00
|
|
|
public static bool ONE_LIGHT_INPUT;
|
|
|
|
|
public static bool ONE_MEDIUM_INPUT;
|
|
|
|
|
public static bool ONE_HEAVY_INPUT;
|
|
|
|
|
public static bool ONE_ARCANA_INPUT;
|
|
|
|
|
public static bool ONE_GRAB_INPUT;
|
|
|
|
|
public static bool ONE_SHADOW_INPUT;
|
|
|
|
|
public static bool ONE_BLUE_FRENZY_INPUT;
|
|
|
|
|
public static bool ONE_RED_FRENZY_INPUT;
|
|
|
|
|
public static bool ONE_DASH_FORWARD_INPUT;
|
|
|
|
|
public static bool ONE_DASH_BACKWARD_INPUT;
|
2023-10-26 22:42:28 +03:00
|
|
|
|
2023-07-01 23:48:47 +03:00
|
|
|
public static bool TWO_UP_INPUT;
|
|
|
|
|
public static bool TWO_DOWN_INPUT;
|
|
|
|
|
public static bool TWO_LEFT_INPUT;
|
|
|
|
|
public static bool TWO_RIGHT_INPUT;
|
2023-10-26 22:42:28 +03:00
|
|
|
public static bool TWO_UP_RIGHT_INPUT;
|
|
|
|
|
public static bool TWO_UP_LEFT_INPUT;
|
|
|
|
|
public static bool TWO_DOWN_RIGHT_INPUT;
|
|
|
|
|
public static bool TWO_DOWN_LEFT_INPUT;
|
|
|
|
|
public static bool TWO_NEUTRAL_INPUT;
|
2023-07-01 23:48:47 +03:00
|
|
|
public static bool TWO_LIGHT_INPUT;
|
|
|
|
|
public static bool TWO_MEDIUM_INPUT;
|
|
|
|
|
public static bool TWO_HEAVY_INPUT;
|
|
|
|
|
public static bool TWO_ARCANA_INPUT;
|
|
|
|
|
public static bool TWO_GRAB_INPUT;
|
|
|
|
|
public static bool TWO_SHADOW_INPUT;
|
|
|
|
|
public static bool TWO_BLUE_FRENZY_INPUT;
|
|
|
|
|
public static bool TWO_RED_FRENZY_INPUT;
|
|
|
|
|
public static bool TWO_DASH_FORWARD_INPUT;
|
|
|
|
|
public static bool TWO_DASH_BACKWARD_INPUT;
|
2022-12-15 17:53:32 +02:00
|
|
|
|
2022-12-05 16:04:05 +02:00
|
|
|
}
|