Good VST tutorials?
-
- KVRer
- 4 posts since 23 Jan, 2012 from New York
Hey! I'm trying to get into Deving VSTs and VSTis in C++, and I don't have a clue as to where to get the latest greatest tutorials. I've seen the Cubase SDK but it seems kind of ancient.
Any ideas for how to get into Modern VST Development?
What kind of GUI options exist?
This is my first post, so thanks in advance for putting up with my newbosity!
Any ideas for how to get into Modern VST Development?
What kind of GUI options exist?
This is my first post, so thanks in advance for putting up with my newbosity!
-
- KVRer
- 8 posts since 17 Mar, 2011
Have a look at the forums about the frameworks that are available. JUCE is one. I used IPlug for my plug-in. The forum for IPlug is here...
http://forum.cockos.com/forumdisplay.php?f=32
For C# do a search for VST .NET
http://forum.cockos.com/forumdisplay.php?f=32
For C# do a search for VST .NET
-
- KVRer
- 8 posts since 17 Mar, 2011
For GUI I needed alot of text input and a tabbed window control, and was not confident about rolling my own. I used wxWidgets running in a separate thread, which uses native controls with a cross-platform wrapper (in theory it should be an easy port to Mac but I haven't done it yet). The wxWidgets event handling is really good.
However, if I were doing it again with the knowledge I have now I would probably roll my own. Many plug-ins are just a single window with mouse only input, so it just boils down to painting bitmaps with some event handling behind it.
However, if I were doing it again with the knowledge I have now I would probably roll my own. Many plug-ins are just a single window with mouse only input, so it just boils down to painting bitmaps with some event handling behind it.
-
- KVRian
- 882 posts since 24 Jun, 2002 from Berlin
so MandelDrum is Wxwigets on top of IPlug? interesting!
-
- KVRer
- Topic Starter
- 4 posts since 23 Jan, 2012 from New York
Thanks guys! This is already some great help. Massive forum win.
Questions on GUIs:
Anyone know if you could use Qt tools for VST GUIs? I've heard they rock for platform independence.
Questions on GUIs:
Anyone know if you could use Qt tools for VST GUIs? I've heard they rock for platform independence.
-
- KVRian
- 995 posts since 25 Apr, 2005
Take a look at http://matt.eifelle.com/?s=qtbaordog wrote:Thanks guys! This is already some great help. Massive forum win.
Questions on GUIs:
Anyone know if you could use Qt tools for VST GUIs? I've heard they rock for platform independence.
