|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #include "CarlaUtils.h"
- #include "CarlaString.hpp"
-
- #if defined(HAVE_FLUIDSYNTH) && !defined(BUILD_BRIDGE_ALTERNATIVE_ARCH)
- # include <fluidsynth.h>
- #endif
-
- #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
- # pragma GCC diagnostic push
- # pragma GCC diagnostic ignored "-Wconversion"
- # pragma GCC diagnostic ignored "-Weffc++"
- # pragma GCC diagnostic ignored "-Wsign-conversion"
- # pragma GCC diagnostic ignored "-Wundef"
- # pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
- #endif
-
- #ifdef USING_JUCE
- # include "carla_juce/carla_juce.h"
- #endif
-
- #ifdef USING_RTAUDIO
- # include "rtaudio/RtAudio.h"
- # include "rtmidi/RtMidi.h"
- #endif
-
- #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
- # pragma GCC diagnostic pop
- #endif
-
- #include "water/files/File.h"
-
- // -------------------------------------------------------------------------------------------------------------------
-
- const char* carla_get_complete_license_text()
- {
- carla_debug("carla_get_complete_license_text()");
-
- static CarlaString retText;
-
- if (retText.isEmpty())
- {
- retText =
- "<p>This current Carla build is using the following features and 3rd-party code:</p>"
- "<ul>"
-
- // Plugin formats
- "<li>LADSPA plugin support</li>"
- "<li>DSSI plugin support</li>"
- "<li>LV2 plugin support</li>"
- #if defined(USING_JUCE) && JUCE_PLUGINHOST_VST
- "<li>VST2 plugin support (using JUCE)</li>"
- #else
- "<li>VST2 plugin support (using VeSTige header by Javier Serrano Polo)</li>"
- #endif
- #if defined(USING_JUCE) && JUCE_PLUGINHOST_VST3
- "<li>VST3 plugin support (using JUCE)</li>"
- #else
- "<li>VST3 plugin support (using Travesty header files)</li>"
- #endif
- #if defined(USING_JUCE) && JUCE_PLUGINHOST_AU
- "<li>AU plugin support (using JUCE)</li>"
- #endif
-
- "<li>JSFX plugin support (using ysfx)</li>"
-
- // Sample kit libraries
- #if defined(HAVE_FLUIDSYNTH) && !defined(BUILD_BRIDGE_ALTERNATIVE_ARCH)
- "<li>FluidSynth library v" FLUIDSYNTH_VERSION " for SF2/3 support</li>"
- #endif
- "<li>SFZero module for SFZ support</li>"
-
- // misc libs
- "<li>base64 utilities based on code by Ren\u00E9 Nyffenegger</li>"
- "<li>dr_mp3 for mp3 file support</li>"
- #ifdef HAVE_LIBLO
- "<li>liblo library for OSC support</li>"
- #endif
- #ifdef HAVE_SNDFILE
- "<li>libsndfile library for base audio file support</li>"
- #endif
- "<li>rtmempool library by Nedko Arnaudov</li>"
- "<li>serd, sord, sratom and lilv libraries for LV2 discovery</li>"
- #ifdef USING_RTAUDIO
- "<li>RtAudio v" RTAUDIO_VERSION " and RtMidi v" RTMIDI_VERSION " for native Audio and MIDI support</li>"
- #endif
- "<li>zita-resampler for audio file sample rate resampling</li>"
-
- // Internal plugins
- "<li>MIDI Sequencer UI code by Perry Nguyen</li>"
-
- // External plugins
- #ifdef HAVE_EXTERNAL_PLUGINS
- "<li>Nekobi plugin code based on nekobee by Sean Bolton and others</li>"
- "<li>VectorJuice and WobbleJuice plugin code by Andre Sklenar</li>"
- # ifdef HAVE_ZYN_DEPS
- "<li>ZynAddSubFX plugin code by Mark McCurry and Nasca Octavian Paul</li>"
- # endif
- #endif // HAVE_EXTERNAL_PLUGINS
-
- // end
- "</ul>";
- }
-
- return retText;
- }
-
- const char* carla_get_juce_version()
- {
- carla_debug("carla_get_juce_version()");
-
- static CarlaString retVersion;
-
- #ifdef USING_JUCE
- if (retVersion.isEmpty())
- {
- if (const char* const version = CarlaJUCE::getVersion())
- retVersion = version+6;
- else
- retVersion = "Unknown";
- }
- #endif
-
- return retVersion;
- }
-
- const char* const* carla_get_supported_file_extensions()
- {
- carla_debug("carla_get_supported_file_extensions()");
-
- // NOTE: please keep in sync with CarlaEngine::loadFile!!
- static const char* const extensions[] = {
- // Base types
- "carxp", "carxs",
-
- // plugin files and resources
- #ifdef HAVE_FLUIDSYNTH
- "sf2", "sf3",
- #endif
- #ifdef HAVE_FLUIDSYNTH_INSTPATCH
- "dls", "gig",
- #endif
- #ifdef HAVE_ZYN_DEPS
- "xmz", "xiz",
- #endif
- #ifdef CARLA_OS_MAC
- "vst",
- #else
- "dll",
- "so",
- #endif
- "vst3",
- "clap",
-
- // Audio files
- #ifdef HAVE_SNDFILE
- "aif", "aifc", "aiff", "au", "bwf", "flac", "htk", "iff", "mat4", "mat5", "oga", "ogg", "opus",
- "paf", "pvf", "pvf5", "sd2", "sf", "snd", "svx", "vcc", "w64", "wav", "xi",
- #endif
- #ifdef HAVE_FFMPEG
- "3g2", "3gp", "aac", "ac3", "amr", "ape", "mp2", "mp3", "mpc", "wma",
- # ifndef HAVE_SNDFILE
- // FFmpeg without sndfile
- "flac", "oga", "ogg", "w64", "wav",
- # endif
- #else
- // dr_mp3
- "mp3",
- #endif
-
- // MIDI files
- "mid", "midi",
-
- // SFZ
- "sfz",
-
- // JSFX
- "jsfx",
-
- // terminator
- nullptr
- };
-
- return extensions;
- }
-
- const char* const* carla_get_supported_features()
- {
- carla_debug("carla_get_supported_features()");
-
- static const char* const features[] = {
- #ifdef HAVE_FLUIDSYNTH
- "sf2",
- #endif
- #ifdef HAVE_FLUIDSYNTH_INSTPATCH
- "dls", "gig",
- #endif
- #ifdef HAVE_HYLIA
- "link",
- #endif
- #ifdef HAVE_LIBLO
- "osc",
- #endif
- #if defined(HAVE_LIBMAGIC) || defined(CARLA_OS_WIN)
- "bridges",
- #endif
- #ifdef HAVE_PYQT
- "gui",
- #endif
- #ifdef USING_JUCE
- "juce",
- # if defined(CARLA_OS_MAC)
- "au",
- # endif
- #endif
- nullptr
- };
-
- return features;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
-
- const char* carla_get_library_filename()
- {
- carla_debug("carla_get_library_filename()");
-
- static CarlaString ret;
-
- if (ret.isEmpty())
- {
- using water::File;
- ret = File(File::getSpecialLocation(File::currentExecutableFile)).getFullPathName().toRawUTF8();
- }
-
- return ret;
- }
-
- const char* carla_get_library_folder()
- {
- carla_debug("carla_get_library_folder()");
-
- static CarlaString ret;
-
- if (ret.isEmpty())
- {
- using water::File;
- ret = File(File::getSpecialLocation(File::currentExecutableFile).getParentDirectory()).getFullPathName().toRawUTF8();
- }
-
- return ret;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
|