2016-09-16 14:39:30 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-01-22 12:40:32 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2016-09-16 14:39:30 +00:00
|
|
|
*
|
|
|
|
* 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 _MENU_EVENT_H
|
|
|
|
#define _MENU_EVENT_H
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
#include <stdint.h>
|
2016-10-24 18:26:22 +00:00
|
|
|
#include <compat/strl.h>
|
2016-10-22 15:03:20 +00:00
|
|
|
|
2016-09-16 14:39:30 +00:00
|
|
|
#include <retro_common_api.h>
|
2016-10-26 22:14:01 +00:00
|
|
|
#include <libretro.h>
|
|
|
|
|
2016-09-16 14:39:30 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
|
2017-12-12 07:55:31 +00:00
|
|
|
/*
|
2017-07-31 16:26:18 +00:00
|
|
|
* This function gets called in order to process all input events
|
|
|
|
* for the current frame.
|
2016-09-16 14:39:30 +00:00
|
|
|
*
|
2017-07-31 16:26:18 +00:00
|
|
|
* Sends input code to menu for one frame.
|
|
|
|
*
|
|
|
|
* It uses as input the local variables' input' and 'trigger_input'.
|
|
|
|
*
|
|
|
|
* Mouse and touch input events get processed inside this function.
|
|
|
|
*
|
|
|
|
* NOTE: 'input' and 'trigger_input' is sourced from the keyboard and/or
|
|
|
|
* the gamepad. It does not contain input state derived from the mouse
|
|
|
|
* and/or touch - this gets dealt with separately within this function.
|
|
|
|
*
|
|
|
|
* TODO/FIXME - maybe needs to be overhauled so we can send multiple
|
2016-09-16 14:39:30 +00:00
|
|
|
* events per frame if we want to, and we shouldn't send the
|
|
|
|
* entire button state either but do a separate event per button
|
|
|
|
* state.
|
|
|
|
*/
|
2017-11-24 11:19:17 +00:00
|
|
|
unsigned menu_event(retro_bits_t* p_input, retro_bits_t* p_trigger_state);
|
2016-09-16 14:39:30 +00:00
|
|
|
|
2017-07-31 16:26:18 +00:00
|
|
|
/* Set a specific keyboard key.
|
|
|
|
*
|
2017-12-12 07:55:31 +00:00
|
|
|
* 'down' sets the latch (true would
|
2017-07-31 16:26:18 +00:00
|
|
|
* mean the key is being pressed down, while 'false' would mean that
|
|
|
|
* the key has been released).
|
|
|
|
**/
|
2017-01-12 10:31:24 +00:00
|
|
|
void menu_event_kb_set(bool down, enum retro_key key);
|
2016-11-05 13:04:05 +00:00
|
|
|
|
2017-07-31 16:26:18 +00:00
|
|
|
/* Check if a specific keyboard key has been pressed. */
|
2017-01-12 10:31:24 +00:00
|
|
|
unsigned char menu_event_kb_is_set(enum retro_key key);
|
2016-11-05 13:04:05 +00:00
|
|
|
|
2016-09-16 14:39:30 +00:00
|
|
|
RETRO_END_DECLS
|
|
|
|
|
|
|
|
#endif
|