2013-06-24 13:52:14 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2014-04-26 21:41:47 +02:00
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2013-2014 - Jason Fetters
|
2013-06-24 13:52:14 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CORE_INFO_H_
|
|
|
|
#define CORE_INFO_H_
|
|
|
|
|
2014-03-02 02:18:37 +01:00
|
|
|
#include "../../conf/config_file.h"
|
2014-03-02 03:33:12 +01:00
|
|
|
#include "../../file.h"
|
2013-10-05 13:37:38 +02:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2013-06-24 13:52:14 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-03-02 14:07:07 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-11-21 23:48:31 +01:00
|
|
|
char *path;
|
|
|
|
char *desc;
|
|
|
|
bool missing; // Set once to avoid opening the same file several times.
|
2014-03-03 18:23:56 -05:00
|
|
|
bool optional;
|
2013-11-21 23:48:31 +01:00
|
|
|
} core_info_firmware_t;
|
|
|
|
|
2014-03-02 14:07:07 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-10-05 13:37:38 +02:00
|
|
|
char *path;
|
|
|
|
config_file_t *data;
|
|
|
|
char *display_name;
|
|
|
|
char *supported_extensions;
|
2013-11-08 00:30:00 +01:00
|
|
|
char *authors;
|
2013-12-14 19:29:14 +01:00
|
|
|
char *permissions;
|
2014-03-03 00:22:28 -05:00
|
|
|
char *notes;
|
|
|
|
struct string_list *note_list;
|
2013-10-05 13:37:38 +02:00
|
|
|
struct string_list *supported_extensions_list;
|
2013-11-08 00:30:00 +01:00
|
|
|
struct string_list *authors_list;
|
2013-12-14 19:29:14 +01:00
|
|
|
struct string_list *permissions_list;
|
2013-11-21 23:48:31 +01:00
|
|
|
|
|
|
|
core_info_firmware_t *firmware;
|
|
|
|
size_t firmware_count;
|
2013-06-24 13:52:14 +02:00
|
|
|
} core_info_t;
|
|
|
|
|
2014-03-02 14:07:07 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-06-24 13:52:14 +02:00
|
|
|
core_info_t *list;
|
2013-10-05 13:37:38 +02:00
|
|
|
size_t count;
|
2013-10-05 17:07:56 +02:00
|
|
|
char *all_ext;
|
2013-06-24 13:52:14 +02:00
|
|
|
} core_info_list_t;
|
|
|
|
|
2013-10-05 13:48:08 +02:00
|
|
|
core_info_list_t *core_info_list_new(const char *modules_path);
|
2014-06-01 02:29:19 +02:00
|
|
|
void core_info_list_free(void *data);
|
2013-06-24 13:52:14 +02:00
|
|
|
|
2014-06-01 02:29:19 +02:00
|
|
|
size_t core_info_list_num_info_files(void *data);
|
2013-10-15 10:29:45 +02:00
|
|
|
|
2014-06-01 02:29:19 +02:00
|
|
|
bool core_info_does_support_file(const void *data, const char *path);
|
|
|
|
bool core_info_does_support_any_file(const void *data, const void *list);
|
2013-10-05 17:07:56 +02:00
|
|
|
|
|
|
|
// Non-reentrant, does not allocate. Returns pointer to internal state.
|
2014-06-01 02:29:19 +02:00
|
|
|
void core_info_list_get_supported_cores(void *data, const char *path,
|
2013-10-05 17:07:56 +02:00
|
|
|
const core_info_t **infos, size_t *num_infos);
|
|
|
|
|
2013-11-21 23:48:31 +01:00
|
|
|
// Non-reentrant, does not allocate. Returns pointer to internal state.
|
2014-06-01 02:29:19 +02:00
|
|
|
void core_info_list_get_missing_firmware(void *data,
|
2013-11-21 23:48:31 +01:00
|
|
|
const char *core, const char *systemdir,
|
|
|
|
const core_info_firmware_t **firmware, size_t *num_firmware);
|
|
|
|
|
2014-06-01 02:29:19 +02:00
|
|
|
void core_info_list_update_missing_firmware(void *data,
|
2014-03-03 01:02:29 -05:00
|
|
|
const char *core, const char *systemdir);
|
|
|
|
|
2014-03-02 14:07:07 +01:00
|
|
|
// Shallow-copies internal state. Data in *info is invalidated when the core_info_list is freed.
|
2014-06-01 02:29:19 +02:00
|
|
|
bool core_info_list_get_info(void *data1, void *data2, const char *path);
|
2014-03-02 14:07:07 +01:00
|
|
|
|
2014-06-01 02:29:19 +02:00
|
|
|
const char *core_info_list_get_all_extensions(void *data);
|
2013-06-25 20:57:19 -04:00
|
|
|
|
2014-06-01 02:29:19 +02:00
|
|
|
bool core_info_list_get_display_name(void *data, const char *path, char *buf, size_t size);
|
2013-10-06 12:27:08 +02:00
|
|
|
|
2014-04-26 21:41:47 +02:00
|
|
|
void core_info_set_core_path(const char* core_path);
|
|
|
|
void core_info_set_config_path(const char* config_path);
|
|
|
|
|
|
|
|
core_info_list_t* core_info_list_get(void);
|
|
|
|
const core_info_t* core_info_list_get_by_id(const char* core_id);
|
|
|
|
const char* core_info_get_id(const core_info_t* info, char* buffer, size_t buffer_length);
|
|
|
|
|
|
|
|
const char* core_info_get_custom_config(const char* core_id, char* buffer, size_t buffer_length);
|
|
|
|
bool core_info_has_custom_config(const char* core_id);
|
|
|
|
|
2013-06-24 13:52:14 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CORE_INFO_H_ */
|