summaryrefslogtreecommitdiff
path: root/muse_qt4_evolution/synti/zynaddsubfx/Synth/Envelope.C
blob: a019402201ced491a38d03a020b29c2bca99f66f (plain)
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
/*
  ZynAddSubFX - a software synthesizer
 
  Envelope.C - Envelope implementation
  Copyright (C) 2002-2005 Nasca Octavian Paul
  Author: Nasca Octavian Paul

  This program is free software; you can redistribute it and/or modify
  it under the terms of version 2 of the GNU General Public License 
  as published by the Free Software Foundation.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License (version 2) for more details.

  You should have received a copy of the GNU General Public License (version 2)
  along with this program; if not, write to the Free Software Foundation,
  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA

*/

#include <stdio.h>
#include "Envelope.h"

Envelope::Envelope(EnvelopeParams *envpars,REALTYPE basefreq){
    int i;
    envpoints=envpars->Penvpoints;
    if (envpoints>MAX_ENVELOPE_POINTS) envpoints=MAX_ENVELOPE_POINTS;
    envsustain=(envpars->Penvsustain==0)?-1:envpars->Penvsustain;
    forcedrelase=envpars->Pforcedrelease;
    envstretch=pow(440.0/basefreq,envpars->Penvstretch/64.0);
    linearenvelope=envpars->Plinearenvelope;

    if (envpars->Pfreemode==0) envpars->converttofree();
	
    REALTYPE bufferdt=SOUND_BUFFER_SIZE/(REALTYPE)SAMPLE_RATE;

    int mode=envpars->Envmode;

    //for amplitude envelopes
    if ((mode==1)&&(linearenvelope==0)) mode=2;//change to log envelope
    if ((mode==2)&&(linearenvelope!=0)) mode=1;//change to linear

    for (i=0;i<MAX_ENVELOPE_POINTS;i++) {
        REALTYPE tmp=envpars->getdt(i)/1000.0*envstretch;
	if (tmp>bufferdt) envdt[i]=bufferdt/tmp;
	    else envdt[i]=2.0;//any value larger than 1

	switch (mode){
	    case 2:envval[i]=(1.0-envpars->Penvval[i]/127.0)*MIN_ENVELOPE_DB;
		   break;
	    case 3:envval[i]=(pow(2,6.0*fabs(envpars->Penvval[i]-64.0)/64.0)-1.0)*100.0;
		   if (envpars->Penvval[i]<64) envval[i]=-envval[i];
		   break;
	    case 4:envval[i]=(envpars->Penvval[i]-64.0)/64.0*6.0;//6 octaves (filtru)
		   break;
	    case 5:envval[i]=(envpars->Penvval[i]-64.0)/64.0*10;
		   break;
	    default:envval[i]=envpars->Penvval[i]/127.0;
	};
	
    };

    envdt[0]=1.0;

    currentpoint=1;//the envelope starts from 1
    keyreleased=0;
    t=0.0;
    envfinish=0;
    inct=envdt[1];
    envoutval=0.0;
};

Envelope::~Envelope(){
};


/*
 * Relase the key (note envelope)
 */
void Envelope::relasekey(){
    if (keyreleased==1) return;
    keyreleased=1;
    if (forcedrelase!=0) t=0.0;
};

/*
 * Envelope Output
 */
REALTYPE Envelope::envout(){
    REALTYPE out;

    if (envfinish!=0) {//if the envelope is finished
	envoutval=envval[envpoints-1];
	return(envoutval);
    };
    if ((currentpoint==envsustain+1)&&(keyreleased==0)) {//if it is sustaining now
	envoutval=envval[envsustain];
	return(envoutval);
    };

    if ((keyreleased!=0) && (forcedrelase!=0)){//do the forced release	
	
        int tmp=(envsustain<0) ? (envpoints-1):(envsustain+1);//if there is no sustain point, use the last point for release

	if (envdt[tmp]<0.00000001) out=envval[tmp];
    	    else out=envoutval+(envval[tmp]-envoutval)*t;
	t+=envdt[tmp]*envstretch;

	if (t>=1.0) {
               currentpoint=envsustain+2;
	       forcedrelase=0;
	       t=0.0;
	       inct=envdt[currentpoint];
	       if ((currentpoint>=envpoints)||(envsustain<0)) envfinish=1;
	    };
	return(out);
    };
    if (inct>=1.0) out=envval[currentpoint];
	else out=envval[currentpoint-1]+(envval[currentpoint]-envval[currentpoint-1])*t;

    t+=inct;
    if (t>=1.0){
	if (currentpoint>=envpoints-1) envfinish=1;
	    else currentpoint++;
	t=0.0;
	inct=envdt[currentpoint];
    };

    envoutval=out;    
    return (out);
};

/*
 * Envelope Output (dB)
 */
REALTYPE Envelope::envout_dB(){
    REALTYPE out;
    if (linearenvelope!=0) return (envout());
    
    if ((currentpoint==1)&&((keyreleased==0)||(forcedrelase==0))) {//first point is always lineary interpolated
	REALTYPE v1=dB2rap(envval[0]);
	REALTYPE v2=dB2rap(envval[1]);
	out=v1+(v2-v1)*t;
	
	t+=inct; 
	if (t>=1.0) {
	    t=0.0;
	    inct=envdt[2];
	    currentpoint++;
	    out=v2;
	};
	
	if (out>0.001) envoutval=rap2dB(out);
		else envoutval=-40.0;
    } else out=dB2rap(envout());

    return(out);
};

int Envelope::finished(){
    return(envfinish);
};