aboutsummaryrefslogtreecommitdiff
path: root/apps/systemlib/mixer.c
blob: cc7baebc2d9bf25509678a9ef3d3361965b49f9d (plain) (blame)
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/****************************************************************************
 *
 *   Copyright (C) 2012 PX4 Development Team. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 3. Neither the name PX4 nor the names of its contributors may be
 *    used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 ****************************************************************************/

/**
 * @file mixer.c
 *
 * Generic control value mixing library.
 *
 * This library implements a generic mixer function that can be used
 * by any driver or subsytem that wants to combine several control signals
 * into a single output.
 *
 * See mixer.h for more details.
 */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include "mixer.h"

static int
scale_check(struct MixScaler *scale)
{
	if (scale->offset > 1.0f)
		return -1;

	if (scale->offset > 1.0f)
		return -1;

	if (scale->lower_limit > scale->upper_limit)
		return -1;

	if (scale->lower_limit < -1.0f)
		return -1;

	if (scale->upper_limit > 1.0f)
		return -1;

	return 0;
}

int
mixer_check(struct MixMixer *mixer, unsigned control_count)
{
	if (mixer->control_count < 1)
		return -1;

	if (mixer->control_count > control_count)
		return -1;

	if (!scale_check(&mixer->output_scaler))
		return -1;

	for (unsigned i = 0; i < mixer->control_count; i++) {
		if (mixer->control_scaler[i].control >= control_count)
			return -1;

		if (!scale_check(&mixer->control_scaler[i]))
			return -1;
	}

	return 0;
}

static float
scale(struct MixScaler *scaler, float input)
{
	float output;

	if (input < 0.0f) {
		output = (input * scaler->negative_scale) + scaler->offset;

	} else {
		output = (input * scaler->positive_scale) + scaler->offset;
	}

	if (output > scaler->upper_limit) {
		output = scaler->upper_limit;

	} else if (output < scaler->lower_limit) {
		output = scaler->lower_limit;
	}

	return output;
}

float
mixer_mix(struct MixMixer *mixer, float *controls)
{
	struct MixScaler *scaler;
	float sum = 0.0f;

	for (unsigned i = 0; i < mixer->control_count; i++) {
		scaler = &mixer->control_scaler[i];
		sum += scale(scaler, controls[scaler->control]);
	}

	return scale(&mixer->output_scaler, sum);
}

static int
mixer_getline(int fd, char *line, unsigned maxlen)
{
	int	ret;
	char	c;

	while (--maxlen) {
		ret = read(fd, &c, 1);
		if (ret <= 0)
			return ret;
		if (c == '\r')
			continue;
		if (c == '\n') {
			*line = '\0';
			return 1;
		}
		*line++ = c;
	}
	/* line too long */
	return -1;
}

static int
mixer_load_scaler(const char *buf, struct MixScaler *scaler)
{
	if (sscanf(buf, "S: %u %f %f %f %f %f",
		   &scaler->control, &scaler->negative_scale, &scaler->positive_scale,
		   &scaler->offset, &scaler->lower_limit, &scaler->upper_limit) != 6)
		return -1;

	return 0;
}

int
mixer_load(int fd, struct MixMixer **mp)
{
	int		ret, result = -1;
	struct MixMixer *mixer = NULL;
	char		buf[100];
	unsigned	scalers;

	ret = mixer_getline(fd, buf, sizeof(buf));

	/* end of file? */
	if (ret == 0)
		result = 0;

	/* can't proceed */
	if (ret < 1)
		goto out;

	/* get header */
	if (sscanf(buf, "M: %u", &scalers) != 1)
		goto out;

	/* must have at least one scaler */
	if (scalers < 1)
		goto out;

	/* allocate mixer */
	scalers--;
	mixer = (struct MixMixer *)malloc(MIXER_SIZE(scalers));

	if (mixer == NULL)
		goto out;

	mixer->control_count = scalers;

	ret = mixer_getline(fd, buf, sizeof(buf));

	if (ret < 1)
		goto out;

	if (mixer_load_scaler(buf, &mixer->output_scaler))
		goto out;

	for (unsigned i = 0; i < scalers; i++) {
		if (mixer_getline(fd, buf, sizeof(buf)))
			goto out;
		if (mixer_load_scaler(buf, &mixer->control_scaler[i]))
			goto out;
	}

	result = 1;

out:
	/* on error, discard allocated mixer */
	if ((result <= 0) && (mixer != NULL))
		free(mixer);
	*mp = mixer;
	return result;
}

static int
mixer_save_scaler(char *buf, struct MixScaler *scaler)
{
	return sprintf(buf, "S: %u %f %f %f %f %f\n",
		       scaler->control, scaler->negative_scale, scaler->positive_scale,
		       scaler->offset, scaler->lower_limit, scaler->upper_limit);
}

int
mixer_save(int fd, struct MixMixer *mixer)
{
	char		buf[100];
	int		len, ret;
	
	/* write the mixer header */
	len = sprintf(buf, "M: %u\n", mixer->control_count);
	ret = write(fd, buf, len);
	if (ret != len)
		return -1;

	/* write the output scaler */
	len = mixer_save_scaler(buf, &mixer->output_scaler);
	write(fd, buf, len);
	if (ret != len)
		return -1;

	/* write the control scalers */
	for (unsigned j = 0; j < mixer->control_count; j++) {
		len = mixer_save_scaler(buf, &mixer->control_scaler[j]);
		write(fd, buf, len);
		if (ret != len)
			return -1;
	}
	return 0;
}