50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
|
|
*
|
|
* RetroArch 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 Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch 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 RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef INPUT_COMMON_H__
|
|
#define INPUT_COMMON_H__
|
|
|
|
#include "../driver.h"
|
|
|
|
static inline void input_conv_analog_id_to_bind_id(unsigned index, unsigned id,
|
|
unsigned *id_minus, unsigned *id_plus)
|
|
{
|
|
switch ((index << 1) | id)
|
|
{
|
|
case (RETRO_DEVICE_INDEX_ANALOG_LEFT << 1) | RETRO_DEVICE_ID_ANALOG_X:
|
|
*id_minus = RARCH_ANALOG_LEFT_X_MINUS;
|
|
*id_plus = RARCH_ANALOG_LEFT_X_PLUS;
|
|
break;
|
|
|
|
case (RETRO_DEVICE_INDEX_ANALOG_LEFT << 1) | RETRO_DEVICE_ID_ANALOG_Y:
|
|
*id_minus = RARCH_ANALOG_LEFT_Y_MINUS;
|
|
*id_plus = RARCH_ANALOG_LEFT_Y_PLUS;
|
|
break;
|
|
|
|
case (RETRO_DEVICE_INDEX_ANALOG_RIGHT << 1) | RETRO_DEVICE_ID_ANALOG_X:
|
|
*id_minus = RARCH_ANALOG_RIGHT_X_MINUS;
|
|
*id_plus = RARCH_ANALOG_RIGHT_X_PLUS;
|
|
break;
|
|
|
|
case (RETRO_DEVICE_INDEX_ANALOG_RIGHT << 1) | RETRO_DEVICE_ID_ANALOG_Y:
|
|
*id_minus = RARCH_ANALOG_RIGHT_Y_MINUS;
|
|
*id_plus = RARCH_ANALOG_RIGHT_Y_PLUS;
|
|
break;
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|