1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 08:48:42 +00:00
RetroArch/database_info.h

128 lines
3.1 KiB
C
Raw Normal View History

2015-01-27 17:09:19 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-01-27 17:09:19 +00:00
* Copyright (C) 2013-2015 - Jason Fetters
*
* 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 DATABASE_INFO_H_
#define DATABASE_INFO_H_
2015-02-23 00:32:50 +00:00
#include <stdint.h>
2015-01-27 17:09:19 +00:00
#include <stddef.h>
2016-02-04 19:56:22 +00:00
#include <file/archive_file.h>
2016-02-04 19:56:22 +00:00
2015-02-18 23:47:19 +00:00
#include "libretro-db/libretrodb.h"
2015-01-27 17:09:19 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-04-14 07:27:55 +00:00
enum database_status
{
2015-04-14 07:27:55 +00:00
DATABASE_STATUS_NONE = 0,
DATABASE_STATUS_ITERATE,
2015-05-24 04:14:44 +00:00
DATABASE_STATUS_ITERATE_BEGIN,
2015-05-23 19:56:17 +00:00
DATABASE_STATUS_ITERATE_START,
2015-05-23 18:53:43 +00:00
DATABASE_STATUS_ITERATE_NEXT,
2015-06-26 14:04:42 +00:00
DATABASE_STATUS_FREE
2015-04-14 07:27:55 +00:00
};
enum database_type
{
DATABASE_TYPE_NONE = 0,
2015-05-23 14:41:33 +00:00
DATABASE_TYPE_ITERATE,
DATABASE_TYPE_ITERATE_ZIP,
2015-09-22 13:22:15 +00:00
DATABASE_TYPE_SERIAL_LOOKUP,
2015-06-26 14:04:42 +00:00
DATABASE_TYPE_CRC_LOOKUP
};
typedef struct
{
2015-04-14 07:27:55 +00:00
enum database_status status;
enum database_type type;
size_t list_ptr;
struct string_list *list;
#ifdef HAVE_ZLIB
2016-01-24 21:17:11 +00:00
file_archive_transfer_t state;
#endif
2015-04-14 07:27:55 +00:00
} database_info_handle_t;
2015-01-27 17:09:19 +00:00
typedef struct
{
char *name;
char *rom_name;
char *serial;
2015-01-27 17:09:19 +00:00
char *description;
2016-02-04 14:20:56 +00:00
char *genre;
2015-01-27 17:09:19 +00:00
char *publisher;
struct string_list *developer;
2015-01-27 17:09:19 +00:00
char *origin;
char *franchise;
2015-01-27 18:20:39 +00:00
char *edge_magazine_review;
char *bbfc_rating;
char *elspa_rating;
char *esrb_rating;
char *pegi_rating;
char *cero_rating;
2015-01-28 10:08:44 +00:00
char *enhancement_hw;
2015-06-09 23:13:03 +00:00
uint32_t crc32;
2015-02-02 03:03:46 +00:00
char *sha1;
char *md5;
unsigned size;
2015-02-02 03:41:31 +00:00
unsigned famitsu_magazine_rating;
2015-01-27 18:20:39 +00:00
unsigned edge_magazine_rating;
unsigned edge_magazine_issue;
unsigned max_users;
unsigned releasemonth;
unsigned releaseyear;
2016-02-04 10:55:08 +00:00
unsigned tgdb_rating;
int analog_supported;
int rumble_supported;
int coop_supported;
2015-01-27 17:09:19 +00:00
void *userdata;
} database_info_t;
typedef struct
{
database_info_t *list;
size_t count;
} database_info_list_t;
2015-04-14 07:27:55 +00:00
database_info_list_t *database_info_list_new(const char *rdb_path,
const char *query);
2015-01-27 17:09:19 +00:00
void database_info_list_free(database_info_list_t *list);
database_info_handle_t *database_info_dir_init(const char *dir,
2015-04-14 07:27:55 +00:00
enum database_type type);
2015-06-09 17:01:24 +00:00
database_info_handle_t *database_info_file_init(const char *path,
enum database_type type);
void database_info_free(database_info_handle_t *handle);
int database_info_build_query(
char *query, size_t len, const char *label, const char *path);
2016-02-04 19:58:53 +00:00
/* NOTE: Allocates memory, it is the caller's responsibility to free the
* memory after it is no longer required. */
2015-09-23 13:11:35 +00:00
char *bin_to_hex_alloc(const uint8_t *data, size_t len);
2015-01-27 17:09:19 +00:00
#ifdef __cplusplus
}
#endif
#endif /* CORE_INFO_H_ */