File: envelope_parameters.h

package info (click to toggle)
zyn 1%2Bgit.20100609%2Bdfsg0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,296 kB
  • ctags: 2,633
  • sloc: python: 10,629; cpp: 5,828; ansic: 5,427; sh: 31; makefile: 13
file content (128 lines) | stat: -rw-r--r-- 3,243 bytes parent folder | download | duplicates (3)
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
/*
  ZynAddSubFX - a software synthesizer
 
  EnvelopeParams.h - Parameters for Envelope
  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

*/

#ifndef ENVELOPE_PARAMS_H
#define ENVELOPE_PARAMS_H

#define MAX_ENVELOPE_POINTS 40
#define MIN_ENVELOPE_DB -40

#define ZYN_ENVELOPE_MODE_ADSR         1 // ADSR parameters (linear amplitude)
#define ZYN_ENVELOPE_MODE_ADSR_DB      2 // ADSR_dB parameters (dB amplitude)
#define ZYN_ENVELOPE_MODE_ASR          3 // ASR parameters (frequency LFO)
#define ZYN_ENVELOPE_MODE_ADSR_FILTER  4 // ADSR_filter parameters (filter parameters)
#define ZYN_ENVELOPE_MODE_ASR_BW       5 // ASR_bw parameters (bandwidth parameters)

class EnvelopeParams
{
public:
  EnvelopeParams();
  ~EnvelopeParams();

  void
  init_adsr(
    unsigned char stretch,
    bool forced_release,
    char attack_duration,
    char decay_duration,
    char sustain_value,
    char release_duration,
    bool linear);

  void
  init_asr(
    unsigned char stretch,
    bool forced_release,
    char attack_value,
    char attack_duration,
    char release_value,
    char release_duration);

  void
  init_adsr_filter(
    unsigned char stretch,
    bool forced_release,
    char attack_value,
    char attack_duration,
    char decay_value,
    char decay_duration,
    char release_duration,
    char release_value);

  void
  init_asr_bw(
    unsigned char stretch,
    bool forced_release,
    char attack_value,
    char attack_duration,
    char release_value,
    char release_duration);

  unsigned char
  get_value(
    int index);

  void
  set_value(
    int index,
    unsigned char value);

  unsigned char
  get_duration(
    int index);

  void
  set_duration(
    int index,
    unsigned char duration);

  REALTYPE getdt(unsigned char i);
  void set_point_value(int i, unsigned char value);

  unsigned char Penvpoints;
  unsigned char Penvsustain;    // 127 pentru dezactivat
  unsigned char Penvdt[MAX_ENVELOPE_POINTS];
  float m_values[MAX_ENVELOPE_POINTS];
  unsigned char m_values_params[MAX_ENVELOPE_POINTS];

  // 0 = no stretch
  // 64 = normal stretch (piano-like)
  // 127 = 200% = envelope is stretched about 4 times/octave
  unsigned char m_stretch;

  bool m_forced_release;

  bool m_linear; // if the amplitude envelope is linear

  unsigned int m_mode;          // one of ZYN_ENVELOPE_MODE_XXX

  int m_attack_duration_index;
  int m_decay_duration_index;
  int m_release_duration_index;

  int m_attack_value_index;
  int m_decay_value_index;
  int m_sustain_value_index;
  int m_release_value_index;
};

#endif