Skip to main content

Module settings

Module settings 

Source
Expand description

Persistent settings store and config-path helpers.

Settings are kept in a single JSON file under the OS-specific config directory (resolved through [directories::ProjectDirs]) and exposed as a per-type Settings map: bool, i32, f32, String, raw bytes, and Vec<String>. Both the UI and the server side use the same rpfm_ipc::settings_keys constants when reading and writing, so a typo becomes a compile error rather than a silently-missed setting.

StructsΒ§

Settings
Snapshot of every persisted setting.

ConstantsΒ§

DEPENDENCIES_FOLDER πŸ”’
SETTINGS_FILE_NAME πŸ”’
TABLE_PATCHES_FOLDER πŸ”’
TABLE_PROFILES_FOLDER πŸ”’
TRANSLATIONS_LOCAL_FOLDER πŸ”’
TRANSLATIONS_REMOTE_FOLDER πŸ”’

FunctionsΒ§

backup_autosave_path
This function returns the autosave path.
clear_config_path
Recursively deletes the config folder, then re-runs init_config_path to recreate the standard sub-folders. Refuses to delete anything outside config_path.
config_path
This function returns the current config path, or an error if said path is not available.
dependencies_cache_path
This function returns the dependencies path.
error_path
This function returns the path where crash logs are stored.
init_config_path
Function to initialize the config folder, so RPFM can use it to store his stuff.
lua_autogen_base_path
This function returns the lua autogen path.
lua_autogen_game_path
This function returns the lua autogen path for a specific game.
old_ak_files_path
Folder under config_path holding archived Empire/Napoleon Assembly Kit definitions (no AK was ever shipped for these games, so RPFM bundles a frozen copy via the old_ak_files submodule).
schemas_path
This function returns the schema path.
table_patches_path
Folder under config_path where user-side schema patches live.
table_profiles_path
Folder under config_path where saved table view profiles (column orders, filters, hidden columns) are persisted.
translations_local_path
Folder under config_path where the user’s local mod translations are stored (one JSON per pack/language).
translations_remote_path
Folder under config_path where the local clone of the Translation Hub repository is mirrored.