OpenShot Audio Library | OpenShotAudio
0.3.2
Loading...
Searching...
No Matches
juce_MPESynthesiserVoice.cpp
1
/*
2
==============================================================================
3
4
This file is part of the JUCE library.
5
Copyright (c) 2017 - ROLI Ltd.
6
7
JUCE is an open source library subject to commercial or open-source
8
licensing.
9
10
The code included in this file is provided under the terms of the ISC license
11
http://www.isc.org/downloads/software-support-policy/isc-license. Permission
12
To use, copy, modify, and/or distribute this software for any purpose with or
13
without fee is hereby granted provided that the above copyright notice and
14
this permission notice appear in all copies.
15
16
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
18
DISCLAIMED.
19
20
==============================================================================
21
*/
22
23
namespace
juce
24
{
25
26
MPESynthesiserVoice::MPESynthesiserVoice
()
27
{
28
}
29
30
MPESynthesiserVoice::~MPESynthesiserVoice
()
31
{
32
}
33
34
//==============================================================================
35
bool
MPESynthesiserVoice::isCurrentlyPlayingNote
(
MPENote
note
)
const
noexcept
36
{
37
return
isActive() && currentlyPlayingNote.noteID ==
note
.noteID;
38
}
39
40
bool
MPESynthesiserVoice::isPlayingButReleased
()
const
noexcept
41
{
42
return
isActive
() && currentlyPlayingNote.
keyState
==
MPENote::off
;
43
}
44
45
void
MPESynthesiserVoice::clearCurrentNote
()
noexcept
46
{
47
currentlyPlayingNote =
MPENote
();
48
}
49
50
}
// namespace juce
juce::Array
Definition
juce_Array.h:56
juce::MPESynthesiserVoice::clearCurrentNote
void clearCurrentNote() noexcept
Definition
juce_MPESynthesiserVoice.cpp:45
juce::MPESynthesiserVoice::MPESynthesiserVoice
MPESynthesiserVoice()
Definition
juce_MPESynthesiserVoice.cpp:26
juce::MPESynthesiserVoice::isCurrentlyPlayingNote
bool isCurrentlyPlayingNote(MPENote note) const noexcept
Definition
juce_MPESynthesiserVoice.cpp:35
juce::MPESynthesiserVoice::isActive
virtual bool isActive() const
Definition
juce_MPESynthesiserVoice.h:62
juce::MPESynthesiserVoice::isPlayingButReleased
bool isPlayingButReleased() const noexcept
Definition
juce_MPESynthesiserVoice.cpp:40
juce::MPESynthesiserVoice::~MPESynthesiserVoice
virtual ~MPESynthesiserVoice()
Definition
juce_MPESynthesiserVoice.cpp:30
juce::MPENote
Definition
juce_MPENote.h:40
juce::MPENote::off
@ off
Definition
juce_MPENote.h:45
juce::MPENote::keyState
KeyState keyState
Definition
juce_MPENote.h:169
JuceLibraryCode
modules
juce_audio_basics
mpe
juce_MPESynthesiserVoice.cpp
Generated by
1.9.8