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.

278 lines
7.7KB

  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-2014 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. #include "CarlaEngine.hpp"
  18. #include "CarlaMathUtils.hpp"
  19. #include "CarlaMIDI.h"
  20. CARLA_BACKEND_START_NAMESPACE
  21. // -----------------------------------------------------------------------
  22. // EngineControlEvent
  23. void EngineControlEvent::convertToMidiData(const uint8_t channel, uint8_t& size, uint8_t data[3]) const noexcept
  24. {
  25. size = 0;
  26. switch (type)
  27. {
  28. case kEngineControlEventTypeNull:
  29. break;
  30. case kEngineControlEventTypeParameter:
  31. if (param >= MAX_MIDI_VALUE)
  32. {
  33. // out of bounds. do nothing
  34. }
  35. else if (MIDI_IS_CONTROL_BANK_SELECT(param))
  36. {
  37. size = 3;
  38. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  39. data[1] = MIDI_CONTROL_BANK_SELECT;
  40. data[2] = uint8_t(carla_fixValue<float>(0.0f, float(MAX_MIDI_VALUE-1), value));
  41. }
  42. else
  43. {
  44. size = 3;
  45. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  46. data[1] = static_cast<uint8_t>(param);
  47. data[2] = uint8_t(carla_fixValue<float>(0.0f, 1.0f, value) * float(MAX_MIDI_VALUE-1));
  48. }
  49. break;
  50. case kEngineControlEventTypeMidiBank:
  51. size = 3;
  52. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  53. data[1] = MIDI_CONTROL_BANK_SELECT;
  54. data[2] = uint8_t(carla_fixValue<uint16_t>(0, MAX_MIDI_VALUE-1, param));
  55. break;
  56. case kEngineControlEventTypeMidiProgram:
  57. size = 2;
  58. data[0] = static_cast<uint8_t>(MIDI_STATUS_PROGRAM_CHANGE | (channel & MIDI_CHANNEL_BIT));
  59. data[1] = uint8_t(carla_fixValue<uint16_t>(0, MAX_MIDI_VALUE-1, param));
  60. break;
  61. case kEngineControlEventTypeAllSoundOff:
  62. size = 2;
  63. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  64. data[1] = MIDI_CONTROL_ALL_SOUND_OFF;
  65. break;
  66. case kEngineControlEventTypeAllNotesOff:
  67. size = 2;
  68. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  69. data[1] = MIDI_CONTROL_ALL_NOTES_OFF;
  70. break;
  71. }
  72. }
  73. // -----------------------------------------------------------------------
  74. // EngineEvent
  75. void EngineEvent::fillFromMidiData(const uint8_t size, const uint8_t* const data) noexcept
  76. {
  77. if (size == 0 || data == nullptr || data[0] < MIDI_STATUS_NOTE_OFF)
  78. {
  79. type = kEngineEventTypeNull;
  80. channel = 0;
  81. return;
  82. }
  83. // get channel
  84. channel = uint8_t(MIDI_GET_CHANNEL_FROM_DATA(data));
  85. // get status
  86. const uint8_t midiStatus(uint8_t(MIDI_GET_STATUS_FROM_DATA(data)));
  87. if (midiStatus == MIDI_STATUS_CONTROL_CHANGE)
  88. {
  89. CARLA_SAFE_ASSERT_RETURN(size >= 2,);
  90. type = kEngineEventTypeControl;
  91. const uint8_t midiControl(data[1]);
  92. if (MIDI_IS_CONTROL_BANK_SELECT(midiControl))
  93. {
  94. CARLA_SAFE_ASSERT_RETURN(size >= 3,);
  95. const uint8_t midiBank(data[2]);
  96. ctrl.type = kEngineControlEventTypeMidiBank;
  97. ctrl.param = midiBank;
  98. ctrl.value = 0.0f;
  99. }
  100. else if (midiControl == MIDI_CONTROL_ALL_SOUND_OFF)
  101. {
  102. ctrl.type = kEngineControlEventTypeAllSoundOff;
  103. ctrl.param = 0;
  104. ctrl.value = 0.0f;
  105. }
  106. else if (midiControl == MIDI_CONTROL_ALL_NOTES_OFF)
  107. {
  108. ctrl.type = kEngineControlEventTypeAllNotesOff;
  109. ctrl.param = 0;
  110. ctrl.value = 0.0f;
  111. }
  112. else
  113. {
  114. CARLA_SAFE_ASSERT_RETURN(size >= 3,);
  115. const uint8_t midiValue(carla_fixValue<uint8_t>(0, 127, data[2])); // ensures 0.0<->1.0 value range
  116. ctrl.type = kEngineControlEventTypeParameter;
  117. ctrl.param = midiControl;
  118. ctrl.value = float(midiValue)/127.0f;
  119. }
  120. }
  121. else if (midiStatus == MIDI_STATUS_PROGRAM_CHANGE)
  122. {
  123. CARLA_SAFE_ASSERT_RETURN(size >= 2,);
  124. type = kEngineEventTypeControl;
  125. const uint8_t midiProgram(data[1]);
  126. ctrl.type = kEngineControlEventTypeMidiProgram;
  127. ctrl.param = midiProgram;
  128. ctrl.value = 0.0f;
  129. }
  130. else
  131. {
  132. type = kEngineEventTypeMidi;
  133. midi.port = 0;
  134. midi.size = size;
  135. if (size > EngineMidiEvent::kDataSize)
  136. {
  137. midi.dataExt = data;
  138. std::memset(midi.data, 0, sizeof(uint8_t)*EngineMidiEvent::kDataSize);
  139. }
  140. else
  141. {
  142. midi.data[0] = midiStatus;
  143. uint8_t i=1;
  144. for (; i < size; ++i)
  145. midi.data[i] = data[i];
  146. for (; i < EngineMidiEvent::kDataSize; ++i)
  147. midi.data[i] = 0;
  148. midi.dataExt = nullptr;
  149. }
  150. }
  151. }
  152. // -----------------------------------------------------------------------
  153. // EngineOptions
  154. EngineOptions::EngineOptions() noexcept
  155. #ifdef CARLA_OS_LINUX
  156. : processMode(ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS),
  157. transportMode(ENGINE_TRANSPORT_MODE_JACK),
  158. #else
  159. : processMode(ENGINE_PROCESS_MODE_CONTINUOUS_RACK),
  160. transportMode(ENGINE_TRANSPORT_MODE_INTERNAL),
  161. #endif
  162. forceStereo(false),
  163. preferPluginBridges(false),
  164. preferUiBridges(true),
  165. uisAlwaysOnTop(true),
  166. maxParameters(MAX_DEFAULT_PARAMETERS),
  167. uiBridgesTimeout(4000),
  168. audioNumPeriods(2),
  169. audioBufferSize(512),
  170. audioSampleRate(44100),
  171. audioDevice(nullptr),
  172. binaryDir(nullptr),
  173. resourceDir(nullptr),
  174. frontendWinId(0) {}
  175. EngineOptions::~EngineOptions() noexcept
  176. {
  177. if (audioDevice != nullptr)
  178. {
  179. delete[] audioDevice;
  180. audioDevice = nullptr;
  181. }
  182. if (binaryDir != nullptr)
  183. {
  184. delete[] binaryDir;
  185. binaryDir = nullptr;
  186. }
  187. if (resourceDir != nullptr)
  188. {
  189. delete[] resourceDir;
  190. resourceDir = nullptr;
  191. }
  192. }
  193. // -----------------------------------------------------------------------
  194. // EngineTimeInfoBBT
  195. EngineTimeInfoBBT::EngineTimeInfoBBT() noexcept
  196. : bar(0),
  197. beat(0),
  198. tick(0),
  199. barStartTick(0.0),
  200. beatsPerBar(0.0f),
  201. beatType(0.0f),
  202. ticksPerBeat(0.0),
  203. beatsPerMinute(0.0) {}
  204. // -----------------------------------------------------------------------
  205. // EngineTimeInfo
  206. EngineTimeInfo::EngineTimeInfo() noexcept
  207. : playing(false),
  208. frame(0),
  209. usecs(0),
  210. valid(0x0),
  211. bbt() {}
  212. void EngineTimeInfo::clear() noexcept
  213. {
  214. playing = false;
  215. frame = 0;
  216. usecs = 0;
  217. valid = 0x0;
  218. }
  219. bool EngineTimeInfo::operator==(const EngineTimeInfo& timeInfo) const noexcept
  220. {
  221. if (timeInfo.playing != playing || timeInfo.frame != frame || timeInfo.valid != valid)
  222. return false;
  223. if ((valid & kValidBBT) == 0)
  224. return true;
  225. if (timeInfo.bbt.beatsPerMinute != bbt.beatsPerMinute)
  226. return false;
  227. return true;
  228. }
  229. bool EngineTimeInfo::operator!=(const EngineTimeInfo& timeInfo) const noexcept
  230. {
  231. return !operator==(timeInfo);
  232. }
  233. // -----------------------------------------------------------------------
  234. CARLA_BACKEND_END_NAMESPACE