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

120 lines
2.7 KiB
C
Raw Normal View History

2015-11-29 00:57:16 +00:00
/* RetroArch - A frontend for libretro.
2017-03-22 02:09:18 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
*
2015-11-29 00:57:16 +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 __RARCH_DEFAULTS_H
#define __RARCH_DEFAULTS_H
#include <stdint.h>
#include <retro_miscellaneous.h>
#ifndef IS_SALAMANDER
#include "playlist.h"
#endif
enum default_dirs
{
DEFAULT_DIR_MENU_CONTENT = 0,
DEFAULT_DIR_CORE_ASSETS,
DEFAULT_DIR_MENU_CONFIG,
DEFAULT_DIR_AUTOCONFIG,
DEFAULT_DIR_AUDIO_FILTER,
DEFAULT_DIR_VIDEO_FILTER,
DEFAULT_DIR_ASSETS,
DEFAULT_DIR_CORE,
DEFAULT_DIR_CORE_INFO,
DEFAULT_DIR_OVERLAY,
DEFAULT_DIR_PORT,
DEFAULT_DIR_SHADER,
DEFAULT_DIR_SAVESTATE,
DEFAULT_DIR_RESAMPLER,
DEFAULT_DIR_SRAM,
DEFAULT_DIR_SCREENSHOT,
DEFAULT_DIR_SYSTEM,
DEFAULT_DIR_PLAYLIST,
DEFAULT_DIR_CONTENT_HISTORY,
DEFAULT_DIR_REMAP,
DEFAULT_DIR_CACHE,
DEFAULT_DIR_WALLPAPERS,
DEFAULT_DIR_THUMBNAILS,
DEFAULT_DIR_DATABASE,
DEFAULT_DIR_CURSOR,
DEFAULT_DIR_CHEATS,
DEFAULT_DIR_RECORD_CONFIG,
DEFAULT_DIR_RECORD_OUTPUT,
DEFAULT_DIR_LAST
};
2015-11-29 00:57:16 +00:00
struct defaults
{
#ifdef HAVE_MENU
struct
{
struct
{
bool menu_color_theme_enable;
unsigned menu_color_theme;
} materialui;
struct
{
bool set;
unsigned menu_btn_ok;
unsigned menu_btn_cancel;
} controls;
} menu;
#endif
struct
{
bool set;
bool enable;
} overlay;
char dirs [DEFAULT_DIR_LAST + 1][PATH_MAX_LENGTH];
2015-11-29 00:57:16 +00:00
struct
{
char config[PATH_MAX_LENGTH];
char core[PATH_MAX_LENGTH];
2016-10-27 08:16:26 +00:00
char buildbot_server_url[255];
2015-11-29 00:57:16 +00:00
} path;
struct
{
int out_latency;
float video_refresh_rate;
bool video_threaded_enable;
2016-10-27 08:16:26 +00:00
char menu[32];
} settings;
2015-11-29 00:57:16 +00:00
#ifndef IS_SALAMANDER
playlist_t *content_history;
2017-08-12 15:10:14 +00:00
playlist_t *content_favorites;
#ifdef HAVE_IMAGEVIEWER
playlist_t *image_history;
#endif
playlist_t *music_history;
2018-06-20 02:50:58 +00:00
#if defined(HAVE_FFMPEG) || defined(HAVE_MPV)
playlist_t *video_history;
#endif
2015-11-29 00:57:16 +00:00
#endif
};
/* Public data structures. */
extern struct defaults g_defaults;
#endif