forked from Nebuleon/ReGBA
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinput.h
66 lines (58 loc) · 2.06 KB
/
input.h
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
/* unofficial gameplaySP kai
*
* Copyright (C) 2006 Exophase <[email protected]>
* Copyright (C) 2007 takka <[email protected]>
*
* 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
*/
#ifndef INPUT_H
#define INPUT_H
#define MAX_GAMEPAD_CONFIG_MAP 16
enum ReGBA_Buttons
{
REGBA_BUTTON_MENU = 0x1000,
REGBA_BUTTON_RAPID_B = 0x0800,
REGBA_BUTTON_RAPID_A = 0x0400,
REGBA_BUTTON_L = 0x0200,
REGBA_BUTTON_R = 0x0100,
REGBA_BUTTON_DOWN = 0x0080,
REGBA_BUTTON_UP = 0x0040,
REGBA_BUTTON_LEFT = 0x0020,
REGBA_BUTTON_RIGHT = 0x0010,
REGBA_BUTTON_START = 0x0008,
REGBA_BUTTON_SELECT = 0x0004,
REGBA_BUTTON_B = 0x0002,
REGBA_BUTTON_A = 0x0001,
};
enum ReGBA_MenuEntryReason
{
/* ReGBA is initialising and has no ROM. The menu is shown to select it.
* It must stay up until the user selects a ROM. */
REGBA_MENU_ENTRY_REASON_NO_ROM,
/* The user pressed ReGBA's menu key. The menu can be dismissed by the
* user. */
REGBA_MENU_ENTRY_REASON_MENU_KEY,
/* The GBA game entered suspend mode. The menu is shown until the user
* wants to exit suspend mode or selects a new ROM. */
REGBA_MENU_ENTRY_REASON_SUSPENDED,
};
uint32_t update_input();
void input_read_mem_savestate();
void input_write_mem_savestate();
// Tilt sensor on the GBA side. It's mapped... somewhere... in the GBA address
// space. See the read_backup function in memory.c for more information.
extern uint32_t tilt_sensor_x;
extern uint32_t tilt_sensor_y;
#endif