2016-02-09 17:12:39 +01:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-01-22 13:40:32 +01:00
|
|
|
* Copyright (C) 2011-2017 - Higor Euripedes
|
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2016-02-09 17:12:39 +01: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 TASKS_HANDLER_INTERNAL_H
|
|
|
|
#define TASKS_HANDLER_INTERNAL_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2016-06-03 02:43:30 +02:00
|
|
|
|
2016-02-09 17:12:39 +01:00
|
|
|
#include <boolean.h>
|
2016-06-03 02:43:30 +02:00
|
|
|
#include <retro_common_api.h>
|
2016-12-29 23:14:48 +01:00
|
|
|
#include <retro_miscellaneous.h>
|
2016-02-09 17:12:39 +01:00
|
|
|
|
2016-02-09 18:13:47 +01:00
|
|
|
#include <queues/task_queue.h>
|
2016-02-09 17:12:39 +01:00
|
|
|
|
2017-02-21 18:55:11 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2019-12-23 17:34:44 +00:00
|
|
|
#if defined(HAVE_NETWORKING)
|
|
|
|
#include "../core_updater_list.h"
|
|
|
|
#endif
|
|
|
|
|
2020-02-16 20:03:57 +01:00
|
|
|
#if defined(HAVE_NETWORKING)
|
2019-05-16 14:32:25 +01:00
|
|
|
/* Required for task_push_pl_entry_thumbnail_download() */
|
|
|
|
#include "../playlist.h"
|
|
|
|
#endif
|
|
|
|
|
2020-06-04 12:19:24 +01:00
|
|
|
/* Required for task_push_core_backup() */
|
|
|
|
#include "../core_backup.h"
|
|
|
|
|
2016-06-03 02:43:30 +02:00
|
|
|
RETRO_BEGIN_DECLS
|
2016-06-03 09:14:53 +10:00
|
|
|
|
2019-08-22 23:31:33 +02:00
|
|
|
typedef struct nbio_buf
|
|
|
|
{
|
|
|
|
void *buf;
|
|
|
|
unsigned bufsize;
|
|
|
|
char *path;
|
|
|
|
} nbio_buf_t;
|
|
|
|
|
2020-01-19 06:40:07 +01:00
|
|
|
typedef struct autoconfig_params autoconfig_params_t;
|
|
|
|
|
|
|
|
struct autoconfig_params
|
|
|
|
{
|
|
|
|
int32_t vid;
|
|
|
|
int32_t pid;
|
|
|
|
unsigned idx;
|
|
|
|
uint32_t max_users;
|
|
|
|
char *name;
|
|
|
|
char *autoconfig_directory;
|
2020-02-14 12:12:59 +01:00
|
|
|
bool show_hidden_files;
|
2020-01-19 06:40:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-05-10 19:43:15 +02:00
|
|
|
#ifdef HAVE_NETWORKING
|
2016-09-17 00:22:55 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2017-09-29 22:16:17 +02:00
|
|
|
char *data;
|
|
|
|
size_t len;
|
2016-09-17 00:22:55 +02:00
|
|
|
} http_transfer_data_t;
|
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
void *task_push_http_transfer(const char *url, bool mute, const char *type,
|
2017-03-02 17:36:25 -05:00
|
|
|
retro_task_callback_t cb, void *userdata);
|
2019-09-29 21:09:08 -06:00
|
|
|
|
|
|
|
void *task_push_http_transfer_with_user_agent(const char *url, bool mute, const char *type,
|
|
|
|
const char* user_agent, retro_task_callback_t cb, void *userdata);
|
2017-03-02 17:36:25 -05:00
|
|
|
|
|
|
|
void *task_push_http_post_transfer(const char *url, const char *post_data, bool mute, const char *type,
|
2016-02-09 17:47:04 +01:00
|
|
|
retro_task_callback_t cb, void *userdata);
|
2016-05-05 14:11:28 +10:00
|
|
|
|
2020-02-14 20:12:49 -07:00
|
|
|
void *task_push_http_post_transfer_with_user_agent(const char* url, const char* post_data, bool mute,
|
|
|
|
const char* type, const char* user_agent, retro_task_callback_t cb, void* user_data);
|
|
|
|
|
2016-05-06 14:31:25 +10:00
|
|
|
task_retriever_info_t *http_task_get_transfer_list(void);
|
2016-11-30 00:18:27 +01:00
|
|
|
|
2017-05-15 02:44:24 +02:00
|
|
|
bool task_push_wifi_scan(retro_task_callback_t cb);
|
2016-11-30 00:18:27 +01:00
|
|
|
|
2017-05-15 02:08:59 +02:00
|
|
|
bool task_push_netplay_lan_scan(retro_task_callback_t cb);
|
2016-12-02 18:56:29 -05:00
|
|
|
|
2017-01-22 18:57:50 -05:00
|
|
|
bool task_push_netplay_crc_scan(uint32_t crc, char* name,
|
2019-01-13 12:10:53 -05:00
|
|
|
const char *hostname, const char *corename, const char* subsystem);
|
2017-01-22 03:17:50 +01:00
|
|
|
|
2017-05-15 02:08:59 +02:00
|
|
|
bool task_push_netplay_lan_scan_rooms(retro_task_callback_t cb);
|
|
|
|
|
2017-02-20 23:27:50 -05:00
|
|
|
bool task_push_netplay_nat_traversal(void *nat_traversal_state, uint16_t port);
|
2017-02-20 19:08:31 -05:00
|
|
|
|
2019-12-23 17:34:44 +00:00
|
|
|
/* Core updater tasks */
|
|
|
|
void *task_push_get_core_updater_list(
|
|
|
|
core_updater_list_t* core_list, bool mute, bool refresh_menu);
|
|
|
|
void *task_push_core_updater_download(
|
2020-02-03 07:37:05 +01:00
|
|
|
core_updater_list_t* core_list, const char *filename,
|
|
|
|
bool mute, bool check_crc, const char *path_dir_libretro);
|
|
|
|
void task_push_update_installed_cores(const char *path_dir_libretro);
|
2019-12-23 17:34:44 +00:00
|
|
|
|
2020-06-04 12:19:24 +01:00
|
|
|
/* Core backup/restore tasks */
|
|
|
|
|
|
|
|
/* Note: If crc is set to 0, crc of core_path file will
|
|
|
|
* be calculated automatically */
|
|
|
|
void *task_push_core_backup(const char *core_path,
|
|
|
|
uint32_t crc, enum core_backup_mode backup_mode,
|
|
|
|
const char *dir_core_assets, bool mute);
|
|
|
|
/* Note: If 'core_loaded' is true, menu stack should be
|
|
|
|
* flushed if task_push_core_restore() returns true */
|
|
|
|
bool task_push_core_restore(const char *backup_path, const char *dir_libretro,
|
|
|
|
bool *core_loaded);
|
|
|
|
|
2019-05-24 12:02:02 +01:00
|
|
|
bool task_push_pl_entry_thumbnail_download(
|
|
|
|
const char *system,
|
|
|
|
playlist_t *playlist,
|
|
|
|
unsigned idx,
|
|
|
|
bool overwrite,
|
|
|
|
bool mute);
|
2020-02-16 20:03:57 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
bool task_push_pl_thumbnail_download(
|
|
|
|
const char *system, const char *playlist_path,
|
|
|
|
const char *dir_thumbnails);
|
2019-05-15 10:02:55 +01:00
|
|
|
#endif
|
2019-05-14 16:24:24 +01:00
|
|
|
|
2016-02-09 17:12:39 +01:00
|
|
|
#endif
|
|
|
|
|
2019-07-02 09:47:02 +01:00
|
|
|
bool task_push_pl_manager_reset_cores(const char *playlist_path);
|
2020-01-15 17:59:15 +00:00
|
|
|
bool task_push_pl_manager_clean_playlist(const char *playlist_path);
|
2019-07-02 09:47:02 +01:00
|
|
|
|
2016-12-29 22:53:10 +01:00
|
|
|
bool task_push_image_load(const char *fullpath,
|
2019-06-05 17:04:23 +01:00
|
|
|
bool supports_rgba, unsigned upscale_threshold,
|
2016-12-29 22:53:10 +01:00
|
|
|
retro_task_callback_t cb, void *userdata);
|
2016-02-09 17:12:39 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBRETRODB
|
2017-01-18 01:23:09 +01:00
|
|
|
bool task_push_dbscan(
|
|
|
|
const char *playlist_directory,
|
|
|
|
const char *content_database,
|
|
|
|
const char *fullpath,
|
2018-04-10 04:13:45 +02:00
|
|
|
bool directory, bool show_hidden_files,
|
|
|
|
retro_task_callback_t cb);
|
2016-02-09 17:12:39 +01:00
|
|
|
#endif
|
|
|
|
|
2019-11-29 17:13:35 +00:00
|
|
|
bool task_push_manual_content_scan(void);
|
|
|
|
|
2016-02-09 17:12:39 +01:00
|
|
|
#ifdef HAVE_OVERLAY
|
2016-05-27 18:14:47 +02:00
|
|
|
bool task_push_overlay_load_default(
|
2019-05-22 05:13:01 +02:00
|
|
|
retro_task_callback_t cb,
|
|
|
|
const char *overlay_path,
|
|
|
|
bool overlay_hide_in_menu,
|
|
|
|
bool input_overlay_enable,
|
|
|
|
float input_overlay_opacity,
|
|
|
|
float input_overlay_scale,
|
|
|
|
void *user_data);
|
2016-02-09 17:12:39 +01:00
|
|
|
#endif
|
2017-12-11 23:55:31 -08:00
|
|
|
|
2020-01-20 04:31:32 +01:00
|
|
|
bool patch_content(
|
|
|
|
bool is_ips_pref,
|
|
|
|
bool is_bps_pref,
|
|
|
|
bool is_ups_pref,
|
|
|
|
const char *name_ips,
|
|
|
|
const char *name_bps,
|
|
|
|
const char *name_ups,
|
|
|
|
uint8_t **buf,
|
|
|
|
void *data);
|
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
bool task_check_decompress(const char *source_file);
|
2016-05-05 09:42:56 +10:00
|
|
|
|
2019-12-23 17:34:44 +00:00
|
|
|
void *task_push_decompress(
|
2016-02-09 17:12:39 +01:00
|
|
|
const char *source_file,
|
|
|
|
const char *target_dir,
|
|
|
|
const char *target_file,
|
|
|
|
const char *subdir,
|
|
|
|
const char *valid_ext,
|
2016-02-09 17:47:04 +01:00
|
|
|
retro_task_callback_t cb,
|
2018-11-22 15:45:52 +01:00
|
|
|
void *user_data,
|
2019-12-23 17:34:44 +00:00
|
|
|
void *frontend_userdata,
|
|
|
|
bool mute);
|
2016-02-09 17:12:39 +01:00
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
void task_file_load_handler(retro_task_t *task);
|
2017-05-18 01:19:47 +02:00
|
|
|
|
2019-05-22 05:54:35 +02:00
|
|
|
bool take_screenshot(
|
|
|
|
const char *screenshot_dir,
|
|
|
|
const char *path, bool silence,
|
2019-01-20 02:57:12 +01:00
|
|
|
bool has_valid_framebuffer, bool fullpath, bool use_thread);
|
2016-05-17 14:31:33 +02:00
|
|
|
|
2020-02-01 03:32:24 +01:00
|
|
|
bool event_load_save_files(bool is_sram_load_disabled);
|
2016-09-19 04:05:44 +02:00
|
|
|
|
2020-02-01 03:27:58 +01:00
|
|
|
bool event_save_files(bool sram_used);
|
2016-09-19 04:09:27 +02:00
|
|
|
|
2017-05-07 17:52:48 +02:00
|
|
|
void path_init_savefile_rtc(const char *savefile_path);
|
2016-09-19 04:18:40 +02:00
|
|
|
|
|
|
|
void *savefile_ptr_get(void);
|
|
|
|
|
|
|
|
void path_init_savefile_new(void);
|
|
|
|
|
2017-04-25 15:49:27 +02:00
|
|
|
bool input_is_autoconfigured(unsigned i);
|
|
|
|
|
2017-04-25 16:57:44 +02:00
|
|
|
unsigned input_autoconfigure_get_device_name_index(unsigned i);
|
|
|
|
|
2017-04-25 16:33:30 +02:00
|
|
|
void input_autoconfigure_reset(void);
|
|
|
|
|
2020-01-19 06:40:07 +01:00
|
|
|
void input_autoconfigure_override_handler(void *data);
|
|
|
|
|
2019-07-16 15:28:22 +02:00
|
|
|
void input_autoconfigure_connect(
|
2016-12-31 07:43:34 +01:00
|
|
|
const char *name,
|
|
|
|
const char *display_name,
|
|
|
|
const char *driver,
|
|
|
|
unsigned idx,
|
|
|
|
unsigned vid,
|
|
|
|
unsigned pid);
|
2016-12-01 20:38:20 +01:00
|
|
|
|
2016-12-01 22:36:38 +01:00
|
|
|
bool input_autoconfigure_disconnect(unsigned i, const char *ident);
|
2016-12-01 20:38:20 +01:00
|
|
|
|
2017-05-06 06:01:15 +02:00
|
|
|
bool input_autoconfigure_get_swap_override(void);
|
|
|
|
|
2017-12-05 22:03:56 +00:00
|
|
|
void input_autoconfigure_joypad_reindex_devices(void);
|
|
|
|
|
2018-09-08 02:11:18 +02:00
|
|
|
void set_save_state_in_background(bool state);
|
|
|
|
|
2019-07-08 15:32:12 -04:00
|
|
|
#ifdef HAVE_CDROM
|
|
|
|
void task_push_cdrom_dump(const char *drive);
|
|
|
|
#endif
|
|
|
|
|
2016-12-01 22:57:43 +01:00
|
|
|
extern const char* const input_builtin_autoconfs[];
|
|
|
|
|
2016-06-03 02:43:30 +02:00
|
|
|
RETRO_END_DECLS
|
2016-06-03 09:14:53 +10:00
|
|
|
|
2016-02-09 17:12:39 +01:00
|
|
|
#endif
|