File: electroswitch.c

package info (click to toggle)
bristol 0.60.10-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 15,652 kB
  • sloc: ansic: 124,457; sh: 10,579; makefile: 111
file content (226 lines) | stat: -rw-r--r-- 6,010 bytes parent folder | download | duplicates (6)
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226

/*
 *  Diverse Bristol audio routines.
 *  Copyright (c) by Nick Copeland <nickycopeland@hotmail.com> 1996,2012
 *
 *
 *   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; either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   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, see <http://www.gnu.org/licenses/>.
 *
 */
/*#define BRISTOL_DBG */

/*
 * Need to have basic template for an operator. Will consist of
 *
 *	eswitchinit()
 *	operate()
 *	reset()
 *	destroy()
 *
 *	destroy() is in the library.
 *
 * Operate will be called when all the inputs have been loaded, and the result
 * will be an output buffer written to the next operator.
 */

#include <stdlib.h>

#include "bristol.h"
#include "electroswitch.h"

/*
 * The name of this operator, IO count, and IO names.
 */
#define OPNAME "Electromod"
#define OPDESCRIPTION "Electronic Switch"
#define PCOUNT 0
#define IOCOUNT 4

#define ESWITCHMOD_IN_1 0
#define ESWITCHMOD_IN_2 1
#define ESWITCHMOD_CLOCK 2
#define ESWITCHMOD_OUT 3

/*
 * Reset any local memory information.
 */
static int destroy(bristolOP *operator)
{
#ifdef BRISTOL_DBG
	printf("reset(%x)\n", operator);
#endif

	/*
	 * Unmalloc anything we added to this structure
	 */
	bristolfree(operator->specs);

	/*
	 * Free any local memory. We should also free ourselves, since we did the
	 * initial allocation.
	 */
	cleanup(operator);
	return(0);
}

/*
 * Reset any local memory information.
 */
static int reset(bristolOP *operator, bristolOPParams *param)
{
#ifdef BRISTOL_DBG
	printf("eswitchreset(%x)\n", operator);
#endif

	param->param[0].float_val = 1.0;
	param->param[1].float_val = 1.0;
	return(0);
}

/*
 * Alter an internal parameter of an operator.
 */
static int param(bristolOP *operator, bristolOPParams *param,
	unsigned char index, float value)
{
#ifdef BRISTOL_DBG
	printf("eswitchparam(%x, %x, %i, %i)\n", operator, param, index, value);
#endif

	param->param[index].float_val = value;

	return(0);
}

/*
 * Amplifier - takes input signal and mod signal, and mults them together.
 */
static int operate(register bristolOP *operator, bristolVoice *voice,
	bristolOPParams *param,
	void *lcl)
{
	register int count;
	register float *ib1, *ib2, *ob, *cbuf;
	bristolESWITCHMOD *specs;

	specs = (bristolESWITCHMOD *) operator->specs;
	count = specs->spec.io[ESWITCHMOD_OUT].samplecount;

#ifdef BRISTOL_DBG
	printf("eswitch(%x, %x, %i)\n", operator, param, count);
#endif

	ib1 = specs->spec.io[ESWITCHMOD_IN_1].buf;
	ib2 = specs->spec.io[ESWITCHMOD_IN_2].buf;
	cbuf = specs->spec.io[ESWITCHMOD_CLOCK].buf;
	ob = specs->spec.io[ESWITCHMOD_OUT].buf;
	
	for (; count > 0;count-=8)
	{
		/*
		 * If the clock signal is greater than zero take the next sample from
		 * input buffer one, other wise input buffer two. When it changes we
		 * should interpret a sample, but that can be done later.
		 */
/*		*ob++ = *ib1++ * *ib2++; */
		if (*cbuf++ >= 0)
		{
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
			*ob++ = *ib1++; ib2++;
		} else {
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
			*ob++ = *ib2++; ib1++;
		}
	}
	return(0);
}

/*
 * Setup any variables in our OP structure, in our IO structures, and malloc
 * any memory we need.
 */
bristolOP *
eswitchinit(bristolOP **operator, int index, int samplerate, int samplecount)
{
	bristolESWITCHMOD *specs;

#ifdef BRISTOL_DBG
	printf("eswitchinit(%x(%x), %i, %i, %i)\n",
		operator, *operator, index, samplerate, samplecount);
#endif

	*operator = bristolOPinit(operator, index, samplecount);

	/*
	 * Then the local parameters specific to this operator. These will be
	 * the same for each operator, but must be inited in the local code.
	 */
	(*operator)->operate = operate;
	(*operator)->destroy = destroy;
	(*operator)->reset = reset;
	(*operator)->param = param;

	specs = (bristolESWITCHMOD *) bristolmalloc0(sizeof(bristolESWITCHMOD));
	(*operator)->specs = (bristolOPSpec *) specs;
	(*operator)->size = sizeof(bristolESWITCHMOD);

	/*
	 * These are specific to this operator, and will need to be altered for
	 * each operator.
	 */
	specs->spec.opname = OPNAME;
	specs->spec.description = OPDESCRIPTION;
	specs->spec.pcount = PCOUNT;
	specs->spec.iocount = IOCOUNT;
	specs->spec.localsize = sizeof(bristolESWITCHMODlocal);

	/*
	 * Now fill in the dco IO specs.
	 */
	specs->spec.io[0].ioname = "Input 1";
	specs->spec.io[0].description = "Electromod Input 1 Signal";
	specs->spec.io[0].samplerate = samplerate;
	specs->spec.io[0].samplecount = samplecount;
	specs->spec.io[0].flags = BRISTOL_AC|BRISTOL_OUTPUT;
	specs->spec.io[1].ioname = "Input 2";
	specs->spec.io[1].description = "Electromod Input 2 Signal";
	specs->spec.io[1].samplerate = samplerate;
	specs->spec.io[1].samplecount = samplecount;
	specs->spec.io[1].flags = BRISTOL_AC|BRISTOL_OUTPUT;
	specs->spec.io[2].ioname = "Clock Input";
	specs->spec.io[2].description = "Electromod clock Signal";
	specs->spec.io[2].samplerate = samplerate;
	specs->spec.io[2].samplecount = samplecount;
	specs->spec.io[2].flags = BRISTOL_AC|BRISTOL_OUTPUT;
	specs->spec.io[3].ioname = "output";
	specs->spec.io[3].description = "Electromod Output Signal";
	specs->spec.io[3].samplerate = samplerate;
	specs->spec.io[3].samplecount = samplecount;
	specs->spec.io[3].flags = BRISTOL_AC|BRISTOL_OUTPUT;

	return(*operator);
}