mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
120 lines
4.5 KiB
C++
120 lines
4.5 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
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::midi_ci
|
|
{
|
|
|
|
/**
|
|
Acting as a ResponderListener, instances of this class can formulate
|
|
appropriate replies to profile transactions initiated by remote devices.
|
|
|
|
ProfileHost instances also contains methods to inform remote devices about
|
|
changes to local profile state.
|
|
|
|
Stores the current state of profiles on the local device.
|
|
|
|
@tags{Audio}
|
|
*/
|
|
class ProfileHost final : public ResponderDelegate
|
|
{
|
|
public:
|
|
/** @internal
|
|
|
|
Rather than constructing one of these objects yourself, you should configure
|
|
a Device with profile support, and then use Device::getProfileHost()
|
|
to retrieve a profile host that has been set up to work with that device.
|
|
*/
|
|
ProfileHost (FunctionBlock fb, ProfileDelegate& d, BufferOutput& o)
|
|
: functionBlock (fb), delegate (d), output (o) {}
|
|
|
|
/** Adds support for a profile on the specified group/channel with a
|
|
maximum number of channels that may be activated.
|
|
*/
|
|
void addProfile (ProfileAtAddress, int maxNumChannels = 1);
|
|
|
|
/** Removes support for a profile on the specified group/channel.
|
|
*/
|
|
void removeProfile (ProfileAtAddress);
|
|
|
|
/** Activates or deactivates a profile on the specified group/channel.
|
|
|
|
The profile should previously have been added with addProfile().
|
|
A positive value of numChannels will enable the profile, and a non-positive value
|
|
will disable it. This includes group and function-block profiles; passing any positive
|
|
value will enable the profile on the entire group or block.
|
|
*/
|
|
void setProfileEnablement (ProfileAtAddress, int numChannels);
|
|
|
|
/** Returns the profile states (supported/active) for all groups and channels.
|
|
*/
|
|
const BlockProfileStates& getProfileStates() const { return states; }
|
|
|
|
/** Returns the number of supported and active channels for the given
|
|
profile on the specified group/channel.
|
|
|
|
If the supported channels is 0, then the profile is not supported
|
|
on the group/channel.
|
|
|
|
If the active channels is 0, then the profile is inactive on the
|
|
group/channel.
|
|
*/
|
|
SupportedAndActive getState (ProfileAtAddress profileAtAddress) const
|
|
{
|
|
if (auto* state = states.getStateForDestination (profileAtAddress.address))
|
|
return state->get (profileAtAddress.profile);
|
|
|
|
return {};
|
|
}
|
|
|
|
/** @internal */
|
|
bool tryRespond (ResponderOutput&, const Message::Parsed&) override;
|
|
|
|
private:
|
|
class Visitor;
|
|
|
|
void enableProfileImpl (ProfileAtAddress, int);
|
|
void disableProfileImpl (ProfileAtAddress);
|
|
|
|
template <typename Body>
|
|
bool profileEnablementReceived (ResponderOutput&, const Body&);
|
|
|
|
FunctionBlock functionBlock;
|
|
ProfileDelegate& delegate;
|
|
BufferOutput& output;
|
|
BlockProfileStates states;
|
|
bool isResponder = false;
|
|
std::optional<ProfileAtAddress> currentEnablementMessage;
|
|
};
|
|
|
|
} // namespace juce::midi_ci
|