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
|
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <plibsys.h>
#include "channel.h"
void channel_init(struct channel_t *chan)
{
chan->active = false;
chan->paused = false;
chan->volume = 255;
chan->pan_left = -128;
chan->pan_right = 128;
chan->sound_mutex = p_mutex_new();
chan->sound.left = NULL;
chan->sound.right = NULL;
chan->pos = 0;
}
void channel_reset(struct channel_t *chan)
{
p_atomic_int_set(&(chan->paused), false);
p_atomic_int_set(&(chan->volume), 255);
p_atomic_int_set(&(chan->pan_left), -128);
p_atomic_int_set(&(chan->pan_right), 128);
chan->pos = 0;
p_atomic_int_set(&(chan->active), false);
}
void channel_pause(struct channel_t *chan)
{
p_atomic_int_set(&(chan->paused), true);
}
void channel_resume(struct channel_t *chan)
{
p_atomic_int_set(&(chan->paused), false);
}
void channel_set_volume(struct channel_t *chan, float volume)
{
if (volume > 1.0f) volume = 1.0f;
if (volume < 0.0f) volume = 0.0f;
p_atomic_int_set(&(chan->volume), 255*volume);
}
void channel_set_pan(struct channel_t *chan, float pan_left, float pan_right)
{
if (pan_left > 1.0f) pan_left = 1.0f;
if (pan_left < -1.0f) pan_left = -1.0f;
if (pan_right > 1.0f) pan_right = 1.0f;
if (pan_right < -1.0f) pan_right = -1.0f;
p_atomic_int_set(&(chan->pan_left), 128*pan_left);
p_atomic_int_set(&(chan->pan_right), 128*pan_right);
}
#define QUARTER_PI 0.785397
static void pan_gain(float *gain_l, float *gain_r, float pan)
{
float theta = (QUARTER_PI * pan) + QUARTER_PI; /* 0-PI/2 */
*gain_l = cos(theta);
*gain_r = sin(theta);
}
void channel_get_next_sample(float *left, float *right, struct channel_t *chan)
{
bool active = p_atomic_int_get(&(chan->active));
bool paused = p_atomic_int_get(&(chan->paused));
if (!active || paused) {
/* skip this channel */
*left = 0;
*right = 0;
return;
}
if (!p_mutex_trylock(chan->sound_mutex)) {
/* can't lock mutex, skip */
*left = 0;
*right = 0;
return;
}
float volume = ((float)p_atomic_int_get(&(chan->volume)))/255;
if (chan->sound.mono) {
float x = chan->sound.left[chan->pos];
float pan = ((float)p_atomic_int_get(&(chan->pan_left)))/128;
float gain_l, gain_r;
pan_gain(&gain_l, &gain_r, pan);
*left = volume * gain_l * x;
*right = volume * gain_r * x;
}
else {
float l, r;
l = chan->sound.left[chan->pos];
r = chan->sound.right[chan->pos];
float pan_l = ((float)p_atomic_int_get(&(chan->pan_left)))/128;
float pan_r = ((float)p_atomic_int_get(&(chan->pan_right)))/128;
float gain_ll, gain_lr, gain_rl, gain_rr;
pan_gain(&gain_ll, &gain_lr, pan_l);
pan_gain(&gain_rl, &gain_rr, pan_r);
*left = volume * ((gain_ll * l) + (gain_rl * r));
*right = volume * ((gain_lr * l) + (gain_rr * r));
}
chan->pos += 1;
if (chan->pos >= chan->sound.len) {
channel_reset(chan);
}
p_mutex_unlock(chan->sound_mutex);
}
|