1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-01 07:54:27 +00:00
RetroArch/database_info.h

163 lines
4.2 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
2017-03-22 02:09:18 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2019-02-22 21:31:54 +00:00
* Copyright (C) 2016-2019 - Brad Parker
*
2015-01-27 17:09:19 +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 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>
#include <retro_common_api.h>
#include <queues/task_queue.h>
2016-02-04 19:56:22 +00:00
RETRO_BEGIN_DECLS
2015-01-27 17:09:19 +00:00
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_ARCHIVE,
DATABASE_TYPE_ITERATE_LUTRO,
2015-09-22 13:22:15 +00:00
DATABASE_TYPE_SERIAL_LOOKUP,
2015-06-26 14:04:42 +00:00
DATABASE_TYPE_CRC_LOOKUP
};
2016-12-20 20:19:25 +00:00
enum database_query_type
{
DATABASE_QUERY_NONE = 0,
DATABASE_QUERY_ENTRY,
DATABASE_QUERY_ENTRY_PUBLISHER,
DATABASE_QUERY_ENTRY_DEVELOPER,
DATABASE_QUERY_ENTRY_ORIGIN,
DATABASE_QUERY_ENTRY_FRANCHISE,
DATABASE_QUERY_ENTRY_RATING,
DATABASE_QUERY_ENTRY_BBFC_RATING,
DATABASE_QUERY_ENTRY_ELSPA_RATING,
DATABASE_QUERY_ENTRY_ESRB_RATING,
2016-12-20 20:19:25 +00:00
DATABASE_QUERY_ENTRY_PEGI_RATING,
DATABASE_QUERY_ENTRY_CERO_RATING,
DATABASE_QUERY_ENTRY_ENHANCEMENT_HW,
DATABASE_QUERY_ENTRY_EDGE_MAGAZINE_RATING,
DATABASE_QUERY_ENTRY_EDGE_MAGAZINE_ISSUE,
DATABASE_QUERY_ENTRY_FAMITSU_MAGAZINE_RATING,
DATABASE_QUERY_ENTRY_RELEASEDATE_MONTH,
DATABASE_QUERY_ENTRY_RELEASEDATE_YEAR,
DATABASE_QUERY_ENTRY_MAX_USERS
};
typedef struct
{
2020-08-14 16:19:57 +00:00
struct string_list *list;
size_t list_ptr;
2015-04-14 07:27:55 +00:00
enum database_status status;
enum database_type type;
} 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;
char *category;
char *language;
char *region;
char *score;
char *media;
char *controls;
char *artstyle;
char *gameplay;
char *narrative;
char *pacing;
char *perspective;
char *setting;
char *visual;
char *vehicular;
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-02-02 03:03:46 +00:00
char *sha1;
char *md5;
2015-01-27 17:09:19 +00:00
void *userdata;
2023-06-16 18:35:15 +00:00
int achievements;
int console_exclusive;
int platform_exclusive;
2020-08-14 16:19:57 +00:00
int analog_supported;
int rumble_supported;
int coop_supported;
uint32_t crc32;
unsigned size;
unsigned famitsu_magazine_rating;
unsigned edge_magazine_rating;
unsigned edge_magazine_issue;
unsigned max_users;
unsigned releasemonth;
unsigned releaseyear;
unsigned tgdb_rating;
2015-01-27 17:09:19 +00:00
} database_info_t;
typedef struct
{
2017-09-28 07:32:23 +00:00
database_info_t *list;
2020-08-14 16:19:57 +00:00
size_t count;
2015-01-27 17:09:19 +00:00
} 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,
enum database_type type, retro_task_t *task,
bool show_hidden_files);
2015-06-09 17:01:24 +00:00
database_info_handle_t *database_info_file_init(const char *path,
enum database_type type, retro_task_t *task);
2015-06-09 17:01:24 +00:00
void database_info_free(database_info_handle_t *handle);
2016-12-20 20:19:25 +00:00
int database_info_build_query_enum(
char *query, size_t len, enum database_query_type type, 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);
RETRO_END_DECLS
2015-01-27 17:09:19 +00:00
#endif /* CORE_INFO_H_ */