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.

77 lines
1.8KB

  1. /*
  2. * DISTRHO Cardinal Plugin
  3. * Copyright (C) 2021 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. #include <plugin.hpp>
  18. #include "Fundamental/src/plugin.hpp"
  19. Plugin* pluginInstance__Befaco;
  20. Plugin* pluginInstance__Fundamental;
  21. namespace rack {
  22. namespace plugin {
  23. static void initStatic__Befaco()
  24. {
  25. Plugin* p = new Plugin;
  26. pluginInstance__Befaco = p;
  27. plugins.push_back(p);
  28. }
  29. static void initStatic__Fundamental()
  30. {
  31. Plugin* p = new Plugin;
  32. pluginInstance__Fundamental = p;
  33. p->addModel(modelVCO);
  34. p->addModel(modelVCO2);
  35. p->addModel(modelVCF);
  36. p->addModel(modelVCA_1);
  37. p->addModel(modelVCA);
  38. p->addModel(modelLFO);
  39. p->addModel(modelLFO2);
  40. p->addModel(modelDelay);
  41. p->addModel(modelADSR);
  42. p->addModel(modelVCMixer);
  43. p->addModel(model_8vert);
  44. p->addModel(modelUnity);
  45. p->addModel(modelMutes);
  46. p->addModel(modelPulses);
  47. p->addModel(modelScope);
  48. p->addModel(modelSEQ3);
  49. p->addModel(modelSequentialSwitch1);
  50. p->addModel(modelSequentialSwitch2);
  51. p->addModel(modelOctave);
  52. p->addModel(modelQuantizer);
  53. p->addModel(modelSplit);
  54. p->addModel(modelMerge);
  55. p->addModel(modelSum);
  56. p->addModel(modelViz);
  57. p->addModel(modelMidSide);
  58. p->addModel(modelNoise);
  59. p->addModel(modelRandom);
  60. plugins.push_back(p);
  61. }
  62. void initStaticPlugins()
  63. {
  64. initStatic__Befaco();
  65. initStatic__Fundamental();
  66. }
  67. }
  68. }