-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathRhodey.cpp
92 lines (74 loc) · 2.36 KB
/
Rhodey.cpp
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
/***************************************************/
/*! \class Rhodey
\brief STK Fender Rhodes-like electric piano FM
synthesis instrument.
This class implements two simple FM Pairs
summed together, also referred to as algorithm
5 of the TX81Z.
\code
Algorithm 5 is : 4->3--\
+ --> Out
2->1--/
\endcode
Control Change Numbers:
- Modulator Index One = 2
- Crossfade of Outputs = 4
- LFO Speed = 11
- LFO Depth = 1
- ADSR 2 & 4 Target = 128
The basic Chowning/Stanford FM patent expired
in 1995, but there exist follow-on patents,
mostly assigned to Yamaha. If you are of the
type who should worry about this (making
money) worry away.
by Perry R. Cook and Gary P. Scavone, 1995--2023.
*/
/***************************************************/
#include "Rhodey.h"
namespace stk {
Rhodey :: Rhodey( void )
: FM()
{
// Concatenate the STK rawwave path to the rawwave files
for ( unsigned int i=0; i<3; i++ )
waves_[i] = new FileLoop( (Stk::rawwavePath() + "sinewave.raw").c_str(), true );
waves_[3] = new FileLoop( (Stk::rawwavePath() + "fwavblnk.raw").c_str(), true );
this->setRatio(0, 1.0);
this->setRatio(1, 0.5);
this->setRatio(2, 1.0);
this->setRatio(3, 15.0);
gains_[0] = fmGains_[99];
gains_[1] = fmGains_[90];
gains_[2] = fmGains_[99];
gains_[3] = fmGains_[67];
adsr_[0]->setAllTimes( 0.001, 1.50, 0.0, 0.04);
adsr_[1]->setAllTimes( 0.001, 1.50, 0.0, 0.04);
adsr_[2]->setAllTimes( 0.001, 1.00, 0.0, 0.04);
adsr_[3]->setAllTimes( 0.001, 0.25, 0.0, 0.04);
twozero_.setGain( 1.0 );
}
Rhodey :: ~Rhodey( void )
{
}
void Rhodey :: setFrequency( StkFloat frequency )
{
#if defined(_STK_DEBUG_)
if ( frequency <= 0.0 ) {
oStream_ << "Rhodey::setFrequency: argument is less than or equal to zero!";
handleError( StkError::WARNING ); return;
}
#endif
baseFrequency_ = frequency * 2.0;
for (unsigned int i=0; i<nOperators_; i++ )
waves_[i]->setFrequency( baseFrequency_ * ratios_[i] );
}
void Rhodey :: noteOn( StkFloat frequency, StkFloat amplitude )
{
gains_[0] = amplitude * fmGains_[99];
gains_[1] = amplitude * fmGains_[90];
gains_[2] = amplitude * fmGains_[99];
gains_[3] = amplitude * fmGains_[67];
this->setFrequency( frequency );
this->keyOn();
}
} // stk namespace