2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-10-17 19:51:19 +00:00
|
|
|
// Directory separators, do we need this?
|
2009-03-07 08:35:01 +00:00
|
|
|
#define DIR_SEP "/"
|
|
|
|
#define DIR_SEP_CHR '/'
|
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
// The user data dir
|
2009-03-07 08:35:01 +00:00
|
|
|
#define ROOT_DIR "."
|
2010-02-02 23:21:19 +00:00
|
|
|
#ifdef _WIN32
|
2023-01-17 19:13:14 +00:00
|
|
|
#define PORTABLE_USER_DIR "User"
|
2023-01-17 19:14:05 +00:00
|
|
|
#define NORMAL_USER_DIR "Dolphin Emulator"
|
2009-03-07 08:35:01 +00:00
|
|
|
#elif defined __APPLE__
|
2023-01-17 19:13:14 +00:00
|
|
|
// On OS X, PORTABLE_USER_DIR exists within the .app, but *always* reference
|
2010-05-12 04:26:32 +00:00
|
|
|
// the copy in Application Support instead! (Copied on first run)
|
|
|
|
// You can use the File::GetUserPath() util for this
|
2023-01-17 19:13:14 +00:00
|
|
|
#define PORTABLE_USER_DIR "Contents/Resources/User"
|
2023-01-17 19:13:36 +00:00
|
|
|
#define NORMAL_USER_DIR "Library/Application Support/Dolphin"
|
2013-02-26 19:49:00 +00:00
|
|
|
#elif defined ANDROID
|
2023-01-17 19:13:14 +00:00
|
|
|
#define PORTABLE_USER_DIR "user"
|
2023-01-17 19:13:36 +00:00
|
|
|
#define NORMAL_USER_DIR "/sdcard/dolphin-emu"
|
2018-08-15 08:37:00 +00:00
|
|
|
#define NOMEDIA_FILE ".nomedia"
|
2010-07-20 02:45:31 +00:00
|
|
|
#else
|
2023-01-17 19:13:14 +00:00
|
|
|
#define PORTABLE_USER_DIR "user"
|
2023-01-17 19:13:36 +00:00
|
|
|
#define NORMAL_USER_DIR "dolphin-emu"
|
2009-03-07 08:35:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Dirs in both User and Sys
|
2022-11-07 04:33:47 +00:00
|
|
|
// Legacy setups used /JAP/ while newer setups use /JPN/ by default.
|
2009-03-07 08:35:01 +00:00
|
|
|
#define EUR_DIR "EUR"
|
|
|
|
#define USA_DIR "USA"
|
|
|
|
#define JAP_DIR "JAP"
|
2022-11-07 04:33:47 +00:00
|
|
|
#define JPN_DIR "JPN"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
// Subdirs in the User dir returned by GetUserPath(D_USER_IDX)
|
2013-08-25 05:35:32 +00:00
|
|
|
#define GC_USER_DIR "GC"
|
2021-07-04 10:51:36 +00:00
|
|
|
#define GBA_USER_DIR "GBA"
|
2010-02-02 21:56:29 +00:00
|
|
|
#define WII_USER_DIR "Wii"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define CONFIG_DIR "Config"
|
2013-09-07 21:02:49 +00:00
|
|
|
#define GAMESETTINGS_DIR "GameSettings"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define MAPS_DIR "Maps"
|
|
|
|
#define CACHE_DIR "Cache"
|
2018-07-30 01:16:37 +00:00
|
|
|
#define COVERCACHE_DIR "GameCovers"
|
2019-08-23 11:20:09 +00:00
|
|
|
#define REDUMPCACHE_DIR "Redump"
|
2015-04-18 17:34:46 +00:00
|
|
|
#define SHADERCACHE_DIR "Shaders"
|
2010-02-02 21:56:29 +00:00
|
|
|
#define STATESAVES_DIR "StateSaves"
|
|
|
|
#define SCREENSHOTS_DIR "ScreenShots"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define LOAD_DIR "Load"
|
2014-10-22 21:25:00 +00:00
|
|
|
#define HIRES_TEXTURES_DIR "Textures"
|
2021-09-26 04:16:55 +00:00
|
|
|
#define RIIVOLUTION_DIR "Riivolution"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define DUMP_DIR "Dump"
|
|
|
|
#define DUMP_TEXTURES_DIR "Textures"
|
|
|
|
#define DUMP_FRAMES_DIR "Frames"
|
2018-06-06 12:42:41 +00:00
|
|
|
#define DUMP_OBJECTS_DIR "Objects"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define DUMP_AUDIO_DIR "Audio"
|
|
|
|
#define DUMP_DSP_DIR "DSP"
|
2015-07-11 08:31:03 +00:00
|
|
|
#define DUMP_SSL_DIR "SSL"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define LOGS_DIR "Logs"
|
|
|
|
#define MAIL_LOGS_DIR "Mail"
|
2010-02-02 21:56:29 +00:00
|
|
|
#define SHADERS_DIR "Shaders"
|
2011-05-24 19:12:18 +00:00
|
|
|
#define WII_SYSCONF_DIR "shared2" DIR_SEP "sys"
|
2013-08-26 00:50:57 +00:00
|
|
|
#define WII_WC24CONF_DIR "shared2" DIR_SEP "wc24"
|
2015-10-30 09:04:54 +00:00
|
|
|
#define RESOURCES_DIR "Resources"
|
2013-08-25 05:35:32 +00:00
|
|
|
#define THEMES_DIR "Themes"
|
2018-05-06 16:25:37 +00:00
|
|
|
#define STYLES_DIR "Styles"
|
2021-07-04 10:51:36 +00:00
|
|
|
#define GBASAVES_DIR "Saves"
|
2015-01-03 00:33:30 +00:00
|
|
|
#define ANAGLYPH_DIR "Anaglyph"
|
2019-05-02 02:47:50 +00:00
|
|
|
#define PASSIVE_DIR "Passive"
|
2015-10-25 03:20:03 +00:00
|
|
|
#define PIPES_DIR "Pipes"
|
2019-05-03 19:46:37 +00:00
|
|
|
#define MEMORYWATCHER_DIR "MemoryWatcher"
|
2017-01-03 02:31:45 +00:00
|
|
|
#define WFSROOT_DIR "WFS"
|
2016-12-24 01:37:23 +00:00
|
|
|
#define BACKUP_DIR "Backup"
|
2018-11-17 15:36:28 +00:00
|
|
|
#define RESOURCEPACK_DIR "ResourcePacks"
|
2019-08-17 19:40:58 +00:00
|
|
|
#define DYNAMICINPUT_DIR "DynamicInputTextures"
|
2022-03-02 06:34:54 +00:00
|
|
|
#define GRAPHICSMOD_DIR "GraphicMods"
|
2022-04-17 02:10:36 +00:00
|
|
|
#define WIISDSYNC_DIR "WiiSDSync"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2015-04-18 17:34:46 +00:00
|
|
|
// This one is only used to remove it if it was present
|
|
|
|
#define SHADERCACHE_LEGACY_DIR "ShaderCache"
|
|
|
|
|
2016-06-30 08:58:50 +00:00
|
|
|
// The theme directory used by default
|
|
|
|
#define DEFAULT_THEME_DIR "Clean"
|
|
|
|
|
2009-03-07 08:35:01 +00:00
|
|
|
// Filenames
|
2010-02-02 21:56:29 +00:00
|
|
|
// Files in the directory returned by GetUserPath(D_CONFIG_IDX)
|
|
|
|
#define DOLPHIN_CONFIG "Dolphin.ini"
|
2016-01-14 22:37:33 +00:00
|
|
|
#define GCPAD_CONFIG "GCPadNew.ini"
|
|
|
|
#define WIIPAD_CONFIG "WiimoteNew.ini"
|
|
|
|
#define GCKEYBOARD_CONFIG "GCKeyNew.ini"
|
|
|
|
#define GFX_CONFIG "GFX.ini"
|
2010-02-02 21:56:29 +00:00
|
|
|
#define DEBUGGER_CONFIG "Debugger.ini"
|
|
|
|
#define LOGGER_CONFIG "Logger.ini"
|
2019-10-26 16:05:16 +00:00
|
|
|
#define DUALSHOCKUDPCLIENT_CONFIG "DSUClient.ini"
|
2020-07-23 00:19:35 +00:00
|
|
|
#define FREELOOK_CONFIG "FreeLook.ini"
|
2010-02-02 21:56:29 +00:00
|
|
|
|
|
|
|
// Files in the directory returned by GetUserPath(D_LOGS_IDX)
|
|
|
|
#define MAIN_LOG "dolphin.log"
|
|
|
|
|
|
|
|
// Files in the directory returned by GetUserPath(D_WIISYSCONF_IDX)
|
|
|
|
#define WII_SYSCONF "SYSCONF"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
// Files in the directory returned by GetUserPath(D_DUMP_IDX)
|
2019-04-11 05:50:52 +00:00
|
|
|
#define MEM1_DUMP "mem1.raw"
|
|
|
|
#define MEM2_DUMP "mem2.raw"
|
2010-02-02 21:56:29 +00:00
|
|
|
#define ARAM_DUMP "aram.raw"
|
2012-06-19 11:51:29 +00:00
|
|
|
#define FAKEVMEM_DUMP "fakevmem.raw"
|
2010-02-02 21:56:29 +00:00
|
|
|
|
2019-05-03 19:46:37 +00:00
|
|
|
// Files in the directory returned by GetUserPath(D_MEMORYWATCHER_IDX)
|
|
|
|
#define MEMORYWATCHER_LOCATIONS "Locations.txt"
|
|
|
|
#define MEMORYWATCHER_SOCKET "MemoryWatcher"
|
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
// Sys files
|
|
|
|
#define TOTALDB "totaldb.dsy"
|
|
|
|
|
2016-12-26 14:49:39 +00:00
|
|
|
#define FONT_WINDOWS_1252 "font_western.bin"
|
|
|
|
#define FONT_SHIFT_JIS "font_japanese.bin"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
#define DSP_IROM "dsp_rom.bin"
|
|
|
|
#define DSP_COEF "dsp_coef.bin"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
#define GC_IPL "IPL.bin"
|
|
|
|
#define GC_SRAM "SRAM.raw"
|
|
|
|
#define GC_MEMCARDA "MemoryCardA"
|
|
|
|
#define GC_MEMCARDB "MemoryCardB"
|
2018-07-04 21:01:50 +00:00
|
|
|
#define GC_MEMCARD_NETPLAY "NetPlayTemp"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-07-04 10:51:36 +00:00
|
|
|
#define GBA_BIOS "gba_bios.bin"
|
2021-07-04 11:33:58 +00:00
|
|
|
#define GBA_SAVE_NETPLAY "NetPlayTemp"
|
2021-07-04 10:51:36 +00:00
|
|
|
|
2012-04-21 04:21:13 +00:00
|
|
|
#define WII_STATE "state.dat"
|
|
|
|
|
2022-06-15 21:51:25 +00:00
|
|
|
#define WII_SD_CARD_IMAGE "WiiSD.raw"
|
2016-10-02 14:59:41 +00:00
|
|
|
#define WII_BTDINF_BACKUP "btdinf.bak"
|
2016-07-16 19:40:19 +00:00
|
|
|
|
2011-05-07 03:52:32 +00:00
|
|
|
#define WII_SETTING "setting.txt"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2012-01-02 04:14:30 +00:00
|
|
|
#define GECKO_CODE_HANDLER "codehandler.bin"
|
2011-12-31 04:18:48 +00:00
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
// Subdirs in Sys
|
|
|
|
#define GC_SYS_DIR "GC"
|
|
|
|
#define WII_SYS_DIR "Wii"
|
2022-03-02 06:34:54 +00:00
|
|
|
|
|
|
|
// Subdirs in Config
|
|
|
|
#define GRAPHICSMOD_CONFIG_DIR "GraphicMods"
|