optional sbinit option to disable UGC (workshop mods)
This commit is contained in:
parent
64adc28658
commit
f60a19e065
@ -686,10 +686,11 @@ void ClientApplication::setError(String const& error, std::exception const& e) {
|
||||
void ClientApplication::updateMods(float dt) {
|
||||
m_cinematicOverlay->update(dt);
|
||||
auto ugcService = appController()->userGeneratedContentService();
|
||||
if (ugcService) {
|
||||
if (ugcService && m_root->settings().includeUGC) {
|
||||
Logger::info("Checking for user generated content...");
|
||||
if (ugcService->triggerContentDownload()) {
|
||||
StringList modDirectories;
|
||||
for (auto contentId : ugcService->subscribedContentIds()) {
|
||||
for (auto& contentId : ugcService->subscribedContentIds()) {
|
||||
if (auto contentDirectory = ugcService->contentDownloadDirectory(contentId)) {
|
||||
Logger::info("Loading mods from user generated content with id '{}' from directory '{}'", contentId, *contentDirectory);
|
||||
modDirectories.append(*contentDirectory);
|
||||
|
@ -570,6 +570,10 @@ CollectionDatabaseConstPtr Root::collectionDatabase() {
|
||||
return loadMember(m_collectionDatabase, m_collectionDatabaseMutex, "CollectionDatabase");
|
||||
}
|
||||
|
||||
Root::Settings& Root::settings() {
|
||||
return m_settings;
|
||||
}
|
||||
|
||||
StringList Root::scanForAssetSources(StringList const& directories, StringList const& manual) {
|
||||
struct AssetSource {
|
||||
String path;
|
||||
|
@ -88,6 +88,9 @@ public:
|
||||
// given.
|
||||
bool quiet;
|
||||
|
||||
// If true, loads UGC from platform services if available. True by default.
|
||||
bool includeUGC;
|
||||
|
||||
// If given, will write changed configuration to the given file within the
|
||||
// storage directory.
|
||||
Maybe<String> runtimeConfigFile;
|
||||
@ -180,6 +183,8 @@ public:
|
||||
RadioMessageDatabaseConstPtr radioMessageDatabase();
|
||||
CollectionDatabaseConstPtr collectionDatabase();
|
||||
|
||||
Settings& settings();
|
||||
|
||||
private:
|
||||
static StringList scanForAssetSources(StringList const& directories, StringList const& manual = {});
|
||||
template <typename T, typename... Params>
|
||||
|
@ -176,6 +176,7 @@ Root::Settings RootLoader::rootSettingsForOptions(Options const& options) const
|
||||
rootSettings.logDirectory = bootConfig.optString("logDirectory");
|
||||
rootSettings.logFile = options.parameters.value("logfile").maybeFirst().orMaybe(m_defaults.logFile);
|
||||
rootSettings.logFileBackups = bootConfig.getUInt("logFileBackups", 10);
|
||||
rootSettings.includeUGC = bootConfig.getBool("includeUGC", true);
|
||||
|
||||
if (auto ll = options.parameters.value("loglevel").maybeFirst())
|
||||
rootSettings.logLevel = LogLevelNames.getLeft(*ll);
|
||||
|
Loading…
Reference in New Issue
Block a user