Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

299 lines
15KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 6 technical preview.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For this technical preview, this file is not subject to commercial licensing.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. namespace juce
  14. {
  15. #if JUCE_ENABLE_LIVE_CONSTANT_EDITOR && ! DOXYGEN
  16. //==============================================================================
  17. /** You can safely ignore all the stuff in this namespace - it's a bunch of boilerplate
  18. code used to implement the JUCE_LIVE_CONSTANT functionality.
  19. */
  20. namespace LiveConstantEditor
  21. {
  22. int64 parseInt (String);
  23. double parseDouble (const String&);
  24. String intToString (int, bool preferHex);
  25. String intToString (int64, bool preferHex);
  26. template <typename Type>
  27. static void setFromString (Type& v, const String& s) { v = static_cast<Type> (s); }
  28. inline void setFromString (char& v, const String& s) { v = (char) parseInt (s); }
  29. inline void setFromString (unsigned char& v, const String& s) { v = (unsigned char) parseInt (s); }
  30. inline void setFromString (short& v, const String& s) { v = (short) parseInt (s); }
  31. inline void setFromString (unsigned short& v, const String& s) { v = (unsigned short) parseInt (s); }
  32. inline void setFromString (int& v, const String& s) { v = (int) parseInt (s); }
  33. inline void setFromString (unsigned int& v, const String& s) { v = (unsigned int) parseInt (s); }
  34. inline void setFromString (long& v, const String& s) { v = (long) parseInt (s); }
  35. inline void setFromString (unsigned long& v, const String& s) { v = (unsigned long) parseInt (s); }
  36. inline void setFromString (int64& v, const String& s) { v = (int64) parseInt (s); }
  37. inline void setFromString (uint64& v, const String& s) { v = (uint64) parseInt (s); }
  38. inline void setFromString (double& v, const String& s) { v = parseDouble (s); }
  39. inline void setFromString (float& v, const String& s) { v = (float) parseDouble (s); }
  40. inline void setFromString (bool& v, const String& s) { v = (s == "true"); }
  41. inline void setFromString (String& v, const String& s) { v = s; }
  42. inline void setFromString (Colour& v, const String& s) { v = Colour ((uint32) parseInt (s)); }
  43. template <typename Type>
  44. inline String getAsString (const Type& v, bool) { return String (v); }
  45. inline String getAsString (char v, bool preferHex) { return intToString ((int) v, preferHex); }
  46. inline String getAsString (unsigned char v, bool preferHex) { return intToString ((int) v, preferHex); }
  47. inline String getAsString (short v, bool preferHex) { return intToString ((int) v, preferHex); }
  48. inline String getAsString (unsigned short v, bool preferHex) { return intToString ((int) v, preferHex); }
  49. inline String getAsString (int v, bool preferHex) { return intToString ((int) v, preferHex); }
  50. inline String getAsString (unsigned int v, bool preferHex) { return intToString ((int) v, preferHex); }
  51. inline String getAsString (bool v, bool) { return v ? "true" : "false"; }
  52. inline String getAsString (int64 v, bool preferHex) { return intToString ((int64) v, preferHex); }
  53. inline String getAsString (uint64 v, bool preferHex) { return intToString ((int64) v, preferHex); }
  54. inline String getAsString (Colour v, bool) { return intToString ((int) v.getARGB(), true); }
  55. template <typename Type> struct isStringType { enum { value = 0 }; };
  56. template <> struct isStringType<String> { enum { value = 1 }; };
  57. template <typename Type>
  58. inline String getAsCode (Type& v, bool preferHex) { return getAsString (v, preferHex); }
  59. inline String getAsCode (Colour v, bool) { return "Colour (0x" + String::toHexString ((int) v.getARGB()).paddedLeft ('0', 8) + ")"; }
  60. inline String getAsCode (const String& v, bool) { return CppTokeniserFunctions::addEscapeChars(v).quoted(); }
  61. inline String getAsCode (const char* v, bool) { return getAsCode (String (v), false); }
  62. template <typename Type>
  63. inline const char* castToCharPointer (const Type&) { return ""; }
  64. inline const char* castToCharPointer (const String& s) { return s.toRawUTF8(); }
  65. struct LivePropertyEditorBase;
  66. //==============================================================================
  67. struct JUCE_API LiveValueBase
  68. {
  69. LiveValueBase (const char* file, int line);
  70. virtual ~LiveValueBase();
  71. virtual LivePropertyEditorBase* createPropertyComponent (CodeDocument&) = 0;
  72. virtual String getStringValue (bool preferHex) const = 0;
  73. virtual String getCodeValue (bool preferHex) const = 0;
  74. virtual void setStringValue (const String&) = 0;
  75. virtual String getOriginalStringValue (bool preferHex) const = 0;
  76. virtual bool isString() const = 0;
  77. String name, sourceFile;
  78. int sourceLine;
  79. JUCE_DECLARE_NON_COPYABLE (LiveValueBase)
  80. };
  81. //==============================================================================
  82. struct JUCE_API LivePropertyEditorBase : public Component
  83. {
  84. LivePropertyEditorBase (LiveValueBase&, CodeDocument&);
  85. void paint (Graphics&) override;
  86. void resized() override;
  87. void applyNewValue (const String&);
  88. void selectOriginalValue();
  89. void findOriginalValueInCode();
  90. LiveValueBase& value;
  91. Label name;
  92. TextEditor valueEditor;
  93. TextButton resetButton { "reset" };
  94. CodeDocument& document;
  95. CPlusPlusCodeTokeniser tokeniser;
  96. CodeEditorComponent sourceEditor;
  97. CodeDocument::Position valueStart, valueEnd;
  98. std::unique_ptr<Component> customComp;
  99. bool wasHex = false;
  100. JUCE_DECLARE_NON_COPYABLE (LivePropertyEditorBase)
  101. };
  102. //==============================================================================
  103. Component* createColourEditor (LivePropertyEditorBase&);
  104. Component* createIntegerSlider (LivePropertyEditorBase&);
  105. Component* createFloatSlider (LivePropertyEditorBase&);
  106. Component* createBoolSlider (LivePropertyEditorBase&);
  107. template <typename Type> struct CustomEditor { static Component* create (LivePropertyEditorBase&) { return nullptr; } };
  108. template<> struct CustomEditor<char> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  109. template<> struct CustomEditor<unsigned char> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  110. template<> struct CustomEditor<int> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  111. template<> struct CustomEditor<unsigned int> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  112. template<> struct CustomEditor<short> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  113. template<> struct CustomEditor<unsigned short> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  114. template<> struct CustomEditor<int64> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  115. template<> struct CustomEditor<uint64> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  116. template<> struct CustomEditor<float> { static Component* create (LivePropertyEditorBase& e) { return createFloatSlider (e); } };
  117. template<> struct CustomEditor<double> { static Component* create (LivePropertyEditorBase& e) { return createFloatSlider (e); } };
  118. template<> struct CustomEditor<Colour> { static Component* create (LivePropertyEditorBase& e) { return createColourEditor (e); } };
  119. template<> struct CustomEditor<bool> { static Component* create (LivePropertyEditorBase& e) { return createBoolSlider (e); } };
  120. template <typename Type>
  121. struct LivePropertyEditor : public LivePropertyEditorBase
  122. {
  123. template <typename ValueType>
  124. LivePropertyEditor (ValueType& v, CodeDocument& d) : LivePropertyEditorBase (v, d)
  125. {
  126. customComp.reset (CustomEditor<Type>::create (*this));
  127. addAndMakeVisible (customComp.get());
  128. }
  129. };
  130. //==============================================================================
  131. template <typename Type>
  132. struct LiveValue : public LiveValueBase
  133. {
  134. LiveValue (const char* file, int line, const Type& initialValue)
  135. : LiveValueBase (file, line), value (initialValue), originalValue (initialValue)
  136. {}
  137. operator Type() const noexcept { return value; }
  138. Type get() const noexcept { return value; }
  139. operator const char*() const { return castToCharPointer (value); }
  140. LivePropertyEditorBase* createPropertyComponent (CodeDocument& doc) override
  141. {
  142. return new LivePropertyEditor<Type> (*this, doc);
  143. }
  144. String getStringValue (bool preferHex) const override { return getAsString (value, preferHex); }
  145. String getCodeValue (bool preferHex) const override { return getAsCode (value, preferHex); }
  146. String getOriginalStringValue (bool preferHex) const override { return getAsString (originalValue, preferHex); }
  147. void setStringValue (const String& s) override { setFromString (value, s); }
  148. bool isString() const override { return isStringType<Type>::value; }
  149. Type value, originalValue;
  150. JUCE_DECLARE_NON_COPYABLE (LiveValue)
  151. };
  152. //==============================================================================
  153. class JUCE_API ValueList : private AsyncUpdater,
  154. private DeletedAtShutdown
  155. {
  156. public:
  157. ValueList();
  158. ~ValueList() override;
  159. JUCE_DECLARE_SINGLETON (ValueList, false)
  160. template <typename Type>
  161. LiveValue<Type>& getValue (const char* file, int line, const Type& initialValue)
  162. {
  163. const ScopedLock sl (lock);
  164. using ValueType = LiveValue<Type>;
  165. for (auto* v : values)
  166. if (v->sourceLine == line && v->sourceFile == file)
  167. return *static_cast<ValueType*> (v);
  168. auto v = new ValueType (file, line, initialValue);
  169. addValue (v);
  170. return *v;
  171. }
  172. private:
  173. OwnedArray<LiveValueBase> values;
  174. OwnedArray<CodeDocument> documents;
  175. Array<File> documentFiles;
  176. class EditorWindow;
  177. Component::SafePointer<EditorWindow> editorWindow;
  178. CriticalSection lock;
  179. CodeDocument& getDocument (const File&);
  180. void addValue (LiveValueBase*);
  181. void handleAsyncUpdate() override;
  182. };
  183. template <typename Type>
  184. inline LiveValue<Type>& getValue (const char* file, int line, const Type& initialValue)
  185. {
  186. // If you hit this assertion then the __FILE__ macro is providing a
  187. // relative path instead of an absolute path. On Windows this will be
  188. // a path relative to the build directory rather than the currently
  189. // running application. To fix this you must compile with the /FC flag.
  190. jassert (File::isAbsolutePath (file));
  191. return ValueList::getInstance()->getValue (file, line, initialValue);
  192. }
  193. inline LiveValue<String>& getValue (const char* file, int line, const char* initialValue)
  194. {
  195. return getValue (file, line, String (initialValue));
  196. }
  197. }
  198. #endif
  199. //==============================================================================
  200. #if JUCE_ENABLE_LIVE_CONSTANT_EDITOR || DOXYGEN
  201. /**
  202. This macro wraps a primitive constant value in some cunning boilerplate code that allows
  203. its value to be interactively tweaked in a popup window while your application is running.
  204. In a release build, this macro disappears and is replaced by only the constant that it
  205. wraps, but if JUCE_ENABLE_LIVE_CONSTANT_EDITOR is enabled, it injects a class wrapper
  206. that automatically pops-up a window containing an editor that allows the value to be
  207. tweaked at run-time. The editor window will also force all visible components to be
  208. resized and repainted whenever a value is changed, so that if you use this to wrap
  209. a colour or layout parameter, you'll be able to immediately see the effects of changing it.
  210. The editor will also load the original source-file that contains each JUCE_LIVE_CONSTANT
  211. macro, and will display a preview of the modified source code as you adjust the values.
  212. Things to note:
  213. - Only one of these per line! The __FILE__ and __LINE__ macros are used to identify
  214. the value, so things will get confused if you have more than one per line
  215. - Obviously because it needs to load the source code based on the __FILE__ macro,
  216. it'll only work if the source files are stored locally in the same location as they
  217. were when you compiled the program.
  218. - It's only designed to cope with simple types: primitives, string literals, and
  219. the Colour class, so if you try using it for other classes or complex expressions,
  220. good luck!
  221. - The editor window will get popped up whenever a new value is used for the first
  222. time. You can close the window, but there's no way to get it back without restarting
  223. the app!
  224. e.g. in this example the colours, font size, and text used in the paint method can
  225. all be adjusted live:
  226. @code
  227. void MyComp::paint (Graphics& g) override
  228. {
  229. g.fillAll (JUCE_LIVE_CONSTANT (Colour (0xffddddff)));
  230. Colour fontColour = JUCE_LIVE_CONSTANT (Colour (0xff005500));
  231. float fontSize = JUCE_LIVE_CONSTANT (16.0f);
  232. g.setColour (fontColour);
  233. g.setFont (fontSize);
  234. g.drawFittedText (JUCE_LIVE_CONSTANT ("Hello world!"),
  235. getLocalBounds(), Justification::centred, 2);
  236. }
  237. @endcode
  238. */
  239. #define JUCE_LIVE_CONSTANT(initialValue) \
  240. (juce::LiveConstantEditor::getValue (__FILE__, __LINE__ - 1, initialValue).get())
  241. #else
  242. #define JUCE_LIVE_CONSTANT(initialValue) \
  243. (initialValue)
  244. #endif
  245. } // namespace juce