22 if (localJsonObject.empty() || localJsonObject.is_discarded())
27 if (cachedJsonObject.empty() || cachedJsonObject.is_discarded())
29 settingsData = localJsonObject;
33 int cacheVersion = cachedJsonObject.value(
"SettingsVersion", -1);
34 int localVersion = localJsonObject.value(
"SettingsVersion", -1);
35 if (localVersion <= cacheVersion)
37 settingsData = cachedJsonObject;
41 LOG(
LOG_INFO) <<
"The settings file version has changed. Overwriting local cached settings file with default settings.";
59 const json settingsJsonObject = *
this;
63 LOG(
LOG_ERROR) <<
"CYTOPIA_DATA_DIR_BASE is not set! Please report this issue on github. Falling back to cytopia base dir.";
77 json settingsJSONObject;
82 settingsJSONObject = json::parse(jsonFile,
nullptr,
false);
85 return settingsJSONObject;
93 if (localJsonObject.empty() || localJsonObject.is_discarded())
97 settingsData = localJsonObject;