|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- #pragma once
- #include <vector>
- #include <set>
- #include <map>
- #include <list>
- #include <tuple>
-
- #include <jansson.h>
-
- #include <common.hpp>
- #include <math.hpp>
- #include <color.hpp>
-
-
- namespace rack {
- /** Process-scope globals, most of which are persisted across launches */
- namespace settings {
-
-
- // Runtime state, not serialized.
-
- /** Path to settings.json */
- extern std::string settingsPath;
- extern bool devMode;
- extern bool headless;
- extern bool isPlugin;
-
- // Persistent state, serialized to settings.json.
-
- /** Launches Rack without loading plugins or the autosave patch. Always set to false when settings are saved. */
- extern bool safeMode;
- /** vcvrack.com user token */
- extern std::string token;
- /** Whether the window is maximized */
- extern bool windowMaximized;
- /** Size of window in pixels */
- extern math::Vec windowSize;
- /** Position in window in pixels */
- extern math::Vec windowPos;
- /** Reverse the zoom scroll direction */
- extern bool invertZoom;
- /** Ratio between UI pixel and physical screen pixel.
- 0 for auto.
- */
- extern float pixelRatio;
- /** Name of UI theme, specified in ui::refreshTheme() */
- extern std::string uiTheme;
- /** Opacity of cables in the range [0, 1] */
- extern float cableOpacity;
- /** Straightness of cables in the range [0, 1]. Unitless and arbitrary. */
- extern float cableTension;
- extern float rackBrightness;
- extern float haloBrightness;
- /** Allows rack to hide and lock the cursor position when dragging knobs etc. */
- extern bool allowCursorLock;
- enum KnobMode {
- KNOB_MODE_LINEAR,
- KNOB_MODE_SCALED_LINEAR,
- KNOB_MODE_ROTARY_ABSOLUTE,
- KNOB_MODE_ROTARY_RELATIVE,
- };
- extern KnobMode knobMode;
- extern bool knobScroll;
- extern float knobLinearSensitivity;
- extern float knobScrollSensitivity;
- extern float sampleRate;
- extern int threadCount;
- extern bool tooltips;
- extern bool cpuMeter;
- extern bool lockModules;
- extern bool squeezeModules;
- extern bool preferDarkPanels;
- /** Maximum screen redraw frequency in Hz, or 0 for unlimited. */
- extern float frameRateLimit;
- /** Interval between autosaves in seconds. */
- extern float autosaveInterval;
- extern bool skipLoadOnLaunch;
- extern std::list<std::string> recentPatchPaths;
- extern std::vector<NVGcolor> cableColors;
- extern bool cableAutoRotate;
- extern bool autoCheckUpdates;
- extern bool verifyHttpsCerts;
- extern bool showTipsOnLaunch;
- extern int tipIndex;
- enum BrowserSort {
- BROWSER_SORT_UPDATED,
- BROWSER_SORT_LAST_USED,
- BROWSER_SORT_MOST_USED,
- BROWSER_SORT_BRAND,
- BROWSER_SORT_NAME,
- BROWSER_SORT_RANDOM,
- };
- extern BrowserSort browserSort;
- extern float browserZoom;
- extern json_t* pluginSettingsJ;
-
- struct ModuleInfo {
- bool enabled = true;
- bool favorite = false;
- int added = 0;
- double lastAdded = NAN;
- };
- /** pluginSlug -> (moduleSlug -> ModuleInfo) */
- extern std::map<std::string, std::map<std::string, ModuleInfo>> moduleInfos;
- /** Returns a ModuleInfo if exists for the given slugs.
- */
- ModuleInfo* getModuleInfo(const std::string& pluginSlug, const std::string& moduleSlug);
-
- /** The VCV JSON API returns the data structure
- {pluginSlug: [moduleSlugs] or true}
- where "true" represents that the user is subscribed to the plugin (all modules and future modules).
- C++ isn't weakly typed, so we need the PluginWhitelist data structure to store this information.
- */
- struct PluginWhitelist {
- bool subscribed = false;
- std::set<std::string> moduleSlugs;
- };
- extern std::map<std::string, PluginWhitelist> moduleWhitelist;
-
- bool isModuleWhitelisted(const std::string& pluginSlug, const std::string& moduleSlug);
- void cableColorsReset();
-
- PRIVATE void init();
- PRIVATE void destroy();
- PRIVATE json_t* toJson();
- PRIVATE void fromJson(json_t* rootJ);
- PRIVATE void save(std::string path = "");
- PRIVATE void load(std::string path = "");
-
-
- } // namespace settings
- } // namespace rack
|