2013-04-28 00:15:59 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-03-22 03:09:18 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-04-12 12:50:27 -04:00
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2017-12-11 23:55:31 -08:00
|
|
|
*
|
2013-04-28 00:15:59 +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/>.
|
|
|
|
*/
|
|
|
|
|
2016-05-16 09:07:44 +02:00
|
|
|
#ifndef _PLAYLIST_H__
|
|
|
|
#define _PLAYLIST_H__
|
2013-04-28 00:15:59 +02:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2016-06-03 02:39:35 +02:00
|
|
|
#include <retro_common_api.h>
|
2016-07-30 21:27:40 +02:00
|
|
|
#include <boolean.h>
|
2019-04-11 00:09:13 -04:00
|
|
|
#include <lists/string_list.h>
|
2016-06-03 02:39:35 +02:00
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
2013-04-28 02:01:25 +02:00
|
|
|
|
2019-07-30 17:11:43 +01:00
|
|
|
/* Default maximum playlist size */
|
|
|
|
#define COLLECTION_SIZE 99999
|
|
|
|
|
2019-04-12 12:50:27 -04:00
|
|
|
typedef struct content_playlist playlist_t;
|
|
|
|
|
2019-05-09 14:24:06 +01:00
|
|
|
enum playlist_runtime_status
|
|
|
|
{
|
|
|
|
PLAYLIST_RUNTIME_UNKNOWN = 0,
|
|
|
|
PLAYLIST_RUNTIME_MISSING,
|
|
|
|
PLAYLIST_RUNTIME_VALID
|
|
|
|
};
|
|
|
|
|
2019-07-18 09:15:13 -10:00
|
|
|
enum playlist_file_mode
|
|
|
|
{
|
2019-08-15 18:04:24 +01:00
|
|
|
PLAYLIST_LOAD = 0,
|
|
|
|
PLAYLIST_SAVE
|
2019-07-18 09:15:13 -10:00
|
|
|
};
|
|
|
|
|
2019-07-18 19:11:30 +02:00
|
|
|
enum playlist_label_display_mode
|
|
|
|
{
|
|
|
|
LABEL_DISPLAY_MODE_DEFAULT = 0,
|
|
|
|
LABEL_DISPLAY_MODE_REMOVE_PARENTHESES,
|
|
|
|
LABEL_DISPLAY_MODE_REMOVE_BRACKETS,
|
|
|
|
LABEL_DISPLAY_MODE_REMOVE_PARENTHESES_AND_BRACKETS,
|
|
|
|
LABEL_DISPLAY_MODE_KEEP_REGION,
|
|
|
|
LABEL_DISPLAY_MODE_KEEP_DISC_INDEX,
|
|
|
|
LABEL_DISPLAY_MODE_KEEP_REGION_AND_DISC_INDEX
|
|
|
|
};
|
|
|
|
|
2019-08-15 18:04:24 +01:00
|
|
|
enum playlist_thumbnail_mode
|
|
|
|
{
|
|
|
|
PLAYLIST_THUMBNAIL_MODE_DEFAULT = 0,
|
|
|
|
PLAYLIST_THUMBNAIL_MODE_OFF,
|
|
|
|
PLAYLIST_THUMBNAIL_MODE_SCREENSHOTS,
|
|
|
|
PLAYLIST_THUMBNAIL_MODE_TITLE_SCREENS,
|
|
|
|
PLAYLIST_THUMBNAIL_MODE_BOXARTS
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Note: We already have a left/right enum defined
|
|
|
|
* in menu_thumbnail_path.h - but we can't include
|
|
|
|
* menu code here, so have to make a 'duplicate'... */
|
|
|
|
enum playlist_thumbnail_id
|
|
|
|
{
|
|
|
|
PLAYLIST_THUMBNAIL_RIGHT = 0,
|
|
|
|
PLAYLIST_THUMBNAIL_LEFT
|
|
|
|
};
|
|
|
|
|
2019-04-12 12:50:27 -04:00
|
|
|
struct playlist_entry
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
char *label;
|
|
|
|
char *core_path;
|
|
|
|
char *core_name;
|
|
|
|
char *db_name;
|
|
|
|
char *crc32;
|
|
|
|
char *subsystem_ident;
|
|
|
|
char *subsystem_name;
|
|
|
|
struct string_list *subsystem_roms;
|
2019-05-09 14:24:06 +01:00
|
|
|
enum playlist_runtime_status runtime_status;
|
2019-04-12 12:50:27 -04:00
|
|
|
unsigned runtime_hours;
|
|
|
|
unsigned runtime_minutes;
|
|
|
|
unsigned runtime_seconds;
|
|
|
|
/* Note: due to platform dependence, have to record
|
|
|
|
* timestamp as either a string or independent integer
|
|
|
|
* values. The latter is more verbose, but more efficient. */
|
|
|
|
unsigned last_played_year;
|
|
|
|
unsigned last_played_month;
|
|
|
|
unsigned last_played_day;
|
|
|
|
unsigned last_played_hour;
|
|
|
|
unsigned last_played_minute;
|
|
|
|
unsigned last_played_second;
|
|
|
|
};
|
2013-04-28 00:15:59 +02:00
|
|
|
|
2015-01-16 19:42:11 +01:00
|
|
|
/**
|
2016-05-16 09:07:44 +02:00
|
|
|
* playlist_init:
|
2015-01-17 03:48:59 +01:00
|
|
|
* @path : Path to playlist contents file.
|
2015-01-16 20:19:21 +01:00
|
|
|
* @size : Maximum capacity of playlist size.
|
2015-01-16 19:42:11 +01:00
|
|
|
*
|
|
|
|
* Creates and initializes a playlist.
|
|
|
|
*
|
|
|
|
* Returns: handle to new playlist if successful, otherwise NULL
|
|
|
|
**/
|
2016-05-16 09:07:44 +02:00
|
|
|
playlist_t *playlist_init(const char *path, size_t size);
|
2014-09-02 05:32:04 +02:00
|
|
|
|
2015-01-16 19:42:11 +01:00
|
|
|
/**
|
2016-05-16 09:07:44 +02:00
|
|
|
* playlist_free:
|
2015-01-17 03:48:59 +01:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 19:42:11 +01:00
|
|
|
*
|
|
|
|
* Frees playlist handle.
|
|
|
|
*/
|
2016-05-16 09:07:44 +02:00
|
|
|
void playlist_free(playlist_t *playlist);
|
2013-04-28 00:15:59 +02:00
|
|
|
|
2015-01-16 19:42:11 +01:00
|
|
|
/**
|
2016-05-16 09:07:44 +02:00
|
|
|
* playlist_clear:
|
2015-01-17 03:48:59 +01:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 19:42:11 +01:00
|
|
|
*
|
|
|
|
* Clears all playlist entries in playlist.
|
|
|
|
**/
|
2016-05-16 09:07:44 +02:00
|
|
|
void playlist_clear(playlist_t *playlist);
|
2013-12-15 21:27:17 -05:00
|
|
|
|
2015-01-16 20:19:21 +01:00
|
|
|
/**
|
2016-05-16 09:07:44 +02:00
|
|
|
* playlist_size:
|
2015-01-17 03:48:59 +01:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 20:19:21 +01:00
|
|
|
*
|
|
|
|
* Gets size of playlist.
|
|
|
|
* Returns: size of playlist.
|
|
|
|
**/
|
2016-05-16 09:07:44 +02:00
|
|
|
size_t playlist_size(playlist_t *playlist);
|
2013-04-28 00:15:59 +02:00
|
|
|
|
2019-07-30 17:11:43 +01:00
|
|
|
/**
|
|
|
|
* playlist_capacity:
|
|
|
|
* @playlist : Playlist handle.
|
|
|
|
*
|
|
|
|
* Gets maximum capacity of playlist.
|
|
|
|
* Returns: maximum capacity of playlist.
|
|
|
|
**/
|
|
|
|
size_t playlist_capacity(playlist_t *playlist);
|
|
|
|
|
2015-01-16 20:19:21 +01:00
|
|
|
/**
|
2016-05-16 09:07:44 +02:00
|
|
|
* playlist_get_index:
|
2016-08-29 01:17:02 +02:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 20:19:21 +01:00
|
|
|
* @idx : Index of playlist entry.
|
2017-12-11 23:55:31 -08:00
|
|
|
*
|
|
|
|
* Gets values of playlist index:
|
2015-01-16 20:19:21 +01:00
|
|
|
**/
|
2016-05-16 09:07:44 +02:00
|
|
|
void playlist_get_index(playlist_t *playlist,
|
2015-05-26 00:12:49 +02:00
|
|
|
size_t idx,
|
2019-04-12 12:50:27 -04:00
|
|
|
const struct playlist_entry **entry);
|
2013-04-28 00:15:59 +02:00
|
|
|
|
2016-08-29 01:17:02 +02:00
|
|
|
/**
|
|
|
|
* playlist_delete_index:
|
|
|
|
* @playlist : Playlist handle.
|
|
|
|
* @idx : Index of playlist entry.
|
2017-12-11 23:55:31 -08:00
|
|
|
*
|
|
|
|
* Deletes the entry at index:
|
2016-08-29 01:17:02 +02:00
|
|
|
**/
|
|
|
|
void playlist_delete_index(playlist_t *playlist,
|
|
|
|
size_t idx);
|
|
|
|
|
2019-07-18 09:15:13 -10:00
|
|
|
/**
|
|
|
|
* playlist_resolve_path:
|
|
|
|
* @mode : PLAYLIST_LOAD or PLAYLIST_SAVE
|
|
|
|
* @path : The path to be modified
|
|
|
|
*
|
|
|
|
* Resolves the path of an item, such as the content path or path to the core, to a format
|
|
|
|
* appropriate for saving or loading depending on the @mode parameter
|
|
|
|
*
|
|
|
|
* Can be platform specific. File paths for saving can be abbreviated to avoid saving absolute
|
|
|
|
* paths, as the base directory (home or application dir) may change after each subsequent
|
|
|
|
* install (iOS)
|
|
|
|
**/
|
|
|
|
void playlist_resolve_path(enum playlist_file_mode mode,
|
|
|
|
char *path, size_t size);
|
|
|
|
|
2015-01-16 21:09:05 +01:00
|
|
|
/**
|
2016-05-16 09:07:44 +02:00
|
|
|
* playlist_push:
|
2015-01-17 03:48:59 +01:00
|
|
|
* @playlist : Playlist handle.
|
2015-01-16 21:09:05 +01:00
|
|
|
* @path : Path of new playlist entry.
|
|
|
|
* @core_path : Core path of new playlist entry.
|
|
|
|
* @core_name : Core name of new playlist entry.
|
|
|
|
*
|
|
|
|
* Push entry to top of playlist.
|
|
|
|
**/
|
2016-07-30 21:27:40 +02:00
|
|
|
bool playlist_push(playlist_t *playlist,
|
2019-04-12 12:50:27 -04:00
|
|
|
const struct playlist_entry *entry);
|
2013-04-28 00:15:59 +02:00
|
|
|
|
2019-02-12 00:32:01 -05:00
|
|
|
bool playlist_push_runtime(playlist_t *playlist,
|
2019-05-09 14:24:06 +01:00
|
|
|
const struct playlist_entry *entry);
|
2019-02-12 00:32:01 -05:00
|
|
|
|
2016-05-16 09:07:44 +02:00
|
|
|
void playlist_update(playlist_t *playlist, size_t idx,
|
2019-04-12 12:50:27 -04:00
|
|
|
const struct playlist_entry *update_entry);
|
2015-05-26 06:28:16 +02:00
|
|
|
|
2019-03-01 14:06:40 +00:00
|
|
|
/* Note: register_update determines whether the internal
|
|
|
|
* 'playlist->modified' flag is set when updating runtime
|
|
|
|
* values. Since these are normally set temporarily (for
|
|
|
|
* display purposes), we do not always want this function
|
|
|
|
* to trigger a re-write of the playlist file. */
|
2019-02-12 00:32:01 -05:00
|
|
|
void playlist_update_runtime(playlist_t *playlist, size_t idx,
|
2019-05-09 14:24:06 +01:00
|
|
|
const struct playlist_entry *update_entry,
|
2019-03-01 14:06:40 +00:00
|
|
|
bool register_update);
|
2019-02-12 00:32:01 -05:00
|
|
|
|
2016-05-16 09:07:44 +02:00
|
|
|
void playlist_get_index_by_path(playlist_t *playlist,
|
2015-02-03 04:12:32 +01:00
|
|
|
const char *search_path,
|
2019-04-12 12:50:27 -04:00
|
|
|
const struct playlist_entry **entry);
|
2015-02-03 04:12:32 +01:00
|
|
|
|
2016-05-16 09:07:44 +02:00
|
|
|
bool playlist_entry_exists(playlist_t *playlist,
|
2016-01-26 15:21:01 -05:00
|
|
|
const char *path,
|
|
|
|
const char *crc32);
|
|
|
|
|
2017-07-01 03:38:36 +02:00
|
|
|
char *playlist_get_conf_path(playlist_t *playlist);
|
|
|
|
|
|
|
|
uint32_t playlist_get_size(playlist_t *playlist);
|
|
|
|
|
2016-05-16 09:07:44 +02:00
|
|
|
void playlist_write_file(playlist_t *playlist);
|
2015-05-25 18:46:16 +02:00
|
|
|
|
2019-02-12 00:32:01 -05:00
|
|
|
void playlist_write_runtime_file(playlist_t *playlist);
|
|
|
|
|
2016-08-28 18:47:34 +02:00
|
|
|
void playlist_qsort(playlist_t *playlist);
|
2015-06-11 10:04:35 -03:00
|
|
|
|
2018-04-10 17:40:29 +02:00
|
|
|
void playlist_free_cached(void);
|
|
|
|
|
|
|
|
playlist_t *playlist_get_cached(void);
|
|
|
|
|
|
|
|
bool playlist_init_cached(const char *path, size_t size);
|
|
|
|
|
2019-01-20 01:57:24 +01:00
|
|
|
void command_playlist_push_write(
|
|
|
|
playlist_t *playlist,
|
2019-04-12 12:50:27 -04:00
|
|
|
const struct playlist_entry *entry);
|
2019-01-20 01:57:24 +01:00
|
|
|
|
|
|
|
void command_playlist_update_write(
|
|
|
|
playlist_t *playlist,
|
|
|
|
size_t idx,
|
2019-04-12 12:50:27 -04:00
|
|
|
const struct playlist_entry *entry);
|
2019-01-20 01:57:24 +01:00
|
|
|
|
2019-03-09 13:48:06 +00:00
|
|
|
/* Returns true if specified playlist index matches
|
|
|
|
* specified content/core paths */
|
|
|
|
bool playlist_index_is_valid(playlist_t *playlist, size_t idx,
|
|
|
|
const char *path, const char *core_path);
|
|
|
|
|
|
|
|
void playlist_get_crc32(playlist_t *playlist, size_t idx,
|
|
|
|
const char **crc32);
|
|
|
|
|
|
|
|
/* If db_name is empty, 'returns' playlist file basename */
|
|
|
|
void playlist_get_db_name(playlist_t *playlist, size_t idx,
|
|
|
|
const char **db_name);
|
|
|
|
|
2019-06-26 17:40:00 +01:00
|
|
|
char *playlist_get_default_core_path(playlist_t *playlist);
|
|
|
|
char *playlist_get_default_core_name(playlist_t *playlist);
|
2019-07-18 19:11:30 +02:00
|
|
|
enum playlist_label_display_mode playlist_get_label_display_mode(playlist_t *playlist);
|
2019-08-15 18:04:24 +01:00
|
|
|
enum playlist_thumbnail_mode playlist_get_thumbnail_mode(
|
|
|
|
playlist_t *playlist, enum playlist_thumbnail_id thumbnail_id);
|
2019-06-26 17:40:00 +01:00
|
|
|
|
|
|
|
void playlist_set_default_core_path(playlist_t *playlist, const char *core_path);
|
|
|
|
void playlist_set_default_core_name(playlist_t *playlist, const char *core_name);
|
2019-07-18 19:11:30 +02:00
|
|
|
void playlist_set_label_display_mode(playlist_t *playlist, enum playlist_label_display_mode label_display_mode);
|
2019-08-15 18:04:24 +01:00
|
|
|
void playlist_set_thumbnail_mode(
|
|
|
|
playlist_t *playlist, enum playlist_thumbnail_id thumbnail_id, enum playlist_thumbnail_mode thumbnail_mode);
|
2019-06-26 17:40:00 +01:00
|
|
|
|
2016-06-03 02:39:35 +02:00
|
|
|
RETRO_END_DECLS
|
2013-04-28 02:01:25 +02:00
|
|
|
|
2013-04-28 00:15:59 +02:00
|
|
|
#endif
|