1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
|
/*
==============================================================================
This file is part of the JUCE framework.
Copyright (c) Raw Material Software Limited
JUCE is an open source framework subject to commercial or open source
licensing.
By downloading, installing, or using the JUCE framework, or combining the
JUCE framework with any other source code, object code, content or any other
copyrightable work, you agree to the terms of the JUCE End User Licence
Agreement, and all incorporated terms including the JUCE Privacy Policy and
the JUCE Website Terms of Service, as applicable, which will bind you. If you
do not agree to the terms of these agreements, we will not license the JUCE
framework to you, and you must discontinue the installation or download
process and cease use of the JUCE framework.
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
Or:
You may also use this code under the terms of the AGPLv3:
https://www.gnu.org/licenses/agpl-3.0.en.html
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
==============================================================================
*/
namespace juce
{
static ThreadLocalValue<AudioProcessor::WrapperType> wrapperTypeBeingCreated;
void JUCE_CALLTYPE AudioProcessor::setTypeOfNextNewPlugin (AudioProcessor::WrapperType type)
{
wrapperTypeBeingCreated = type;
}
AudioProcessor::AudioProcessor()
: AudioProcessor (BusesProperties().withInput ("Input", AudioChannelSet::stereo(), false)
.withOutput ("Output", AudioChannelSet::stereo(), false))
{
}
AudioProcessor::AudioProcessor (const BusesProperties& ioConfig)
: wrapperType (wrapperTypeBeingCreated.get())
{
for (auto& layout : ioConfig.inputLayouts) createBus (true, layout);
for (auto& layout : ioConfig.outputLayouts) createBus (false, layout);
updateSpeakerFormatStrings();
}
AudioProcessor::~AudioProcessor()
{
{
const ScopedLock sl (activeEditorLock);
// ooh, nasty - the editor should have been deleted before its AudioProcessor.
jassert (activeEditor == nullptr);
}
#if JUCE_DEBUG && ! JUCE_DISABLE_AUDIOPROCESSOR_BEGIN_END_GESTURE_CHECKING
// This will fail if you've called beginParameterChangeGesture() for one
// or more parameters without having made a corresponding call to endParameterChangeGesture...
jassert (changingParams.countNumberOfSetBits() == 0);
#endif
}
//==============================================================================
StringArray AudioProcessor::getAlternateDisplayNames() const { return StringArray (getName()); }
//==============================================================================
bool AudioProcessor::addBus (bool isInput)
{
if (! canAddBus (isInput))
return false;
BusProperties busesProps;
if (! canApplyBusCountChange (isInput, true, busesProps))
return false;
createBus (isInput, busesProps);
return true;
}
bool AudioProcessor::removeBus (bool inputBus)
{
auto numBuses = getBusCount (inputBus);
if (numBuses == 0)
return false;
if (! canRemoveBus (inputBus))
return false;
BusProperties busesProps;
if (! canApplyBusCountChange (inputBus, false, busesProps))
return false;
auto busIndex = numBuses - 1;
auto numChannels = getChannelCountOfBus (inputBus, busIndex);
(inputBus ? inputBuses : outputBuses).remove (busIndex);
audioIOChanged (true, numChannels > 0);
return true;
}
//==============================================================================
bool AudioProcessor::setBusesLayout (const BusesLayout& arr)
{
jassert (arr.inputBuses. size() == getBusCount (true)
&& arr.outputBuses.size() == getBusCount (false));
if (arr == getBusesLayout())
return true;
auto copy = arr;
if (! canApplyBusesLayout (copy))
return false;
return applyBusLayouts (copy);
}
bool AudioProcessor::setBusesLayoutWithoutEnabling (const BusesLayout& arr)
{
auto numIns = getBusCount (true);
auto numOuts = getBusCount (false);
jassert (arr.inputBuses. size() == numIns
&& arr.outputBuses.size() == numOuts);
auto request = arr;
auto current = getBusesLayout();
for (int i = 0; i < numIns; ++i)
if (request.getNumChannels (true, i) == 0)
request.getChannelSet (true, i) = current.getChannelSet (true, i);
for (int i = 0; i < numOuts; ++i)
if (request.getNumChannels (false, i) == 0)
request.getChannelSet (false, i) = current.getChannelSet (false, i);
if (! checkBusesLayoutSupported (request))
return false;
for (int dir = 0; dir < 2; ++dir)
{
const bool isInput = (dir != 0);
for (int i = 0; i < (isInput ? numIns : numOuts); ++i)
{
auto& bus = *getBus (isInput, i);
auto& set = request.getChannelSet (isInput, i);
if (! bus.isEnabled())
{
if (! set.isDisabled())
bus.lastLayout = set;
set = AudioChannelSet::disabled();
}
}
}
return setBusesLayout (request);
}
AudioProcessor::BusesLayout AudioProcessor::getBusesLayout() const
{
BusesLayout layouts;
for (auto& i : inputBuses) layouts.inputBuses.add (i->getCurrentLayout());
for (auto& i : outputBuses) layouts.outputBuses.add (i->getCurrentLayout());
return layouts;
}
AudioChannelSet AudioProcessor::getChannelLayoutOfBus (bool isInput, int busIndex) const noexcept
{
if (auto* bus = (isInput ? inputBuses : outputBuses)[busIndex])
return bus->getCurrentLayout();
return {};
}
bool AudioProcessor::setChannelLayoutOfBus (bool isInputBus, int busIndex, const AudioChannelSet& layout)
{
if (auto* bus = getBus (isInputBus, busIndex))
{
auto layouts = bus->getBusesLayoutForLayoutChangeOfBus (layout);
if (layouts.getChannelSet (isInputBus, busIndex) == layout)
return applyBusLayouts (layouts);
return false;
}
jassertfalse; // busIndex parameter is invalid
return false;
}
bool AudioProcessor::enableAllBuses()
{
BusesLayout layouts;
for (auto& i : inputBuses) layouts.inputBuses.add (i->lastLayout);
for (auto& i : outputBuses) layouts.outputBuses.add (i->lastLayout);
return setBusesLayout (layouts);
}
bool AudioProcessor::checkBusesLayoutSupported (const BusesLayout& layouts) const
{
if (layouts.inputBuses.size() == inputBuses.size()
&& layouts.outputBuses.size() == outputBuses.size())
return isBusesLayoutSupported (layouts);
return false;
}
void AudioProcessor::getNextBestLayout (const BusesLayout& desiredLayout, BusesLayout& actualLayouts) const
{
// if you are hitting this assertion then you are requesting a next
// best layout which does not have the same number of buses as the
// audio processor.
jassert (desiredLayout.inputBuses.size() == inputBuses.size()
&& desiredLayout.outputBuses.size() == outputBuses.size());
if (checkBusesLayoutSupported (desiredLayout))
{
actualLayouts = desiredLayout;
return;
}
auto originalState = actualLayouts;
auto currentState = originalState;
auto bestSupported = currentState;
for (int dir = 0; dir < 2; ++dir)
{
const bool isInput = (dir > 0);
auto& currentLayouts = (isInput ? currentState.inputBuses : currentState.outputBuses);
auto& bestLayouts = (isInput ? bestSupported.inputBuses : bestSupported.outputBuses);
auto& requestedLayouts = (isInput ? desiredLayout.inputBuses : desiredLayout.outputBuses);
auto& originalLayouts = (isInput ? originalState.inputBuses : originalState.outputBuses);
for (int busIndex = 0; busIndex < requestedLayouts.size(); ++busIndex)
{
auto& best = bestLayouts .getReference (busIndex);
auto& requested = requestedLayouts.getReference (busIndex);
auto& original = originalLayouts .getReference (busIndex);
// do we need to do anything
if (original == requested)
continue;
currentState = bestSupported;
auto& current = currentLayouts .getReference (busIndex);
// already supported?
current = requested;
if (checkBusesLayoutSupported (currentState))
{
bestSupported = currentState;
continue;
}
// try setting the opposite bus to the identical layout
const bool oppositeDirection = ! isInput;
if (getBusCount (oppositeDirection) > busIndex)
{
auto& oppositeLayout = (oppositeDirection ? currentState.inputBuses : currentState.outputBuses).getReference (busIndex);
oppositeLayout = requested;
if (checkBusesLayoutSupported (currentState))
{
bestSupported = currentState;
continue;
}
// try setting the default layout
oppositeLayout = getBus (oppositeDirection, busIndex)->getDefaultLayout();
if (checkBusesLayoutSupported (currentState))
{
bestSupported = currentState;
continue;
}
}
// try setting all other buses to the identical layout
BusesLayout allTheSame;
allTheSame.inputBuses.insertMultiple (-1, requested, getBusCount (true));
allTheSame.outputBuses.insertMultiple (-1, requested, getBusCount (false));
if (checkBusesLayoutSupported (allTheSame))
{
bestSupported = allTheSame;
continue;
}
// what is closer the default or the current layout?
auto distance = std::abs (best.size() - requested.size());
auto& defaultLayout = getBus (isInput, busIndex)->getDefaultLayout();
if (std::abs (defaultLayout.size() - requested.size()) < distance)
{
current = defaultLayout;
if (checkBusesLayoutSupported (currentState))
bestSupported = currentState;
}
}
}
actualLayouts = bestSupported;
}
//==============================================================================
void AudioProcessor::setPlayHead (AudioPlayHead* newPlayHead)
{
playHead = newPlayHead;
}
void AudioProcessor::addListener (AudioProcessorListener* newListener)
{
const ScopedLock sl (listenerLock);
listeners.addIfNotAlreadyThere (newListener);
}
void AudioProcessor::removeListener (AudioProcessorListener* listenerToRemove)
{
const ScopedLock sl (listenerLock);
listeners.removeFirstMatchingValue (listenerToRemove);
}
void AudioProcessor::setPlayConfigDetails (int newNumIns, int newNumOuts, double newSampleRate, int newBlockSize)
{
[[maybe_unused]] bool success = true;
if (getTotalNumInputChannels() != newNumIns)
success &= setChannelLayoutOfBus (true, 0, AudioChannelSet::canonicalChannelSet (newNumIns));
// failed to find a compatible input configuration
jassert (success);
if (getTotalNumOutputChannels() != newNumOuts)
success &= setChannelLayoutOfBus (false, 0, AudioChannelSet::canonicalChannelSet (newNumOuts));
// failed to find a compatible output configuration
jassert (success);
// if the user is using this method then they do not want any side-buses or aux outputs
success &= disableNonMainBuses();
jassert (success);
// the processor may not support this arrangement at all
jassert (success && newNumIns == getTotalNumInputChannels() && newNumOuts == getTotalNumOutputChannels());
setRateAndBufferSizeDetails (newSampleRate, newBlockSize);
}
void AudioProcessor::setRateAndBufferSizeDetails (double newSampleRate, int newBlockSize) noexcept
{
currentSampleRate = newSampleRate;
blockSize = newBlockSize;
}
//==============================================================================
void AudioProcessor::numChannelsChanged() {}
void AudioProcessor::numBusesChanged() {}
void AudioProcessor::processorLayoutsChanged() {}
int AudioProcessor::getChannelIndexInProcessBlockBuffer (bool isInput, int busIndex, int channelIndex) const noexcept
{
auto& ioBus = isInput ? inputBuses : outputBuses;
jassert (isPositiveAndBelow (busIndex, ioBus.size()));
for (int i = 0; i < ioBus.size() && i < busIndex; ++i)
channelIndex += getChannelCountOfBus (isInput, i);
return channelIndex;
}
int AudioProcessor::getOffsetInBusBufferForAbsoluteChannelIndex (bool isInput, int absoluteChannelIndex, int& busIndex) const noexcept
{
auto numBuses = getBusCount (isInput);
int numChannels = 0;
for (busIndex = 0; busIndex < numBuses && absoluteChannelIndex >= (numChannels = getChannelLayoutOfBus (isInput, busIndex).size()); ++busIndex)
absoluteChannelIndex -= numChannels;
return busIndex >= numBuses ? -1 : absoluteChannelIndex;
}
//==============================================================================
void AudioProcessor::setNonRealtime (bool newNonRealtime) noexcept
{
nonRealtime = newNonRealtime;
}
void AudioProcessor::setLatencySamples (int newLatency)
{
if (latencySamples != newLatency)
{
latencySamples = newLatency;
updateHostDisplay (AudioProcessorListener::ChangeDetails().withLatencyChanged (true));
}
}
//==============================================================================
AudioProcessorListener* AudioProcessor::getListenerLocked (int index) const noexcept
{
const ScopedLock sl (listenerLock);
return listeners[index];
}
void AudioProcessor::updateHostDisplay (const AudioProcessorListener::ChangeDetails& details)
{
for (int i = listeners.size(); --i >= 0;)
if (auto l = getListenerLocked (i))
l->audioProcessorChanged (this, details);
}
void AudioProcessor::validateParameter (AudioProcessorParameter* param)
{
checkForDuplicateParamID (param);
checkForDuplicateTrimmedParamID (param);
/* If you're building this plugin as an AudioUnit, and you intend to use the plugin in
Logic Pro or GarageBand, it's a good idea to set version hints on all of your parameters
so that you can add parameters safely in future versions of the plugin.
See the documentation for AudioProcessorParameter (int) for more information.
*/
#if JucePlugin_Build_AU
static std::once_flag flag;
if (wrapperType != wrapperType_Undefined && param->getVersionHint() == 0)
std::call_once (flag, [] { jassertfalse; });
#endif
}
void AudioProcessor::checkForDuplicateTrimmedParamID ([[maybe_unused]] AudioProcessorParameter* param)
{
#if JUCE_DEBUG && ! JUCE_DISABLE_CAUTIOUS_PARAMETER_ID_CHECKING
if (auto* withID = dynamic_cast<HostedAudioProcessorParameter*> (param))
{
[[maybe_unused]] constexpr auto maximumSafeAAXParameterIdLength = 31;
const auto paramID = withID->getParameterID();
// If you hit this assertion, a parameter name is too long to be supported
// by the AAX plugin format.
// If there's a chance that you'll release this plugin in AAX format, you
// should consider reducing the length of this paramID.
// If you need to retain backwards-compatibility and are unable to change
// the paramID for this reason, you can add JUCE_DISABLE_CAUTIOUS_PARAMETER_ID_CHECKING
// to your preprocessor definitions to silence this assertion.
jassert (paramID.length() <= maximumSafeAAXParameterIdLength);
// If you hit this assertion, two or more parameters have duplicate paramIDs
// after they have been truncated to support the AAX format.
// This is a serious issue, and will prevent the duplicated parameters from
// being automated when running as an AAX plugin.
// If there's a chance that you'll release this plugin in AAX format, you
// should reduce the length of this paramID.
// If you need to retain backwards-compatibility and are unable to change
// the paramID for this reason, you can add JUCE_DISABLE_CAUTIOUS_PARAMETER_ID_CHECKING
// to your preprocessor definitions to silence this assertion.
jassert (trimmedParamIDs.insert (paramID.substring (0, maximumSafeAAXParameterIdLength)).second);
}
#endif
}
void AudioProcessor::checkForDuplicateParamID ([[maybe_unused]] AudioProcessorParameter* param)
{
#if JUCE_DEBUG
if (auto* withID = dynamic_cast<HostedAudioProcessorParameter*> (param))
{
auto insertResult = paramIDs.insert (withID->getParameterID());
// If you hit this assertion then the parameter ID is not unique
jassert (insertResult.second);
}
#endif
}
void AudioProcessor::checkForDuplicateGroupIDs ([[maybe_unused]] const AudioProcessorParameterGroup& newGroup)
{
#if JUCE_DEBUG
auto groups = newGroup.getSubgroups (true);
groups.add (&newGroup);
for (auto* group : groups)
{
auto insertResult = groupIDs.insert (group->getID());
// If you hit this assertion then a group ID is not unique
jassert (insertResult.second);
}
#endif
}
const Array<AudioProcessorParameter*>& AudioProcessor::getParameters() const { return flatParameterList; }
const AudioProcessorParameterGroup& AudioProcessor::getParameterTree() const { return parameterTree; }
void AudioProcessor::addParameter (AudioProcessorParameter* param)
{
jassert (param != nullptr);
parameterTree.addChild (std::unique_ptr<AudioProcessorParameter> (param));
param->processor = this;
param->parameterIndex = flatParameterList.size();
flatParameterList.add (param);
validateParameter (param);
}
void AudioProcessor::addParameterGroup (std::unique_ptr<AudioProcessorParameterGroup> group)
{
jassert (group != nullptr);
checkForDuplicateGroupIDs (*group);
auto oldSize = flatParameterList.size();
flatParameterList.addArray (group->getParameters (true));
for (int i = oldSize; i < flatParameterList.size(); ++i)
{
auto p = flatParameterList.getUnchecked (i);
p->processor = this;
p->parameterIndex = i;
validateParameter (p);
}
parameterTree.addChild (std::move (group));
}
void AudioProcessor::setParameterTree (AudioProcessorParameterGroup&& newTree)
{
#if JUCE_DEBUG
paramIDs.clear();
groupIDs.clear();
#if ! JUCE_DISABLE_CAUTIOUS_PARAMETER_ID_CHECKING
trimmedParamIDs.clear();
#endif
#endif
parameterTree = std::move (newTree);
checkForDuplicateGroupIDs (parameterTree);
flatParameterList = parameterTree.getParameters (true);
for (int i = 0; i < flatParameterList.size(); ++i)
{
auto p = flatParameterList.getUnchecked (i);
p->processor = this;
p->parameterIndex = i;
validateParameter (p);
}
}
void AudioProcessor::refreshParameterList() {}
int AudioProcessor::getDefaultNumParameterSteps() noexcept
{
return 0x7fffffff;
}
void AudioProcessor::suspendProcessing (const bool shouldBeSuspended)
{
const ScopedLock sl (callbackLock);
suspended = shouldBeSuspended;
}
void AudioProcessor::reset() {}
template <typename floatType>
void AudioProcessor::processBypassed (AudioBuffer<floatType>& buffer, MidiBuffer&)
{
// If you hit this assertion then your plug-in is reporting that it introduces
// some latency, but you haven't overridden processBlockBypassed to produce
// an identical amount of latency. Without identical latency in
// processBlockBypassed a host's latency compensation could shift the audio
// passing through your bypassed plug-in forward in time.
jassert (getLatencySamples() == 0);
for (int ch = getMainBusNumInputChannels(); ch < getTotalNumOutputChannels(); ++ch)
buffer.clear (ch, 0, buffer.getNumSamples());
}
void AudioProcessor::processBlockBypassed (AudioBuffer<float>& buffer, MidiBuffer& midi) { processBypassed (buffer, midi); }
void AudioProcessor::processBlockBypassed (AudioBuffer<double>& buffer, MidiBuffer& midi) { processBypassed (buffer, midi); }
void AudioProcessor::processBlock ([[maybe_unused]] AudioBuffer<double>& buffer,
[[maybe_unused]] MidiBuffer& midiMessages)
{
// If you hit this assertion then either the caller called the double
// precision version of processBlock on a processor which does not support it
// (i.e. supportsDoublePrecisionProcessing() returns false), or the implementation
// of the AudioProcessor forgot to override the double precision version of this method
jassertfalse;
}
bool AudioProcessor::supportsDoublePrecisionProcessing() const
{
return false;
}
void AudioProcessor::setProcessingPrecision (ProcessingPrecision precision) noexcept
{
// If you hit this assertion then you're trying to use double precision
// processing on a processor which does not support it!
jassert (precision != doublePrecision || supportsDoublePrecisionProcessing());
processingPrecision = precision;
}
//==============================================================================
static String getChannelName (const OwnedArray<AudioProcessor::Bus>& buses, int index)
{
return buses.size() > 0 ? AudioChannelSet::getChannelTypeName (buses[0]->getCurrentLayout().getTypeOfChannel (index)) : String();
}
const String AudioProcessor::getInputChannelName (int index) const { return getChannelName (inputBuses, index); }
const String AudioProcessor::getOutputChannelName (int index) const { return getChannelName (outputBuses, index); }
static bool isStereoPair (const OwnedArray<AudioProcessor::Bus>& buses, int index)
{
return index < 2
&& buses.size() > 0
&& buses[0]->getCurrentLayout() == AudioChannelSet::stereo();
}
bool AudioProcessor::isInputChannelStereoPair (int index) const { return isStereoPair (inputBuses, index); }
bool AudioProcessor::isOutputChannelStereoPair (int index) const { return isStereoPair (outputBuses, index); }
//==============================================================================
void AudioProcessor::createBus (bool inputBus, const BusProperties& ioConfig)
{
(inputBus ? inputBuses : outputBuses).add (new Bus (*this, ioConfig.busName, ioConfig.defaultLayout, ioConfig.isActivatedByDefault));
audioIOChanged (true, ioConfig.isActivatedByDefault);
}
//==============================================================================
AudioProcessor::BusesProperties AudioProcessor::busesPropertiesFromLayoutArray (const Array<InOutChannelPair>& config)
{
BusesProperties ioProps;
if (config[0].inChannels > 0)
ioProps.addBus (true, "Input", AudioChannelSet::canonicalChannelSet (config[0].inChannels));
if (config[0].outChannels > 0)
ioProps.addBus (false, "Output", AudioChannelSet::canonicalChannelSet (config[0].outChannels));
return ioProps;
}
AudioProcessor::BusesLayout AudioProcessor::getNextBestLayoutInList (const BusesLayout& layouts,
const Array<InOutChannelPair>& legacyLayouts) const
{
auto numChannelConfigs = legacyLayouts.size();
jassert (numChannelConfigs > 0);
bool hasInputs = false, hasOutputs = false;
for (int i = 0; i < numChannelConfigs; ++i)
{
if (legacyLayouts[i].inChannels > 0)
{
hasInputs = true;
break;
}
}
for (int i = 0; i < numChannelConfigs; ++i)
{
if (legacyLayouts[i].outChannels > 0)
{
hasOutputs = true;
break;
}
}
auto nearest = layouts;
nearest.inputBuses .resize (hasInputs ? 1 : 0);
nearest.outputBuses.resize (hasOutputs ? 1 : 0);
auto* inBus = (hasInputs ? &nearest.inputBuses. getReference (0) : nullptr);
auto* outBus = (hasOutputs ? &nearest.outputBuses.getReference (0) : nullptr);
auto inNumChannelsRequested = static_cast<int16> (inBus != nullptr ? inBus->size() : 0);
auto outNumChannelsRequested = static_cast<int16> (outBus != nullptr ? outBus->size() : 0);
auto distance = std::numeric_limits<int32>::max();
int bestConfiguration = 0;
for (int i = 0; i < numChannelConfigs; ++i)
{
auto inChannels = legacyLayouts.getReference (i).inChannels;
auto outChannels = legacyLayouts.getReference (i).outChannels;
auto channelDifference = ((std::abs (inChannels - inNumChannelsRequested) & 0xffff) << 16)
| ((std::abs (outChannels - outNumChannelsRequested) & 0xffff) << 0);
if (channelDifference < distance)
{
distance = channelDifference;
bestConfiguration = i;
// we can exit if we found a perfect match
if (distance == 0)
return nearest;
}
}
auto inChannels = legacyLayouts.getReference (bestConfiguration).inChannels;
auto outChannels = legacyLayouts.getReference (bestConfiguration).outChannels;
auto currentState = getBusesLayout();
auto currentInLayout = (getBusCount (true) > 0 ? currentState.inputBuses .getReference (0) : AudioChannelSet());
auto currentOutLayout = (getBusCount (false) > 0 ? currentState.outputBuses.getReference (0) : AudioChannelSet());
if (inBus != nullptr)
{
if (inChannels == 0) *inBus = AudioChannelSet::disabled();
else if (inChannels == currentInLayout. size()) *inBus = currentInLayout;
else if (inChannels == currentOutLayout.size()) *inBus = currentOutLayout;
else *inBus = AudioChannelSet::canonicalChannelSet (inChannels);
}
if (outBus != nullptr)
{
if (outChannels == 0) *outBus = AudioChannelSet::disabled();
else if (outChannels == currentOutLayout.size()) *outBus = currentOutLayout;
else if (outChannels == currentInLayout .size()) *outBus = currentInLayout;
else *outBus = AudioChannelSet::canonicalChannelSet (outChannels);
}
return nearest;
}
bool AudioProcessor::containsLayout (const BusesLayout& layouts, const Array<InOutChannelPair>& channelLayouts)
{
if (layouts.inputBuses.size() > 1 || layouts.outputBuses.size() > 1)
return false;
const InOutChannelPair mainLayout (static_cast<int16> (layouts.getNumChannels (true, 0)),
static_cast<int16> (layouts.getNumChannels (false, 0)));
return channelLayouts.contains (mainLayout);
}
//==============================================================================
bool AudioProcessor::disableNonMainBuses()
{
auto layouts = getBusesLayout();
for (int busIndex = 1; busIndex < layouts.inputBuses.size(); ++busIndex)
layouts.inputBuses.getReference (busIndex) = AudioChannelSet::disabled();
for (int busIndex = 1; busIndex < layouts.outputBuses.size(); ++busIndex)
layouts.outputBuses.getReference (busIndex) = AudioChannelSet::disabled();
return setBusesLayout (layouts);
}
// Unfortunately the deprecated getInputSpeakerArrangement/getOutputSpeakerArrangement return
// references to strings. Therefore we need to keep a copy. Once getInputSpeakerArrangement is
// removed, we can also remove this function
void AudioProcessor::updateSpeakerFormatStrings()
{
cachedInputSpeakerArrString.clear();
cachedOutputSpeakerArrString.clear();
if (getBusCount (true) > 0)
cachedInputSpeakerArrString = getBus (true, 0)->getCurrentLayout().getSpeakerArrangementAsString();
if (getBusCount (false) > 0)
cachedOutputSpeakerArrString = getBus (false, 0)->getCurrentLayout().getSpeakerArrangementAsString();
}
bool AudioProcessor::applyBusLayouts (const BusesLayout& layouts)
{
if (layouts == getBusesLayout())
return true;
auto numInputBuses = getBusCount (true);
auto numOutputBuses = getBusCount (false);
auto oldNumberOfIns = getTotalNumInputChannels();
auto oldNumberOfOuts = getTotalNumOutputChannels();
if (layouts.inputBuses. size() != numInputBuses
|| layouts.outputBuses.size() != numOutputBuses)
return false;
int newNumberOfIns = 0, newNumberOfOuts = 0;
for (int busIndex = 0; busIndex < numInputBuses; ++busIndex)
{
auto& bus = *getBus (true, busIndex);
const auto& set = layouts.getChannelSet (true, busIndex);
bus.layout = set;
if (! set.isDisabled())
bus.lastLayout = set;
newNumberOfIns += set.size();
}
for (int busIndex = 0; busIndex < numOutputBuses; ++busIndex)
{
auto& bus = *getBus (false, busIndex);
const auto& set = layouts.getChannelSet (false, busIndex);
bus.layout = set;
if (! set.isDisabled())
bus.lastLayout = set;
newNumberOfOuts += set.size();
}
const bool channelNumChanged = (oldNumberOfIns != newNumberOfIns || oldNumberOfOuts != newNumberOfOuts);
audioIOChanged (false, channelNumChanged);
return true;
}
void AudioProcessor::audioIOChanged (bool busNumberChanged, bool channelNumChanged)
{
auto numInputBuses = getBusCount (true);
auto numOutputBuses = getBusCount (false);
for (int dir = 0; dir < 2; ++dir)
{
const bool isInput = (dir == 0);
auto num = (isInput ? numInputBuses : numOutputBuses);
for (int i = 0; i < num; ++i)
if (auto* bus = getBus (isInput, i))
bus->updateChannelCount();
}
auto countTotalChannels = [] (const OwnedArray<AudioProcessor::Bus>& buses) noexcept
{
int n = 0;
for (auto* bus : buses)
n += bus->getNumberOfChannels();
return n;
};
cachedTotalIns = countTotalChannels (inputBuses);
cachedTotalOuts = countTotalChannels (outputBuses);
updateSpeakerFormatStrings();
if (busNumberChanged)
numBusesChanged();
if (channelNumChanged)
numChannelsChanged();
processorLayoutsChanged();
}
//==============================================================================
void AudioProcessor::editorBeingDeleted (AudioProcessorEditor* const editor) noexcept
{
const ScopedLock sl (activeEditorLock);
if (activeEditor == editor)
activeEditor = nullptr;
}
AudioProcessorEditor* AudioProcessor::getActiveEditor() const noexcept
{
const ScopedLock sl (activeEditorLock);
return activeEditor;
}
AudioProcessorEditor* AudioProcessor::createEditorIfNeeded()
{
const ScopedLock sl (activeEditorLock);
if (activeEditor != nullptr)
return activeEditor;
auto* ed = createEditor();
if (ed != nullptr)
{
// you must give your editor comp a size before returning it..
jassert (ed->getWidth() > 0 && ed->getHeight() > 0);
activeEditor = ed;
}
// You must make your hasEditor() method return a consistent result!
jassert (hasEditor() == (ed != nullptr));
return ed;
}
//==============================================================================
void AudioProcessor::getCurrentProgramStateInformation (juce::MemoryBlock& destData)
{
getStateInformation (destData);
}
void AudioProcessor::setCurrentProgramStateInformation (const void* data, int sizeInBytes)
{
setStateInformation (data, sizeInBytes);
}
//==============================================================================
void AudioProcessor::updateTrackProperties (const AudioProcessor::TrackProperties&) {}
//==============================================================================
// magic number to identify memory blocks that we've stored as XML
const uint32 magicXmlNumber = 0x21324356;
void AudioProcessor::copyXmlToBinary (const XmlElement& xml, juce::MemoryBlock& destData)
{
{
MemoryOutputStream out (destData, false);
out.writeInt (magicXmlNumber);
out.writeInt (0);
xml.writeTo (out, XmlElement::TextFormat().singleLine());
out.writeByte (0);
}
// go back and write the string length..
static_cast<uint32*> (destData.getData())[1]
= ByteOrder::swapIfBigEndian ((uint32) destData.getSize() - 9);
}
std::optional<String> AudioProcessor::getNameForMidiNoteNumber (int /*note*/, int /*midiChannel*/)
{
return std::nullopt;
}
std::unique_ptr<XmlElement> AudioProcessor::getXmlFromBinary (const void* data, const int sizeInBytes)
{
if (sizeInBytes > 8 && ByteOrder::littleEndianInt (data) == magicXmlNumber)
{
auto stringLength = (int) ByteOrder::littleEndianInt (addBytesToPointer (data, 4));
if (stringLength > 0)
return parseXML (String::fromUTF8 (static_cast<const char*> (data) + 8,
jmin ((sizeInBytes - 8), stringLength)));
}
return {};
}
bool AudioProcessor::canApplyBusCountChange (bool isInput, bool isAdding,
AudioProcessor::BusProperties& outProperties)
{
if ( isAdding && ! canAddBus (isInput)) return false;
if (! isAdding && ! canRemoveBus (isInput)) return false;
auto num = getBusCount (isInput);
// No way for me to find out the default layout if there are no other busses!!
if (num == 0)
return false;
if (isAdding)
{
outProperties.busName = String (isInput ? "Input #" : "Output #") + String (getBusCount (isInput));
outProperties.defaultLayout = (num > 0 ? getBus (isInput, num - 1)->getDefaultLayout() : AudioChannelSet());
outProperties.isActivatedByDefault = true;
}
return true;
}
//==============================================================================
AudioProcessor::Bus::Bus (AudioProcessor& processor, const String& busName,
const AudioChannelSet& defaultLayout, bool isDfltEnabled)
: owner (processor), name (busName),
layout (isDfltEnabled ? defaultLayout : AudioChannelSet()),
dfltLayout (defaultLayout), lastLayout (defaultLayout),
enabledByDefault (isDfltEnabled)
{
// Your default layout cannot be disabled
jassert (! dfltLayout.isDisabled());
}
bool AudioProcessor::Bus::isInput() const noexcept { return owner.inputBuses.contains (this); }
int AudioProcessor::Bus::getBusIndex() const noexcept { return getDirectionAndIndex().index; }
AudioProcessor::Bus::BusDirectionAndIndex AudioProcessor::Bus::getDirectionAndIndex() const noexcept
{
BusDirectionAndIndex di;
di.index = owner.inputBuses.indexOf (this);
di.isInput = (di.index >= 0);
if (! di.isInput)
di.index = owner.outputBuses.indexOf (this);
return di;
}
bool AudioProcessor::Bus::setCurrentLayout (const AudioChannelSet& busLayout)
{
auto di = getDirectionAndIndex();
return owner.setChannelLayoutOfBus (di.isInput, di.index, busLayout);
}
bool AudioProcessor::Bus::setCurrentLayoutWithoutEnabling (const AudioChannelSet& set)
{
if (! set.isDisabled())
{
if (isEnabled())
return setCurrentLayout (set);
if (isLayoutSupported (set))
{
lastLayout = set;
return true;
}
return false;
}
return isLayoutSupported (set);
}
bool AudioProcessor::Bus::setNumberOfChannels (int channels)
{
auto di = getDirectionAndIndex();
if (owner.setChannelLayoutOfBus (di.isInput, di.index, AudioChannelSet::canonicalChannelSet (channels)))
return true;
if (channels == 0)
return false;
auto namedSet = AudioChannelSet::namedChannelSet (channels);
if (! namedSet.isDisabled() && owner.setChannelLayoutOfBus (di.isInput, di.index, namedSet))
return true;
return owner.setChannelLayoutOfBus (di.isInput, di.index, AudioChannelSet::discreteChannels (channels));
}
bool AudioProcessor::Bus::enable (bool shouldEnable)
{
if (isEnabled() == shouldEnable)
return true;
return setCurrentLayout (shouldEnable ? lastLayout : AudioChannelSet::disabled());
}
int AudioProcessor::Bus::getMaxSupportedChannels (int limit) const
{
for (int ch = limit; ch > 0; --ch)
if (isNumberOfChannelsSupported (ch))
return ch;
return (isMain() && isLayoutSupported (AudioChannelSet::disabled())) ? 0 : -1;
}
bool AudioProcessor::Bus::isLayoutSupported (const AudioChannelSet& set, BusesLayout* ioLayout) const
{
auto di = getDirectionAndIndex();
// check that supplied ioLayout is actually valid
if (ioLayout != nullptr)
{
if (! owner.checkBusesLayoutSupported (*ioLayout))
{
*ioLayout = owner.getBusesLayout();
// the current layout you supplied is not a valid layout
jassertfalse;
}
}
auto currentLayout = (ioLayout != nullptr ? *ioLayout : owner.getBusesLayout());
auto& actualBuses = (di.isInput ? currentLayout.inputBuses : currentLayout.outputBuses);
if (actualBuses.getReference (di.index) == set)
return true;
auto desiredLayout = currentLayout;
(di.isInput ? desiredLayout.inputBuses
: desiredLayout.outputBuses).getReference (di.index) = set;
owner.getNextBestLayout (desiredLayout, currentLayout);
if (ioLayout != nullptr)
*ioLayout = currentLayout;
// Nearest layout has a different number of buses. JUCE plug-ins MUST
// have fixed number of buses.
jassert (currentLayout.inputBuses. size() == owner.getBusCount (true)
&& currentLayout.outputBuses.size() == owner.getBusCount (false));
return actualBuses.getReference (di.index) == set;
}
bool AudioProcessor::Bus::isNumberOfChannelsSupported (int channels) const
{
if (channels == 0)
return isLayoutSupported (AudioChannelSet::disabled());
auto set = supportedLayoutWithChannels (channels);
return (! set.isDisabled()) && isLayoutSupported (set);
}
AudioChannelSet AudioProcessor::Bus::supportedLayoutWithChannels (int channels) const
{
if (channels == 0)
return AudioChannelSet::disabled();
{
AudioChannelSet set;
if (! (set = AudioChannelSet::namedChannelSet (channels)).isDisabled() && isLayoutSupported (set))
return set;
if (! (set = AudioChannelSet::discreteChannels (channels)).isDisabled() && isLayoutSupported (set))
return set;
}
for (auto& set : AudioChannelSet::channelSetsWithNumberOfChannels (channels))
if (isLayoutSupported (set))
return set;
return AudioChannelSet::disabled();
}
AudioProcessor::BusesLayout AudioProcessor::Bus::getBusesLayoutForLayoutChangeOfBus (const AudioChannelSet& set) const
{
auto layouts = owner.getBusesLayout();
isLayoutSupported (set, &layouts);
return layouts;
}
int AudioProcessor::Bus::getChannelIndexInProcessBlockBuffer (int channelIndex) const noexcept
{
auto di = getDirectionAndIndex();
return owner.getChannelIndexInProcessBlockBuffer (di.isInput, di.index, channelIndex);
}
void AudioProcessor::Bus::updateChannelCount() noexcept
{
cachedChannelCount = layout.size();
}
//==============================================================================
void AudioProcessor::BusesProperties::addBus (bool isInput, const String& name,
const AudioChannelSet& dfltLayout, bool isActivatedByDefault)
{
jassert (! dfltLayout.isDisabled());
BusProperties props;
props.busName = name;
props.defaultLayout = dfltLayout;
props.isActivatedByDefault = isActivatedByDefault;
(isInput ? inputLayouts : outputLayouts).add (props);
}
AudioProcessor::BusesProperties AudioProcessor::BusesProperties::withInput (const String& name,
const AudioChannelSet& dfltLayout,
bool isActivatedByDefault) const
{
auto retval = *this;
retval.addBus (true, name, dfltLayout, isActivatedByDefault);
return retval;
}
AudioProcessor::BusesProperties AudioProcessor::BusesProperties::withOutput (const String& name,
const AudioChannelSet& dfltLayout,
bool isActivatedByDefault) const
{
auto retval = *this;
retval.addBus (false, name, dfltLayout, isActivatedByDefault);
return retval;
}
//==============================================================================
const char* AudioProcessor::getWrapperTypeDescription (AudioProcessor::WrapperType type) noexcept
{
switch (type)
{
case AudioProcessor::wrapperType_Undefined: return "Undefined";
case AudioProcessor::wrapperType_VST: return "VST";
case AudioProcessor::wrapperType_VST3: return "VST3";
case AudioProcessor::wrapperType_AudioUnit: return "AU";
case AudioProcessor::wrapperType_AudioUnitv3: return "AUv3";
case AudioProcessor::wrapperType_AAX: return "AAX";
case AudioProcessor::wrapperType_Standalone: return "Standalone";
case AudioProcessor::wrapperType_Unity: return "Unity";
case AudioProcessor::wrapperType_LV2: return "LV2";
default: jassertfalse; return {};
}
}
//==============================================================================
VST2ClientExtensions* AudioProcessor::getVST2ClientExtensions()
{
if (auto* extensions = dynamic_cast<VST2ClientExtensions*> (this))
{
// To silence this jassert there are two options:
//
// 1. - Override AudioProcessor::getVST2ClientExtensions() and
// return the "this" pointer.
//
// - This option has the advantage of being quick and easy,
// and avoids the above dynamic_cast.
//
// 2. - Create a new object that inherits from VST2ClientExtensions.
//
// - Port your existing functionality from the AudioProcessor
// to the new object.
//
// - Return a pointer to the object in AudioProcessor::getVST2ClientExtensions().
//
// - This option has the advantage of allowing you to break
// up your AudioProcessor into smaller composable objects.
jassertfalse;
return extensions;
}
return nullptr;
}
VST3ClientExtensions* AudioProcessor::getVST3ClientExtensions()
{
if (auto* extensions = dynamic_cast<VST3ClientExtensions*> (this))
{
// To silence this jassert there are two options:
//
// 1. - Override AudioProcessor::getVST3ClientExtensions() and
// return the "this" pointer.
//
// - This option has the advantage of being quick and easy,
// and avoids the above dynamic_cast.
//
// 2. - Create a new object that inherits from VST3ClientExtensions.
//
// - Port your existing functionality from the AudioProcessor
// to the new object.
//
// - Return a pointer to the object in AudioProcessor::getVST3ClientExtensions().
//
// - This option has the advantage of allowing you to break
// up your AudioProcessor into smaller composable objects.
jassertfalse;
return extensions;
}
return nullptr;
}
//==============================================================================
JUCE_BEGIN_IGNORE_DEPRECATION_WARNINGS
void AudioProcessor::setParameterNotifyingHost (int parameterIndex, float newValue)
{
if (auto* param = getParameters()[parameterIndex])
{
param->setValueNotifyingHost (newValue);
}
else if (isPositiveAndBelow (parameterIndex, getNumParameters()))
{
setParameter (parameterIndex, newValue);
sendParamChangeMessageToListeners (parameterIndex, newValue);
}
}
void AudioProcessor::sendParamChangeMessageToListeners (int parameterIndex, float newValue)
{
if (auto* param = getParameters()[parameterIndex])
{
param->sendValueChangedMessageToListeners (newValue);
}
else
{
if (isPositiveAndBelow (parameterIndex, getNumParameters()))
{
for (int i = listeners.size(); --i >= 0;)
if (auto* l = getListenerLocked (i))
l->audioProcessorParameterChanged (this, parameterIndex, newValue);
}
else
{
jassertfalse; // called with an out-of-range parameter index!
}
}
}
void AudioProcessor::beginParameterChangeGesture (int parameterIndex)
{
if (auto* param = getParameters()[parameterIndex])
{
param->beginChangeGesture();
}
else
{
if (isPositiveAndBelow (parameterIndex, getNumParameters()))
{
#if JUCE_DEBUG && ! JUCE_DISABLE_AUDIOPROCESSOR_BEGIN_END_GESTURE_CHECKING
// This means you've called beginParameterChangeGesture twice in succession without a matching
// call to endParameterChangeGesture. That might be fine in most hosts, but better to avoid doing it.
jassert (! changingParams[parameterIndex]);
changingParams.setBit (parameterIndex);
#endif
for (int i = listeners.size(); --i >= 0;)
if (auto* l = getListenerLocked (i))
l->audioProcessorParameterChangeGestureBegin (this, parameterIndex);
}
else
{
jassertfalse; // called with an out-of-range parameter index!
}
}
}
void AudioProcessor::endParameterChangeGesture (int parameterIndex)
{
if (auto* param = getParameters()[parameterIndex])
{
param->endChangeGesture();
}
else
{
if (isPositiveAndBelow (parameterIndex, getNumParameters()))
{
#if JUCE_DEBUG && ! JUCE_DISABLE_AUDIOPROCESSOR_BEGIN_END_GESTURE_CHECKING
// This means you've called endParameterChangeGesture without having previously called
// beginParameterChangeGesture. That might be fine in most hosts, but better to keep the
// calls matched correctly.
jassert (changingParams[parameterIndex]);
changingParams.clearBit (parameterIndex);
#endif
for (int i = listeners.size(); --i >= 0;)
if (auto* l = getListenerLocked (i))
l->audioProcessorParameterChangeGestureEnd (this, parameterIndex);
}
else
{
jassertfalse; // called with an out-of-range parameter index!
}
}
}
String AudioProcessor::getParameterName (int index, int maximumStringLength)
{
if (auto* p = getParameters()[index])
return p->getName (maximumStringLength);
return isPositiveAndBelow (index, getNumParameters()) ? getParameterName (index).substring (0, maximumStringLength)
: String();
}
const String AudioProcessor::getParameterText (int index)
{
#if JUCE_DEBUG
// if you hit this, then you're probably using the old parameter control methods,
// but have forgotten to implement either of the getParameterText() methods.
jassert (! textRecursionCheck);
ScopedValueSetter<bool> sv (textRecursionCheck, true, false);
#endif
return isPositiveAndBelow (index, getNumParameters()) ? getParameterText (index, 1024)
: String();
}
String AudioProcessor::getParameterText (int index, int maximumStringLength)
{
if (auto* p = getParameters()[index])
return p->getText (p->getValue(), maximumStringLength);
return isPositiveAndBelow (index, getNumParameters()) ? getParameterText (index).substring (0, maximumStringLength)
: String();
}
int AudioProcessor::getNumParameters()
{
return getParameters().size();
}
float AudioProcessor::getParameter (int index)
{
if (auto* p = getParamChecked (index))
return p->getValue();
return 0;
}
void AudioProcessor::setParameter (int index, float newValue)
{
if (auto* p = getParamChecked (index))
p->setValue (newValue);
}
float AudioProcessor::getParameterDefaultValue (int index)
{
if (auto* p = getParameters()[index])
return p->getDefaultValue();
return 0;
}
const String AudioProcessor::getParameterName (int index)
{
if (auto* p = getParamChecked (index))
return p->getName (512);
return {};
}
String AudioProcessor::getParameterID (int index)
{
// Don't use getParamChecked here, as this must also work for legacy plug-ins
if (auto* p = dynamic_cast<HostedAudioProcessorParameter*> (getParameters()[index]))
return p->getParameterID();
return String (index);
}
int AudioProcessor::getParameterNumSteps (int index)
{
if (auto* p = getParameters()[index])
return p->getNumSteps();
return AudioProcessor::getDefaultNumParameterSteps();
}
bool AudioProcessor::isParameterDiscrete (int index) const
{
if (auto* p = getParameters()[index])
return p->isDiscrete();
return false;
}
String AudioProcessor::getParameterLabel (int index) const
{
if (auto* p = getParameters()[index])
return p->getLabel();
return {};
}
bool AudioProcessor::isParameterAutomatable (int index) const
{
if (auto* p = getParameters()[index])
return p->isAutomatable();
return true;
}
bool AudioProcessor::isParameterOrientationInverted (int index) const
{
if (auto* p = getParameters()[index])
return p->isOrientationInverted();
return false;
}
bool AudioProcessor::isMetaParameter (int index) const
{
if (auto* p = getParameters()[index])
return p->isMetaParameter();
return false;
}
AudioProcessorParameter::Category AudioProcessor::getParameterCategory (int index) const
{
if (auto* p = getParameters()[index])
return p->getCategory();
return AudioProcessorParameter::genericParameter;
}
AudioProcessorParameter* AudioProcessor::getParamChecked (int index) const
{
auto p = getParameters()[index];
// If you hit this, then you're either trying to access parameters that are out-of-range,
// or you're not using addParameter and the managed parameter list, but have failed
// to override some essential virtual methods and implement them appropriately.
jassert (p != nullptr);
return p;
}
bool AudioProcessor::canAddBus ([[maybe_unused]] bool isInput) const { return false; }
bool AudioProcessor::canRemoveBus ([[maybe_unused]] bool isInput) const { return false; }
JUCE_END_IGNORE_DEPRECATION_WARNINGS
//==============================================================================
void AudioProcessorListener::audioProcessorParameterChangeGestureBegin (AudioProcessor*, int) {}
void AudioProcessorListener::audioProcessorParameterChangeGestureEnd (AudioProcessor*, int) {}
//==============================================================================
AudioProcessorParameter::~AudioProcessorParameter()
{
#if JUCE_DEBUG && ! JUCE_DISABLE_AUDIOPROCESSOR_BEGIN_END_GESTURE_CHECKING
// This will fail if you've called beginChangeGesture() without having made
// a corresponding call to endChangeGesture...
jassert (! isPerformingGesture);
#endif
}
void AudioProcessorParameter::setValueNotifyingHost (float newValue)
{
setValue (newValue);
sendValueChangedMessageToListeners (newValue);
}
void AudioProcessorParameter::beginChangeGesture()
{
// This method can't be used until the parameter has been attached to a processor!
jassert (processor != nullptr && parameterIndex >= 0);
#if JUCE_DEBUG && ! JUCE_DISABLE_AUDIOPROCESSOR_BEGIN_END_GESTURE_CHECKING
// This means you've called beginChangeGesture twice in succession without
// a matching call to endChangeGesture. That might be fine in most hosts,
// but it would be better to avoid doing it.
jassert (! isPerformingGesture);
isPerformingGesture = true;
#endif
ScopedLock lock (listenerLock);
for (int i = listeners.size(); --i >= 0;)
if (auto* l = listeners[i])
l->parameterGestureChanged (getParameterIndex(), true);
if (processor != nullptr && parameterIndex >= 0)
{
// audioProcessorParameterChangeGestureBegin callbacks will shortly be deprecated and
// this code will be removed.
for (int i = processor->listeners.size(); --i >= 0;)
if (auto* l = processor->listeners[i])
l->audioProcessorParameterChangeGestureBegin (processor, getParameterIndex());
}
}
void AudioProcessorParameter::endChangeGesture()
{
// This method can't be used until the parameter has been attached to a processor!
jassert (processor != nullptr && parameterIndex >= 0);
#if JUCE_DEBUG && ! JUCE_DISABLE_AUDIOPROCESSOR_BEGIN_END_GESTURE_CHECKING
// This means you've called endChangeGesture without having previously
// called beginChangeGesture. That might be fine in most hosts, but it
// would be better to keep the calls matched correctly.
jassert (isPerformingGesture);
isPerformingGesture = false;
#endif
ScopedLock lock (listenerLock);
for (int i = listeners.size(); --i >= 0;)
if (auto* l = listeners[i])
l->parameterGestureChanged (getParameterIndex(), false);
if (processor != nullptr && parameterIndex >= 0)
{
// audioProcessorParameterChangeGestureEnd callbacks will shortly be deprecated and
// this code will be removed.
for (int i = processor->listeners.size(); --i >= 0;)
if (auto* l = processor->listeners[i])
l->audioProcessorParameterChangeGestureEnd (processor, getParameterIndex());
}
}
void AudioProcessorParameter::sendValueChangedMessageToListeners (float newValue)
{
ScopedLock lock (listenerLock);
for (int i = listeners.size(); --i >= 0;)
if (auto* l = listeners [i])
l->parameterValueChanged (getParameterIndex(), newValue);
if (processor != nullptr && parameterIndex >= 0)
{
// audioProcessorParameterChanged callbacks will shortly be deprecated and
// this code will be removed.
for (int i = processor->listeners.size(); --i >= 0;)
if (auto* l = processor->listeners[i])
l->audioProcessorParameterChanged (processor, getParameterIndex(), newValue);
}
}
bool AudioProcessorParameter::isOrientationInverted() const { return false; }
bool AudioProcessorParameter::isAutomatable() const { return true; }
bool AudioProcessorParameter::isMetaParameter() const { return false; }
AudioProcessorParameter::Category AudioProcessorParameter::getCategory() const { return genericParameter; }
int AudioProcessorParameter::getNumSteps() const { return AudioProcessor::getDefaultNumParameterSteps(); }
bool AudioProcessorParameter::isDiscrete() const { return false; }
bool AudioProcessorParameter::isBoolean() const { return false; }
String AudioProcessorParameter::getText (float value, int /*maximumStringLength*/) const
{
return String (value, 2);
}
String AudioProcessorParameter::getCurrentValueAsText() const
{
return getText (getValue(), 1024);
}
StringArray AudioProcessorParameter::getAllValueStrings() const
{
if (isDiscrete() && valueStrings.isEmpty())
{
auto maxIndex = getNumSteps() - 1;
for (int i = 0; i < getNumSteps(); ++i)
valueStrings.add (getText ((float) i / (float) maxIndex, 1024));
}
return valueStrings;
}
void AudioProcessorParameter::addListener (AudioProcessorParameter::Listener* newListener)
{
const ScopedLock sl (listenerLock);
listeners.addIfNotAlreadyThere (newListener);
}
void AudioProcessorParameter::removeListener (AudioProcessorParameter::Listener* listenerToRemove)
{
const ScopedLock sl (listenerLock);
listeners.removeFirstMatchingValue (listenerToRemove);
}
} // namespace juce
|