static void android_input_set_keybinds(void *data, unsigned device, unsigned port, unsigned id, unsigned keybind_action) { android_input_t *android = (android_input_t*)data; if (keybind_action & (1ULL << KEYBINDS_ACTION_SET_DEFAULT_BINDS)) { int i; /* eight 8-bit values are packed into one uint64_t * one for each of the 8 pads */ unsigned shift = 8 + (port * 8); // NOTE - we have to add '1' to the bit mask because // RETRO_DEVICE_ID_JOYPAD_B is 0 RARCH_LOG("Detecting keybinds. Device %u port %u id %u keybind_action %u\n", device, port, id, keybind_action); switch (device) { case DEVICE_ICONTROLPAD_HID_JOYSTICK: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "iControlPad HID Joystick profile", sizeof(g_settings.input.device_names[port])); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[201] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[200] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[198] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[199] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[197] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[196] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[202] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); break; case DEVICE_ICONTROLPAD_BLUEZ_IME: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "iControlPad SPP profile (using Bluez IME)", sizeof(g_settings.input.device_names[port])); android->keycode_lut[19] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[20] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[21] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[22] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[108] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[109] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); /* left analog stick */ android->keycode_lut[51] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[47] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[29] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[32] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); /* right analog stick - TODO */ // Left - 11 // Right - 13 // Down - 12 // Up - 15 break; case DEVICE_MADCATZ_PC_USB_STICK: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Madcatz PC USB Stick", sizeof(g_settings.input.device_names[port])); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[101] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); /* request hack */ android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); /* request hack */ android->keycode_lut[104] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[105] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[110] |= ((RARCH_QUIT_KEY+1) << shift); break; case DEVICE_ZEEMOTE_STEELSERIES: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Zeemote Steelseries", sizeof(g_settings.input.device_names[port])); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[110] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[108] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); break; case DEVICE_SAITEK_RUMBLE_P480: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Saitek Rumble P480", sizeof(g_settings.input.device_names[port])); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[196] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[197] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[198] |= ((RETRO_DEVICE_ID_JOYPAD_L3+1) << shift); android->keycode_lut[199] |= ((RETRO_DEVICE_ID_JOYPAD_R3+1) << shift); break; case DEVICE_KEYBOARD_RETROPAD: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Generic Keyboard", sizeof(g_settings.input.device_names[port])); // Keyboard // TODO: Map L2/R2/L3/R3 android->keycode_lut[54] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[29] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[60] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[66] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[19] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[20] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[21] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[22] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[52] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[47] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[45] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[51] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); /* Misc control scheme */ android->keycode_lut[131] |= ((RARCH_MENU_TOGGLE + 1) << shift); android->keycode_lut[132] |= ((RARCH_SAVE_STATE_KEY+1) << shift); android->keycode_lut[134] |= ((RARCH_LOAD_STATE_KEY+1) << shift); android->keycode_lut[137] |= ((RARCH_STATE_SLOT_PLUS+1) << shift); android->keycode_lut[136] |= ((RARCH_STATE_SLOT_MINUS+1) << shift); android->keycode_lut[62] |= ((RARCH_FAST_FORWARD_KEY+1) << shift); android->keycode_lut[40] |= ((RARCH_FAST_FORWARD_HOLD_KEY+1) << shift); android->keycode_lut[121] |= ((RARCH_PAUSE_TOGGLE+1) << shift); android->keycode_lut[39] |= ((RARCH_FRAMEADVANCE+1) << shift); android->keycode_lut[36] |= ((RARCH_RESET+1) << shift); android->keycode_lut[46] |= ((RARCH_REWIND+1) << shift); android->keycode_lut[139] |= ((RARCH_MUTE+1) << shift); android->keycode_lut[111] |= ((RARCH_QUIT_KEY+1) << shift); break; case DEVICE_PSMOVE_NAVI: /* TODO - unfinished */ g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "PS Move Navi", sizeof(g_settings.input.device_names[port])); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[198] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[196] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_L3+1) << shift); android->keycode_lut[202] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[201] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[AKEYCODE_UNKNOWN] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_IDROID_CON: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "i.droid", sizeof(g_settings.input.device_names[port])); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[196] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[197] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[198] |= ((RETRO_DEVICE_ID_JOYPAD_L3+1) << shift); android->keycode_lut[199] |= ((RETRO_DEVICE_ID_JOYPAD_R3+1) << shift); break; case DEVICE_ONLIVE_WIRELESS_CONTROLLER: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Onlive Wireless", sizeof(g_settings.input.device_names[port])); /* TODO - Does D-pad work as D-pad? */ android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[4] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); /* TODO - * LT - find out value * RT - find out value */ break; case DEVICE_GENIUS_MAXFIRE_G08XU: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Genius Maxfire G08XU", sizeof(g_settings.input.device_names[port])); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[101] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_USB_2_AXIS_8_BUTTON_GAMEPAD: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "USB 2 Axis 8 button", sizeof(g_settings.input.device_names[port])); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_BUFFALO_BGC_FC801: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Buffalo BGC FC801", sizeof(g_settings.input.device_names[port])); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_RETROUSB_RETROPAD: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "RetroUSB NES", sizeof(g_settings.input.device_names[port])); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_RETROUSB_SNES_RETROPORT: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "RetroUSB SNES", sizeof(g_settings.input.device_names[port])); android->keycode_lut[101] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_CYPRESS_USB: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Cypress USB", sizeof(g_settings.input.device_names[port])); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[101] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[104] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_TOODLES_2008_CHIMP: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Toodles 2008 Chimp", sizeof(g_settings.input.device_names[port])); android->keycode_lut[96] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[99] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[101] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[100] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[97] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[103] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[102] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[104] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[105] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_HOLTEK_JC_U912F: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Elecom JC-U912F", sizeof(g_settings.input.device_names[port])); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[196] |= ((RETRO_DEVICE_ID_JOYPAD_L3+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_R3+1) << shift); android->keycode_lut[198] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[199] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_THRUST_PREDATOR: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Trust Predator", sizeof(g_settings.input.device_names[port])); /* TODO: L3/R3 */ android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[196] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[197] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_DRAGONRISE: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "DragonRise", sizeof(g_settings.input.device_names[port])); /* TODO: L3/R3 */ android->keycode_lut[189] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[190] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[191] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[188] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[192] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[193] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[194] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[195] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); break; case DEVICE_TOMEE_NES_USB: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Tomee NES USB", sizeof(g_settings.input.device_names[port])); android->keycode_lut[105]|= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[104]|= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[96]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[97]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); break; case DEVICE_THRUSTMASTER_T_MINI: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Thrustmaster T Mini", sizeof(g_settings.input.device_names[port])); android->keycode_lut[105]|= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[104]|= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[96]|= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[99]|= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[97]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[98]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[100]|= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[101]|= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[104]|= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[103]|= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); break; case DEVICE_DEFENDER_GAME_RACER_CLASSIC: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Defender Game Racer Classic", sizeof(g_settings.input.device_names[port])); android->keycode_lut[197]|= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[188]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[189]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[190]|= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[191]|= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[192]|= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[193]|= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[194]|= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[195]|= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[196]|= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); break; case DEVICE_MOGA_IME: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "Moga IME", sizeof(g_settings.input.device_names[port])); /* TODO: * right stick up: 188 * right stick down: 189 * right stick left: 190 * right stick right: 191 */ android->keycode_lut[19] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[20] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[21] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[22]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[108]|= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[109]|= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[96]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[97]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[99]|= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[100]|= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[102]|= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103]|= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); break; case DEVICE_CCPCREATIONS_WIIUSE_IME: g_settings.input.device[port] = device; strlcpy(g_settings.input.device_names[port], "ccpCreations WiiUse IME", sizeof(g_settings.input.device_names[port])); /* Player 1 */ android->keycode_lut[19] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[20] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[21] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[22]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[8] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[9] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[10] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[11] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[12] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[13] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[AKEYCODE_M] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[AKEYCODE_P] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[33] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[30] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[34] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[35] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[31] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[71] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[72] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); android->keycode_lut[54] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[36] |= ((RARCH_RESET+1) << shift); android->keycode_lut[51] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[47] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[29] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[32] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[31] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[54] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); /* Player 2 */ shift += 8; android->keycode_lut[37] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[39] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[38] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[AKEYCODE_O]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[55] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[56] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[24] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[25] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[88] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[87] |= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[126] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[86] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[6] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[5] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[81] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[69] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[73] |= ((RARCH_RESET+1) << shift); android->keycode_lut[40] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[46] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[84] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[61] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); /* Player 3 */ shift += 8; android->keycode_lut[92] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[93] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[89] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[90]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[1]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[2]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[107]|= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[106]|= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[62]|= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[63]|= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[64]|= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[65]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[99]|= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[100]|= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[96]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[97]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[102]|= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[103]|= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[104]|= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[105]|= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); /* Player 4 */ shift += 8; android->keycode_lut[AKEYCODE_N] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[45] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); android->keycode_lut[48] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); android->keycode_lut[75]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); android->keycode_lut[83]|= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[91]|= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[108]|= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift); android->keycode_lut[109]|= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift); android->keycode_lut[28]|= ((RARCH_RESET+1) << shift); android->keycode_lut[115] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift); android->keycode_lut[116] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift); //android->keycode_lut[48] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift); -- Left meta //android->keycode_lut[75]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift); -- right meta android->keycode_lut[8] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift); android->keycode_lut[120] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift); android->keycode_lut[121] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift); android->keycode_lut[122] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift); android->keycode_lut[98] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift); android->keycode_lut[101] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift); android->keycode_lut[68] |= ((RETRO_DEVICE_ID_JOYPAD_L2+1) << shift); android->keycode_lut[127] |= ((RETRO_DEVICE_ID_JOYPAD_R2+1) << shift); break; } } }