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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/* libClunk - cross-platform 3D audio API built on top SDL library
* Copyright (C) 2007-2008 Netive Media Group
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#define _USE_MATH_DEFINES
#include <math.h>
#include "source.h"
#include <SDL.h>
#include "clunk_ex.h"
#include "buffer.h"
#include "sample.h"
#include <assert.h>
#include "clunk_assert.h"
#if defined _MSC_VER || __APPLE__ || __FreeBSD__
# define pow10f(x) powf(10.0f, (x))
# define log2f(x) (logf(x) / M_LN2)
#else
# define pow10f(x) exp10f(x)
#endif
using namespace clunk;
Source::mdct_type Source::mdct __attribute__ ((aligned (16)));
clunk_static_assert(Source::WINDOW_BITS > 2);
template <typename T> inline T clunk_min(T a, T b) {
return a < b? a: b;
}
template <typename T> inline T clunk_max(T a, T b) {
return a > b? a: b;
}
Source::Source(const Sample * sample, const bool loop, const v3<float> &delta, float gain, float pitch, float panning) :
sample(sample), loop(loop), delta_position(delta), gain(gain), pitch(pitch), panning(panning),
position(0), fadeout(0), fadeout_total(0)
{
for(int i = 0; i < 2; ++i) {
for(int j = 0; j < WINDOW_SIZE / 2; ++j) {
overlap_data[i][j] = 0;
}
}
if (sample == NULL)
throw_ex(("sample for source cannot be NULL"));
}
bool Source::playing() const {
if (fadeout_total > 0 && fadeout <= 0)
return false;
if (loop)
return true;
//if (!sample3d[0].empty() || !sample3d[1].empty())
// return true;
return position < (int)(sample->data.get_size() / sample->spec.channels / 2);
}
void Source::idt(const v3<float> &delta, const v3<float> &dir_vec, float &idt_offset, float &angle_gr) {
float head_r = 0.093f;
float direction = dir_vec.is0()? float(M_PI_2): (float)atan2f(dir_vec.y, dir_vec.x);
float angle = direction - atan2f(delta.y, delta.x);
angle_gr = angle * 180 / float(M_PI);
while (angle_gr < 0)
angle_gr += 360;
//LOG_DEBUG(("relative position = (%g,%g,%g), angle = %g (%g)", delta.x, delta.y, delta.z, angle, angle_gr));
float idt_angle = fmodf(angle, 2 * (float)M_PI);
if (idt_angle < 0)
idt_angle += 2 * (float)M_PI;
if (idt_angle >= float(M_PI_2) && idt_angle < (float)M_PI) {
idt_angle = float(M_PI) - idt_angle;
} else if (idt_angle >= float(M_PI) && idt_angle < 3 * float(M_PI_2)) {
idt_angle = (float)M_PI - idt_angle;
} else if (idt_angle >= 3 * (float)M_PI_2) {
idt_angle -= (float)M_PI * 2;
}
//printf("idt_angle = %g (%d)\n", idt_angle, (int)(idt_angle * 180 / M_PI));
idt_offset = - head_r / 343 * (idt_angle + sin(idt_angle));
//printf("idt_offset %g", idt_offset);
}
void Source::hrtf(int window, const unsigned channel_idx, clunk::Buffer &result, const Sint16 *src, int src_ch, int src_n, int idt_offset, const kemar_ptr& kemar_data, int kemar_idx) {
assert(channel_idx < 2);
//LOG_DEBUG(("%d bytes, %d actual window size, %d windows", dst_n, CLUNK_ACTUAL_WINDOW, n));
//result.set_size(2 * WINDOW_SIZE / 2); //sizeof(Sint16) * window / 2
size_t result_start = result.get_size();
result.reserve(WINDOW_SIZE);
//LOG_DEBUG(("channel %d: window %d: adding %d, buffer size: %u", channel_idx, window, WINDOW_SIZE, (unsigned)result.get_size()));
if (channel_idx <= 1) {
bool left = channel_idx == 0;
if (!left && idt_offset > 0) {
idt_offset = 0;
} else if (left && idt_offset < 0) {
idt_offset = 0;
}
if (idt_offset < 0)
idt_offset = - idt_offset;
} else
idt_offset = 0;
for(int i = 0; i < WINDOW_SIZE; ++i) {
//-1 0 1 2 3
int p = position + idt_offset + (int)((window * WINDOW_SIZE / 2 + i) * pitch); //overlapping half
//printf("%d of %d, ", p, src_n);
int v = 0;
if (fadeout_total > 0 && fadeout - i <= 0) {
//v = 0;
} else if (loop || (p >= 0 && p < src_n)) {
p %= src_n;
if (p < 0)
p += src_n;
v = src[p * src_ch];
}
//assert(v < 32768 && v > -32768);
if (fadeout_total > 0 && fadeout - i > 0) {
//LOG_DEBUG(("fadeout %d: %d -> %d", fadeout - i, v, v * (fadeout - i) / fadeout_total));
v *= (fadeout - i) / fadeout_total;
}
mdct.data[i] = v / 32768.0f;
//fprintf(stderr, "%g ", mdct.data[i]);
}
mdct.apply_window();
mdct.mdct();
//LOG_DEBUG(("kemar angle index: %d\n", kemar_idx));
for(int i = 0; i < mdct_type::M; ++i) {
float v = mdct.data[i];
const int kemar_angle_idx = i * 512 / mdct_type::M;
assert(kemar_angle_idx < 512);
float m = pow10f(kemar_data[kemar_idx][0][kemar_angle_idx] * v / 20);
mdct.data[i] = v * m;
//fprintf(stderr, "%g ", m);
}
mdct.imdct();
mdct.apply_window();
Sint16 *dst = (Sint16 *)((unsigned char *)result.get_ptr() + result_start);
float max_v = 1.0f, min_v = -1.0f;
for(int i = 0; i < WINDOW_SIZE / 2; ++i) {
float v = (mdct.data[i] + overlap_data[channel_idx][i]);
if (v < min_v)
min_v = v;
else if (v > max_v)
max_v = v;
}
{
//stupid msvc
int i;
for(i = 0; i < WINDOW_SIZE / 2; ++i) {
float v = ((mdct.data[i] + overlap_data[channel_idx][i]) - min_v) / (max_v - min_v) * 2 - 1;
if (v < -1) {
LOG_DEBUG(("clipping %f [%f-%f]", v, min_v, max_v));
v = -1;
} else if (v > 1) {
LOG_DEBUG(("clipping %f [%f-%f]", v, min_v, max_v));
v = 1;
}
*dst++ = (int)(v * 32767);
}
for(; i < WINDOW_SIZE; ++i) {
overlap_data[channel_idx][i - WINDOW_SIZE / 2] = mdct.data[i];
}
}
}
void Source::update_position(const int dp) {
//LOG_DEBUG(("update_position(%d)", dp));
position += dp;
for(int i = 0; i < 2; ++i) {
Buffer & buf = sample3d[i];
buf.pop(dp * 2);
}
int src_n = (int)sample->data.get_size() / sample->spec.channels / 2;
if (loop) {
position %= src_n;
//LOG_DEBUG(("position %d", position));
if (position < 0)
position += src_n;
}
if (fadeout_total > 0) {
fadeout -= dp;
if (fadeout <= 0) {
fadeout = 0;
loop = false;
}
}
}
float Source::process(clunk::Buffer &buffer, unsigned dst_ch, const v3<float> &delta_position, const v3<float> &direction, float fx_volume, float pitch) {
Sint16 * dst = (Sint16*) buffer.get_ptr();
unsigned dst_n = (unsigned)buffer.get_size() / dst_ch / 2;
const Sint16 * src = (Sint16*) sample->data.get_ptr();
if (src == NULL)
throw_ex(("uninitialized sample used (%p)", (void *)sample));
pitch *= this->pitch * sample->pitch;
if (pitch <= 0)
throw_ex(("pitch %g could not be negative or zero", pitch));
unsigned src_ch = sample->spec.channels;
unsigned src_n = (unsigned)sample->data.get_size() / src_ch / 2;
float vol = fx_volume * gain * sample->gain;
if (vol > 1)
vol = 1;
if (vol < 0 || (int)floor(SDL_MIX_MAXVOLUME * vol + 0.5f) <= 0) {
update_position((int)(dst_n * pitch));
return 0;
}
kemar_ptr kemar_data;
int angles;
get_kemar_data(kemar_data, angles, delta_position);
if (delta_position.is0() || kemar_data == NULL) {
//2d stereo sound!
for(unsigned i = 0; i < dst_n; ++i) {
for(unsigned c = 0; c < dst_ch; ++c) {
int p = position + (int)(i * pitch);
Sint16 v = 0;
if (loop || (p >= 0 && p < (int)src_n)) {
p %= src_n;
if (p < 0)
p += src_n;
if (c < src_ch) {
v = src[p * src_ch + c];
} else {
v = src[p * src_ch];//expand mono channel if needed
}
if (panning != 0 && c < 2) {
bool left = c == 0;
int v0 = (int)((1.0f + panning * (left? -1: 1)) * v);
if (v0 > 32767) {
v = 32767;
} else if (v0 < -32767) {
v = -32767;
} else {
v = (Sint16)v0;
}
}
}
dst[i * dst_ch + c] = v;
}
}
update_position((int)(dst_n * pitch));
return vol;
}
//LOG_DEBUG(("data: %p, angles: %d", (void *) kemar_data, angles));
update_position(0);
if (position >= (int)src_n) {
//LOG_ERROR(("process called on inactive source"));
return 0;
}
float t_idt, angle_gr;
idt(delta_position, direction, t_idt, angle_gr);
const int kemar_idx_right = ((((int)angle_gr + 180 / (int)angles)/ (360 / (int)angles)) % (int)angles);
const int kemar_idx_left = (((360 - (int)angle_gr - 180 / (int)angles) / (360 / (int)angles)) % (int)angles);
//LOG_DEBUG(("%g -> left: %d, right: %d", angle_gr, kemar_idx_left, kemar_idx_right));
int idt_offset = (int)(t_idt * sample->spec.freq);
int window = 0;
while(sample3d[0].get_size() < dst_n * 2 || sample3d[1].get_size() < dst_n * 2) {
hrtf(window, 0, sample3d[0], src, src_ch, src_n, idt_offset, kemar_data, kemar_idx_left);
hrtf(window, 1, sample3d[1], src, src_ch, src_n, idt_offset, kemar_data, kemar_idx_right);
++window;
}
assert(sample3d[0].get_size() >= dst_n * 2 && sample3d[1].get_size() >= dst_n * 2);
//LOG_DEBUG(("angle: %g", angle_gr));
//LOG_DEBUG(("idt offset %d samples", idt_offset));
Sint16 * src_3d[2] = { (Sint16 *)sample3d[0].get_ptr(), (Sint16 *)sample3d[1].get_ptr() };
//LOG_DEBUG(("size1: %u, %u, needed: %u\n%s", (unsigned)sample3d[0].get_size(), (unsigned)sample3d[1].get_size(), dst_n, sample3d[0].dump().c_str()));
for(unsigned i = 0; i < dst_n; ++i) {
for(unsigned c = 0; c < dst_ch; ++c) {
dst[i * dst_ch + c] = src_3d[c][i];
}
}
update_position((int)(dst_n * pitch));
//LOG_DEBUG(("size2: %u, %u, needed: %u", (unsigned)sample3d[0].get_size(), (unsigned)sample3d[1].get_size(), dst_n));
return vol;
}
#include "kemar.h"
void Source::get_kemar_data(kemar_ptr & kemar_data, int & elev_n, const v3<float> &pos) {
kemar_data = NULL;
elev_n = 0;
if (pos.is0())
return;
#ifdef _WINDOWS
float len = (float)_hypot(pos.x, pos.y);
#else
float len = (float)hypot(pos.x, pos.y);
#endif
int elev_gr = (int)(180 * atan2f(pos.z, len) / (float)M_PI);
if (elev_gr < -35) {
kemar_data = elev_m40;
elev_n = ELEV_M40_N;
} else if (elev_gr < -25) {
kemar_data = elev_m30;
elev_n = ELEV_M30_N;
} else if (elev_gr < -15) {
kemar_data = elev_m20;
elev_n = ELEV_M20_N;
} else if (elev_gr < -5) {
kemar_data = elev_m10;
elev_n = ELEV_M10_N;
} else if (elev_gr < 5) {
kemar_data = elev_0;
elev_n = ELEV_0_N;
} else if (elev_gr < 15) {
kemar_data = elev_10;
elev_n = ELEV_10_N;
} else if (elev_gr < 25) {
kemar_data = elev_20;
elev_n = ELEV_20_N;
} else if (elev_gr < 35) {
kemar_data = elev_30;
elev_n = ELEV_30_N;
} else if (elev_gr < 45) {
kemar_data = elev_40;
elev_n = ELEV_40_N;
} else if (elev_gr < 55) {
kemar_data = elev_50;
elev_n = ELEV_50_N;
} else if (elev_gr < 65) {
kemar_data = elev_60;
elev_n = ELEV_60_N;
} else if (elev_gr < 75) {
kemar_data = elev_70;
elev_n = ELEV_70_N;
} else if (elev_gr < 85) {
kemar_data = elev_80;
elev_n = ELEV_80_N;
} else {
kemar_data = elev_90;
elev_n = ELEV_90_N;
}
}
Source::~Source() {}
void Source::fade_out(const float sec) {
fadeout = fadeout_total = (int)(sample->spec.freq * sec);
}
|