set owner or disk-i/o processors
[ardour.git] / libs / ardour / vst_info_file.cc
index 8993ba2b3d3df4e541c8c67df380932524365801..b076c422270556c957924b60ec78bfda458daac0 100644 (file)
@@ -49,6 +49,7 @@
 
 #include "ardour/filesystem_paths.h"
 #include "ardour/linux_vst_support.h"
+#include "ardour/mac_vst_support.h"
 #include "ardour/plugin_types.h"
 #include "ardour/vst_info_file.h"
 
@@ -74,6 +75,10 @@ vstfx_instantiate_and_get_info_fst (const char* dllpath, vector<VSTInfo*> *infos
 static bool vstfx_instantiate_and_get_info_lx (const char* dllpath, vector<VSTInfo*> *infos, int uniqueID);
 #endif
 
+#ifdef MACVST_SUPPORT
+static bool vstfx_instantiate_and_get_info_mac (const char* dllpath, vector<VSTInfo*> *infos, int uniqueID);
+#endif
+
 /* ID for shell plugins */
 static int vstfx_current_loading_id = 0;
 
@@ -302,6 +307,9 @@ vstfx_load_info_block (FILE* fp, VSTInfo *info)
 
        // TODO read isInstrument -- effFlagsIsSynth
        info->isInstrument = info->numInputs == 0 && info->numOutputs > 0 && 1 == (info->wantMidi & 1);
+       if (!strcmp (info->Category, "Synth")) {
+               info->isInstrument = true;
+       }
 
        if ((info->numParams) == 0) {
                info->ParamNames = NULL;
@@ -439,6 +447,8 @@ vstfx_infofile_for_read (const char* dllpath)
        if (
                        (slen <= 3 || g_ascii_strcasecmp (&dllpath[slen-3], ".so"))
                        &&
+                       (slen <= 4 || g_ascii_strcasecmp (&dllpath[slen-4], ".vst"))
+                       &&
                        (slen <= 4 || g_ascii_strcasecmp (&dllpath[slen-4], ".dll"))
           ) {
                return 0;
@@ -474,6 +484,8 @@ vstfx_infofile_for_write (const char* dllpath)
        if (
                        (slen <= 3 || g_ascii_strcasecmp (&dllpath[slen-3], ".so"))
                        &&
+                       (slen <= 4 || g_ascii_strcasecmp (&dllpath[slen-4], ".vst"))
+                       &&
                        (slen <= 4 || g_ascii_strcasecmp (&dllpath[slen-4], ".dll"))
           ) {
                return NULL;
@@ -637,10 +649,10 @@ vstfx_parse_vst_state (VSTState* vstfx)
        switch (plugin->dispatcher (plugin, effGetPlugCategory, 0, 0, 0, 0))
        {
                case kPlugCategEffect:         info->Category = strdup ("Effect"); break;
-               case kPlugCategSynth:          info->Category = strdup ("Synth"); break;
-               case kPlugCategAnalysis:       info->Category = strdup ("Anaylsis"); break;
+               case kPlugCategSynth:          info->Category = strdup ("Instrument"); break;
+               case kPlugCategAnalysis:       info->Category = strdup ("Analyser"); break;
                case kPlugCategMastering:      info->Category = strdup ("Mastering"); break;
-               case kPlugCategSpacializer:    info->Category = strdup ("Spacializer"); break;
+               case kPlugCategSpacializer:    info->Category = strdup ("Spatial"); break;
                case kPlugCategRoomFx:         info->Category = strdup ("RoomFx"); break;
                case kPlugSurroundFx:          info->Category = strdup ("SurroundFx"); break;
                case kPlugCategRestoration:    info->Category = strdup ("Restoration"); break;
@@ -662,9 +674,16 @@ vstfx_parse_vst_state (VSTState* vstfx)
        info->ParamNames = (char **) malloc (sizeof (char*)*info->numParams);
        info->ParamLabels = (char **) malloc (sizeof (char*)*info->numParams);
 
+#ifdef __APPLE__
+       if (info->hasEditor) {
+               /* we only support Cocoa UIs (just like Reaper) */
+               info->hasEditor = (plugin->dispatcher (plugin, effCanDo, 0, 0, const_cast<char*> ("hasCockosViewAsConfig"), 0.0f) & 0xffff0000) == 0xbeef0000;
+       }
+#endif
+
        for (int i = 0; i < info->numParams; ++i) {
-               char name[64];
-               char label[64];
+               char name[VestigeMaxLabelLen];
+               char label[VestigeMaxLabelLen];
 
                /* Not all plugins give parameters labels as well as names */
 
@@ -721,6 +740,11 @@ vstfx_info_from_plugin (const char *dllpath, VSTState* vstfx, vector<VSTInfo *>
                        case ARDOUR::LXVST:
                                vstfx_close (vstfx);
                                break;
+#endif
+#ifdef MACVST_SUPPORT
+                       case ARDOUR::MacVST:
+                               mac_vst_close (vstfx);
+                               break;
 #endif
                        default:
                                assert (0);
@@ -743,6 +767,11 @@ vstfx_info_from_plugin (const char *dllpath, VSTState* vstfx, vector<VSTInfo *>
                                case ARDOUR::LXVST:
                                        ok = vstfx_instantiate_and_get_info_lx (dllpath, infos, id);
                                        break;
+#endif
+#ifdef MACVST_SUPPORT
+                               case ARDOUR::MacVST:
+                                       ok = vstfx_instantiate_and_get_info_mac (dllpath, infos, id);
+                                       break;
 #endif
                                default:
                                        ok = false;
@@ -774,6 +803,11 @@ vstfx_info_from_plugin (const char *dllpath, VSTState* vstfx, vector<VSTInfo *>
                        case ARDOUR::LXVST:
                                vstfx_close (vstfx);
                                break;
+#endif
+#ifdef MACVST_SUPPORT
+                       case ARDOUR::MacVST:
+                               mac_vst_close (vstfx);
+                               break;
 #endif
                        default:
                                assert (0);
@@ -844,7 +878,35 @@ vstfx_instantiate_and_get_info_fst (
 }
 #endif
 
+#ifdef MACVST_SUPPORT
+static bool
+vstfx_instantiate_and_get_info_mac (
+               const char* dllpath, vector<VSTInfo*> *infos, int uniqueID)
+{
+       printf("vstfx_instantiate_and_get_info_mac %s\n", dllpath);
+       VSTHandle* h;
+       VSTState* vstfx;
+       if (!(h = mac_vst_load (dllpath))) {
+               PBD::warning << string_compose (_("Cannot get MacVST information from '%1': load failed."), dllpath) << endmsg;
+               return false;
+       }
+
+       vstfx_current_loading_id = uniqueID;
+
+       if (!(vstfx = mac_vst_instantiate (h, simple_master_callback, 0))) {
+               mac_vst_unload (h);
+               PBD::warning << string_compose (_("Cannot get MacVST information from '%1': instantiation failed."), dllpath) << endmsg;
+               return false;
+       }
+
+       vstfx_current_loading_id = 0;
 
+       vstfx_info_from_plugin (dllpath, vstfx, infos, ARDOUR::MacVST);
+
+       mac_vst_unload (h);
+       return true;
+}
+#endif
 
 /* *** ERROR LOGGING *** */
 #ifndef VST_SCANNER_APP
@@ -990,6 +1052,11 @@ vstfx_get_info (const char* dllpath, enum ARDOUR::PluginType type, enum VSTScanM
                case ARDOUR::LXVST:
                        ok = vstfx_instantiate_and_get_info_lx (dllpath, infos, 0);
                        break;
+#endif
+#ifdef MACVST_SUPPORT
+               case ARDOUR::MacVST:
+                       ok = vstfx_instantiate_and_get_info_mac (dllpath, infos, 0);
+                       break;
 #endif
                default:
                        ok = false;
@@ -1035,6 +1102,14 @@ vstfx_get_info_lx (char* dllpath, enum VSTScanMode mode)
 }
 #endif
 
+#ifdef MACVST_SUPPORT
+vector<VSTInfo *> *
+vstfx_get_info_mac (char* dllpath, enum VSTScanMode mode)
+{
+       return vstfx_get_info (dllpath, ARDOUR::MacVST, mode);
+}
+#endif
+
 #ifdef WINDOWS_VST_SUPPORT
 vector<VSTInfo *> *
 vstfx_get_info_fst (char* dllpath, enum VSTScanMode mode)