RetroArch/database_info.h

163 lines
4.2 KiB
C
Raw Normal View History

2015-01-27 09:09:19 -08:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-03-21 19:09:18 -07:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2019-02-22 13:31:54 -08:00
* Copyright (C) 2016-2019 - Brad Parker
*
2015-01-27 09:09:19 -08: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-22 16:32:50 -08:00
#include <stdint.h>
2015-01-27 09:09:19 -08:00
#include <stddef.h>
2016-02-04 11:56:22 -08:00
#include <file/archive_file.h>
#include <retro_common_api.h>
#include <queues/task_queue.h>
2016-02-04 11:56:22 -08:00
RETRO_BEGIN_DECLS
2015-01-27 09:09:19 -08:00
2015-04-14 00:27:55 -07:00
enum database_status
{
2015-04-14 00:27:55 -07:00
DATABASE_STATUS_NONE = 0,
DATABASE_STATUS_ITERATE,
2015-05-23 21:14:44 -07:00
DATABASE_STATUS_ITERATE_BEGIN,
2015-05-23 12:56:17 -07:00
DATABASE_STATUS_ITERATE_START,
2015-05-23 11:53:43 -07:00
DATABASE_STATUS_ITERATE_NEXT,
2015-06-26 07:04:42 -07:00
DATABASE_STATUS_FREE
2015-04-14 00:27:55 -07:00
};
enum database_type
{
DATABASE_TYPE_NONE = 0,
2015-05-23 07:41:33 -07:00
DATABASE_TYPE_ITERATE,
DATABASE_TYPE_ITERATE_ARCHIVE,
DATABASE_TYPE_ITERATE_LUTRO,
2015-09-22 06:22:15 -07:00
DATABASE_TYPE_SERIAL_LOOKUP,
2015-06-26 07:04:42 -07:00
DATABASE_TYPE_CRC_LOOKUP
};
2016-12-20 12:19:25 -08: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 12:19:25 -08: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 09:19:57 -07:00
struct string_list *list;
size_t list_ptr;
2015-04-14 00:27:55 -07:00
enum database_status status;
enum database_type type;
} database_info_handle_t;
2015-01-27 09:09:19 -08:00
typedef struct
{
char *name;
char *rom_name;
char *serial;
2015-01-27 09:09:19 -08:00
char *description;
2016-02-04 06:20:56 -08: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 09:09:19 -08:00
char *publisher;
struct string_list *developer;
2015-01-27 09:09:19 -08:00
char *origin;
char *franchise;
2015-01-27 10:20:39 -08:00
char *edge_magazine_review;
char *bbfc_rating;
char *elspa_rating;
char *esrb_rating;
char *pegi_rating;
char *cero_rating;
2015-01-28 02:08:44 -08:00
char *enhancement_hw;
2015-02-01 19:03:46 -08:00
char *sha1;
char *md5;
2015-01-27 09:09:19 -08:00
void *userdata;
2023-06-16 11:35:15 -07:00
int achievements;
int console_exclusive;
int platform_exclusive;
2020-08-14 09:19:57 -07: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 09:09:19 -08:00
} database_info_t;
typedef struct
{
2017-09-28 00:32:23 -07:00
database_info_t *list;
2020-08-14 09:19:57 -07:00
size_t count;
2015-01-27 09:09:19 -08:00
} database_info_list_t;
2015-04-14 00:27:55 -07:00
database_info_list_t *database_info_list_new(const char *rdb_path,
const char *query);
2015-01-27 09:09:19 -08: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 10:01:24 -07:00
database_info_handle_t *database_info_file_init(const char *path,
enum database_type type, retro_task_t *task);
2015-06-09 10:01:24 -07:00
void database_info_free(database_info_handle_t *handle);
2016-12-20 12:19:25 -08:00
int database_info_build_query_enum(
char *query, size_t len, enum database_query_type type, const char *path);
2016-02-04 11:58:53 -08:00
/* NOTE: Allocates memory, it is the caller's responsibility to free the
* memory after it is no longer required. */
2015-09-23 06:11:35 -07:00
char *bin_to_hex_alloc(const uint8_t *data, size_t len);
RETRO_END_DECLS
2015-01-27 09:09:19 -08:00
#endif /* CORE_INFO_H_ */