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.

juce_LiveConstantEditor.h 15KB

10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_LIVECONSTANTEDITOR_H_INCLUDED
  18. #define JUCE_LIVECONSTANTEDITOR_H_INCLUDED
  19. #if JUCE_ENABLE_LIVE_CONSTANT_EDITOR && ! DOXYGEN
  20. //==============================================================================
  21. /** You can safely ignore all the stuff in this namespace - it's a bunch of boilerplate
  22. code used to implement the JUCE_LIVE_CONSTANT functionality.
  23. */
  24. namespace LiveConstantEditor
  25. {
  26. int64 parseInt (String);
  27. double parseDouble (const String&);
  28. String intToString (int, bool preferHex);
  29. String intToString (int64, bool preferHex);
  30. template <typename Type>
  31. static void setFromString (Type& v, const String& s) { v = static_cast<Type> (s); }
  32. inline void setFromString (char& v, const String& s) { v = (char) parseInt (s); }
  33. inline void setFromString (unsigned char& v, const String& s) { v = (unsigned char) parseInt (s); }
  34. inline void setFromString (short& v, const String& s) { v = (short) parseInt (s); }
  35. inline void setFromString (unsigned short& v, const String& s) { v = (unsigned short) parseInt (s); }
  36. inline void setFromString (int& v, const String& s) { v = (int) parseInt (s); }
  37. inline void setFromString (unsigned int& v, const String& s) { v = (unsigned int) parseInt (s); }
  38. inline void setFromString (long& v, const String& s) { v = (long) parseInt (s); }
  39. inline void setFromString (unsigned long& v, const String& s) { v = (unsigned long) parseInt (s); }
  40. inline void setFromString (int64& v, const String& s) { v = (int64) parseInt (s); }
  41. inline void setFromString (uint64& v, const String& s) { v = (uint64) parseInt (s); }
  42. inline void setFromString (double& v, const String& s) { v = parseDouble (s); }
  43. inline void setFromString (float& v, const String& s) { v = (float) parseDouble (s); }
  44. inline void setFromString (String& v, const String& s) { v = s; }
  45. inline void setFromString (Colour& v, const String& s) { v = Colour ((int) parseInt (s)); }
  46. template <typename Type>
  47. inline String getAsString (const Type& v, bool) { return String (v); }
  48. inline String getAsString (char v, bool preferHex) { return intToString ((int) v, preferHex); }
  49. inline String getAsString (unsigned char v, bool preferHex) { return intToString ((int) v, preferHex); }
  50. inline String getAsString (short v, bool preferHex) { return intToString ((int) v, preferHex); }
  51. inline String getAsString (unsigned short v, bool preferHex) { return intToString ((int) v, preferHex); }
  52. inline String getAsString (int v, bool preferHex) { return intToString ((int) v, preferHex); }
  53. inline String getAsString (unsigned int v, bool preferHex) { return intToString ((int) v, preferHex); }
  54. inline String getAsString (int64 v, bool preferHex) { return intToString ((int64) v, preferHex); }
  55. inline String getAsString (uint64 v, bool preferHex) { return intToString ((int64) v, preferHex); }
  56. inline String getAsString (Colour v, bool) { return intToString ((int) v.getARGB(), true); }
  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 "\"" + v + "\""; }
  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. String name, sourceFile;
  77. int sourceLine;
  78. JUCE_DECLARE_NON_COPYABLE (LiveValueBase)
  79. };
  80. //==============================================================================
  81. struct JUCE_API LivePropertyEditorBase : public Component,
  82. private TextEditor::Listener,
  83. private ButtonListener
  84. {
  85. LivePropertyEditorBase (LiveValueBase&, CodeDocument&);
  86. void paint (Graphics&) override;
  87. void resized() override;
  88. void textEditorTextChanged (TextEditor&) override;
  89. void buttonClicked (Button*) override;
  90. void applyNewValue (const String&);
  91. void selectOriginalValue();
  92. void findOriginalValueInCode();
  93. LiveValueBase& value;
  94. Label name;
  95. TextEditor valueEditor;
  96. TextButton resetButton;
  97. CodeDocument& document;
  98. CPlusPlusCodeTokeniser tokeniser;
  99. CodeEditorComponent sourceEditor;
  100. CodeDocument::Position valueStart, valueEnd;
  101. ScopedPointer<Component> customComp;
  102. bool wasHex;
  103. JUCE_DECLARE_NON_COPYABLE (LivePropertyEditorBase)
  104. };
  105. //==============================================================================
  106. Component* createColourEditor (LivePropertyEditorBase&);
  107. Component* createIntegerSlider (LivePropertyEditorBase&);
  108. Component* createFloatSlider (LivePropertyEditorBase&);
  109. template <typename Type> struct CustomEditor { static Component* create (LivePropertyEditorBase&) { return nullptr; } };
  110. template<> struct CustomEditor<char> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  111. template<> struct CustomEditor<unsigned char> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  112. template<> struct CustomEditor<int> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  113. template<> struct CustomEditor<unsigned int> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  114. template<> struct CustomEditor<short> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  115. template<> struct CustomEditor<unsigned short> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  116. template<> struct CustomEditor<int64> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  117. template<> struct CustomEditor<uint64> { static Component* create (LivePropertyEditorBase& e) { return createIntegerSlider (e); } };
  118. template<> struct CustomEditor<float> { static Component* create (LivePropertyEditorBase& e) { return createFloatSlider (e); } };
  119. template<> struct CustomEditor<double> { static Component* create (LivePropertyEditorBase& e) { return createFloatSlider (e); } };
  120. template<> struct CustomEditor<Colour> { static Component* create (LivePropertyEditorBase& e) { return createColourEditor (e); } };
  121. template <typename Type>
  122. struct LivePropertyEditor : public LivePropertyEditorBase
  123. {
  124. template <typename ValueType>
  125. LivePropertyEditor (ValueType& v, CodeDocument& d) : LivePropertyEditorBase (v, d)
  126. {
  127. addAndMakeVisible (customComp = CustomEditor<Type>::create (*this));
  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. operator const char*() const { return castToCharPointer (value); }
  139. LivePropertyEditorBase* createPropertyComponent (CodeDocument& doc) override
  140. {
  141. return new LivePropertyEditor<Type> (*this, doc);
  142. }
  143. String getStringValue (bool preferHex) const override { return getAsString (value, preferHex); }
  144. String getCodeValue (bool preferHex) const override { return getAsCode (value, preferHex); }
  145. String getOriginalStringValue (bool preferHex) const override { return getAsString (originalValue, preferHex); }
  146. void setStringValue (const String& s) override { setFromString (value, s); }
  147. Type value, originalValue;
  148. JUCE_DECLARE_NON_COPYABLE (LiveValue)
  149. };
  150. //==============================================================================
  151. class JUCE_API ValueList : private AsyncUpdater,
  152. private DeletedAtShutdown
  153. {
  154. public:
  155. ValueList();
  156. ~ValueList();
  157. static ValueList& getInstance();
  158. template <typename Type>
  159. LiveValue<Type>& getValue (const char* file, int line, const Type& initialValue)
  160. {
  161. const ScopedLock sl (lock);
  162. typedef LiveValue<Type> ValueType;
  163. for (int i = 0; i < values.size(); ++i)
  164. {
  165. LiveValueBase* v = values.getUnchecked(i);
  166. if (v->sourceLine == line && v->sourceFile == file)
  167. return *static_cast<ValueType*> (v);
  168. }
  169. ValueType* v = new ValueType (file, line, initialValue);
  170. addValue (v);
  171. return *v;
  172. }
  173. private:
  174. OwnedArray<LiveValueBase> values;
  175. OwnedArray<CodeDocument> documents;
  176. Array<File> documentFiles;
  177. class EditorWindow;
  178. friend class EditorWindow;
  179. friend struct ContainerDeletePolicy<EditorWindow>;
  180. Component::SafePointer<EditorWindow> editorWindow;
  181. CriticalSection lock;
  182. CodeDocument& getDocument (const File&);
  183. void addValue (LiveValueBase*);
  184. void handleAsyncUpdate() override;
  185. };
  186. template <typename Type>
  187. inline LiveValue<Type>& getValue (const char* file, int line, const Type& initialValue)
  188. {
  189. return ValueList::getInstance().getValue (file, line, initialValue);
  190. }
  191. inline LiveValue<String>& getValue (const char* file, int line, const char* initialValue)
  192. {
  193. return getValue (file, line, String (initialValue));
  194. }
  195. }
  196. #endif
  197. //==============================================================================
  198. #if JUCE_ENABLE_LIVE_CONSTANT_EDITOR || DOXYGEN
  199. /**
  200. This macro wraps a primitive constant value in some cunning boilerplate code that allows
  201. its value to be interactively tweaked in a popup window while your application is running.
  202. In a release build, this macro disappears and is replaced by only the constant that it
  203. wraps, but if JUCE_ENABLE_LIVE_CONSTANT_EDITOR is enabled, it injects a class wrapper
  204. that automatically pops-up a window containing an editor that allows the value to be
  205. tweaked at run-time. The editor window will also force all visible components to be
  206. resized and repainted whenever a value is changed, so that if you use this to wrap
  207. a colour or layout parameter, you'll be able to immediately see the effects of changing it.
  208. The editor will also load the original source-file that contains each JUCE_LIVE_CONSTANT
  209. macro, and will display a preview of the modified source code as you adjust the values.
  210. Things to note:
  211. - Only one of these per line! The __FILE__ and __LINE__ macros are used to identify
  212. the value, so things will get confused if you have more than one per line
  213. - Obviously because it needs to load the source code based on the __FILE__ macro,
  214. it'll only work if the source files are stored locally in the same location as they
  215. were when you compiled the program.
  216. - It's only designed to cope with simple types: primitives, string literals, and
  217. the Colour class, so if you try using it for other classes or complex expressions,
  218. good luck!
  219. - The editor window will get popped up whenever a new value is used for the first
  220. time. You can close the window, but there's no way to get it back without restarting
  221. the app!
  222. e.g. in this example the colours, font size, and text used in the paint method can
  223. all be adjusted live:
  224. @code
  225. void MyComp::paint (Graphics& g) override
  226. {
  227. g.fillAll (JUCE_LIVE_CONSTANT (Colour (0xffddddff)));
  228. Colour fontColour = JUCE_LIVE_CONSTANT (Colour (0xff005500));
  229. float fontSize = JUCE_LIVE_CONSTANT (16.0f);
  230. g.setColour (fontColour);
  231. g.setFont (fontSize);
  232. g.drawFittedText (JUCE_LIVE_CONSTANT ("Hello world!"),
  233. getLocalBounds(), Justification::centred, 2);
  234. }
  235. @endcode
  236. */
  237. #define JUCE_LIVE_CONSTANT(initialValue) \
  238. (juce::LiveConstantEditor::getValue (__FILE__, __LINE__ - 1, initialValue))
  239. #else
  240. #define JUCE_LIVE_CONSTANT(initialValue) \
  241. (initialValue)
  242. #endif
  243. #endif // JUCE_LIVECONSTANTEDITOR_H_INCLUDED