From 9607491ea2df757e7d8562c19cf78417581f8a0f Mon Sep 17 00:00:00 2001 From: Kasen IO Date: Wed, 5 Aug 2020 23:37:45 -0400 Subject: [PATCH] Add graphics settings menu bar button. --- interface/src/PerformanceManager.cpp | 2 +- scripts/defaultScripts.js | 2 + scripts/system/graphicsSettings.js | 70 ++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 scripts/system/graphicsSettings.js diff --git a/interface/src/PerformanceManager.cpp b/interface/src/PerformanceManager.cpp index a7b9eff7cc..6d1ea2aaa8 100644 --- a/interface/src/PerformanceManager.cpp +++ b/interface/src/PerformanceManager.cpp @@ -27,7 +27,7 @@ void PerformanceManager::setupPerformancePresetSettings(bool evaluatePlatformTie // If evaluatePlatformTier, evalute the Platform Tier and assign the matching Performance profile by default. // A bunch of Performance, Simulation and Render settings will be set to a matching default value from this - // Here is the mapping between pelatformTIer and performance profile + // Here is the mapping between pelatformTier and performance profile const std::array platformToPerformancePresetMap = { { PerformanceManager::PerformancePreset::MID, // platform::Profiler::UNKNOWN PerformanceManager::PerformancePreset::LOW, // platform::Profiler::LOW diff --git a/scripts/defaultScripts.js b/scripts/defaultScripts.js index 4f0f8c7a0e..92a262a3e3 100644 --- a/scripts/defaultScripts.js +++ b/scripts/defaultScripts.js @@ -6,6 +6,7 @@ // examples // // Copyright 2014 High Fidelity, Inc. +// Copyright 2020 Vircadia contributors. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html @@ -22,6 +23,7 @@ var DEFAULT_SCRIPTS_COMBINED = [ "system/snapshot.js", "system/pal.js", // "system/mod.js", // older UX, if you prefer "system/avatarapp.js", + "system/graphicsSettings.js", "system/makeUserConnection.js", "system/marketplaces/marketplaces.js", "system/notifications.js", diff --git a/scripts/system/graphicsSettings.js b/scripts/system/graphicsSettings.js new file mode 100644 index 0000000000..df556a91b1 --- /dev/null +++ b/scripts/system/graphicsSettings.js @@ -0,0 +1,70 @@ +// +// graphicsSettings.js +// +// Created by Kalila L. on 8/5/2020 +// Copyright 2020 Vircadia contributors. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +(function() { // BEGIN LOCAL_SCOPE + + var AppUi = Script.require('appUi'); + + // cellphone-cog MDI + // var customIcon = 'data:image/svg+xml;utf8,' + + // application-cog MDI + var customIcon = 'data:image/svg+xml;utf8,' + var lqIcon = 'data:image/svg+xml;utf8,'; + var mqIcon = 'data:image/svg+xml;utf8,'; + var hqIcon = 'data:image/svg+xml;utf8,'; + + var BUTTON_NAME = "GRAPHICS"; + var GRAPHICS_QML_SOURCE = "hifi/dialogs/graphics/GraphicsSettings.qml"; + var ui; + + function getIcon() { + // TODO: Implement only once AppUi can be told to constantly retrieve / reset icons... + // var performanceProfile = Performance.getPerformancePreset(); + // + // switch (performanceProfile) { + // case 0: + // return customIcon; + // break; + // case 1: + // return lqIcon; + // break; + // case 2: + // return mqIcon; + // break; + // case 3: + // return hqIcon; + // break; + // default: + // return customIcon; + // } + return customIcon; + } + + function startup() { + ui = new AppUi({ + buttonName: BUTTON_NAME, + sortOrder: 8, + normalButton: getIcon(), + activeButton: getIcon().replace('white', 'black'), + home: GRAPHICS_QML_SOURCE + }); + } + + function shutdown() { + } + + // + // Run the functions. + // + startup(); + Script.scriptEnding.connect(shutdown); + +}()); // END LOCAL_SCOPE