RetroArch/content.h

107 lines
3.1 KiB
C
Raw Normal View History

2012-04-21 17:13:50 -04:00
/* RetroArch - A frontend for libretro.
2013-12-31 19:50:59 -05:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-03-21 22:09:18 -04: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 17:13:50 -04:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2010-12-23 19:33:40 -05: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 17:13:50 -04:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2010-12-23 19:33:40 -05: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 17:31:57 -04:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2010-12-23 19:33:40 -05:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2012-04-21 17:25:32 -04:00
#ifndef __RARCH_FILE_H
#define __RARCH_FILE_H
#include <stdio.h>
2012-06-24 15:55:36 -04:00
#include <stdint.h>
#include <stddef.h>
2011-01-07 14:52:12 -05:00
#include <sys/types.h>
2016-02-04 14:56:22 -05:00
#include <boolean.h>
#include <retro_common_api.h>
#include <retro_miscellaneous.h>
2016-02-04 14:56:22 -05:00
2016-02-14 19:22:28 -05:00
#include "frontend/frontend_driver.h"
RETRO_BEGIN_DECLS
2016-02-15 23:34:33 -05: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-14 19:22:28 -05:00
2016-05-07 22:31:56 -04:00
/* Load a RAM state from disk to memory. */
2016-05-17 09:32:50 -04:00
bool content_load_ram_file(unsigned slot);
2016-05-07 22:31:56 -04:00
/* Save a RAM state from memory to disk. */
2016-05-17 09:32:50 -04:00
bool content_save_ram_file(unsigned slot);
2016-05-07 22:31:56 -04: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-07 22:31:56 -04:00
/* Save a state from memory to disk. */
bool content_save_state(const char *path, bool save_to_disk, bool autosave);
2016-05-07 22:31:56 -04:00
/* Copy a save state. */
bool content_rename_state(const char *origin, const char *dest);
/* Undoes the last load state operation that was done */
2016-06-30 00:11:55 -04:00
bool content_undo_load_state(void);
/* Restores the last savestate file which was overwritten */
2016-06-30 00:11:55 -04:00
bool content_undo_save_state(void);
void content_get_status(bool *contentless,
bool *is_inited);
2016-05-07 23:17:31 -04:00
void content_set_does_not_need_content(void);
void content_unset_does_not_need_content(void);
2017-05-06 10:41:22 -04:00
uint32_t content_get_crc(void);
2016-05-07 23:17:31 -04:00
void content_deinit(void);
/* Initializes and loads a content file for the currently
* selected libretro core. */
bool content_init(void);
2015-11-30 13:09:12 -05:00
/* Resets the state and savefile backup buffers */
2016-06-30 00:11:55 -04:00
bool content_reset_savestate_backups(void);
/* Checks if the buffers are empty */
2016-06-30 00:11:55 -04:00
bool content_undo_load_buf_is_empty(void);
bool content_undo_save_buf_is_empty(void);
2018-02-11 10:00:08 -05:00
/* Clears the pending subsystem rom buffer*/
bool content_is_subsystem_pending_load(void);
/* Clears the pending subsystem rom buffer*/
void content_clear_subsystem(void);
/* Set the current subsystem*/
void content_set_subsystem(unsigned subsystem);
2018-02-11 10:00:08 -05:00
/* Get the current subsystem*/
int content_get_subsystem();
/* Add a rom to the subsystem rom buffer */
void content_add_subsystem(const char* path);
2018-02-11 10:10:52 -05:00
/* Get the current subsystem rom id */
int content_get_subsystem_rom_id();
RETRO_END_DECLS
#endif