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
|
/* Goom Project
* Copyright (C) <2003> Jean-Christophe Hoelt <jeko@free.fr>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "goom_config_param.h"
#include <string.h>
static void
empty_fct (PluginParam * dummy)
{
}
void
goom_secure_param (PluginParam * p)
{
p->changed = empty_fct;
p->change_listener = empty_fct;
p->user_data = 0;
p->name = p->desc = 0;
p->rw = 1;
}
void
goom_secure_f_param (PluginParam * p, const char *name)
{
secure_param (p);
p->name = name;
p->type = PARAM_FLOATVAL;
FVAL (*p) = 0.5f;
FMIN (*p) = 0.0f;
FMAX (*p) = 1.0f;
FSTEP (*p) = 0.01f;
}
void
goom_secure_f_feedback (PluginParam * p, const char *name)
{
secure_f_param (p, name);
p->rw = 0;
}
void
goom_secure_s_param (PluginParam * p, const char *name)
{
secure_param (p);
p->name = name;
p->type = PARAM_STRVAL;
SVAL (*p) = 0;
}
void
goom_secure_b_param (PluginParam * p, const char *name, int value)
{
secure_param (p);
p->name = name;
p->type = PARAM_BOOLVAL;
BVAL (*p) = value;
}
void
goom_secure_i_param (PluginParam * p, const char *name)
{
secure_param (p);
p->name = name;
p->type = PARAM_INTVAL;
IVAL (*p) = 50;
IMIN (*p) = 0;
IMAX (*p) = 100;
ISTEP (*p) = 1;
}
void
goom_secure_i_feedback (PluginParam * p, const char *name)
{
secure_i_param (p, name);
p->rw = 0;
}
void
goom_plugin_parameters (PluginParameters * p, const char *name, int nb)
{
p->name = name;
p->desc = "";
p->nbParams = nb;
p->params = malloc (nb * sizeof (PluginParam *));
}
void
goom_plugin_parameters_free (PluginParameters * p)
{
free (p->params);
}
/*---------------------------------------------------------------------------*/
void
goom_set_str_param_value (PluginParam * p, const char *str)
{
int len = strlen (str);
if (SVAL (*p))
SVAL (*p) = (char *) realloc (SVAL (*p), len + 1);
else
SVAL (*p) = (char *) malloc (len + 1);
memcpy (SVAL (*p), str, len + 1);
}
void
goom_set_list_param_value (PluginParam * p, const char *str)
{
int len = strlen (str);
#ifdef VERBOSE
printf ("%s: %d\n", str, len);
#endif
if (LVAL (*p))
LVAL (*p) = (char *) realloc (LVAL (*p), len + 1);
else
LVAL (*p) = (char *) malloc (len + 1);
memcpy (LVAL (*p), str, len + 1);
}
|