#include <mmf/common/midistandardcustomcommands.h>
class MMidiCustomCommandImplementor |
Mixin class to be derived from by controller plugins wishing to support the MIDI controller custom commands.
void | MmcChannelsSupportedL | ( | TInt & | aChannels | ) | [pure virtual] |
Get the maximum number of logical channels supported by the MIDI engine.
Parameters | |
---|---|
aChannels | The maximum number of logical channels that the MIDI engine supports, 0 <= aChannels <=15. |
void | MmcCloseL | ( | ) | [pure virtual] |
Closes any currently open resources, such as files, descriptors or URLs in use. Does nothing if there is nothing currently open.
void | MmcDurationMicroBeatsL | ( | TInt64 & | aDuration | ) | [pure virtual] |
Gets the length of the currently open MIDI resource in micro-beats
Parameters | |
---|---|
aDuration | Duration in microbeats (beats * 1000000). |
void | MmcGetBalanceL | ( | TInt & | aBalance | ) | [pure virtual] |
Get the current stereo balance value.
Parameters | |
---|---|
aBalance | Balance value ranging from KMMFBalanceMaxLeft to KMMFBalanceMaxRight. |
Gets the identifier of a sound bank. Bank identifier (aka bank number) is a 14-bit value consisting of MIDI bank MSB and LSB values.
Parameters | |
---|---|
aCustom | Specifies whether to reference a custom or standard sound bank. |
aBankIndex | Index of sound bank where 0 <= aBankIndex < NumberOfBanks(). |
aBankId | Identifier of the specified bank occupying, at most, 14 bits. |
void | MmcGetInstrumentIdL | ( | TInt | aBankId, |
TBool | aCustom, | |||
TInt | aInstrumentIndex, | |||
TInt & | aInstrumentId | |||
) | [pure virtual] |
Gets the identifier of an instrument.
Parameters | |
---|---|
aBankId | Identifier of the sound bank to reference, occupying no more than 14 bits. |
aCustom | Specifies whether to reference a custom or standard sound bank. |
aInstrumentIndex | Index of the instrument to reference where 0 <= aInstrumentIndex < NumberOfInstrumentsL(). |
aInstrumentId | Identifier of specified instrument. This may differ from the index since the index simply enumerates the instruments, whereas identifiers may not be contiguous, especially where certain instruments correspond to General MIDI-defined instruments but not all instruments are present. Instrument identifiers are between 0 and 127 inclusive. |
Gets the instrument assigned to a specified channel.
Parameters | |
---|---|
aChannel | Logical channel, 0 <= aChannel <= 15. |
aInstrumentId | Identifier of the instrument assigned to aChannel. 0 <= aInstrumentId <= 127. |
aBankId | Identifier of the bank that the instrument belongs to, occupying no more than 14 bits. |
void | MmcGetRepeatsL | ( | TInt & | aNumRepeats | ) | [pure virtual] |
Gets the number of times the current opened resources have to be repeated.
Parameters | |
---|---|
aNumRepeats | The number of time the current opened resources have to be repeated. |
Gets the name of the given instrument.
Parameters | |
---|---|
aBankId | Identifier of the bank that the instrument belongs to, occupying no more than 14 bits. |
aCustom | Specifies whether to reference a custom or standard sound bank. |
aInstrumentId | Identifier of the instrument under scrutiny. 0 <= aInstrumentId <= 127. |
Loads one or more custom sound banks from a descriptor into memory for use. If several banks are loaded with consequent LoadCustomBanksL() function calls, the banks are combined if the bank sets have conflicting bank numbers.
Parameters | |
---|---|
aBankData | Descriptor containing the custom sound bank. |
aBankId | Identifier of the custom sound bank loaded, occupying no more than 14 bits. |
Loads one or more custom sound banks from a file into memory for use. If several banks are loaded with consequent LoadCustomBanksL() function calls, the banks are combined if the bank sets have conflicting bank numbers.
Parameters | |
---|---|
aFileName | Name of the file containing the custom sound bank. |
aBankId | Identifier of the custom sound bank loaded, occupying no more than 14 bits. |
void | MmcLoadCustomInstrumentDataL | ( | const TDesC8 & | aInstrumentData, |
TInt | aBankDataId, | |||
TInt | aInstrumentDataId, | |||
TInt | aMemoryBankId, | |||
TInt | aMemoryInstrumentId | |||
) | [pure virtual] |
Loads an individual instrument from descriptor into custom sound bank memory for use. The bank and instrument ids given in the descriptor can be mapped into different bank and instrument ids in memory.
Parameters | |
---|---|
aInstrumentData | Descriptor containing the instrument. |
aBankDataId | Identifier of the bank in the descriptor from which to load the instrument, occupying no more than 14 bits. |
aInstrumentDataId | Identifier of the instrument to load. 0 <= aInstrumentId <= 127. |
aMemoryBankId | Identifier of the custom bank in memory to load the instrument into, occupying no more than 14 bits. |
aMemoryInstrumentId | Identifier of the instrument in memory to load the new instrument into. 0 <= aInstrumentId <= 127. |
void | MmcLoadCustomInstrumentL | ( | const TDesC & | aFileName, |
TInt | aFileBankId, | |||
TInt | aFileInstrumentId, | |||
TInt | aMemoryBankId, | |||
TInt | aMemoryInstrumentId | |||
) | [pure virtual] |
Loads an individual instrument from file into custom sound bank memory for use. The bank and instrument ids given in the file can be mapped into different bank and instrument ids in memory.
Parameters | |
---|---|
aFileName | Name of the file containing the instrument. |
aFileBankId | Identifier of the bank in the file from which to load the instrument, occupying no more than 14 bits. |
aFileInstrumentId | Identifier of the instrument to load. 0 <= aInstrumentId <= 127. |
aMemoryBankId | Identifier of the custom bank in memory to load the instrument into, occupying no more than 14 bits. |
aMemoryInstrumentId | Identifier of the instrument in memory to load the new instrument into. 0 <= aInstrumentId <= 127. |
void | MmcMaxChannelVolumeL | ( | TReal32 & | aMaxVol | ) | [pure virtual] |
Gets the Maximum volume setting that may be applied to a logical channel.
Parameters | |
---|---|
aMaxVol | Maximum volume setting. Minimum value is -infinity dB, which is the smallest possible value that TReal32 supports. |
void | MmcMaxPlaybackRateL | ( | TInt & | aMaxRate | ) | [pure virtual] |
Gets the maximum playback rate in milli-percentage from the MIDI engine.
See also: SetPlaybackRate() for milli-percentage details.
Parameters | |
---|---|
aMaxRate | Playback rate supported by MIDI player. |
void | MmcMaxPolyphonyL | ( | TInt & | aMaxNotes | ) | [pure virtual] |
Gets the max polyphony level the engine can handle.
void | MmcMaxVolumeL | ( | TInt & | aMaxVolume | ) | [pure virtual] |
Maximum volume setting that may be applied overall.
Parameters | |
---|---|
aMaxVolume | Maximum volume setting. Minimum value is always zero which is silent. |
void | MmcMimeTypeL | ( | TDes8 & | aMimeType | ) | [pure virtual] |
Gets the MIME type of the MIDI resource currently open.
Parameters | |
---|---|
aMimeType | Descriptor containing the MIDI mime type. |
void | MmcMinPlaybackRateL | ( | TInt & | aMinRate | ) | [pure virtual] |
Gets the minimum playback rate in milli-percentage from the MIDI engine.
See also: SetPlaybackRate() for milli-percentage details.
Parameters | |
---|---|
aMinRate | Minimum playback rate supported by MIDI player. |
Synchronous function to terminate playback of a note. If no corresponding note is found then no error is raised
Parameters | |
---|---|
aChannel | Logical channel on which the note is playing. 0 <= aChannel <= 15. |
aNote | Note to terminate. 0 <= aNote <= 127. |
aVelocity | Velocity with which to stop the note. 0 <= aVelocity <= 127. There is no standard behaviour corresponding with note off velocity. |
Synchronous function to commence playback of a note. Multiple calls to this function will be accommodated as far as the MIDI engine can manage
Parameters | |
---|---|
aChannel | Logical channel to play note on. 0 <= aChannel <= 15. |
aNote | Note to play. 0 <= aNote <= 127. |
aVelocity | Velocity with which to start the note. The legal integer range is 0 <= aVelocity <= 127, but the value zero actually causes the message to be interpreted as a Note Off message instead of a Note On. |
void | MmcNumTracksL | ( | TInt & | aTracks | ) | [pure virtual] |
Gets the number of tracks present in the currently open MIDI resource.
Parameters | |
---|---|
aTracks | Number of tracks. |
Gets the number of instruments available in a given sound bank.
Parameters | |
---|---|
aBankId | Identifier of sound bank to reference, occupying no more than 14 bits. |
aCustom | Specifies whether to reference a custom or standard sound bank. |
aNumInstruments | Count of the number of instruments available for the specified sound bank. |
const TDesC & | MmcPercussionKeyNameL | ( | TInt | aNote, |
TInt | aBankId, | |||
TBool | aCustom, | |||
TInt | aInstrumentId | |||
) | [pure virtual] |
Gets the name of a particular percussion key corresponding to a given note.
Parameters | |
---|---|
aNote | Note to query. 0 <= aNote <= 127. |
aBankId | Identifier of the bank that the instrument belongs to, occupying no more than 14 bits. The bank ID is a concatenation of MIDI bank MSB and LSB values. |
aCustom | Specifies whether to reference a custom or standard sound bank. |
aInstrumentId | Identifier of an instrument. |
void | MmcPitchTranspositionCentsL | ( | TInt & | aPitch | ) | [pure virtual] |
Gets the pitch shift in use for the currently open MIDI resource.
Parameters | |
---|---|
aPitch | Shift in cents, i.e. semitones * 100. One octave equals 1200 cents. |
void | MmcPlayNoteL | ( | TInt | aChannel, |
TInt | aNote, | |||
const TTimeIntervalMicroSeconds & | aDuration, | |||
TInt | aNoteOnVelocity, | |||
TInt | aNoteOffVelocity | |||
) | [pure virtual] |
Synchronous function to play a single note. Multiple calls to this function will be accommodated as far as the MIDI engine can manage. The same functionality could be implemented using the SendMessage function
Parameters | |
---|---|
aChannel | Logical channel to play note on. 0 <= aChannel <= 15. |
aNote | Note to play. 0 <= aNote <= 127 |
aDuration | Length of time to play note for. |
aNoteOnVelocity | Velocity with which to start the note. 0 <= aNoteOnVelocity <= 127. |
aNoteOffVelocity | Velocity with which to stop the note. 0 <= aNoteOffVelocity <= 127. |
void | MmcPlayNoteL | ( | TInt | aChannel, |
TInt | aNote, | |||
const TTimeIntervalMicroSeconds & | aStartTime, | |||
const TTimeIntervalMicroSeconds & | aDuration, | |||
TInt | aNoteOnVelocity, | |||
TInt | aNoteOffVelocity | |||
) | [pure virtual] |
Synchronous function to play a single note at a specified time. Multiple calls to this function will be accommodated as far as the MIDI engine can manage. The same functionality could be implemented using the SendMessage function
Parameters | |
---|---|
aChannel | Logical channel to play note on. 0 <= aChannel <= 15. |
aNote | Note to play. 0 <= aNote <= 127 |
aStartTime | Specifies the time at which to start playing the note, relative to the MIDI resource playing time or the time elapsed since Play() was called if no resource is present. |
aDuration | Length of time to play note for. |
aNoteOnVelocity | Velocity with which to start the note. 0 <= aNoteOnVelocity <= 127. |
aNoteOffVelocity | Velocity with which to stop the note. 0 <= aNoteOffVelocity <= 127. |
void | MmcPlaybackRateL | ( | TInt & | aPlayBackRate | ) | [pure virtual] |
Gets the current playback rate factor of the currently open MIDI resource. The playback rate is independent from tempo, i.e., it can be used to give an overall speed factor for playback.
Parameters | |
---|---|
aPlayBackRate | Current playback rate in percent times 1000, i.e., 100000 means original playback speed, 200000 means double speed, and 50000 means half speed playback. |
void | MmcPolyphonyL | ( | TInt & | aNumNotes | ) | [pure virtual] |
Gets the number of currently active voices.
Parameters | |
---|---|
aNumNotes | The number of currently active voices. |
void | MmcPositionMicroBeatsL | ( | TInt64 & | aMicroBeats | ) | [pure virtual] |
Gets the current metrical position of the MIDI resource being played
Parameters | |
---|---|
aMicroBeats | (BPM*1000000) relative to the start of the resource |
Sends a single MIDI message to the MIDI engine.
Parameters | |
---|---|
aMidiMessage | Descriptor containing the MIDI message data. If there are several MIDI messages in the buffer, only the first one is processed. |
aBytes | Number of bytes of the message buffer actually processed. |
void | MmcSendMessageL | ( | const TDesC8 & | aMidiMessage, |
const TTimeIntervalMicroSeconds & | aTime, | |||
TInt & | aBytes | |||
) | [pure virtual] |
Sends a single MIDI message, with time stamp, to the MIDI engine.
Parameters | |
---|---|
aMidiMessage | Descriptor containing the MIDI message data. If there are several MIDI messages in the buffer, only the first one is processed. |
aTime | The time at which to execute the message, relative to the MIDI resource playing time or the time elapsed since Play() was called if no resource is present. |
aBytes | Number of bytes of the message buffer actually processed. |
void | MmcSendMipMessageL | ( | const TArray< TMipMessageEntry > & | aEntry | ) | [pure virtual] |
Sends a mip message to the MIDI engine. This is a convenience function, because the same functionality could be achieved with the SendMessage() function.
Parameters | |
---|---|
aEntry | Array of logical {channel, MIP} value pairs to send, highest priority first. |
void | MmcSetBalanceL | ( | TInt | aBalance | ) | [pure virtual] |
Set the current stereo balance value.
Parameters | |
---|---|
aBalance | Balance value to set. Defaults to KMMFBalanceCenter to restore equal left-right balance. |
void | MmcSetBankL | ( | TBool | aCustom | ) | [pure virtual] |
Tell the MIDI engine to use a custom bank or a standard bank.
Parameters | |
---|---|
aCustom | If Etrue the custom bank in memory is used otherwise the standard bank is used leaving the custom bank in memory. |
Set the muting state of a channel without changing its volume setting. When unmuted the channel goes back to its previous volume setting.
Parameters | |
---|---|
aChannel | Logical channel to set the mute state of. 0 <= aChannel <= 15. |
aMuted | ETrue to mute the channel, EFalse to unmute it. |
Set the volume of a channel.
Parameters | |
---|---|
aChannel | Logical channel to set the volume on. 0 <= aChannel <= 15. |
aVolume | The channel volume can be set within a range. The minimum channel volume is -infinity dB, which is the smallest possible value that TReal32 supports while the maximum channel volume is set via MaxVolumeL() which represents the volume level in dB corresponding to the MIDI Channel Volume controller. |
Sets a logical channel to use the given instrument.
Parameters | |
---|---|
aChannel | Logical channel to set the instrument for. 0 <= aChannel <= 15. |
aBankId | Identifier of the bank that the instrument belongs to, occupying no more than 14 bits. The bank ID is a concatenation of MIDI bank MSB and LSB values. |
aInstrumentId | Identifier of the instrument under scrutiny. 0 <= aInstrumentId <= 127. |
void | MmcSetMaxPolyphonyL | ( | TInt | aMaxNotes | ) | [pure virtual] |
Set the max polyphony level the engine can handle.
Parameters | |
---|---|
aMaxNotes | Max polyphony level, 0 <= PolyphonyL() <= aMaxNotes. |
Sets the pitch shift to apply to the currently open MIDI resource. May be called during playback.
Parameters | |
---|---|
aCents | Pitch shift in cents, i.e. semitones * 100. One octave equals 1200 cents. |
aCentsApplied | Actual pitch shift applied - may differ from the requested value due to limitations of the MIDI engine. |
void | MmcSetPlaybackRateL | ( | TInt | aPlayBackRate | ) | [pure virtual] |
Sets the playback rate for the playback of the current MIDI resource. The playback rate is independent from tempo, i.e., it can be used to give an overall speed factor for playback. May be called whether playback is in progress or not.
Parameters | |
---|---|
aPlayBackRate | Playback rate in percent times 1000, i.e., 100000 means original playback speed, 200000 means double speed, and 50000 means half speed playback. |
void | MmcSetPositionMicroBeatsL | ( | TInt64 | aMicroBeats | ) | [pure virtual] |
Change the position of the currently playing MIDI resource to the given position. May be called whenever a MIDI resource is open.
Parameters | |
---|---|
aMicroBeats | Metrical position to move to. Clamped to (0, DurationMicroBeats()). |
void | MmcSetRepeatsL | ( | TInt | aRepeatNumberOfTimes, |
const TTimeIntervalMicroSeconds & | aTrailingSilence | |||
) | [pure virtual] |
Set the number of times to repeat the current MIDI resource. After Stop() has been called, repeat number of times and the trailing silence are reset.
Parameters | |
---|---|
aRepeatNumberOfTimes | Number of times to repeat the resource during playback. This includes the first playing. |
aTrailingSilence | Time in microseconds to pause between repeats. |
void | MmcSetStopTimeL | ( | const TTimeIntervalMicroSeconds & | aStopTime | ) | [pure virtual] |
Sets the stop time to use for the currently open MIDI resource
Parameters | |
---|---|
aStopTime | Time at which playback will stop, relative to the start of the resource. Clamped to 0 and the duration of the resource. |
void | MmcSetSyncUpdateCallbackIntervalL | ( | const TTimeIntervalMicroSeconds & | aMicroSeconds, |
TInt64 | aMicroBeats = 0 | |||
) | [pure virtual] |
Sets the frequency at which MMIDIClientUtilityObserver::MmcuoSyncUpdateL() is called to allow other components to synchronise with playback of this MIDI resource.
Parameters | |
---|---|
aMicroSeconds | Temporal interval to callback at. Used in preference to aMicroBeats if both are set. |
aMicroBeats | Metrical interval to callback at. Set both parameters to zero to cancel. |
void | MmcSetTempoL | ( | TInt | aMicroBeatsPerMinute | ) | [pure virtual] |
Sets the tempo at which the current MIDI resource should be played. May be called whether playback is in progress or not. The tempo is independent from the playback rate, i.e., the resulting playback speed will be affected by both.
Parameters | |
---|---|
aMicroBeatsPerMinute | Tempo in microbeats per minute (BPM*1000000) to set. |
void | MmcSetVolumeL | ( | TInt | aVolume | ) | [pure virtual] |
Set the overall volume of the MIDI client. This setting scales all channel volumes respectively so the actual volume that a channel is played at becomes (overall volume * channel volume / max volume).
Parameters | |
---|---|
aVolume | Overall volume setting to use. |
void | MmcSetVolumeRampL | ( | const TTimeIntervalMicroSeconds & | aRampDuration | ) | [pure virtual] |
Length of time over which the volume is faded up from zero to the current settings when playback is started.
Parameters | |
---|---|
aRampDuration | Duration of the ramping period. |
void | MmcStopL | ( | const TTimeIntervalMicroSeconds & | aFadeOutDuration | ) | [pure virtual] |
Stops playback of a resource but does not change the current position or release any resources. Pauses the internal timer if no resource is open.
Parameters | |
---|---|
aFadeOutDuration | Length of time over which the volume is faded out from the current settings to zero. |
void | MmcStopNotesL | ( | TInt | aChannel | ) | [pure virtual] |
Stops the playback of all notes on the given channel, by means of an All Notes Off MIDI message
Parameters | |
---|---|
aChannel | Logical channel to stop notes on. 0 <= aChannel <= 15 |
void | MmcStopTimeL | ( | TTimeIntervalMicroSeconds & | aStopTime | ) | [pure virtual] |
Get the stop time currently set for the MIDI resource.
Parameters | |
---|---|
aStopTime | Time at which playback will stop, relative to the start of the resource. |
void | MmcTempoMicroBeatsPerMinuteL | ( | TInt & | aMicroBeatsPerMinute | ) | [pure virtual] |
Gets the current tempo of the currently open MIDI resource. The tempo is independent from the playback rate, i.e., the resulting playback speed will be affected by both.
Parameters | |
---|---|
aMicroBeatsPerMinute | Tempo at the current position of the currently open resource in microbeats per minute, i.e. BPM * 1000000. Filled in by the controller framework. |
void | MmcUnloadAllCustomBanksL | ( | ) | [pure virtual] |
Removes all custom sound banks from memory.
void | MmcUnloadCustomBankL | ( | TInt | aBankId | ) | [pure virtual] |
Removes a custom sound bank from memory. Only valid for sound banks previously loaded from file. Once unloaded the custom sound bank is no longer available for use.
Parameters | |
---|---|
aBankId | Identifier of the custom sound bank to unload,occupying no more than 14 bits. |
Removes an instrument from custom sound bank memory. Only valid for instruments previously loaded from file. Once unloaded the instrument is no longer available for use.
Parameters | |
---|---|
aCustomBankId | Identifier of the custom sound bank containing the instrument to unload, occupying no more than 14 bits. |
aInstrumentId | Identifier of the instrument to unload. 0 <= aInstrumentId <= 127. |
void | MmcVolumeL | ( | TInt & | aVolume | ) | [pure virtual] |
Gets the overall volume of the MIDI client.
Parameters | |
---|---|
aVolume | The current overall volume setting. |