2012-04-21 23:13:50 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-03-22 03:09:18 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2016-2017 - Brad Parker
|
2016-10-02 04:03:35 -04:00
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2010-12-24 01:33:40 +01: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 23:13:50 +02:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2010-12-24 01:33:40 +01: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 23:31:57 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2010-12-24 01:33:40 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
#ifndef __RARCH_FILE_H
|
|
|
|
#define __RARCH_FILE_H
|
2010-12-24 01:26:36 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-06-24 21:55:36 +02:00
|
|
|
#include <stdint.h>
|
2010-12-24 01:26:36 +01:00
|
|
|
#include <stddef.h>
|
2011-01-07 20:52:12 +01:00
|
|
|
#include <sys/types.h>
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2016-02-04 20:56:22 +01:00
|
|
|
#include <boolean.h>
|
2016-06-03 03:22:35 +02:00
|
|
|
#include <retro_common_api.h>
|
2016-02-04 20:56:22 +01:00
|
|
|
|
2016-02-15 01:22:28 +01:00
|
|
|
#include "frontend/frontend_driver.h"
|
|
|
|
|
2016-06-03 03:22:35 +02:00
|
|
|
RETRO_BEGIN_DECLS
|
2013-01-11 11:51:52 +01:00
|
|
|
|
2016-02-16 05:34:33 +01:00
|
|
|
typedef struct content_ctx_info
|
|
|
|
{
|
|
|
|
int argc; /* Argument count. */
|
|
|
|
char **argv; /* Argument variable list. */
|
|
|
|
void *args; /* Arguments passed from callee */
|
|
|
|
environment_get_t environ_get; /* Function passed for environment_get function */
|
|
|
|
} content_ctx_info_t;
|
2016-02-15 01:22:28 +01:00
|
|
|
|
2016-05-08 04:31:56 +02:00
|
|
|
/* Load a RAM state from disk to memory. */
|
2016-05-17 15:32:50 +02:00
|
|
|
bool content_load_ram_file(unsigned slot);
|
2016-05-08 04:31:56 +02:00
|
|
|
|
|
|
|
/* Save a RAM state from memory to disk. */
|
2016-05-17 15:32:50 +02:00
|
|
|
bool content_save_ram_file(unsigned slot);
|
2016-05-08 04:31:56 +02:00
|
|
|
|
|
|
|
/* Load a state from disk to memory. */
|
2016-10-02 04:03:35 -04:00
|
|
|
bool content_load_state(const char* path, bool load_to_backup_buffer, bool autoload);
|
2016-05-08 04:31:56 +02:00
|
|
|
|
|
|
|
/* Save a state from memory to disk. */
|
2016-10-04 17:58:05 -04:00
|
|
|
bool content_save_state(const char *path, bool save_to_disk, bool autosave);
|
2016-05-08 04:31:56 +02:00
|
|
|
|
2016-06-04 12:38:55 -05:00
|
|
|
/* Copy a save state. */
|
|
|
|
bool content_rename_state(const char *origin, const char *dest);
|
|
|
|
|
2016-06-08 20:27:54 +01:00
|
|
|
/* Undoes the last load state operation that was done */
|
2016-06-30 06:11:55 +02:00
|
|
|
bool content_undo_load_state(void);
|
2016-06-07 18:33:01 +01:00
|
|
|
|
2016-06-08 20:27:54 +01:00
|
|
|
/* Restores the last savestate file which was overwritten */
|
2016-06-30 06:11:55 +02:00
|
|
|
bool content_undo_save_state(void);
|
2016-06-02 23:33:52 -05:00
|
|
|
|
2017-01-25 15:51:57 +01:00
|
|
|
void content_get_status(bool *contentless,
|
|
|
|
bool *is_inited);
|
2016-05-08 05:17:31 +02:00
|
|
|
|
|
|
|
void content_set_does_not_need_content(void);
|
|
|
|
|
|
|
|
void content_unset_does_not_need_content(void);
|
|
|
|
|
2017-05-06 16:41:22 +02:00
|
|
|
uint32_t content_get_crc(void);
|
2016-05-08 05:17:31 +02:00
|
|
|
|
|
|
|
void content_deinit(void);
|
|
|
|
|
|
|
|
/* Initializes and loads a content file for the currently
|
|
|
|
* selected libretro core. */
|
|
|
|
bool content_init(void);
|
2015-11-30 19:09:12 +01:00
|
|
|
|
2016-06-09 00:38:27 +01:00
|
|
|
/* Resets the state and savefile backup buffers */
|
2016-06-30 06:11:55 +02:00
|
|
|
bool content_reset_savestate_backups(void);
|
2016-06-09 00:38:27 +01:00
|
|
|
|
2016-06-10 20:12:43 +01:00
|
|
|
/* Checks if the buffers are empty */
|
2016-06-30 06:11:55 +02:00
|
|
|
bool content_undo_load_buf_is_empty(void);
|
|
|
|
bool content_undo_save_buf_is_empty(void);
|
2016-06-10 20:12:43 +01:00
|
|
|
|
2016-06-03 03:22:35 +02:00
|
|
|
RETRO_END_DECLS
|
2013-01-11 11:51:52 +01:00
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#endif
|