File: addsynth_component_amp_envelope.cpp

package info (click to toggle)
zyn 1%2Bgit.20100609-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 856 kB
  • ctags: 1,512
  • sloc: cpp: 5,828; ansic: 5,427; python: 241; sh: 31; makefile: 11
file content (171 lines) | stat: -rw-r--r-- 4,837 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
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
166
167
168
169
170
171
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*****************************************************************************
 *
 *   Copyright (C) 2006,2007,2008,2009 Nedko Arnaudov <nedko@arnaudov.name>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; version 2 of the License
 *
 *   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 for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 *****************************************************************************/

#include <stdbool.h>
#include <assert.h>

#include "common.h"
#include "globals.h"
#include "addsynth.h"
#include "lfo_parameters.h"
#include "filter_parameters.h"
#include "envelope_parameters.h"
#include "resonance.h"
#include "fft.h"
#include "oscillator.h"
#include "portamento.h"
#include "addsynth_internal.h"
#include "log.h"

#define envelope_params_ptr ((EnvelopeParams * )context)

float
zyn_component_amp_envelope_get_float(
  void * context,
  unsigned int parameter)
{
  switch (parameter)
  {
  case ZYNADD_PARAMETER_FLOAT_ENV_ATTACK_DURATION:
    return percent_from_0_127(
      envelope_params_ptr->get_duration(
        envelope_params_ptr->m_attack_duration_index));
  case ZYNADD_PARAMETER_FLOAT_ENV_DECAY_DURATION:
    return percent_from_0_127(
      envelope_params_ptr->get_duration(
        envelope_params_ptr->m_decay_duration_index));
  case ZYNADD_PARAMETER_FLOAT_ENV_SUSTAIN_VALUE:
    return percent_from_0_127(
      envelope_params_ptr->get_value(
        envelope_params_ptr->m_sustain_value_index));
  case ZYNADD_PARAMETER_FLOAT_ENV_RELEASE_DURATION:
    return percent_from_0_127(
      envelope_params_ptr->get_duration(
        envelope_params_ptr->m_release_duration_index));
  case ZYNADD_PARAMETER_FLOAT_ENV_STRETCH:
    return percent_from_0_127(
      envelope_params_ptr->m_stretch) * 2;
  default:
    LOG_ERROR("Unknown amplitude envelope parameter %u", parameter);
    assert(0);
  }
}

void
zyn_component_amp_envelope_set_float(
  void * context,
  unsigned int parameter,
  float value)
{
  switch (parameter)
  {
  case ZYNADD_PARAMETER_FLOAT_ENV_ATTACK_DURATION:
    envelope_params_ptr->set_duration(
      envelope_params_ptr->m_attack_duration_index,
      percent_to_0_127(value));
    return;
  case ZYNADD_PARAMETER_FLOAT_ENV_DECAY_DURATION:
    envelope_params_ptr->set_duration(
      envelope_params_ptr->m_decay_duration_index,
      percent_to_0_127(value));
    return;
  case ZYNADD_PARAMETER_FLOAT_ENV_SUSTAIN_VALUE:
    envelope_params_ptr->set_value(
      envelope_params_ptr->m_sustain_value_index,
      percent_to_0_127(value));
    return;
  case ZYNADD_PARAMETER_FLOAT_ENV_RELEASE_DURATION:
    envelope_params_ptr->set_duration(
      envelope_params_ptr->m_release_duration_index,
      percent_to_0_127(value));
    return;
  case ZYNADD_PARAMETER_FLOAT_ENV_STRETCH:
    envelope_params_ptr->m_stretch = percent_to_0_127(value/2);
    return;
  default:
    LOG_ERROR("Unknown amplitude envelope parameter %u", parameter);
    assert(0);
  }
}

signed int
zyn_component_amp_envelope_get_int(
  void * context,
  unsigned int parameter)
{
  assert(0);
  return 0;
}

void
zyn_component_amp_envelope_set_int(
  void * context,
  unsigned int parameter,
  signed int value)
{
  assert(0);
}

bool
zyn_component_amp_envelope_get_bool(
  void * context,
  unsigned int parameter)
{
  switch (parameter)
  {
  case ZYNADD_PARAMETER_BOOL_ENV_FORCED_RELEASE:
    return envelope_params_ptr->m_forced_release;
  case ZYNADD_PARAMETER_BOOL_ENV_LINEAR:
    return envelope_params_ptr->m_linear;
  default:
    LOG_ERROR("Unknown bool amplitude envelope parameter %u", parameter);
    assert(0);
  }
}

void
zyn_component_amp_envelope_set_bool(
  void * context,
  unsigned int parameter,
  bool value)
{
  switch (parameter)
  {
  case ZYNADD_PARAMETER_BOOL_ENV_FORCED_RELEASE:
    envelope_params_ptr->m_forced_release = value;
    return;
  case ZYNADD_PARAMETER_BOOL_ENV_LINEAR:
    envelope_params_ptr->m_linear = value;
    return;
  default:
    LOG_ERROR("Unknown bool amplitude envelope parameter %u", parameter);
    assert(0);
  }
}

#undef envelope_params_ptr

void
zyn_addsynth_component_init_amp_envelope(
  struct zyn_component_descriptor * component_ptr,
  EnvelopeParams * envelope_params_ptr)
{
  ZYN_INIT_COMPONENT(component_ptr, envelope_params_ptr, zyn_component_amp_envelope_);
}