forked from libretro/gpsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.c
174 lines (143 loc) · 4.66 KB
/
input.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* 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"
bool libretro_supports_bitmasks = false;
bool libretro_supports_ff_override = false;
bool libretro_ff_enabled = false;
bool libretro_ff_enabled_prev = false;
unsigned turbo_period = TURBO_PERIOD_MIN;
unsigned turbo_pulse_width = TURBO_PULSE_WIDTH_MIN;
unsigned turbo_a_counter = 0;
unsigned turbo_b_counter = 0;
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; }
extern void set_fastforward_override(bool fastforward);
static void trigger_key(u32 key)
{
u32 p1_cnt = read_ioreg(REG_P1CNT);
if((p1_cnt >> 14) & 0x01)
{
u32 key_intersection = (p1_cnt & key) & 0x3FF;
if(p1_cnt >> 15)
{
if(key_intersection == (p1_cnt & 0x3FF))
{
flag_interrupt(IRQ_KEYPAD);
check_and_raise_interrupts();
}
}
else
{
if(key_intersection)
{
flag_interrupt(IRQ_KEYPAD);
check_and_raise_interrupts();
}
}
}
}
u32 update_input(void)
{
unsigned i;
uint32_t new_key = 0;
bool turbo_a = false;
bool turbo_b = false;
if (!input_state_cb)
return 0;
if (libretro_supports_bitmasks)
{
int16_t ret = input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_MASK);
for (i = 0; i < sizeof(btn_map) / sizeof(map); i++)
new_key |= (ret & (1 << btn_map[i].retropad)) ? btn_map[i].gba : 0;
libretro_ff_enabled = libretro_supports_ff_override &&
(ret & (1 << RETRO_DEVICE_ID_JOYPAD_R2));
turbo_a = (ret & (1 << RETRO_DEVICE_ID_JOYPAD_X));
turbo_b = (ret & (1 << RETRO_DEVICE_ID_JOYPAD_Y));
}
else
{
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;
libretro_ff_enabled = libretro_supports_ff_override &&
input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_R2);
turbo_a = input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_X);
turbo_b = input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_Y);
}
/* Handle turbo buttons */
if (turbo_a)
{
new_key |= (turbo_a_counter < turbo_pulse_width) ?
BUTTON_A : 0;
turbo_a_counter++;
if (turbo_a_counter >= turbo_period)
turbo_a_counter = 0;
}
else
turbo_a_counter = 0;
if (turbo_b)
{
new_key |= (turbo_b_counter < turbo_pulse_width) ?
BUTTON_B : 0;
turbo_b_counter++;
if (turbo_b_counter >= turbo_period)
turbo_b_counter = 0;
}
else
turbo_b_counter = 0;
// GBP keypad detection hack (only at game startup!)
if (serial_mode == SERIAL_MODE_GBP) {
// During the startup screen (aproximate)
if (frame_counter > 20 && frame_counter < 100) {
// Emulate 4 keypad buttons pressed (which is impossible).
new_key = (frame_counter % 3) ? 0x3FF : 0x30F;
}
}
if ((new_key | old_key) != old_key)
trigger_key(new_key);
old_key = new_key;
write_ioreg(REG_P1, (~old_key) & 0x3FF);
/* Handle fast forward button */
if (libretro_ff_enabled != libretro_ff_enabled_prev)
{
set_fastforward_override(libretro_ff_enabled);
libretro_ff_enabled_prev = libretro_ff_enabled;
}
return 0;
}
bool input_check_savestate(const u8 *src)
{
const u8 *p = bson_find_key(src, "input");
return (p && bson_contains_key(p, "prevkey", BSON_TYPE_INT32));
}
bool input_read_savestate(const u8 *src)
{
const u8 *p = bson_find_key(src, "input");
if (p)
return bson_read_int32(p, "prevkey", &old_key);
return false;
}
unsigned input_write_savestate(u8 *dst)
{
u8 *wbptr1, *startp = dst;
bson_start_document(dst, "input", wbptr1);
bson_write_int32(dst, "prevkey", old_key);
bson_finish_document(dst, wbptr1);
return (unsigned int)(dst - startp);
}