Audio plugin host https://kx.studio/carla
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.

174 lines
7.4KB

  1. /*
  2. * Carla Engine OSC
  3. * Copyright (C) 2012-2013 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 2 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 GPL.txt file
  16. */
  17. #ifndef __CARLA_ENGINE_OSC_HPP__
  18. #define __CARLA_ENGINE_OSC_HPP__
  19. #include "carla_backend.hpp"
  20. #include "carla_juce_utils.hpp"
  21. #include "carla_osc_utils.hpp"
  22. #define CARLA_ENGINE_OSC_HANDLE_ARGS1 CarlaPlugin* const plugin
  23. #define CARLA_ENGINE_OSC_HANDLE_ARGS2 CarlaPlugin* const plugin, const int argc, const lo_arg* const* const argv, const char* const types
  24. #define CARLA_ENGINE_OSC_CHECK_OSC_TYPES(/* argc, types, */ argcToCompare, typesToCompare) \
  25. /* check argument count */ \
  26. if (argc != argcToCompare) \
  27. { \
  28. qCritical("CarlaEngineOsc::%s() - argument count mismatch: %i != %i", __FUNCTION__, argc, argcToCompare); \
  29. return 1; \
  30. } \
  31. if (argc > 0) \
  32. { \
  33. /* check for nullness */ \
  34. if (! (types && typesToCompare)) \
  35. { \
  36. qCritical("CarlaEngineOsc::%s() - argument types are null", __FUNCTION__); \
  37. return 1; \
  38. } \
  39. /* check argument types */ \
  40. if (strcmp(types, typesToCompare) != 0) \
  41. { \
  42. qCritical("CarlaEngineOsc::%s() - argument types mismatch: '%s' != '%s'", __FUNCTION__, types, typesToCompare); \
  43. return 1; \
  44. } \
  45. }
  46. CARLA_BACKEND_START_NAMESPACE
  47. #if 0
  48. } // Fix editor indentation
  49. #endif
  50. class CarlaEngineOsc
  51. {
  52. public:
  53. CarlaEngineOsc(CarlaEngine* const engine);
  54. ~CarlaEngineOsc();
  55. void init(const char* const name);
  56. void idle();
  57. void close();
  58. // -------------------------------------------------------------------
  59. const char* getServerPathTCP() const
  60. {
  61. return (const char*)fServerPathTCP;
  62. }
  63. const char* getServerPathUDP() const
  64. {
  65. return (const char*)fServerPathUDP;
  66. }
  67. // -------------------------------------------------------------------
  68. #ifndef BUILD_BRIDGE
  69. bool isControlRegistered() const
  70. {
  71. return bool(fControlData.target);
  72. }
  73. const CarlaOscData* getControlData() const
  74. {
  75. return &fControlData;
  76. }
  77. #endif
  78. // -------------------------------------------------------------------
  79. private:
  80. CarlaEngine* const kEngine;
  81. CarlaString fName;
  82. CarlaString fServerPathTCP;
  83. CarlaString fServerPathUDP;
  84. lo_server fServerTCP;
  85. lo_server fServerUDP;
  86. #ifndef BUILD_BRIDGE
  87. CarlaOscData fControlData; // for carla-control
  88. #endif
  89. // -------------------------------------------------------------------
  90. int handleMessage(const char* const path, const int argc, const lo_arg* const* const argv, const char* const types, const lo_message msg);
  91. #ifndef BUILD_BRIDGE
  92. int handleMsgRegister(const int argc, const lo_arg* const* const argv, const char* const types, const lo_address source);
  93. int handleMsgUnregister();
  94. #endif
  95. int handleMsgUpdate(CARLA_ENGINE_OSC_HANDLE_ARGS2, const lo_address source);
  96. int handleMsgConfigure(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  97. int handleMsgControl(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  98. int handleMsgProgram(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  99. int handleMsgMidi(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  100. int handleMsgExiting(CARLA_ENGINE_OSC_HANDLE_ARGS1);
  101. #ifndef BUILD_BRIDGE
  102. int handleMsgSetActive(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  103. int handleMsgSetDryWet(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  104. int handleMsgSetVolume(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  105. int handleMsgSetBalanceLeft(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  106. int handleMsgSetBalanceRight(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  107. int handleMsgSetParameterValue(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  108. int handleMsgSetParameterMidiCC(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  109. int handleMsgSetParameterMidiChannel(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  110. int handleMsgSetProgram(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  111. int handleMsgSetMidiProgram(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  112. int handleMsgNoteOn(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  113. int handleMsgNoteOff(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  114. int handleMsgBridgeSetInPeak(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  115. int handleMsgBridgeSetOutPeak(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  116. #endif
  117. #ifdef WANT_LV2
  118. int handleMsgLv2AtomTransfer(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  119. int handleMsgLv2EventTransfer(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  120. #endif
  121. // -----------------------------------------------------------------------
  122. static void osc_error_handler_TCP(int num, const char* msg, const char* path)
  123. {
  124. qWarning("CarlaEngineOsc::osc_error_handler_TCP(%i, \"%s\", \"%s\")", num, msg, path);
  125. }
  126. static void osc_error_handler_UDP(int num, const char* msg, const char* path)
  127. {
  128. qWarning("CarlaEngineOsc::osc_error_handler_UDP(%i, \"%s\", \"%s\")", num, msg, path);
  129. }
  130. static int osc_message_handler(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg, void* userData)
  131. {
  132. CARLA_ASSERT(userData);
  133. if (CarlaEngineOsc* const _this_ = (CarlaEngineOsc*)userData)
  134. return _this_->handleMessage(path, argc, argv, types, msg);
  135. return 1;
  136. }
  137. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaEngineOsc)
  138. };
  139. CARLA_BACKEND_END_NAMESPACE
  140. #endif // __CARLA_ENGINE_OSC_HPP__