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.

CarlaEngineOsc.hpp 7.6KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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 doc/GPL.txt file.
  16. */
  17. #ifndef CARLA_ENGINE_OSC_HPP_INCLUDED
  18. #define CARLA_ENGINE_OSC_HPP_INCLUDED
  19. #include "CarlaBackend.hpp"
  20. #include "CarlaOscUtils.hpp"
  21. #include "CarlaString.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. carla_stderr("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 == nullptr || typesToCompare == nullptr) \
  35. { \
  36. carla_stderr("CarlaEngineOsc::%s() - argument types are null", __FUNCTION__); \
  37. return 1; \
  38. } \
  39. /* check argument types */ \
  40. if (std::strcmp(types, typesToCompare) != 0) \
  41. { \
  42. carla_stderr("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 noexcept
  60. {
  61. return (const char*)fServerPathTCP;
  62. }
  63. const char* getServerPathUDP() const noexcept
  64. {
  65. return (const char*)fServerPathUDP;
  66. }
  67. // -------------------------------------------------------------------
  68. #ifndef BUILD_BRIDGE
  69. bool isControlRegistered() const noexcept
  70. {
  71. return (fControlData.target != nullptr);
  72. }
  73. const CarlaOscData* getControlData() const noexcept
  74. {
  75. return &fControlData;
  76. }
  77. #endif
  78. // -------------------------------------------------------------------
  79. private:
  80. CarlaEngine* const fEngine;
  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 bool isTCP, 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 bool isTCP, 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 handleMsgSetPanning(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  108. int handleMsgSetParameterValue(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  109. int handleMsgSetParameterMidiCC(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  110. int handleMsgSetParameterMidiChannel(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  111. int handleMsgSetProgram(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  112. int handleMsgSetMidiProgram(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  113. int handleMsgNoteOn(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  114. int handleMsgNoteOff(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  115. #endif
  116. #ifdef WANT_LV2
  117. int handleMsgLv2AtomTransfer(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  118. int handleMsgLv2UridMap(CARLA_ENGINE_OSC_HANDLE_ARGS2);
  119. #endif
  120. // -----------------------------------------------------------------------
  121. static void osc_error_handler_TCP(int num, const char* msg, const char* path)
  122. {
  123. carla_stderr("CarlaEngineOsc::osc_error_handler_TCP(%i, \"%s\", \"%s\")", num, msg, path);
  124. }
  125. static void osc_error_handler_UDP(int num, const char* msg, const char* path)
  126. {
  127. carla_stderr("CarlaEngineOsc::osc_error_handler_UDP(%i, \"%s\", \"%s\")", num, msg, path);
  128. }
  129. static int osc_message_handler_TCP(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg, void* userData)
  130. {
  131. return ((CarlaEngineOsc*)userData)->handleMessage(true, path, argc, argv, types, msg);
  132. }
  133. static int osc_message_handler_UDP(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg, void* userData)
  134. {
  135. return ((CarlaEngineOsc*)userData)->handleMessage(false, path, argc, argv, types, msg);
  136. }
  137. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaEngineOsc)
  138. };
  139. CARLA_BACKEND_END_NAMESPACE
  140. #endif // CARLA_ENGINE_OSC_HPP_INCLUDED