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.

55 lines
2.3KB

  1. #include "ML_modules.hpp"
  2. #include <math.h>
  3. RACK_PLUGIN_MODEL_DECLARE(ML_modules, Quantizer);
  4. RACK_PLUGIN_MODEL_DECLARE(ML_modules, Quantum);
  5. RACK_PLUGIN_MODEL_DECLARE(ML_modules, TrigBuf);
  6. RACK_PLUGIN_MODEL_DECLARE(ML_modules, SeqSwitch);
  7. RACK_PLUGIN_MODEL_DECLARE(ML_modules, SeqSwitch2);
  8. RACK_PLUGIN_MODEL_DECLARE(ML_modules, ShiftRegister);
  9. RACK_PLUGIN_MODEL_DECLARE(ML_modules, ShiftRegister2);
  10. RACK_PLUGIN_MODEL_DECLARE(ML_modules, FreeVerb);
  11. RACK_PLUGIN_MODEL_DECLARE(ML_modules, Sum8);
  12. RACK_PLUGIN_MODEL_DECLARE(ML_modules, Sum8mk2);
  13. RACK_PLUGIN_MODEL_DECLARE(ML_modules, SH8);
  14. RACK_PLUGIN_MODEL_DECLARE(ML_modules, Constants);
  15. RACK_PLUGIN_MODEL_DECLARE(ML_modules, Counter);
  16. RACK_PLUGIN_MODEL_DECLARE(ML_modules, TrigDelay);
  17. RACK_PLUGIN_MODEL_DECLARE(ML_modules, BPMdetect);
  18. RACK_PLUGIN_MODEL_DECLARE(ML_modules, VoltMeter);
  19. RACK_PLUGIN_MODEL_DECLARE(ML_modules, OctaFlop);
  20. RACK_PLUGIN_MODEL_DECLARE(ML_modules, OctaTrig);
  21. RACK_PLUGIN_MODEL_DECLARE(ML_modules, OctaSwitch);
  22. RACK_PLUGIN_MODEL_DECLARE(ML_modules, TrigSwitch);
  23. RACK_PLUGIN_MODEL_DECLARE(ML_modules, TrigSwitch2);
  24. RACK_PLUGIN_MODEL_DECLARE(ML_modules, TrigSwitch3);
  25. RACK_PLUGIN_MODEL_DECLARE(ML_modules, TrigSwitch3_2);
  26. RACK_PLUGIN_INIT(ML_modules) {
  27. RACK_PLUGIN_INIT_ID();
  28. RACK_PLUGIN_MODEL_ADD(ML_modules, Quantizer);
  29. RACK_PLUGIN_MODEL_ADD(ML_modules, Quantum);
  30. RACK_PLUGIN_MODEL_ADD(ML_modules, TrigBuf);
  31. RACK_PLUGIN_MODEL_ADD(ML_modules, SeqSwitch);
  32. RACK_PLUGIN_MODEL_ADD(ML_modules, SeqSwitch2);
  33. RACK_PLUGIN_MODEL_ADD(ML_modules, ShiftRegister);
  34. RACK_PLUGIN_MODEL_ADD(ML_modules, ShiftRegister2);
  35. RACK_PLUGIN_MODEL_ADD(ML_modules, FreeVerb);
  36. RACK_PLUGIN_MODEL_ADD(ML_modules, Sum8);
  37. RACK_PLUGIN_MODEL_ADD(ML_modules, Sum8mk2);
  38. RACK_PLUGIN_MODEL_ADD(ML_modules, SH8);
  39. RACK_PLUGIN_MODEL_ADD(ML_modules, Constants);
  40. RACK_PLUGIN_MODEL_ADD(ML_modules, Counter);
  41. RACK_PLUGIN_MODEL_ADD(ML_modules, TrigDelay);
  42. RACK_PLUGIN_MODEL_ADD(ML_modules, BPMdetect);
  43. RACK_PLUGIN_MODEL_ADD(ML_modules, VoltMeter);
  44. RACK_PLUGIN_MODEL_ADD(ML_modules, OctaFlop);
  45. RACK_PLUGIN_MODEL_ADD(ML_modules, OctaTrig);
  46. RACK_PLUGIN_MODEL_ADD(ML_modules, OctaSwitch);
  47. RACK_PLUGIN_MODEL_ADD(ML_modules, TrigSwitch);
  48. RACK_PLUGIN_MODEL_ADD(ML_modules, TrigSwitch2);
  49. RACK_PLUGIN_MODEL_ADD(ML_modules, TrigSwitch3);
  50. RACK_PLUGIN_MODEL_ADD(ML_modules, TrigSwitch3_2);
  51. }