2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-03-22 02:09:18 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-02-22 21:31:54 +00:00
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2016-10-02 08:03:35 +00:00
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2010-12-24 00:33:40 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2010-12-24 00:33:40 +00:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 21:31:57 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2010-12-24 00:33:40 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifndef __RARCH_FILE_H
|
|
|
|
#define __RARCH_FILE_H
|
2010-12-24 00:26:36 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-06-24 19:55:36 +00:00
|
|
|
#include <stdint.h>
|
2010-12-24 00:26:36 +00:00
|
|
|
#include <stddef.h>
|
2011-01-07 19:52:12 +00:00
|
|
|
#include <sys/types.h>
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2016-02-04 19:56:22 +00:00
|
|
|
#include <boolean.h>
|
2016-06-03 01:22:35 +00:00
|
|
|
#include <retro_common_api.h>
|
2018-02-11 00:08:39 +00:00
|
|
|
#include <retro_miscellaneous.h>
|
2016-02-04 19:56:22 +00:00
|
|
|
|
2016-02-15 00:22:28 +00:00
|
|
|
#include "frontend/frontend_driver.h"
|
|
|
|
|
2016-06-03 01:22:35 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
2013-01-11 10:51:52 +00:00
|
|
|
|
2016-02-16 04:34:33 +00:00
|
|
|
typedef struct content_ctx_info
|
|
|
|
{
|
|
|
|
char **argv; /* Argument variable list. */
|
|
|
|
void *args; /* Arguments passed from callee */
|
|
|
|
environment_get_t environ_get; /* Function passed for environment_get function */
|
2020-08-15 21:10:31 +00:00
|
|
|
int argc; /* Argument count. */
|
2016-02-16 04:34:33 +00:00
|
|
|
} content_ctx_info_t;
|
2016-02-15 00:22:28 +00:00
|
|
|
|
2021-09-03 16:14:03 +00:00
|
|
|
/* Load a state from memory. */
|
|
|
|
bool content_load_state_from_ram(void);
|
|
|
|
|
|
|
|
/* Save a state to memory. */
|
|
|
|
bool content_save_state_to_ram(void);
|
|
|
|
|
|
|
|
/* Save a ram state from memory to disk. */
|
|
|
|
bool content_ram_state_to_file(const char *path);
|
|
|
|
|
2016-05-08 02:31:56 +00:00
|
|
|
/* Load a state from disk to memory. */
|
2016-10-02 08:03:35 +00:00
|
|
|
bool content_load_state(const char* path, bool load_to_backup_buffer, bool autoload);
|
2016-05-08 02:31:56 +00:00
|
|
|
|
|
|
|
/* Save a state from memory to disk. */
|
2023-12-31 05:44:15 +00:00
|
|
|
bool content_save_state(const char *path, bool save_to_disk);
|
|
|
|
|
|
|
|
/* Save an automatic savestate to disk. */
|
|
|
|
bool content_auto_save_state(const char *path);
|
2016-05-08 02:31:56 +00:00
|
|
|
|
2021-09-08 16:01:07 +00:00
|
|
|
/* Check a ram state write to disk. */
|
|
|
|
bool content_ram_state_pending(void);
|
|
|
|
|
2021-01-19 18:01:06 +00:00
|
|
|
/* Gets the number of bytes required to serialize the state. */
|
2021-02-18 14:44:52 +00:00
|
|
|
size_t content_get_serialized_size(void);
|
2021-01-19 18:01:06 +00:00
|
|
|
|
2023-03-11 17:37:48 +00:00
|
|
|
/* Gets the number of bytes required to serialize the state for rewind. */
|
|
|
|
size_t content_get_serialized_size_rewind(void);
|
|
|
|
|
|
|
|
/* Serializes the current state for rewinding. buffer must be at least content_get_serialized_size bytes */
|
|
|
|
bool content_serialize_state_rewind(void* buffer, size_t buffer_size);
|
2021-01-19 18:01:06 +00:00
|
|
|
|
|
|
|
/* Deserializes the current state. */
|
|
|
|
bool content_deserialize_state(const void* serialized_data, size_t serialized_size);
|
|
|
|
|
2020-07-11 01:39:13 +00:00
|
|
|
/* Waits for any in-progress save state tasks to finish */
|
|
|
|
void content_wait_for_save_state_task(void);
|
2023-01-25 06:15:32 +00:00
|
|
|
/* Waits for any in-progress load state tasks to finish */
|
|
|
|
void content_wait_for_load_state_task(void);
|
2020-06-01 15:39:52 +00:00
|
|
|
|
2016-06-04 17:38:55 +00:00
|
|
|
/* Copy a save state. */
|
|
|
|
bool content_rename_state(const char *origin, const char *dest);
|
|
|
|
|
2016-06-08 19:27:54 +00:00
|
|
|
/* Undoes the last load state operation that was done */
|
2016-06-30 04:11:55 +00:00
|
|
|
bool content_undo_load_state(void);
|
2016-06-07 17:33:01 +00:00
|
|
|
|
2016-06-08 19:27:54 +00:00
|
|
|
/* Restores the last savestate file which was overwritten */
|
2016-06-30 04:11:55 +00:00
|
|
|
bool content_undo_save_state(void);
|
2016-06-03 04:33:52 +00:00
|
|
|
|
2022-10-09 18:32:39 +00:00
|
|
|
uint8_t content_get_flags(void);
|
2016-05-08 03:17:31 +00:00
|
|
|
|
|
|
|
void content_set_does_not_need_content(void);
|
|
|
|
|
|
|
|
void content_unset_does_not_need_content(void);
|
|
|
|
|
2017-05-06 14:41:22 +00:00
|
|
|
uint32_t content_get_crc(void);
|
2016-05-08 03:17:31 +00:00
|
|
|
|
|
|
|
void content_deinit(void);
|
|
|
|
|
|
|
|
/* Initializes and loads a content file for the currently
|
|
|
|
* selected libretro core. */
|
|
|
|
bool content_init(void);
|
2015-11-30 18:09:12 +00:00
|
|
|
|
2016-06-08 23:38:27 +00:00
|
|
|
/* Resets the state and savefile backup buffers */
|
2022-09-02 21:35:48 +00:00
|
|
|
void content_reset_savestate_backups(void);
|
2016-06-08 23:38:27 +00:00
|
|
|
|
2016-06-10 19:12:43 +00:00
|
|
|
/* Checks if the buffers are empty */
|
2016-06-30 04:11:55 +00:00
|
|
|
bool content_undo_load_buf_is_empty(void);
|
|
|
|
bool content_undo_save_buf_is_empty(void);
|
2016-06-10 19:12:43 +00:00
|
|
|
|
2019-01-09 16:39:31 +00:00
|
|
|
/* Clears the pending subsystem rom buffer */
|
2018-02-11 15:00:08 +00:00
|
|
|
bool content_is_subsystem_pending_load(void);
|
|
|
|
|
2019-01-09 16:39:31 +00:00
|
|
|
/* Clears the pending subsystem rom buffer */
|
2018-02-11 00:08:39 +00:00
|
|
|
void content_clear_subsystem(void);
|
|
|
|
|
2018-02-11 02:05:41 +00:00
|
|
|
/* Set the current subsystem*/
|
|
|
|
void content_set_subsystem(unsigned subsystem);
|
|
|
|
|
2018-02-11 15:00:08 +00:00
|
|
|
/* Get the current subsystem*/
|
2018-04-17 01:19:35 +00:00
|
|
|
int content_get_subsystem(void);
|
2018-02-11 15:00:08 +00:00
|
|
|
|
2018-02-11 00:08:39 +00:00
|
|
|
/* Add a rom to the subsystem rom buffer */
|
|
|
|
void content_add_subsystem(const char* path);
|
|
|
|
|
2018-02-11 15:10:52 +00:00
|
|
|
/* Get the current subsystem rom id */
|
2018-04-17 01:19:35 +00:00
|
|
|
unsigned content_get_subsystem_rom_id(void);
|
2018-02-11 15:10:52 +00:00
|
|
|
|
2018-02-11 20:18:40 +00:00
|
|
|
/* Set environment variables before a subsystem load */
|
2018-04-17 01:19:35 +00:00
|
|
|
void content_set_subsystem_info(void);
|
2018-02-11 00:08:39 +00:00
|
|
|
|
2018-12-16 16:39:38 +00:00
|
|
|
/* Get the path to the last selected subsystem rom */
|
|
|
|
char* content_get_subsystem_rom(unsigned index);
|
|
|
|
|
2019-01-13 18:18:23 +00:00
|
|
|
/* Sets the subsystem by name */
|
|
|
|
bool content_set_subsystem_by_name(const char* subsystem_name);
|
|
|
|
|
2019-04-11 23:51:27 +00:00
|
|
|
/* Get the current subsystem "friendly name" */
|
|
|
|
void content_get_subsystem_friendly_name(const char* subsystem_name, char* subsystem_friendly_name, size_t len);
|
|
|
|
|
2021-06-01 14:11:34 +00:00
|
|
|
/* Sets overrides which modify frontend handling of
|
|
|
|
* specific content file types */
|
|
|
|
bool content_file_override_set(const struct retro_system_content_info_override *overrides);
|
|
|
|
|
2016-06-03 01:22:35 +00:00
|
|
|
RETRO_END_DECLS
|
2013-01-11 10:51:52 +00:00
|
|
|
|
2010-12-24 00:26:36 +00:00
|
|
|
#endif
|