2014-06-17 16:49:13 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-01-22 13:40:32 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-02-22 16:31:54 -05:00
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2016-09-05 11:35:27 -04:00
|
|
|
*
|
2014-06-17 16:49:13 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
2015-01-12 21:22:50 +01:00
|
|
|
#ifndef __MENU_DRIVER_H__
|
|
|
|
#define __MENU_DRIVER_H__
|
2014-06-17 16:49:13 +02:00
|
|
|
|
2014-06-17 17:12:07 +02:00
|
|
|
#include <stdint.h>
|
2015-12-06 17:55:27 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2016-06-03 05:49:46 +02:00
|
|
|
#include <retro_common_api.h>
|
2019-10-29 21:21:48 +01:00
|
|
|
#include <formats/image.h>
|
2019-02-08 08:00:32 +01:00
|
|
|
#include <queues/task_queue.h>
|
2015-12-06 17:55:27 +01:00
|
|
|
|
2021-08-31 00:43:04 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2019-01-31 20:36:39 +01:00
|
|
|
#include "menu_defines.h"
|
2016-09-15 00:20:43 +02:00
|
|
|
#include "menu_input.h"
|
2021-08-31 00:43:04 +02:00
|
|
|
#include "../input/input_osk.h"
|
2015-06-16 02:15:32 +02:00
|
|
|
#include "menu_entries.h"
|
2020-06-06 18:41:21 +02:00
|
|
|
#include "menu_shader.h"
|
2021-11-06 02:13:10 +01:00
|
|
|
#include "../gfx/gfx_animation.h"
|
2020-02-16 15:26:58 +01:00
|
|
|
#include "../gfx/gfx_display.h"
|
2022-09-05 01:01:38 +03:00
|
|
|
#include "../gfx/gfx_thumbnail_path.h"
|
2017-05-19 15:25:14 +02:00
|
|
|
#include "../gfx/font_driver.h"
|
2021-08-31 00:43:04 +02:00
|
|
|
#include "../performance_counters.h"
|
2014-09-16 00:52:07 +02:00
|
|
|
|
2021-02-09 12:39:53 +00:00
|
|
|
|
2016-06-03 05:49:46 +02:00
|
|
|
RETRO_BEGIN_DECLS
|
2014-06-17 17:12:07 +02:00
|
|
|
|
2015-12-06 17:55:27 +01:00
|
|
|
#ifndef MAX_COUNTERS
|
|
|
|
#define MAX_COUNTERS 64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX_CHEAT_COUNTERS
|
2018-10-11 03:26:58 +02:00
|
|
|
#define MAX_CHEAT_COUNTERS 6000
|
2015-12-06 17:55:27 +01:00
|
|
|
#endif
|
|
|
|
|
2021-08-31 00:43:04 +02:00
|
|
|
#define SCROLL_INDEX_SIZE (2 * (26 + 2) + 1)
|
|
|
|
|
|
|
|
#define POWERSTATE_CHECK_INTERVAL (30 * 1000000)
|
|
|
|
#define DATETIME_CHECK_INTERVAL 1000000
|
|
|
|
|
|
|
|
#define MENU_LIST_GET(list, idx) ((list) ? ((list)->menu_stack[(idx)]) : NULL)
|
|
|
|
|
|
|
|
#define MENU_LIST_GET_SELECTION(list, idx) ((list) ? ((list)->selection_buf[(idx)]) : NULL)
|
|
|
|
|
|
|
|
#define MENU_LIST_GET_STACK_SIZE(list, idx) ((list)->menu_stack[(idx)]->size)
|
|
|
|
|
|
|
|
#define MENU_ENTRIES_GET_SELECTION_BUF_PTR_INTERNAL(menu_st, idx) ((menu_st->entries.list) ? MENU_LIST_GET_SELECTION(menu_st->entries.list, (unsigned)idx) : NULL)
|
2022-10-08 22:52:18 +02:00
|
|
|
#define MENU_ENTRIES_NEEDS_REFRESH(menu_st) (!((menu_st->flags & MENU_ST_FLAG_ENTRIES_NONBLOCKING_REFRESH) || !(menu_st->flags & MENU_ST_FLAG_ENTRIES_NEED_REFRESH)))
|
2021-08-31 00:43:04 +02:00
|
|
|
|
2015-12-06 17:55:27 +01:00
|
|
|
#define MENU_SETTINGS_CORE_INFO_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CHEEVOS_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_START 0x10000
|
|
|
|
#define MENU_SETTINGS_CHEEVOS_START 0x40000
|
2017-01-19 18:11:02 -05:00
|
|
|
#define MENU_SETTINGS_NETPLAY_ROOMS_START 0x80000
|
2015-12-06 17:55:27 +01:00
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
/* "Normalize" non-alphabetical entries so they
|
|
|
|
* are lumped together for purposes of jumping. */
|
|
|
|
#define ELEM_GET_FIRST_CHAR(ret) ((ret < 'a') ? ('a' - 1) : (ret > 'z') ? ('z' + 1) : ret)
|
|
|
|
|
2016-02-25 19:50:45 +01:00
|
|
|
enum menu_settings_type
|
2015-12-06 17:55:27 +01:00
|
|
|
{
|
2016-06-20 15:50:37 +02:00
|
|
|
MENU_SETTINGS_NONE = FILE_TYPE_LAST + 1,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_SETTINGS_TAB,
|
|
|
|
MENU_HISTORY_TAB,
|
2017-08-12 16:37:20 +02:00
|
|
|
MENU_FAVORITES_TAB,
|
2016-07-30 19:29:10 +02:00
|
|
|
MENU_MUSIC_TAB,
|
|
|
|
MENU_VIDEO_TAB,
|
|
|
|
MENU_IMAGES_TAB,
|
2017-01-18 22:46:48 -05:00
|
|
|
MENU_NETPLAY_TAB,
|
2020-07-28 01:53:13 +09:00
|
|
|
MENU_EXPLORE_TAB,
|
2022-02-22 18:23:48 +00:00
|
|
|
MENU_CONTENTLESS_CORES_TAB,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_ADD_TAB,
|
|
|
|
MENU_PLAYLISTS_TAB,
|
2018-09-23 10:59:09 +02:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM,
|
2018-11-24 10:31:05 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_RESOLUTION,
|
2019-12-23 05:39:10 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_VIDEO_SHADER_PARAM,
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_VIDEO_SHADER_PRESET_PARAM,
|
2019-12-22 07:14:20 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_VIDEO_SHADER_NUM_PASS,
|
2019-06-26 17:40:00 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_PLAYLIST_DEFAULT_CORE,
|
2019-07-18 21:13:14 +02:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_PLAYLIST_LABEL_DISPLAY_MODE,
|
2019-08-15 18:04:24 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_PLAYLIST_RIGHT_THUMBNAIL_MODE,
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_PLAYLIST_LEFT_THUMBNAIL_MODE,
|
2020-04-10 17:05:23 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_PLAYLIST_SORT_MODE,
|
2019-11-29 17:13:35 +00:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_MANUAL_CONTENT_SCAN_SYSTEM_NAME,
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_MANUAL_CONTENT_SCAN_CORE_NAME,
|
2020-01-14 12:28:10 +00:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_DISK_INDEX,
|
2021-02-04 17:06:19 +02:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_INPUT_DEVICE_TYPE,
|
2021-02-05 18:15:10 +02:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_INPUT_DEVICE_INDEX,
|
2024-05-18 16:48:17 +02:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_INPUT_SELECT_RESERVED_DEVICE,
|
2023-01-03 23:27:43 +01:00
|
|
|
#ifdef ANDROID
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_INPUT_SELECT_PHYSICAL_KEYBOARD,
|
|
|
|
#endif
|
2020-07-23 17:19:41 +01:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_INPUT_DESCRIPTION,
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_INPUT_DESCRIPTION_KBD,
|
2023-01-28 03:22:08 +02:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_AUDIO_DEVICE,
|
Add microphone support via a new driver (#14731)
* Some slight fixes
* Update libretro.h
* Log calls to RETRO_ENVIRONMENT_GET_MICROPHONE_INTERFACE
* Finish proof-of-concept for mic support
- It works, but doesn't support floating-point audio yet
- It may need to be resampled, too
* Add macros that aren't available in SDL 2
* Comment out a variable definition for now
- For C89 compliance
* Add some comments for clarity
* Let ALSA tolerate a null new_rate
* Partial ALSA microphone support
- Not yet tested
- Mic is created and destroyed
- Mic can also be paused or unpaused
- Mic is paused or unpaused with the rest of the driver
- Microphone is not yet read
* Install error logging in the ALSA driver
- It defers to RARCH_ERR
* Free the ALSA microphone in alsa_free
* Fix an indent
* First draft of alsa_read_microphone
* Deinitialize SDL Audio in sdl_audio_free
* Save and restore the ALSA error logger
- You should always practice safe global state
* Add newlines to some RARCH_ERRs
* Add some logging
* Check for the mic being active via settings instead of via flags
* Adjusted a log entry to be less misleading
- A frequency of 0Hz looks weird to the uninformed
- In reality, it means the driver used the requested frequency
* Fix an incorrect format string
* Tidy up logging in alsa.c
* Rename audio_enable_microphone to audio_enable_input
* Rename microphone_device to audio_input_device
* Add audio_input_latency and audio_input_block_frames settings
* Add all mic-related settings to the options menu
* Adjust logging for alsa.c
- Log the ALSA library version
- Add errno details
* Refer to the microphone in logs by name
* Use %u instead of %d for some log items
* Add input_samples_buf
* Remove an inaccurate comment
* Change type of input_samples_buf
* Clean up audio_driver_flush_microphone_input
* Comment convert_float_to_s16
- It helped me understand what it's doing
- Turns out it'll work just fine on mono audio
* Don't use the resampler for mic input
* Fix crash in the ALSA driver when reading from a mic
* Update some logging messages
* ALSA support now works for mics
* Reuse some common functions in alsa.c
* Add alsa_thread_microphone_t
* Refactor alsa.c
- Introduce alsa_init_pcm to init any PCM that we're using
- Vastly simplifies the implementation of alsa_init and alsa_init_microphone
- Will be used for the read-based versions next
* Make ALSA logging a little more consistent
* Clean up the mic with alsa_free_microphone if alsa_init_microphone fails
* Remove an unused function
* Move some cleanup in alsa.c to a common function
* First crack at mic support for alsathread
- Refactor some duplicate code into functions
- Use functions introduced in alsa.c
- Create and destroy the mic
* Slight cleanups for clarity
* Implement alsa_thread_set/get_microphone_state
* More work on alsathread
- No more crashing, but the mic just returns silence
* Slight cleanups for clarity
* Add alsa_set_mic_enabled_internal
- For setting the state of a microphone while considering its current state
* Use alsa_set_mic_enabled_internal
* Log a little more info
* Log when the audio driver is started/stopped
* Move base microphone driver code into a new directory
- Add microphone_driver.c to Makefile.common
- Rename functions as needed
* Initialize and deinitialize the microphone driver
* Implement sdl_microphone.c
* Un-const an argument
- In case the driver context needs to do any locking
* Revise comments for microphone_driver.h
* Remove an unimplemented function
* Remove some functions from the mic driver
* Remove mic functions from audio_thread_wrapper
* Remove mic functions from sdl_audio
* Fix microphone_null
* Split the mic code for the alsa audio drivers into microphone drivers
* Fix an extra struct member
* Add a setting for the mic driver
* Add a command to reinitialize the microphone driver
* Rename mic-related settings
* Add DRIVER_MICROPHONE_MASK to DRIVERS_CMD_ALL
* Rename audio_enable_input to microphone_enable
* Remove some labels from qt_options
* Search for microphone_driver within find_driver_nonempty
* Clean up some mic driver code
* Pending mics now return silence
* Adjust some logging and comments
* Some cleanup in the microphone driver
* Invert a flag check
- Oops
* Fix a log message
* Fix the wrong flags being checked
* Slight refactor of wasapi_init_device
- Add a data_flow parameter
- Declare it in a header
- In preparation for WASAPI mic support
* Add some WASAPI macros for _IAudioCaptureClient
* Move some common WASAPI functions to audio/common/wasapi.c
- They'll be used by the mic and the audio drivers
* Add wasapi_log_hr
* Generalize mmdevice_list_new to look for capture devices, too
* Fix a function declaration
* Move driver-specific device_list_new functions into their respective files
* Clean up some declarations
* First draft of wasapi microphone driver
* Add wasapi_microphone_device_list_free
* Change function parameter names to be consistent with microphone_driver
* Partially implement wasapi_microphone_read
- Mostly copied from the audio driver so far
- It doesn't compile yet
- But it'll be beautiful when I'm done with it
* Refactor the mic driver's functions
- Rename get_mic_active to mic_alive
- Split set_mic_active into start_mic and stop_mic
- Refactor the SDL mic driver accordingly
* Edit some WASAPI functions for logging and clarity
* Implement more of the WASAPI mic driver
* Rename write_event to read_event
* Pass the WASAPI driver context to the various read functions
* Mostly implement the read function for the WASAPI mic driver
* Fix a crash in microphone_driver
- Forgot to move the position of the name of null_driver
* Reduce some logging in wasapi common functions
- Only log the chosen audio client format, not all attempted ones
* Add some macro wrappers for IAudioClient methods
* Update mic driver configuration
- Make the mic driver configurable in the menu
- Add config items for WASAPI-related options similar to the audio driver
* Fix a menu entry scrolling through audio devices instead of mic devices
* Add some utility functions
* Expose the new utility functions in wasapi.h
* Add extra logging in the WASAPI common functions
* Add sharemode_name
* Use _IAudioClient_Initialize macro in some places
* Pass channels to wasapi_init_client
- Remember, mics are in mono
* Use _IAudioClient_Initialize macro some more
* Forgot to pass channels in some places
* Add some utility functions
* Forgot an #include
* Add wasapi_select_device_format
* Simplify the format selection logic in wasapi_init_client_sh
* Unset the microphone in wasapi_microphone_close_mic
- Ought to prevent a potential segfault
* Simplify some logging
* Fix incorrect value being passed to _IAudioCaptureClient_ReleaseBuffer
* Remove some unneeded logging
* Add some values to hresult_name
* Polish up wasapi_select_device_format
- Test for formats manually when Windows can't
- Add some debug logging
- Check for channels
* Compute the fields of WAVEFORMATEXTENSIBLE correctly
- As per the doc's stated requirements
* Simplify logic for WASAPI client creation
* Fix a potential hang in wasapi_microphone_read_shared_buffered
* Stop the microphone if the driver is stopped
* Don't name the microphone event
* Ensure that wasapi_init_client reports the correct format and rate
* Implement exclusive microphone read access for WASAPI
* Add _IAudioCaptureClient_GetNextPacketSize macro
* Organize cases in hresult_name
* Clear some extra fields if wasapi_set_format is setting a Pcm format
* Adjust some logs
* Adjust some logs
* Remove unneeded local vars
* Add a log
* Update wasapi.c
* Update wasapi.c
* Fix shared-mode mic support in WASAPI producing broken input
- Turns out it had nothing to do with shared mode
* Reuse a common function
- Remove wasapi_microphone_read_shared_buffered
- Rename wasapi_microphone_read_exclusive to wasapi_microphone_read_buffered
* Remove some code I was using for test purposes
* Clarify some language
* Double the default shared-mode mic buffer length
* Split getting a device's name into a separate function, then use it
* Fix the ALSA mic drivers
- To comply with changes I previously made to the mic driver interface
* Remove unused synchronization primitives from the SDL microphone driver
* Add sdl_microphone_mic_use_float
* Document audio_driver_state_flags
- I needed to understand these to see if similar flags were required for the mic driver
* Remove an unused function in wasapi.c
* Add and document flags in microphone_driver.h
* Remove driver-specific mic start/stop functions
- The mic driver itself doesn't do much processing
- That honor goes to individual mics
* Remove some unused fields in microphone_driver.h
* Add CMD_EVENT_MICROPHONE_STOP/START
* Remove unused functions from microphone_null
* Change how the mic driver state is referenced in some places
* Simplify the SDL microphone driver
- The driver backend no longer keeps a reference to the mic (the frontend does that)
- Remove functions that are no longer needed
- Don't track paused state, just query the mic itself
* Simplify the WASAPI microphone driver
- Don't track the driver running state or the microphone handle, the frontend does that now
- Remove support for unbuffered input (hunterk suggested that it wasn't necessary)
* Make microphone_wasapi_sh_buffer_length a uint, not an int
- It won't be negative anymore
- 0 now represents the default value
* Make the microphone frontend more robust
- Improve documentation for how various functions should be implemented
- Closes all microphones before freeing the driver (so backends don't have to)
- Tracks the enabled state of each microphone, so backends don't have to (but they still can)
* Stop the mic driver in core_unload_game
* Ensure mic support is compatible with the revised menu code
* Move alsa.h into audio/common
* Remove RETRO_ENVIRONMENT_GET_MICROPHONE_ENABLED
- It was never really needed
* Refactor the ALSA microphone driver
- Move common ALSA functions to audio/common/alsa.c
- Replace alsa_set_mic_enabled_internal with alsa_start/stop_pcm
- Don't track the microphone handle in the ALSA driver context
- Remove unneeded fields
* Move some common alsathread code into audio/common/alsathread.c
* Change return type of mic_driver_open_mic_internal to bool
* First crack at resampling mic input
* Remove an extraneous check
- I think something distracted me when I was writing this line
* Add stereo/mono conversion functions
* Make alsa_start_pcm and alsa_stop_pcm more robust
- They now return success if the stream is already running and stopped, respectively
* Revise some mic-related comments in libretro.h
* First crack at resampling mic input
* Simplify an expression
* Simplify an expression
* Fix a log tag
* Allow mic resampler to be configured separately from audio resampler
* Add some comments
* Set the source ratio to something sensible
* Stop deadlock in `alsathread` mic driver
* Allow mics to be initialized even when core is loaded from CLI
- When loading content from CLI, the drivers are initialized a little differently
- That threw off the mic initialization code
* Rename the functions in retro_microphone_interface
* Revise some mic-related comments in libretro.h
* Update retro_microphone_interface
- Add get_mic_rate
- Add a parameter to open_mic
- The modifications don't do anything yet
* Use parameter objects in the microphone handle
* Replace get_mic_rate with get_params
* Add a microphone interface version
* Remove part of a comment
* Set the effective params in mic_driver_microphone_handle_init
* Drop a stray newline
* Change where the mic interface is zeroed
- I was accidentally throwing out the version that the core was asking for
* Reduce logspam for wasapi_set_nonblock_state
- Now it only logs when the sync mode is changed
* Change DEFAULT_WASAPI_SH_BUFFER_LENGTH to 0
- -16 is no longer a valid value
* Set the new_rate in wasapi_init
* Change description of microphone sample rate in the settings
* First attempt at resampling configured mic input
* Forgot a section
* Fix some input samples being skipped
* Rename a variable for clarity
* Add microphone.outgoing_samples
* Update the mic driver
- Processed samples are now buffered
- The resampler is skipped if the ratio is (very close to) 1
* Remove part of a comment
* Update some comments in audio_resampler.h
* Slightly refactor the SDL microphone driver
- Move SDL_AudioSpec to a field of sdl_microphone_handle_t
- Allow SDL to change the requested format and sample rate
- Request floating-point input
- Implement sdl_microphone_mic_use_float
* Fix a non-C89-compliant declaration
* Add new files to griffin.c
* Remove a C++-style comment
* Add two more files to griffin.c
* Remove some unneeded declarations in microphone_driver.h
* Remove a stray comma in configuration.c
- For C89 compliance
* Fix compilation on some platforms
* Change some function signatures
* Make the ALSA drivers always set the audio rate
* Fix the alsathread mic driver
* Make state_manager_frame_is_reversed return false if HAVE_REWIND isn't defined
* Mute the microphone if the core is running in fast-forward, slow-mo, or rewind
* Clarify a comment
* Clarify a comment
* Add a comment
* Don't allocate memory for slowmo samples in the mic driver
- We're not supporting slowmo for mics, so it's not needed
* Fix a {
* Add my name to AUTHORS.h
* Add driver_lifetime_flags
- For drivers that have special setup/teardown needs
* Ensure that resetting the mic driver maintains active mic handles
- Prevents fullscreen toggle from stopping all mic input
* Update CHANGES.md
* Move some default microphone settings to a new part of the config file
* Ensure that RetroArch can use the audio format that Windows suggests
* Remove references to mic support in the SDL audio driver
* Remove unused WASAPI functions
* Return failure if RetroArch couldn't select a WASAPI format
* Ensure that Windows uses the WASAPI mic driver by default
* Treat disabled mic support as a warning, not an error
* Clarify some WASAPI-related microphone settings
* Remove some unused variables
* Add or revise microphone-related comments
* Rearrange doc comments for microphone types in libretro.h
* Remove a space
* Remove some unused flags
* Remove ALSA error logger
- It was never used anyway
* Remove unneeded microphone-related arguments
* Document a parameter
* Remove a logging call
* Add a constant for the microphone's shared buffer length for WASAPI
* Fix stylistic inconsistencies
* Make mic_driver_get_sample_size a macro instead of a function
* Move the microphone implementation to the audio directory
* Make microphone support optional (but enabled by default)
* Fix the griffin build
2023-06-06 15:55:06 -04:00
|
|
|
#ifdef HAVE_MICROPHONE
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_MICROPHONE_DEVICE,
|
|
|
|
#endif
|
2022-05-02 20:44:53 +03:00
|
|
|
#ifdef HAVE_NETWORKING
|
|
|
|
MENU_SETTING_DROPDOWN_ITEM_NETPLAY_MITM_SERVER,
|
|
|
|
#endif
|
2018-09-23 18:36:48 +02:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_CORE_OPTIONS_ITEM,
|
2018-09-23 17:13:45 +02:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_STRING_OPTIONS_ITEM,
|
2018-09-24 14:34:43 +02:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM,
|
2018-09-23 14:34:51 +02:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_INT_ITEM,
|
2018-09-23 10:59:09 +02:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM,
|
2018-11-05 20:46:56 +01:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_CORE_OPTIONS_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_STRING_OPTIONS_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_INT_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM_SPECIAL,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_NO_ITEM,
|
|
|
|
MENU_SETTING_DRIVER,
|
|
|
|
MENU_SETTING_ACTION,
|
|
|
|
MENU_SETTING_ACTION_RUN,
|
|
|
|
MENU_SETTING_ACTION_CLOSE,
|
2020-06-09 14:06:11 +01:00
|
|
|
MENU_SETTING_ACTION_CLOSE_HORIZONTAL,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_ACTION_CORE_OPTIONS,
|
2021-02-24 17:41:40 +00:00
|
|
|
MENU_SETTING_ACTION_CORE_OPTION_OVERRIDE_LIST,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_ACTION_CORE_INPUT_REMAPPING_OPTIONS,
|
2022-03-16 16:59:07 +00:00
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_MANAGER_LIST,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_ACTION_CORE_CHEAT_OPTIONS,
|
2020-06-11 14:12:20 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_MANAGER_OPTIONS,
|
2022-03-09 15:05:07 +01:00
|
|
|
#ifdef HAVE_MIST
|
|
|
|
MENU_SETTING_ACTION_CORE_MANAGER_STEAM_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_STEAM_INSTALL,
|
|
|
|
MENU_SETTING_ACTION_CORE_STEAM_UNINSTALL,
|
|
|
|
#endif
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_ACTION_CORE_DISK_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_SHADER_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_SAVESTATE,
|
|
|
|
MENU_SETTING_ACTION_LOADSTATE,
|
Replay UI support (#15048)
* Add bsv replay controls (not yet fully implemented), remove toggle
see notes in task_movie.c, make sure command.c calls the right
functions, check retroarch.c and other todos.
bsv files are also now stored with states, not saves.
* Compilation fixes
* Added command impls for play and record replay, and some code in load state to do the right thing there
* Guard some parts of the new code with HAVE_BSV_MOVIE
* wip, menu fixes
* more menu fixes, osd for movie errors, halt recording properly
* Menu and label fixes
* move bsvs to own file suffix series under savestates, fix recording and playback command validity checks
* Fix replay autoincrement
* fix endif placement, whoops
---------
Co-authored-by: Joseph C. Osborn <jcoa2018@pomona.edu>
2023-03-02 15:52:22 -08:00
|
|
|
MENU_SETTING_ACTION_PLAYREPLAY,
|
|
|
|
MENU_SETTING_ACTION_RECORDREPLAY,
|
|
|
|
MENU_SETTING_ACTION_HALTREPLAY,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_ACTION_SCREENSHOT,
|
2016-08-29 00:54:51 +02:00
|
|
|
MENU_SETTING_ACTION_DELETE_ENTRY,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_ACTION_RESET,
|
2020-06-18 17:08:57 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_LOCK,
|
2022-03-09 16:49:16 +00:00
|
|
|
MENU_SETTING_ACTION_CORE_SET_STANDALONE_EXEMPT,
|
2017-08-03 18:38:30 -04:00
|
|
|
MENU_SETTING_ACTION_CORE_DELETE,
|
2021-02-07 11:45:16 +01:00
|
|
|
MENU_SETTING_ACTION_FAVORITES_DIR, /* "Start Directory" */
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_SETTING_STRING_OPTIONS,
|
|
|
|
MENU_SETTING_GROUP,
|
|
|
|
MENU_SETTING_SUBGROUP,
|
|
|
|
MENU_SETTING_HORIZONTAL_MENU,
|
2018-04-30 16:23:31 -05:00
|
|
|
MENU_SETTING_ACTION_PAUSE_ACHIEVEMENTS,
|
|
|
|
MENU_SETTING_ACTION_RESUME_ACHIEVEMENTS,
|
2023-12-02 06:33:13 -07:00
|
|
|
MENU_INFO_ACHIEVEMENTS_SERVER_UNREACHABLE,
|
2019-06-26 17:40:00 +01:00
|
|
|
MENU_SETTING_PLAYLIST_MANAGER_DEFAULT_CORE,
|
2019-07-18 21:13:14 +02:00
|
|
|
MENU_SETTING_PLAYLIST_MANAGER_LABEL_DISPLAY_MODE,
|
2019-08-15 18:04:24 +01:00
|
|
|
MENU_SETTING_PLAYLIST_MANAGER_RIGHT_THUMBNAIL_MODE,
|
|
|
|
MENU_SETTING_PLAYLIST_MANAGER_LEFT_THUMBNAIL_MODE,
|
2020-04-10 17:05:23 +01:00
|
|
|
MENU_SETTING_PLAYLIST_MANAGER_SORT_MODE,
|
2020-06-17 14:56:44 +03:00
|
|
|
MENU_BLUETOOTH,
|
2016-09-22 12:36:36 +02:00
|
|
|
MENU_WIFI,
|
2020-12-09 20:10:22 +01:00
|
|
|
MENU_WIFI_DISCONNECT,
|
2017-02-27 22:48:27 +01:00
|
|
|
MENU_ROOM,
|
2017-07-09 18:19:56 -05:00
|
|
|
MENU_ROOM_LAN,
|
2018-10-09 19:52:04 -03:00
|
|
|
MENU_ROOM_RELAY,
|
2016-12-02 18:56:29 -05:00
|
|
|
MENU_NETPLAY_LAN_SCAN,
|
2022-05-15 04:04:15 -03:00
|
|
|
MENU_NETPLAY_KICK,
|
2022-07-07 11:08:46 -03:00
|
|
|
MENU_NETPLAY_BAN,
|
2016-06-20 15:42:05 +02:00
|
|
|
MENU_INFO_MESSAGE,
|
2015-12-06 17:55:27 +01:00
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_LAST = MENU_SETTINGS_SHADER_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST = MENU_SETTINGS_SHADER_PRESET_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_LAST = MENU_SETTINGS_SHADER_PASS_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_FILTER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_FILTER_LAST = MENU_SETTINGS_SHADER_PASS_FILTER_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_SCALE_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_SCALE_LAST = MENU_SETTINGS_SHADER_PASS_SCALE_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_INDEX,
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_IMAGE_APPEND,
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_CYCLE_TRAY_STATUS,
|
|
|
|
|
2018-04-30 14:34:25 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 14:34:25 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 14:34:25 +02:00
|
|
|
|
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_STOP_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_STOP_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_STOP_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 14:34:25 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_REMOVE_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_REMOVE_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_REMOVE_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 15:04:29 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 15:04:29 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_LOOPED_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_LOOPED_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_LOOPED_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-05-02 21:43:16 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_SEQUENTIAL_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_SEQUENTIAL_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_SEQUENTIAL_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 17:51:01 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_BEGIN,
|
2018-05-02 23:42:39 +02:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2015-12-06 17:55:27 +01:00
|
|
|
MENU_SETTINGS_BIND_BEGIN,
|
|
|
|
MENU_SETTINGS_BIND_LAST = MENU_SETTINGS_BIND_BEGIN + RARCH_ANALOG_RIGHT_Y_MINUS,
|
|
|
|
MENU_SETTINGS_BIND_ALL_LAST = MENU_SETTINGS_BIND_BEGIN + RARCH_MENU_TOGGLE,
|
|
|
|
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_KEYBOARD,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_ALL,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_DEFAULT_ALL,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_END = MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_END = MENU_SETTINGS_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_CHEAT_BEGIN,
|
|
|
|
MENU_SETTINGS_CHEAT_END = MENU_SETTINGS_CHEAT_BEGIN + (MAX_CHEAT_COUNTERS - 1),
|
2020-08-19 17:35:15 +03:00
|
|
|
|
2021-02-06 03:13:03 +02:00
|
|
|
MENU_SETTINGS_INPUT_LIBRETRO_DEVICE,
|
2020-08-19 17:35:15 +03:00
|
|
|
MENU_SETTINGS_INPUT_ANALOG_DPAD_MODE,
|
2021-06-17 17:45:24 +01:00
|
|
|
MENU_SETTINGS_INPUT_INPUT_REMAP_PORT,
|
2018-11-12 00:30:09 -03:00
|
|
|
MENU_SETTINGS_INPUT_BEGIN,
|
2019-01-03 11:02:15 -03:00
|
|
|
MENU_SETTINGS_INPUT_END = MENU_SETTINGS_INPUT_BEGIN + RARCH_CUSTOM_BIND_LIST_END + 6,
|
2015-12-06 17:55:27 +01:00
|
|
|
MENU_SETTINGS_INPUT_DESC_BEGIN,
|
2018-04-01 20:57:33 -05:00
|
|
|
MENU_SETTINGS_INPUT_DESC_END = MENU_SETTINGS_INPUT_DESC_BEGIN + ((RARCH_FIRST_CUSTOM_BIND + 8) * MAX_USERS),
|
2017-09-10 00:04:18 -05:00
|
|
|
MENU_SETTINGS_INPUT_DESC_KBD_BEGIN,
|
2018-04-01 20:57:33 -05:00
|
|
|
MENU_SETTINGS_INPUT_DESC_KBD_END = MENU_SETTINGS_INPUT_DESC_KBD_BEGIN + (RARCH_MAX_KEYS * MAX_USERS),
|
2019-12-24 07:36:01 +01:00
|
|
|
MENU_SETTINGS_REMAPPING_PORT_BEGIN,
|
|
|
|
MENU_SETTINGS_REMAPPING_PORT_END = MENU_SETTINGS_REMAPPING_PORT_BEGIN + (MAX_USERS),
|
2018-02-10 19:08:39 -05:00
|
|
|
|
2018-02-10 20:23:24 -05:00
|
|
|
MENU_SETTINGS_SUBSYSTEM_LOAD,
|
2018-02-10 19:08:39 -05:00
|
|
|
MENU_SETTINGS_SUBSYSTEM_ADD,
|
|
|
|
MENU_SETTINGS_SUBSYSTEM_LAST = MENU_SETTINGS_SUBSYSTEM_ADD + RARCH_MAX_SUBSYSTEMS,
|
2018-07-25 19:19:14 -04:00
|
|
|
MENU_SETTINGS_CHEAT_MATCH,
|
2018-10-06 14:52:44 +02:00
|
|
|
|
2020-11-23 21:29:26 +01:00
|
|
|
MENU_SET_SCREEN_BRIGHTNESS,
|
|
|
|
|
2023-10-06 04:55:22 -07:00
|
|
|
#if defined(HAVE_LIBNX)
|
2018-10-06 14:52:44 +02:00
|
|
|
MENU_SET_SWITCH_CPU_PROFILE,
|
|
|
|
#endif
|
|
|
|
|
2021-05-01 18:33:44 +02:00
|
|
|
MENU_SETTINGS_CPU_POLICY_SET_MINFREQ,
|
|
|
|
MENU_SETTINGS_CPU_POLICY_SET_MAXFREQ,
|
|
|
|
MENU_SETTINGS_CPU_POLICY_SET_GOVERNOR,
|
2021-05-12 02:16:25 +02:00
|
|
|
MENU_SETTINGS_CPU_MANAGED_SET_MINFREQ,
|
|
|
|
MENU_SETTINGS_CPU_MANAGED_SET_MAXFREQ,
|
2021-05-01 18:33:44 +02:00
|
|
|
|
2019-07-03 14:19:16 -04:00
|
|
|
MENU_SET_CDROM_LIST,
|
2019-07-05 19:55:04 +02:00
|
|
|
MENU_SET_LOAD_CDROM_LIST,
|
2021-11-17 21:33:23 +01:00
|
|
|
MENU_SET_EJECT_DISC,
|
2019-07-11 05:58:33 +02:00
|
|
|
MENU_SET_CDROM_INFO,
|
2019-09-29 10:46:09 -04:00
|
|
|
MENU_SETTING_ACTION_DELETE_PLAYLIST,
|
2020-01-15 17:59:15 +00:00
|
|
|
MENU_SETTING_ACTION_PLAYLIST_MANAGER_RESET_CORES,
|
|
|
|
MENU_SETTING_ACTION_PLAYLIST_MANAGER_CLEAN_PLAYLIST,
|
2021-09-09 16:14:21 +01:00
|
|
|
MENU_SETTING_ACTION_PLAYLIST_MANAGER_REFRESH_PLAYLIST,
|
2019-07-03 14:19:16 -04:00
|
|
|
|
2019-11-29 17:13:35 +00:00
|
|
|
MENU_SETTING_MANUAL_CONTENT_SCAN_DIR,
|
|
|
|
MENU_SETTING_MANUAL_CONTENT_SCAN_SYSTEM_NAME,
|
|
|
|
MENU_SETTING_MANUAL_CONTENT_SCAN_CORE_NAME,
|
|
|
|
MENU_SETTING_ACTION_MANUAL_CONTENT_SCAN_START,
|
|
|
|
|
2020-06-04 12:19:24 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_CREATE_BACKUP,
|
|
|
|
MENU_SETTING_ACTION_CORE_RESTORE_BACKUP,
|
|
|
|
MENU_SETTING_ITEM_CORE_RESTORE_BACKUP,
|
|
|
|
MENU_SETTING_ACTION_CORE_DELETE_BACKUP,
|
|
|
|
MENU_SETTING_ITEM_CORE_DELETE_BACKUP,
|
|
|
|
|
2020-10-01 15:54:11 +01:00
|
|
|
MENU_SETTING_ACTION_VIDEO_FILTER_REMOVE,
|
2020-10-19 11:30:28 +01:00
|
|
|
MENU_SETTING_ACTION_AUDIO_DSP_PLUGIN_REMOVE,
|
2020-10-01 15:54:11 +01:00
|
|
|
|
2021-02-24 17:41:40 +00:00
|
|
|
MENU_SETTING_ACTION_GAME_SPECIFIC_CORE_OPTIONS_CREATE,
|
|
|
|
MENU_SETTING_ACTION_GAME_SPECIFIC_CORE_OPTIONS_REMOVE,
|
|
|
|
MENU_SETTING_ACTION_FOLDER_SPECIFIC_CORE_OPTIONS_CREATE,
|
|
|
|
MENU_SETTING_ACTION_FOLDER_SPECIFIC_CORE_OPTIONS_REMOVE,
|
2021-02-25 16:59:05 +00:00
|
|
|
MENU_SETTING_ACTION_CORE_OPTIONS_RESET,
|
2021-08-26 11:41:28 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_OPTIONS_FLUSH,
|
2021-02-24 17:41:40 +00:00
|
|
|
|
2022-03-16 16:59:07 +00:00
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_LOAD,
|
2023-08-22 02:11:48 +03:00
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_SAVE_AS,
|
2022-03-16 16:59:07 +00:00
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_SAVE_CORE,
|
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_SAVE_CONTENT_DIR,
|
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_SAVE_GAME,
|
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_REMOVE_CORE,
|
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_REMOVE_CONTENT_DIR,
|
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_REMOVE_GAME,
|
2022-03-21 10:04:44 +00:00
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_RESET,
|
2022-04-27 18:12:53 +01:00
|
|
|
MENU_SETTING_ACTION_REMAP_FILE_FLUSH,
|
2022-03-16 16:59:07 +00:00
|
|
|
|
2022-02-22 18:23:48 +00:00
|
|
|
MENU_SETTING_ACTION_CONTENTLESS_CORE_RUN,
|
|
|
|
|
2015-12-06 17:55:27 +01:00
|
|
|
MENU_SETTINGS_LAST
|
2016-02-25 19:50:45 +01:00
|
|
|
};
|
2015-12-06 17:55:27 +01:00
|
|
|
|
2021-08-31 00:43:04 +02:00
|
|
|
struct menu_list
|
|
|
|
{
|
|
|
|
file_list_t **menu_stack;
|
|
|
|
size_t menu_stack_size;
|
|
|
|
file_list_t **selection_buf;
|
|
|
|
size_t selection_buf_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct menu_list menu_list_t;
|
|
|
|
|
|
|
|
typedef struct menu_ctx_load_image
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
enum menu_image_type type;
|
|
|
|
} menu_ctx_load_image_t;
|
|
|
|
|
2019-08-09 11:59:46 +02:00
|
|
|
typedef struct menu_ctx_driver
|
|
|
|
{
|
|
|
|
/* Set a framebuffer texture. This is used for instance by RGUI. */
|
2020-12-09 16:48:09 +00:00
|
|
|
void (*set_texture)(void *data);
|
2019-08-09 11:59:46 +02:00
|
|
|
/* Render a messagebox to the screen. */
|
|
|
|
void (*render_messagebox)(void *data, const char *msg);
|
2019-08-13 12:50:24 +02:00
|
|
|
void (*render)(void *data, unsigned width, unsigned height, bool is_idle);
|
2019-08-09 11:59:46 +02:00
|
|
|
void (*frame)(void *data, video_frame_info_t *video_info);
|
|
|
|
/* Initializes the menu driver. (setup) */
|
|
|
|
void* (*init)(void**, bool);
|
|
|
|
/* Frees the menu driver. (teardown) */
|
|
|
|
void (*free)(void*);
|
|
|
|
/* This will be invoked when we are running a hardware context
|
|
|
|
* and we have just flushed the state. For instance - we have
|
|
|
|
* just toggled fullscreen, the GL driver did a teardown/setup -
|
|
|
|
* we now need to rebuild all of our textures and state for the
|
|
|
|
* menu driver. */
|
|
|
|
void (*context_reset)(void *data, bool video_is_threaded);
|
|
|
|
/* This will be invoked when we are running a hardware context
|
|
|
|
* and the context in question wants to tear itself down. All
|
|
|
|
* textures and related state on the menu driver will also
|
|
|
|
* be freed up then. */
|
|
|
|
void (*context_destroy)(void *data);
|
|
|
|
void (*populate_entries)(void *data,
|
|
|
|
const char *path, const char *label,
|
|
|
|
unsigned k);
|
|
|
|
void (*toggle)(void *userdata, bool);
|
|
|
|
/* This will clear the navigation position. */
|
|
|
|
void (*navigation_clear)(void *, bool);
|
|
|
|
/* This will decrement the navigation position by one. */
|
|
|
|
void (*navigation_decrement)(void *data);
|
|
|
|
/* This will increment the navigation position by one. */
|
|
|
|
void (*navigation_increment)(void *data);
|
|
|
|
void (*navigation_set)(void *data, bool);
|
|
|
|
void (*navigation_set_last)(void *data);
|
|
|
|
/* This will descend the navigation position by one alphabet letter. */
|
|
|
|
void (*navigation_descend_alphabet)(void *, size_t *);
|
|
|
|
/* This will ascend the navigation position by one alphabet letter. */
|
|
|
|
void (*navigation_ascend_alphabet)(void *, size_t *);
|
|
|
|
/* Initializes a new menu list. */
|
|
|
|
bool (*lists_init)(void*);
|
|
|
|
void (*list_insert)(void *userdata,
|
|
|
|
file_list_t *list, const char *, const char *, const char *, size_t,
|
|
|
|
unsigned);
|
|
|
|
int (*list_prepend)(void *userdata,
|
|
|
|
file_list_t *list, const char *, const char *, size_t);
|
|
|
|
void (*list_free)(file_list_t *list, size_t, size_t);
|
|
|
|
void (*list_clear)(file_list_t *list);
|
|
|
|
void (*list_cache)(void *data, enum menu_list_type, unsigned);
|
|
|
|
int (*list_push)(void *data, void *userdata, menu_displaylist_info_t*, unsigned);
|
|
|
|
size_t(*list_get_selection)(void *data);
|
|
|
|
size_t(*list_get_size)(void *data, enum menu_list_type type);
|
|
|
|
void *(*list_get_entry)(void *data, enum menu_list_type type, unsigned i);
|
|
|
|
void (*list_set_selection)(void *data, file_list_t *list);
|
|
|
|
int (*bind_init)(menu_file_list_cbs_t *cbs,
|
|
|
|
const char *path, const char *label, unsigned type, size_t idx);
|
|
|
|
/* Load an image for use by the menu driver */
|
|
|
|
bool (*load_image)(void *userdata, void *data, enum menu_image_type type);
|
|
|
|
const char *ident;
|
|
|
|
int (*environ_cb)(enum menu_environ_cb type, void *data, void *userdata);
|
|
|
|
void (*update_thumbnail_path)(void *data, unsigned i, char pos);
|
|
|
|
void (*update_thumbnail_image)(void *data);
|
2019-10-31 17:24:24 +00:00
|
|
|
void (*refresh_thumbnail_image)(void *data, unsigned i);
|
2019-08-09 11:59:46 +02:00
|
|
|
void (*set_thumbnail_content)(void *data, const char *s);
|
|
|
|
int (*osk_ptr_at_pos)(void *data, int x, int y, unsigned width, unsigned height);
|
|
|
|
void (*update_savestate_thumbnail_path)(void *data, unsigned i);
|
|
|
|
void (*update_savestate_thumbnail_image)(void *data);
|
|
|
|
int (*pointer_down)(void *data, unsigned x, unsigned y, unsigned ptr,
|
|
|
|
menu_file_list_cbs_t *cbs,
|
|
|
|
menu_entry_t *entry, unsigned action);
|
|
|
|
int (*pointer_up)(void *data, unsigned x, unsigned y, unsigned ptr,
|
2019-09-30 16:54:19 +01:00
|
|
|
enum menu_input_pointer_gesture gesture,
|
2019-08-09 11:59:46 +02:00
|
|
|
menu_file_list_cbs_t *cbs,
|
|
|
|
menu_entry_t *entry, unsigned action);
|
2019-11-15 14:51:54 +00:00
|
|
|
/* This will be invoked whenever a menu entry action
|
|
|
|
* (menu_entry_action()) is performed */
|
|
|
|
int (*entry_action)(void *userdata, menu_entry_t *entry, size_t i, enum menu_action action);
|
2019-08-09 11:59:46 +02:00
|
|
|
} menu_ctx_driver_t;
|
|
|
|
|
2014-06-17 16:49:13 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2020-08-15 01:39:22 +02:00
|
|
|
uint64_t state;
|
|
|
|
|
2020-08-14 14:35:29 +02:00
|
|
|
const menu_ctx_driver_t *driver_ctx;
|
|
|
|
void *userdata;
|
|
|
|
char *core_buf;
|
|
|
|
|
2020-08-15 01:39:22 +02:00
|
|
|
size_t core_len;
|
2020-08-14 14:35:29 +02:00
|
|
|
/* This is used for storing intermediary variables
|
|
|
|
* that get used later on during menu actions -
|
|
|
|
* for instance, selecting a shader pass for a shader
|
|
|
|
* slot */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
unsigned unsigned_var;
|
|
|
|
} scratchpad;
|
2018-03-25 17:02:30 +02:00
|
|
|
unsigned rpl_entry_selection_ptr;
|
2017-09-28 08:55:40 +02:00
|
|
|
|
2021-02-09 12:39:53 +00:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2020-08-21 17:00:44 +01:00
|
|
|
/* Used to cache the type and directory
|
|
|
|
* of the last shader preset/pass loaded
|
|
|
|
* via the menu file browser */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
enum rarch_shader_type preset_type;
|
|
|
|
enum rarch_shader_type pass_type;
|
|
|
|
|
|
|
|
char preset_dir[PATH_MAX_LENGTH];
|
2021-02-09 12:39:53 +00:00
|
|
|
char preset_file_name[PATH_MAX_LENGTH];
|
|
|
|
|
2020-08-21 17:00:44 +01:00
|
|
|
char pass_dir[PATH_MAX_LENGTH];
|
2021-02-09 12:39:53 +00:00
|
|
|
char pass_file_name[PATH_MAX_LENGTH];
|
2020-08-21 17:00:44 +01:00
|
|
|
} last_shader_selection;
|
2021-02-09 12:39:53 +00:00
|
|
|
#endif
|
2020-08-21 17:00:44 +01:00
|
|
|
|
2021-02-07 11:45:16 +01:00
|
|
|
/* Used to cache the last start content
|
|
|
|
* loaded via the menu file browser */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char directory[PATH_MAX_LENGTH];
|
|
|
|
char file_name[PATH_MAX_LENGTH];
|
|
|
|
} last_start_content;
|
|
|
|
|
2020-07-23 06:46:05 +02:00
|
|
|
char menu_state_msg[8192];
|
2017-07-31 17:30:30 +02:00
|
|
|
/* Scratchpad variables. These are used for instance
|
|
|
|
* by the filebrowser when having to store intermediary
|
|
|
|
* paths (subdirs/previous dirs/current dir/path, etc).
|
|
|
|
*/
|
2015-01-07 20:42:36 +01:00
|
|
|
char deferred_path[PATH_MAX_LENGTH];
|
2015-07-14 12:49:54 +02:00
|
|
|
char scratch_buf[PATH_MAX_LENGTH];
|
|
|
|
char scratch2_buf[PATH_MAX_LENGTH];
|
2017-09-09 00:02:38 +02:00
|
|
|
char db_playlist_file[PATH_MAX_LENGTH];
|
2018-03-25 17:02:30 +02:00
|
|
|
char filebrowser_label[PATH_MAX_LENGTH];
|
|
|
|
char detect_content_path[PATH_MAX_LENGTH];
|
2014-06-17 16:49:13 +02:00
|
|
|
} menu_handle_t;
|
|
|
|
|
2021-09-21 04:51:38 +02:00
|
|
|
struct menu_state
|
|
|
|
{
|
|
|
|
/* Timers */
|
|
|
|
retro_time_t current_time_us;
|
|
|
|
retro_time_t powerstate_last_time_us;
|
|
|
|
retro_time_t datetime_last_time_us;
|
|
|
|
retro_time_t input_last_time_us;
|
|
|
|
menu_input_t input_state; /* retro_time_t alignment */
|
|
|
|
|
2021-11-08 20:04:55 +01:00
|
|
|
retro_time_t prev_start_time;
|
|
|
|
retro_time_t noop_press_time;
|
|
|
|
retro_time_t noop_start_time;
|
|
|
|
retro_time_t action_start_time;
|
|
|
|
retro_time_t action_press_time;
|
|
|
|
|
2021-09-21 05:11:39 +02:00
|
|
|
struct menu_bind_state input_binds; /* uint64_t alignment */
|
|
|
|
|
2023-07-16 09:46:08 +02:00
|
|
|
gfx_thumbnail_path_data_t *thumbnail_path_data;
|
2021-09-21 04:51:38 +02:00
|
|
|
menu_handle_t *driver_data;
|
|
|
|
void *userdata;
|
|
|
|
const menu_ctx_driver_t *driver_ctx;
|
2021-09-21 05:44:53 +02:00
|
|
|
const char **input_dialog_keyboard_buffer;
|
2021-09-21 04:51:38 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_setting_t *list_settings;
|
|
|
|
menu_list_t *list;
|
|
|
|
size_t begin;
|
|
|
|
} entries;
|
|
|
|
size_t selection_ptr;
|
2022-02-22 18:23:48 +00:00
|
|
|
size_t contentless_core_ptr;
|
2021-09-21 04:51:38 +02:00
|
|
|
|
|
|
|
/* Quick jumping indices with L/R.
|
|
|
|
* Rebuilt when parsing directory. */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
size_t index_list[SCROLL_INDEX_SIZE];
|
|
|
|
unsigned index_size;
|
|
|
|
unsigned acceleration;
|
2022-11-17 19:44:42 +01:00
|
|
|
enum menu_scroll_mode mode;
|
2021-09-21 04:51:38 +02:00
|
|
|
} scroll;
|
|
|
|
|
2021-09-21 06:05:25 +02:00
|
|
|
/* unsigned alignment */
|
|
|
|
unsigned input_dialog_kb_type;
|
|
|
|
unsigned input_dialog_kb_idx;
|
|
|
|
unsigned input_driver_flushing_input;
|
|
|
|
menu_dialog_t dialog_st;
|
2022-10-08 22:52:18 +02:00
|
|
|
enum menu_action prev_action;
|
2021-09-21 06:05:25 +02:00
|
|
|
|
2021-09-21 05:44:53 +02:00
|
|
|
/* int16_t alignment */
|
|
|
|
menu_input_pointer_hw_state_t input_pointer_hw_state;
|
|
|
|
|
2022-10-08 22:52:18 +02:00
|
|
|
uint16_t flags;
|
2022-11-17 19:44:42 +01:00
|
|
|
#ifdef HAVE_OVERLAY
|
|
|
|
uint16_t overlay_types;
|
|
|
|
#endif
|
2021-11-08 20:04:55 +01:00
|
|
|
|
2021-09-21 04:51:38 +02:00
|
|
|
/* When generating a menu list in menu_displaylist_build_list(),
|
|
|
|
* the entry with a label matching 'pending_selection' will
|
|
|
|
* be selected automatically */
|
|
|
|
char pending_selection[PATH_MAX_LENGTH];
|
2021-09-21 06:05:25 +02:00
|
|
|
/* Storage container for current menu datetime
|
|
|
|
* representation string */
|
|
|
|
char datetime_cache[255];
|
2022-03-17 17:27:40 +00:00
|
|
|
/* Filled with current content path when a core calls
|
|
|
|
* RETRO_ENVIRONMENT_SHUTDOWN. Value is required in
|
|
|
|
* generic_menu_entry_action(), and must be cached
|
|
|
|
* since RETRO_ENVIRONMENT_SHUTDOWN will cause
|
|
|
|
* RARCH_PATH_CONTENT to be cleared */
|
|
|
|
char pending_env_shutdown_content_path[PATH_MAX_LENGTH];
|
2021-09-21 06:05:25 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
char input_dialog_kb_label_setting[256];
|
|
|
|
char input_dialog_kb_label[256];
|
|
|
|
#endif
|
|
|
|
unsigned char kb_key_state[RETROK_LAST];
|
2021-09-21 04:51:38 +02:00
|
|
|
};
|
|
|
|
|
2020-05-11 02:32:28 +02:00
|
|
|
typedef struct menu_content_ctx_defer_info
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
const char *dir;
|
|
|
|
const char *path;
|
|
|
|
const char *menu_label;
|
|
|
|
char *s;
|
|
|
|
size_t len;
|
|
|
|
} menu_content_ctx_defer_info_t;
|
|
|
|
|
2016-02-10 20:36:13 +01:00
|
|
|
typedef struct menu_ctx_displaylist
|
|
|
|
{
|
|
|
|
menu_displaylist_info_t *info;
|
|
|
|
unsigned type;
|
|
|
|
} menu_ctx_displaylist_t;
|
|
|
|
|
2016-02-10 20:19:21 +01:00
|
|
|
typedef struct menu_ctx_environment
|
|
|
|
{
|
|
|
|
void *data;
|
2020-08-14 14:35:29 +02:00
|
|
|
enum menu_environ_cb type;
|
2016-02-10 20:19:21 +01:00
|
|
|
} menu_ctx_environment_t;
|
|
|
|
|
2016-02-11 00:47:00 +01:00
|
|
|
typedef struct menu_ctx_pointer
|
|
|
|
{
|
2020-08-14 14:35:29 +02:00
|
|
|
menu_file_list_cbs_t *cbs;
|
|
|
|
menu_entry_t *entry;
|
2016-02-11 00:47:00 +01:00
|
|
|
unsigned x;
|
|
|
|
unsigned y;
|
|
|
|
unsigned ptr;
|
|
|
|
unsigned action;
|
|
|
|
int retcode;
|
2020-08-14 18:19:57 +02:00
|
|
|
enum menu_input_pointer_gesture gesture;
|
2016-02-11 00:47:00 +01:00
|
|
|
} menu_ctx_pointer_t;
|
|
|
|
|
2016-02-11 00:53:49 +01:00
|
|
|
typedef struct menu_ctx_bind
|
|
|
|
{
|
2020-08-14 14:35:29 +02:00
|
|
|
menu_file_list_cbs_t *cbs;
|
2016-02-11 00:53:49 +01:00
|
|
|
const char *path;
|
|
|
|
const char *label;
|
2017-09-09 00:02:38 +02:00
|
|
|
size_t idx;
|
2020-08-14 18:19:57 +02:00
|
|
|
unsigned type;
|
2016-02-11 00:53:49 +01:00
|
|
|
} menu_ctx_bind_t;
|
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
#if defined(HAVE_LIBRETRODB)
|
|
|
|
typedef struct explore_state explore_state_t;
|
|
|
|
#endif
|
2020-02-16 15:10:07 +01:00
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char *runtime_str;
|
|
|
|
char *last_played_str;
|
|
|
|
enum contentless_core_runtime_status status;
|
|
|
|
} contentless_core_runtime_info_t;
|
2020-02-16 15:10:07 +01:00
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char *licenses_str;
|
|
|
|
contentless_core_runtime_info_t runtime;
|
|
|
|
} contentless_core_info_entry_t;
|
2017-05-19 15:25:14 +02:00
|
|
|
|
2020-07-29 12:59:55 +01:00
|
|
|
#if defined(HAVE_LIBRETRODB)
|
2021-10-27 16:51:22 +01:00
|
|
|
explore_state_t *menu_explore_build_list(const char *directory_playlist,
|
|
|
|
const char *directory_database);
|
2020-08-04 02:37:34 +09:00
|
|
|
uintptr_t menu_explore_get_entry_icon(unsigned type);
|
2022-08-31 15:42:10 +03:00
|
|
|
ssize_t menu_explore_get_entry_playlist_index(unsigned type,
|
2022-10-10 13:36:02 +09:00
|
|
|
playlist_t **playlist, const struct playlist_entry **entry,
|
|
|
|
file_list_t *list, size_t *list_pos, size_t *list_size);
|
|
|
|
ssize_t menu_explore_set_playlist_thumbnail(unsigned type,
|
|
|
|
gfx_thumbnail_path_data_t *thumbnail_path_data); /* returns list index */
|
2022-10-17 19:29:33 +02:00
|
|
|
bool menu_explore_is_content_list(void);
|
2020-08-04 02:37:34 +09:00
|
|
|
void menu_explore_context_init(void);
|
|
|
|
void menu_explore_context_deinit(void);
|
2021-10-27 16:51:22 +01:00
|
|
|
void menu_explore_free_state(explore_state_t *state);
|
2020-07-28 14:32:46 +02:00
|
|
|
void menu_explore_free(void);
|
2021-10-27 16:51:22 +01:00
|
|
|
void menu_explore_set_state(explore_state_t *state);
|
2020-07-29 12:59:55 +01:00
|
|
|
#endif
|
2020-07-28 14:32:46 +02:00
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
const char *menu_driver_ident(void);
|
2022-02-25 17:23:55 +00:00
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data);
|
2022-02-25 17:23:55 +00:00
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
void menu_driver_frame(bool menu_is_alive, video_frame_info_t *video_info);
|
|
|
|
|
|
|
|
int menu_driver_deferred_push_content_list(file_list_t *list);
|
|
|
|
|
|
|
|
bool menu_driver_init(bool video_is_threaded);
|
|
|
|
|
|
|
|
retro_time_t menu_driver_get_current_time(void);
|
|
|
|
|
2024-06-15 12:47:51 +02:00
|
|
|
size_t menu_display_timedate(gfx_display_ctx_datetime_t *datetime);
|
2023-06-01 22:52:05 +02:00
|
|
|
|
|
|
|
void menu_display_powerstate(gfx_display_ctx_powerstate_t *powerstate);
|
|
|
|
|
|
|
|
void menu_display_handle_wallpaper_upload(retro_task_t *task,
|
|
|
|
void *task_data,
|
|
|
|
void *user_data, const char *err);
|
2022-02-25 17:23:55 +00:00
|
|
|
|
2022-02-22 18:23:48 +00:00
|
|
|
uintptr_t menu_contentless_cores_get_entry_icon(const char *core_id);
|
|
|
|
void menu_contentless_cores_context_init(void);
|
|
|
|
void menu_contentless_cores_context_deinit(void);
|
|
|
|
void menu_contentless_cores_free(void);
|
2022-02-25 17:23:55 +00:00
|
|
|
void menu_contentless_cores_set_runtime(const char *core_id,
|
|
|
|
const contentless_core_runtime_info_t *runtime_info);
|
|
|
|
void menu_contentless_cores_get_info(const char *core_id,
|
|
|
|
const contentless_core_info_entry_t **info);
|
|
|
|
void menu_contentless_cores_flush_runtime(void);
|
2022-02-22 18:23:48 +00:00
|
|
|
|
2020-08-14 17:52:01 +01:00
|
|
|
/* Returns true if search filter is enabled
|
|
|
|
* for the specified menu list */
|
|
|
|
bool menu_driver_search_filter_enabled(const char *label, unsigned type);
|
2020-07-31 15:13:43 +01:00
|
|
|
|
2020-08-21 17:00:44 +01:00
|
|
|
#if defined(HAVE_CG) || defined(HAVE_GLSL) || defined(HAVE_SLANG) || defined(HAVE_HLSL)
|
2021-02-09 12:39:53 +00:00
|
|
|
void menu_driver_set_last_shader_preset_path(const char *path);
|
|
|
|
void menu_driver_set_last_shader_pass_path(const char *path);
|
2020-08-21 17:00:44 +01:00
|
|
|
enum rarch_shader_type menu_driver_get_last_shader_preset_type(void);
|
2021-02-09 12:39:53 +00:00
|
|
|
void menu_driver_get_last_shader_preset_path(
|
|
|
|
const char **directory, const char **file_name);
|
|
|
|
void menu_driver_get_last_shader_pass_path(
|
|
|
|
const char **directory, const char **file_name);
|
2020-08-21 17:00:44 +01:00
|
|
|
#endif
|
|
|
|
|
2021-02-07 11:45:16 +01:00
|
|
|
void menu_driver_set_pending_selection(const char *pending_selection);
|
|
|
|
|
2021-09-21 00:00:50 +02:00
|
|
|
struct menu_state *menu_state_get_ptr(void);
|
|
|
|
|
2020-02-26 09:22:48 +01:00
|
|
|
int generic_menu_entry_action(void *userdata, menu_entry_t *entry, size_t i, enum menu_action action);
|
|
|
|
|
2021-09-07 11:55:12 +02:00
|
|
|
void menu_entries_build_scroll_indices(
|
|
|
|
struct menu_state *menu_st,
|
|
|
|
file_list_t *list);
|
|
|
|
|
2021-09-18 21:03:16 +02:00
|
|
|
void get_current_menu_value(struct menu_state *menu_st,
|
|
|
|
char *s, size_t len);
|
|
|
|
|
2021-09-21 04:51:38 +02:00
|
|
|
/* Teardown function for the menu driver. */
|
|
|
|
void menu_driver_destroy(
|
|
|
|
struct menu_state *menu_st);
|
|
|
|
|
2021-09-28 12:07:29 +02:00
|
|
|
const menu_ctx_driver_t *menu_driver_find_driver(
|
|
|
|
settings_t *settings,
|
|
|
|
const char *prefix,
|
|
|
|
bool verbosity_enabled);
|
|
|
|
|
2021-10-01 07:18:30 +02:00
|
|
|
/*
|
|
|
|
* This function gets called in order to process all input events
|
|
|
|
* for the current frame.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
unsigned menu_event(
|
|
|
|
settings_t *settings,
|
|
|
|
input_bits_t *p_input,
|
|
|
|
input_bits_t *p_trigger_input,
|
|
|
|
bool display_kb);
|
|
|
|
|
2021-10-13 17:59:45 +02:00
|
|
|
/* Gets called when we want to toggle the menu.
|
|
|
|
* If the menu is already running, it will be turned off.
|
|
|
|
* If the menu is off, then the menu will be started.
|
|
|
|
*/
|
|
|
|
void menu_driver_toggle(
|
|
|
|
void *curr_video_data,
|
|
|
|
void *video_driver_data,
|
|
|
|
menu_handle_t *menu,
|
|
|
|
menu_input_t *menu_input,
|
|
|
|
settings_t *settings,
|
|
|
|
bool menu_driver_alive,
|
|
|
|
bool overlay_alive,
|
|
|
|
retro_keyboard_event_t *key_event,
|
|
|
|
retro_keyboard_event_t *frontend_key_event,
|
|
|
|
bool on);
|
2021-10-13 15:40:01 +02:00
|
|
|
|
2021-11-06 02:13:10 +01:00
|
|
|
/* Iterate the menu driver for one frame. */
|
|
|
|
bool menu_driver_iterate(
|
|
|
|
struct menu_state *menu_st,
|
|
|
|
gfx_display_t *p_disp,
|
|
|
|
gfx_animation_t *p_anim,
|
|
|
|
settings_t *settings,
|
|
|
|
enum menu_action action,
|
|
|
|
retro_time_t current_time);
|
|
|
|
|
2023-05-06 20:16:59 +02:00
|
|
|
void menu_display_common_image_upload(void *data,
|
|
|
|
void *user_data, unsigned type);
|
|
|
|
|
2022-08-24 13:14:55 +02:00
|
|
|
size_t menu_update_fullscreen_thumbnail_label(
|
|
|
|
char *s, size_t len,
|
2022-08-31 15:42:10 +03:00
|
|
|
bool is_quick_menu, const char *title);
|
2022-08-24 13:14:55 +02:00
|
|
|
|
2022-08-24 13:28:53 +02:00
|
|
|
bool menu_is_running_quick_menu(void);
|
2022-08-31 15:42:10 +03:00
|
|
|
bool menu_is_nonrunning_quick_menu(void);
|
2022-08-24 13:28:53 +02:00
|
|
|
|
2023-05-30 20:30:37 +02:00
|
|
|
bool menu_input_key_bind_set_mode(
|
|
|
|
enum menu_input_binds_ctl_state state, void *data);
|
|
|
|
|
2023-07-16 09:46:08 +02:00
|
|
|
void menu_driver_set_thumbnail_system(void *data, char *s, size_t len);
|
|
|
|
|
|
|
|
size_t menu_driver_get_thumbnail_system(void *data, char *s, size_t len);
|
|
|
|
|
2021-09-21 05:11:39 +02:00
|
|
|
extern const menu_ctx_driver_t *menu_ctx_drivers[];
|
|
|
|
|
2023-06-01 22:52:05 +02:00
|
|
|
extern menu_ctx_driver_t menu_ctx_ozone;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_rgui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_mui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_xmb;
|
|
|
|
|
2016-06-03 05:49:46 +02:00
|
|
|
RETRO_END_DECLS
|
2014-06-17 16:49:13 +02:00
|
|
|
|
|
|
|
#endif
|