/* This file is part of reicast. reicast is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. reicast is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with reicast. If not, see . */ #pragma once enum DreamcastKey { // Real buttons DC_BTN_C = 1 << 0, DC_BTN_B = 1 << 1, DC_BTN_A = 1 << 2, DC_BTN_START = 1 << 3, DC_DPAD_UP = 1 << 4, DC_DPAD_DOWN = 1 << 5, DC_DPAD_LEFT = 1 << 6, DC_DPAD_RIGHT = 1 << 7, DC_BTN_Z = 1 << 8, DC_BTN_Y = 1 << 9, DC_BTN_X = 1 << 10, DC_BTN_D = 1 << 11, DC_DPAD2_UP = 1 << 12, DC_DPAD2_DOWN = 1 << 13, DC_DPAD2_LEFT = 1 << 14, DC_DPAD2_RIGHT = 1 << 15, // System buttons EMU_BTN_NONE = 0, EMU_BTN_ESCAPE = 1 << 16, EMU_BTN_TRIGGER_LEFT = 1 << 17, EMU_BTN_TRIGGER_RIGHT = 1 << 18, EMU_BTN_MENU = 1 << 19, // Real axes DC_AXIS_LT = 0x10000, DC_AXIS_RT = 0x10001, DC_AXIS_X = 0x20000, DC_AXIS_Y = 0x20001, DC_AXIS_X2 = 0x20002, DC_AXIS_Y2 = 0x20003, // System axes EMU_AXIS_NONE = 0x00000, EMU_AXIS_DPAD1_X = DC_DPAD_LEFT, EMU_AXIS_DPAD1_Y = DC_DPAD_UP, EMU_AXIS_DPAD2_X = DC_DPAD2_LEFT, EMU_AXIS_DPAD2_Y = DC_DPAD2_RIGHT, };