1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*****************************************************************************
4 * Copyright (C) 2006,2007,2008,2009 Nedko Arnaudov <nedko@arnaudov.name>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *****************************************************************************/
27 #include "lfo_parameters.h"
28 #include "filter_parameters.h"
29 #include "envelope_parameters.h"
30 #include "resonance.h"
32 #include "oscillator.h"
33 #include "portamento.h"
34 #include "addsynth_internal.h"
37 #define envelope_params_ptr ((EnvelopeParams * )context)
40 zyn_component_frequency_envelope_get_float(
42 unsigned int parameter
)
46 case ZYNADD_PARAMETER_FLOAT_ENV_ATTACK_VALUE
:
47 return percent_from_0_127(
48 envelope_params_ptr
->get_value(
49 envelope_params_ptr
->m_attack_value_index
));
50 case ZYNADD_PARAMETER_FLOAT_ENV_ATTACK_DURATION
:
51 return percent_from_0_127(
52 envelope_params_ptr
->get_duration(
53 envelope_params_ptr
->m_attack_duration_index
));
54 case ZYNADD_PARAMETER_FLOAT_ENV_RELEASE_VALUE
:
55 return percent_from_0_127(
56 envelope_params_ptr
->get_value(
57 envelope_params_ptr
->m_release_value_index
));
58 case ZYNADD_PARAMETER_FLOAT_ENV_RELEASE_DURATION
:
59 return percent_from_0_127(
60 envelope_params_ptr
->get_duration(
61 envelope_params_ptr
->m_release_duration_index
));
62 case ZYNADD_PARAMETER_FLOAT_ENV_STRETCH
:
63 return percent_from_0_127(envelope_params_ptr
->m_stretch
) * 2;
65 LOG_ERROR("Unknown frequency envelope parameter %u", parameter
);
71 zyn_component_frequency_envelope_set_float(
73 unsigned int parameter
,
78 case ZYNADD_PARAMETER_FLOAT_ENV_ATTACK_VALUE
:
79 envelope_params_ptr
->set_value(
80 envelope_params_ptr
->m_attack_value_index
,
81 percent_to_0_127(value
));
83 case ZYNADD_PARAMETER_FLOAT_ENV_ATTACK_DURATION
:
84 envelope_params_ptr
->set_duration(
85 envelope_params_ptr
->m_attack_duration_index
,
86 percent_to_0_127(value
));
88 case ZYNADD_PARAMETER_FLOAT_ENV_RELEASE_VALUE
:
89 envelope_params_ptr
->set_value(
90 envelope_params_ptr
->m_release_value_index
,
91 percent_to_0_127(value
));
93 case ZYNADD_PARAMETER_FLOAT_ENV_RELEASE_DURATION
:
94 envelope_params_ptr
->set_duration(
95 envelope_params_ptr
->m_release_duration_index
,
96 percent_to_0_127(value
));
98 case ZYNADD_PARAMETER_FLOAT_ENV_STRETCH
:
99 envelope_params_ptr
->m_stretch
= percent_to_0_127(value
/2);
102 LOG_ERROR("Unknown frequency envelope parameter %u", parameter
);
108 zyn_component_frequency_envelope_get_int(
110 unsigned int parameter
)
117 zyn_component_frequency_envelope_set_int(
119 unsigned int parameter
,
126 zyn_component_frequency_envelope_get_bool(
128 unsigned int parameter
)
132 case ZYNADD_PARAMETER_BOOL_ENV_FORCED_RELEASE
:
133 return envelope_params_ptr
->m_forced_release
;
135 LOG_ERROR("Unknown bool frequency envelope parameter %u", parameter
);
141 zyn_component_frequency_envelope_set_bool(
143 unsigned int parameter
,
148 case ZYNADD_PARAMETER_BOOL_ENV_FORCED_RELEASE
:
149 envelope_params_ptr
->m_forced_release
= value
;
152 LOG_ERROR("Unknown bool frequency envelope parameter %u", parameter
);
157 #undef envelope_params_ptr
160 zyn_addsynth_component_init_frequency_envelope(
161 struct zyn_component_descriptor
* component_ptr
,
162 EnvelopeParams
* envelope_params_ptr
)
164 ZYN_INIT_COMPONENT(component_ptr
, envelope_params_ptr
, zyn_component_frequency_envelope_
);