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.

61 lines
3.1KB

  1. /*
  2. * DISTRHO Cardinal Plugin
  3. * Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 3 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the LICENSE file.
  16. */
  17. #define PLAITS_ALWAYS_LOW_CPU_MODE
  18. #include "AudibleInstruments/src/Plaits.cpp"
  19. #include "AudibleInstruments/eurorack/stmlib/utils/random.cc"
  20. #include "AudibleInstruments/eurorack/stmlib/dsp/units.cc"
  21. #include "AudibleInstruments/eurorack/plaits/dsp/voice.cc"
  22. #include "AudibleInstruments/eurorack/plaits/dsp/engine/additive_engine.cc"
  23. #include "AudibleInstruments/eurorack/plaits/dsp/engine/bass_drum_engine.cc"
  24. #include "AudibleInstruments/eurorack/plaits/dsp/engine/chord_engine.cc"
  25. #include "AudibleInstruments/eurorack/plaits/dsp/engine/fm_engine.cc"
  26. #include "AudibleInstruments/eurorack/plaits/dsp/engine/grain_engine.cc"
  27. #include "AudibleInstruments/eurorack/plaits/dsp/engine/hi_hat_engine.cc"
  28. #include "AudibleInstruments/eurorack/plaits/dsp/engine/modal_engine.cc"
  29. #include "AudibleInstruments/eurorack/plaits/dsp/engine/noise_engine.cc"
  30. #include "AudibleInstruments/eurorack/plaits/dsp/engine/particle_engine.cc"
  31. #include "AudibleInstruments/eurorack/plaits/dsp/engine/snare_drum_engine.cc"
  32. #include "AudibleInstruments/eurorack/plaits/dsp/engine/speech_engine.cc"
  33. #include "AudibleInstruments/eurorack/plaits/dsp/engine/string_engine.cc"
  34. #include "AudibleInstruments/eurorack/plaits/dsp/engine/swarm_engine.cc"
  35. #include "AudibleInstruments/eurorack/plaits/dsp/engine/virtual_analog_engine.cc"
  36. #include "AudibleInstruments/eurorack/plaits/dsp/engine/waveshaping_engine.cc"
  37. #include "AudibleInstruments/eurorack/plaits/dsp/engine/wavetable_engine.cc"
  38. #include "AudibleInstruments/eurorack/plaits/dsp/physical_modelling/modal_voice.cc"
  39. #include "AudibleInstruments/eurorack/plaits/dsp/physical_modelling/resonator.cc"
  40. #include "AudibleInstruments/eurorack/plaits/dsp/physical_modelling/string.cc"
  41. #include "AudibleInstruments/eurorack/plaits/dsp/physical_modelling/string_voice.cc"
  42. #include "AudibleInstruments/eurorack/plaits/dsp/speech/lpc_speech_synth.cc"
  43. #include "AudibleInstruments/eurorack/plaits/dsp/speech/lpc_speech_synth_controller.cc"
  44. #include "AudibleInstruments/eurorack/plaits/dsp/speech/lpc_speech_synth_phonemes.cc"
  45. #include "AudibleInstruments/eurorack/plaits/dsp/speech/lpc_speech_synth_words.cc"
  46. #include "AudibleInstruments/eurorack/plaits/dsp/speech/naive_speech_synth.cc"
  47. #include "AudibleInstruments/eurorack/plaits/dsp/speech/sam_speech_synth.cc"
  48. #include "AudibleInstruments/eurorack/plaits/resources.cc"
  49. #define PLUGIN_MODEL modelPlaits
  50. #define PLUGIN_CV_INPUTS {1,1,1,1,1,1,1,1}
  51. #define PLUGIN_CV_OUTPUTS {0,0}
  52. #include "lv2plugin.cpp"
  53. #include "export.cpp"