2013-06-24 11:52:14 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2013-2015 - Jason Fetters
|
2013-06-24 11:52:14 +00: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-10-22 01:35:04 +00:00
|
|
|
#include <file/config_file.h>
|
2013-10-05 11:37:38 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2013-06-24 11:52:14 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-03-02 13:07:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-11-21 22:48:31 +00:00
|
|
|
char *path;
|
|
|
|
char *desc;
|
2014-09-02 14:13:42 +00:00
|
|
|
/* Set missing once to avoid opening
|
|
|
|
* the same file several times. */
|
2014-09-02 03:10:54 +00:00
|
|
|
bool missing;
|
2014-03-03 23:23:56 +00:00
|
|
|
bool optional;
|
2013-11-21 22:48:31 +00:00
|
|
|
} core_info_firmware_t;
|
|
|
|
|
2014-03-02 13:07:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-10-05 11:37:38 +00:00
|
|
|
char *path;
|
|
|
|
config_file_t *data;
|
|
|
|
char *display_name;
|
2014-12-15 00:59:32 +00:00
|
|
|
char *core_name;
|
|
|
|
char *system_manufacturer;
|
2014-07-21 20:40:21 +00:00
|
|
|
char *systemname;
|
2013-10-05 11:37:38 +00:00
|
|
|
char *supported_extensions;
|
2013-11-07 23:30:00 +00:00
|
|
|
char *authors;
|
2013-12-14 18:29:14 +00:00
|
|
|
char *permissions;
|
2014-09-08 18:18:36 +00:00
|
|
|
char *licenses;
|
2014-12-14 19:51:53 +00:00
|
|
|
char *categories;
|
2015-01-25 07:21:02 +00:00
|
|
|
char *databases;
|
2014-03-03 05:22:28 +00:00
|
|
|
char *notes;
|
2014-12-14 19:51:53 +00:00
|
|
|
struct string_list *categories_list;
|
2015-01-25 07:21:02 +00:00
|
|
|
struct string_list *databases_list;
|
2014-03-03 05:22:28 +00:00
|
|
|
struct string_list *note_list;
|
2013-10-05 11:37:38 +00:00
|
|
|
struct string_list *supported_extensions_list;
|
2013-11-07 23:30:00 +00:00
|
|
|
struct string_list *authors_list;
|
2013-12-14 18:29:14 +00:00
|
|
|
struct string_list *permissions_list;
|
2014-09-08 18:18:36 +00:00
|
|
|
struct string_list *licenses_list;
|
2013-11-21 22:48:31 +00:00
|
|
|
|
|
|
|
core_info_firmware_t *firmware;
|
|
|
|
size_t firmware_count;
|
2014-09-09 23:49:51 +00:00
|
|
|
bool supports_no_game;
|
2014-11-11 15:28:40 +00:00
|
|
|
void *userdata;
|
2013-06-24 11:52:14 +00:00
|
|
|
} core_info_t;
|
|
|
|
|
2014-03-02 13:07:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-06-24 11:52:14 +00:00
|
|
|
core_info_t *list;
|
2013-10-05 11:37:38 +00:00
|
|
|
size_t count;
|
2013-10-05 15:07:56 +00:00
|
|
|
char *all_ext;
|
2013-06-24 11:52:14 +00:00
|
|
|
} core_info_list_t;
|
|
|
|
|
2015-05-24 02:39:16 +00:00
|
|
|
core_info_list_t *core_info_list_new(void);
|
2014-06-17 15:28:39 +00:00
|
|
|
void core_info_list_free(core_info_list_t *list);
|
2013-06-24 11:52:14 +00:00
|
|
|
|
2014-06-17 15:28:39 +00:00
|
|
|
size_t core_info_list_num_info_files(core_info_list_t *list);
|
2013-10-15 08:29:45 +00:00
|
|
|
|
2014-09-02 03:10:54 +00:00
|
|
|
bool core_info_does_support_file(const core_info_t *info,
|
|
|
|
const char *path);
|
2013-10-05 15:07:56 +00:00
|
|
|
|
2014-09-02 03:10:54 +00:00
|
|
|
bool core_info_does_support_any_file(const core_info_t *info,
|
|
|
|
const struct string_list *list);
|
2013-10-05 15:07:56 +00:00
|
|
|
|
2014-09-02 03:10:54 +00:00
|
|
|
/* Non-reentrant, does not allocate. Returns pointer to internal state. */
|
|
|
|
void core_info_list_get_supported_cores(core_info_list_t *list,
|
|
|
|
const char *path, const core_info_t **infos, size_t *num_infos);
|
|
|
|
|
|
|
|
/* Non-reentrant, does not allocate. Returns pointer to internal state. */
|
2014-06-17 15:28:39 +00:00
|
|
|
void core_info_list_get_missing_firmware(core_info_list_t *list,
|
2013-11-21 22:48:31 +00:00
|
|
|
const char *core, const char *systemdir,
|
|
|
|
const core_info_firmware_t **firmware, size_t *num_firmware);
|
|
|
|
|
2014-06-17 15:28:39 +00:00
|
|
|
void core_info_list_update_missing_firmware(core_info_list_t *list,
|
2014-03-03 06:02:29 +00:00
|
|
|
const char *core, const char *systemdir);
|
|
|
|
|
2014-09-02 03:10:54 +00:00
|
|
|
/* Shallow-copies internal state. Data in *info is invalidated when the
|
|
|
|
* core_info_list is freed. */
|
|
|
|
bool core_info_list_get_info(core_info_list_t *list,
|
|
|
|
core_info_t *info, const char *path);
|
2014-03-02 13:07:07 +00:00
|
|
|
|
2014-06-17 15:28:39 +00:00
|
|
|
const char *core_info_list_get_all_extensions(core_info_list_t *list);
|
2013-06-26 00:57:19 +00:00
|
|
|
|
2014-09-02 03:10:54 +00:00
|
|
|
bool core_info_list_get_display_name(core_info_list_t *list,
|
|
|
|
const char *path, char *buf, size_t size);
|
2013-10-06 10:27:08 +00:00
|
|
|
|
2015-07-04 17:58:43 +00:00
|
|
|
bool core_info_get_display_name(const char *path, char *s, size_t len);
|
2015-05-26 04:28:16 +00:00
|
|
|
|
2015-07-04 18:17:59 +00:00
|
|
|
void core_info_get_name(const char *path, char *s, size_t len);
|
|
|
|
|
2013-06-24 11:52:14 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CORE_INFO_H_ */
|