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.

CarlaEngineData.cpp 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-2018 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. uint8_t EngineControlEvent::convertToMidiData(const uint8_t channel, uint8_t data[3]) const noexcept
  24. {
  25. switch (type)
  26. {
  27. case kEngineControlEventTypeNull:
  28. break;
  29. case kEngineControlEventTypeParameter:
  30. CARLA_SAFE_ASSERT_RETURN(param < MAX_MIDI_VALUE, 0);
  31. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  32. if (MIDI_IS_CONTROL_BANK_SELECT(param))
  33. {
  34. data[1] = MIDI_CONTROL_BANK_SELECT;
  35. data[2] = uint8_t(carla_fixedValue<float>(0.0f, static_cast<float>(MAX_MIDI_VALUE-1), value));
  36. }
  37. else
  38. {
  39. data[1] = static_cast<uint8_t>(param);
  40. data[2] = uint8_t(carla_fixedValue<float>(0.0f, 1.0f, value) * static_cast<float>(MAX_MIDI_VALUE-1));
  41. }
  42. return 3;
  43. case kEngineControlEventTypeMidiBank:
  44. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  45. data[1] = MIDI_CONTROL_BANK_SELECT;
  46. data[2] = uint8_t(carla_fixedValue<uint16_t>(0, MAX_MIDI_VALUE-1, param));
  47. return 3;
  48. case kEngineControlEventTypeMidiProgram:
  49. data[0] = static_cast<uint8_t>(MIDI_STATUS_PROGRAM_CHANGE | (channel & MIDI_CHANNEL_BIT));
  50. data[1] = uint8_t(carla_fixedValue<uint16_t>(0, MAX_MIDI_VALUE-1, param));
  51. return 2;
  52. case kEngineControlEventTypeAllSoundOff:
  53. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  54. data[1] = MIDI_CONTROL_ALL_SOUND_OFF;
  55. return 2;
  56. case kEngineControlEventTypeAllNotesOff:
  57. data[0] = static_cast<uint8_t>(MIDI_STATUS_CONTROL_CHANGE | (channel & MIDI_CHANNEL_BIT));
  58. data[1] = MIDI_CONTROL_ALL_NOTES_OFF;
  59. return 2;
  60. }
  61. return 0;
  62. }
  63. // -----------------------------------------------------------------------
  64. // EngineEvent
  65. void EngineEvent::fillFromMidiData(const uint8_t size, const uint8_t* const data, const uint8_t midiPortOffset) noexcept
  66. {
  67. if (size == 0 || data == nullptr || data[0] < MIDI_STATUS_NOTE_OFF)
  68. {
  69. type = kEngineEventTypeNull;
  70. channel = 0;
  71. return;
  72. }
  73. // get channel
  74. channel = uint8_t(MIDI_GET_CHANNEL_FROM_DATA(data));
  75. // get status
  76. const uint8_t midiStatus(uint8_t(MIDI_GET_STATUS_FROM_DATA(data)));
  77. if (midiStatus == MIDI_STATUS_CONTROL_CHANGE)
  78. {
  79. CARLA_SAFE_ASSERT_RETURN(size >= 2,);
  80. type = kEngineEventTypeControl;
  81. const uint8_t midiControl(data[1]);
  82. if (MIDI_IS_CONTROL_BANK_SELECT(midiControl))
  83. {
  84. CARLA_SAFE_ASSERT_RETURN(size >= 3,);
  85. const uint8_t midiBank(data[2]);
  86. ctrl.type = kEngineControlEventTypeMidiBank;
  87. ctrl.param = midiBank;
  88. ctrl.value = 0.0f;
  89. }
  90. else if (midiControl == MIDI_CONTROL_ALL_SOUND_OFF)
  91. {
  92. ctrl.type = kEngineControlEventTypeAllSoundOff;
  93. ctrl.param = 0;
  94. ctrl.value = 0.0f;
  95. }
  96. else if (midiControl == MIDI_CONTROL_ALL_NOTES_OFF)
  97. {
  98. ctrl.type = kEngineControlEventTypeAllNotesOff;
  99. ctrl.param = 0;
  100. ctrl.value = 0.0f;
  101. }
  102. else
  103. {
  104. CARLA_SAFE_ASSERT_RETURN(size >= 3,);
  105. const uint8_t midiValue = carla_fixedValue<uint8_t>(0, 127, data[2]); // ensures 0.0<->1.0 value range
  106. ctrl.type = kEngineControlEventTypeParameter;
  107. ctrl.param = midiControl;
  108. ctrl.value = float(midiValue)/127.0f;
  109. }
  110. }
  111. else if (midiStatus == MIDI_STATUS_PROGRAM_CHANGE)
  112. {
  113. CARLA_SAFE_ASSERT_RETURN(size >= 2,);
  114. type = kEngineEventTypeControl;
  115. const uint8_t midiProgram(data[1]);
  116. ctrl.type = kEngineControlEventTypeMidiProgram;
  117. ctrl.param = midiProgram;
  118. ctrl.value = 0.0f;
  119. }
  120. else
  121. {
  122. type = kEngineEventTypeMidi;
  123. midi.port = midiPortOffset;
  124. midi.size = size;
  125. if (size > EngineMidiEvent::kDataSize)
  126. {
  127. midi.dataExt = data;
  128. std::memset(midi.data, 0, sizeof(uint8_t)*EngineMidiEvent::kDataSize);
  129. }
  130. else
  131. {
  132. midi.data[0] = midiStatus;
  133. uint8_t i=1;
  134. for (; i < size; ++i)
  135. midi.data[i] = data[i];
  136. for (; i < EngineMidiEvent::kDataSize; ++i)
  137. midi.data[i] = 0;
  138. midi.dataExt = nullptr;
  139. }
  140. }
  141. }
  142. // -----------------------------------------------------------------------
  143. // EngineOptions
  144. EngineOptions::EngineOptions() noexcept
  145. #ifdef CARLA_OS_LINUX
  146. : processMode(ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS),
  147. transportMode(ENGINE_TRANSPORT_MODE_JACK),
  148. #else
  149. : processMode(ENGINE_PROCESS_MODE_PATCHBAY),
  150. transportMode(ENGINE_TRANSPORT_MODE_INTERNAL),
  151. #endif
  152. transportExtra(nullptr),
  153. forceStereo(false),
  154. preferPluginBridges(false),
  155. #if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN)
  156. preferUiBridges(false),
  157. #else
  158. preferUiBridges(true),
  159. #endif
  160. uisAlwaysOnTop(true),
  161. maxParameters(MAX_DEFAULT_PARAMETERS),
  162. uiBridgesTimeout(4000),
  163. audioBufferSize(512),
  164. audioSampleRate(44100),
  165. audioTripleBuffer(false),
  166. audioDevice(nullptr),
  167. pathLADSPA(nullptr),
  168. pathDSSI(nullptr),
  169. pathLV2(nullptr),
  170. pathVST2(nullptr),
  171. pathVST3(nullptr),
  172. pathSF2(nullptr),
  173. pathSFZ(nullptr),
  174. binaryDir(nullptr),
  175. resourceDir(nullptr),
  176. preventBadBehaviour(false),
  177. frontendWinId(0)
  178. #ifndef CARLA_OS_WIN
  179. , wine()
  180. #endif
  181. {
  182. }
  183. EngineOptions::~EngineOptions() noexcept
  184. {
  185. if (audioDevice != nullptr)
  186. {
  187. delete[] audioDevice;
  188. audioDevice = nullptr;
  189. }
  190. if (pathLADSPA != nullptr)
  191. {
  192. delete[] pathLADSPA;
  193. pathLADSPA = nullptr;
  194. }
  195. if (pathDSSI != nullptr)
  196. {
  197. delete[] pathDSSI;
  198. pathDSSI = nullptr;
  199. }
  200. if (pathLV2 != nullptr)
  201. {
  202. delete[] pathLV2;
  203. pathLV2 = nullptr;
  204. }
  205. if (pathVST2 != nullptr)
  206. {
  207. delete[] pathVST2;
  208. pathVST2 = nullptr;
  209. }
  210. if (pathVST3 != nullptr)
  211. {
  212. delete[] pathVST3;
  213. pathVST3 = nullptr;
  214. }
  215. if (pathSF2 != nullptr)
  216. {
  217. delete[] pathSF2;
  218. pathSF2 = nullptr;
  219. }
  220. if (pathSFZ != nullptr)
  221. {
  222. delete[] pathSFZ;
  223. pathSFZ = nullptr;
  224. }
  225. if (binaryDir != nullptr)
  226. {
  227. delete[] binaryDir;
  228. binaryDir = nullptr;
  229. }
  230. if (resourceDir != nullptr)
  231. {
  232. delete[] resourceDir;
  233. resourceDir = nullptr;
  234. }
  235. }
  236. #ifndef CARLA_OS_WIN
  237. EngineOptions::Wine::Wine() noexcept
  238. : executable(nullptr),
  239. autoPrefix(true),
  240. fallbackPrefix(nullptr),
  241. rtPrio(true),
  242. baseRtPrio(15),
  243. serverRtPrio(10) {}
  244. EngineOptions::Wine::~Wine() noexcept
  245. {
  246. if (executable != nullptr)
  247. {
  248. delete[] executable;
  249. executable = nullptr;
  250. }
  251. if (fallbackPrefix != nullptr)
  252. {
  253. delete[] fallbackPrefix;
  254. fallbackPrefix = nullptr;
  255. }
  256. }
  257. #endif
  258. // -----------------------------------------------------------------------
  259. // EngineTimeInfoBBT
  260. EngineTimeInfoBBT::EngineTimeInfoBBT() noexcept
  261. : valid(false),
  262. bar(0),
  263. beat(0),
  264. tick(0.0),
  265. barStartTick(0.0),
  266. beatsPerBar(0.0f),
  267. beatType(0.0f),
  268. ticksPerBeat(0.0),
  269. beatsPerMinute(0.0) {}
  270. EngineTimeInfoBBT::EngineTimeInfoBBT(const EngineTimeInfoBBT& bbt) noexcept
  271. : valid(bbt.valid),
  272. bar(bbt.bar),
  273. beat(bbt.beat),
  274. tick(bbt.tick),
  275. barStartTick(bbt.barStartTick),
  276. beatsPerBar(bbt.beatsPerBar),
  277. beatType(bbt.beatType),
  278. ticksPerBeat(bbt.ticksPerBeat),
  279. beatsPerMinute(bbt.beatsPerMinute) {}
  280. void EngineTimeInfoBBT::clear() noexcept
  281. {
  282. valid = false;
  283. bar = 0;
  284. beat = 0;
  285. tick = 0.0;
  286. barStartTick = 0.0;
  287. beatsPerBar = 0.0f;
  288. beatType = 0.0f;
  289. ticksPerBeat = 0.0;
  290. beatsPerMinute = 0.0;
  291. }
  292. // -----------------------------------------------------------------------
  293. // EngineTimeInfo
  294. EngineTimeInfo::EngineTimeInfo() noexcept
  295. : playing(false),
  296. frame(0),
  297. usecs(0),
  298. bbt() {}
  299. void EngineTimeInfo::clear() noexcept
  300. {
  301. playing = false;
  302. frame = 0;
  303. usecs = 0;
  304. bbt.clear();
  305. }
  306. EngineTimeInfo::EngineTimeInfo(const EngineTimeInfo& info) noexcept
  307. : playing(info.playing),
  308. frame(info.frame),
  309. usecs(info.usecs),
  310. bbt(info.bbt) {}
  311. EngineTimeInfo& EngineTimeInfo::operator=(const EngineTimeInfo& info) noexcept
  312. {
  313. playing = info.playing;
  314. frame = info.frame;
  315. usecs = info.usecs;
  316. bbt.valid = info.bbt.valid;
  317. bbt.bar = info.bbt.bar;
  318. bbt.beat = info.bbt.beat;
  319. bbt.tick = info.bbt.tick;
  320. bbt.barStartTick = info.bbt.barStartTick;
  321. bbt.beatsPerBar = info.bbt.beatsPerBar;
  322. bbt.beatType = info.bbt.beatType;
  323. bbt.ticksPerBeat = info.bbt.ticksPerBeat;
  324. bbt.beatsPerMinute = info.bbt.beatsPerMinute;
  325. return *this;
  326. }
  327. bool EngineTimeInfo::compareIgnoringRollingFrames(const EngineTimeInfo& timeInfo, const uint32_t maxFrames) const noexcept
  328. {
  329. if (timeInfo.playing != playing || timeInfo.bbt.valid != bbt.valid)
  330. return false;
  331. if (bbt.valid)
  332. {
  333. if (carla_isNotEqual(timeInfo.bbt.beatsPerBar, bbt.beatsPerBar))
  334. return false;
  335. if (carla_isNotEqual(timeInfo.bbt.beatsPerMinute, bbt.beatsPerMinute))
  336. return false;
  337. }
  338. // frame matches, nothing else to compare
  339. if (timeInfo.frame == frame)
  340. return true;
  341. // if we went back in time, so a case of reposition
  342. if (frame > timeInfo.frame)
  343. return false;
  344. // not playing, so dont bother checking transport
  345. // assume frame changed, likely playback has stopped
  346. if (! playing)
  347. return false;
  348. // if we are within expected bounds, assume we are rolling normally
  349. if (frame + maxFrames <= timeInfo.frame)
  350. return true;
  351. // out of bounds, another reposition
  352. return false;
  353. }
  354. bool EngineTimeInfo::operator==(const EngineTimeInfo& timeInfo) const noexcept
  355. {
  356. if (timeInfo.playing != playing || timeInfo.frame != frame || timeInfo.bbt.valid != bbt.valid)
  357. return false;
  358. if (! bbt.valid)
  359. return true;
  360. if (carla_isNotEqual(timeInfo.bbt.beatsPerBar, bbt.beatsPerBar))
  361. return false;
  362. if (carla_isNotEqual(timeInfo.bbt.beatsPerMinute, bbt.beatsPerMinute))
  363. return false;
  364. return true;
  365. }
  366. bool EngineTimeInfo::operator!=(const EngineTimeInfo& timeInfo) const noexcept
  367. {
  368. return !operator==(timeInfo);
  369. }
  370. // -----------------------------------------------------------------------
  371. CARLA_BACKEND_END_NAMESPACE