gpsp/input.c

76 lines
1.9 KiB
C
Raw Normal View History

/* gameplaySP
*
* Copyright (C) 2006 Exophase <exophase@gmail.com>
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "common.h"
2014-12-10 12:29:19 +01:00
static u32 old_key = 0;
static retro_input_state_t input_state_cb;
void retro_set_input_state(retro_input_state_t cb) { input_state_cb = cb; }
2014-12-13 05:01:02 +01:00
static void trigger_key(u32 key)
{
u32 p1_cnt = io_registers[REG_P1CNT];
if((p1_cnt >> 14) & 0x01)
{
u32 key_intersection = (p1_cnt & key) & 0x3FF;
if(p1_cnt >> 15)
{
if(key_intersection == (p1_cnt & 0x3FF))
raise_interrupt(IRQ_KEYPAD);
}
else
{
if(key_intersection)
raise_interrupt(IRQ_KEYPAD);
}
}
}
2014-12-09 01:59:02 +01:00
u32 update_input(void)
{
unsigned i;
uint32_t new_key = 0;
if (!input_state_cb)
return 0;
for (i = 0; i < sizeof(btn_map) / sizeof(map); i++)
new_key |= input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, btn_map[i].retropad) ? btn_map[i].gba : 0;
2014-12-10 12:29:19 +01:00
if ((new_key | old_key) != old_key)
2014-12-09 01:59:02 +01:00
trigger_key(new_key);
2014-12-10 12:29:19 +01:00
old_key = new_key;
io_registers[REG_P1] = (~old_key) & 0x3FF;
2014-12-09 01:59:02 +01:00
return 0;
}
2014-12-10 12:29:19 +01:00
#define input_savestate_builder(type) \
void input_##type##_savestate(void) \
{ \
state_mem_##type##_variable(old_key); \
2014-12-10 11:06:17 +01:00
}
2014-12-10 11:06:17 +01:00
input_savestate_builder(read)
input_savestate_builder(write)