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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
|
/******************************************************************************
* Copyright © 2012-2014 Institut für Nachrichtentechnik, Universität Rostock *
* Copyright © 2006-2012 Quality & Usability Lab, *
* Telekom Innovation Laboratories, TU Berlin *
* *
* This file is part of the SoundScape Renderer (SSR). *
* *
* The SSR 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. *
* *
* The SSR 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/>. *
* *
* The SSR is a tool for real-time spatial audio reproduction providing a *
* variety of rendering algorithms. *
* *
* http://spatialaudio.net/ssr ssr@spatialaudio.net *
******************************************************************************/
/// @file
/// SSR renderers as Puredata/Max externals.
#ifndef SSR_FLEXT_H
#define SSR_FLEXT_H
#include <filesystem>
#include <string>
#include <vector>
#include <flext.h>
// check for appropriate flext version (CbSignal was introduced in 0.5.0)
#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 500)
#error You need at least flext version 0.5.0!
#endif
#define APF_MIMOPROCESSOR_SAMPLE_TYPE t_sample
#define SSR_FLEXT_INSTANCE(name, renderer) \
class ssr_ ## name : public SsrFlext<renderer> { \
using SsrFlext<renderer>::SsrFlext; \
FLEXT_HEADER_S(ssr_ ## name, flext_dsp, setup) }; \
FLEXT_NEW_DSP_V("ssr_" #name "~", ssr_ ## name)
#include "apf/pointer_policy.h"
#include "geometry.h" // for ssr::quat
#include <gml/util.hpp> // for gml::radians()
#if !defined(MAXPDSTRING)
#define MAXPDSTRING 1000
#endif
template<typename Renderer>
class SsrFlextBase : public flext_dsp
{
FLEXT_HEADER_S(SsrFlextBase<Renderer>, flext_dsp, setup)
protected:
// TODO: put these functions somewhere else?
static bool _get(int& argc, const t_atom*& argv, int& out)
{
if (!IsFloat(*argv)) return false;
int result = GetInt(*argv);
if (result != GetFloat(*argv)) return false;
out = result;
--argc;
++argv;
return true;
}
static bool _get(int& argc, const t_atom*& argv, float& out)
{
if (!IsFloat(*argv)) return false;
out = GetFloat(*argv);
--argc;
++argv;
return true;
}
static bool _get(int& argc, const t_atom*& argv, bool& out)
{
if (!CanbeBool(*argv)) return false;
out = GetBool(*argv);
--argc;
++argv;
return true;
}
static const char* _get(int& argc, const t_atom*& argv)
{
const char* result = "";
if (!IsSymbol(*argv)) return result;
result = GetString(*argv);
--argc;
++argv;
return result;
}
public:
SsrFlextBase(apf::parameter_map&& params)
: _canvasdir{_init_canvasdir()}
, _engine(_update_params(std::move(params)))
{
_engine.load_reproduction_setup();
}
static void setup(t_classid c)
{
FLEXT_CADDMETHOD(c, 0, _handle_messages);
post("Thanks for using the SoundScape Renderer (SSR)!");
post("For more information, visit http://spatialaudio.net/ssr/");
}
protected:
// NB: This has to be called before _update_params()!
std::filesystem::path _init_canvasdir()
{
char buf[MAXPDSTRING];
this->GetCanvasDir(buf, sizeof(buf));
return {buf};
}
apf::parameter_map _update_params(apf::parameter_map&& params)
{
for (const char* key: {"reproduction_setup", "hrir_file", "prefilter_file"})
{
if (params.has_key(key))
{
params.set(key, (_canvasdir / params.get<std::string>(key)).string());
}
}
params.set("block_size", Blocksize());
params.set("sample_rate", Samplerate());
std::string info;
for (auto it: params)
{
info += "\n";
info += " * ";
info += it.first;
info += ": ";
info += it.second;
}
post("%s - trying to start with following options:%s"
, thisName(), info.c_str());
return std::move(params);
}
void _init()
{
AddOutSignal(_engine.get_output_list().size());
_engine.activate(); // start parallel processing (if threads > 1)
post("%s - initialization of %s completed, %d outputs available"
, thisName(), _engine.name(), CntOut());
}
private:
virtual void CbSignal()
{
_engine.audio_callback(Blocksize(), InSig(), OutSig());
}
std::string _get_string_id(int numeric_id) const
{
if (numeric_id < 1 || _source_ids.size() < numeric_id)
{
return {};
}
return _source_ids[numeric_id - 1];
}
FLEXT_CALLBACK_A(_handle_messages)
void _handle_messages(const t_symbol* s, int argc, const t_atom* argv)
{
std::string cmd1 = GetString(s);
if (cmd1 == "src")
{
if (argc < 1)
{
error("%s - too few arguments for %s", thisName(), cmd1.c_str());
return;
}
int src_id;
if (!_get(argc, argv, src_id))
{
error("%s - src expects integer source ID (starting with 1)"
, thisName());
return;
}
auto* source = _engine.get_source(_get_string_id(src_id));
if (!source)
{
error("%s - couldn't find source %d", thisName(), src_id);
return;
}
std::string cmd2 = _get(argc, argv);
if (cmd2 == "")
{
error("%s - %s %d must be followed by a string!"
, thisName(), cmd1.c_str(), src_id);
return;
}
else if (cmd2 == "pos")
{
if (argc < 2)
{
error("%s - src %d pos must be followed by at least 2 coordinates!"
, thisName(), src_id);
return;
}
float x, y, z{};
if (!_get(argc, argv, x))
{
error("%s - x must be a float value!", thisName());
return;
}
if (!_get(argc, argv, y))
{
error("%s - y must be a float value!", thisName());
return;
}
if (argc >= 1 && !_get(argc, argv, z))
{
error("%s - z must be a float value!", thisName());
return;
}
if (argc != 0)
{
error("%s - src %d pos must be followed by at most 3 coordinates!"
, thisName(), src_id);
return;
}
source->position = {x, y, z};
}
// For backwards compatibility, use "rot" for 3D rotations
else if (cmd2 == "azi")
{
if (argc != 1)
{
error("%s - src %d azi must be followed by exactly 1 angle!"
, thisName(), src_id);
return;
}
float azi;
if (!_get(argc, argv, azi))
{
error("%s - src azi expects a float value!", thisName());
return;
}
source->rotation = ssr::quat(gml::qrotate(
gml::radians(azi), {0.0f, 0.0f, 1.0f}));
}
else if (cmd2 == "rot")
{
if (argc < 1)
{
error("%s - src %d rot must be followed by at least 1 angle!"
, thisName(), src_id);
return;
}
float azimuth, elevation{}, roll{};
if (!_get(argc, argv, azimuth))
{
error("%s - src rot expects float values!", thisName());
return;
}
if (argc >= 1 && !_get(argc, argv, elevation))
{
error("%s - src rot expects float values!", thisName());
return;
}
if (argc >= 1 && !_get(argc, argv, roll))
{
error("%s - src rot expects float values!", thisName());
return;
}
if (argc != 0)
{
error("%s - src %d rot must be followed by at most 3 angles!"
, thisName(), src_id);
return;
}
source->rotation = ssr::quat(
gml::qrotate(gml::radians(azimuth), {0.0f, 0.0f, 1.0f}) *
gml::qrotate(gml::radians(elevation), {1.0f, 0.0f, 0.0f}) *
gml::qrotate(gml::radians(roll), {0.0f, 1.0f, 0.0f}));
}
else if (cmd2 == "vol")
{
if (argc != 1)
{
error("%s - src %d vol must be followed by exactly 1 value!"
, thisName(), src_id);
return;
}
float volume;
if (!_get(argc, argv, volume))
{
error("%s - src %d vol expects a float value!", thisName(), src_id);
return;
}
source->gain = volume;
}
else if (cmd2 == "mute")
{
if (argc != 1)
{
error("%s - src %d mute must be followed by exactly 1 argument!"
, thisName(), src_id);
return;
}
bool mute;
if (!_get(argc, argv, mute))
{
error("%s - src mute expects a boolean value!", thisName());
return;
}
source->mute = mute;
}
else if (cmd2 == "active")
{
if (argc != 1)
{
error("%s - src %d active must be followed by exactly 1 argument!"
, thisName(), src_id);
return;
}
bool active;
if (!_get(argc, argv, active))
{
error("%s - src active expects a boolean value!", thisName());
return;
}
source->active = active;
}
else if (cmd2 == "model")
{
if (argc != 1)
{
error("%s - src %d model must be followed by exactly 1 argument!"
, thisName(), src_id);
return;
}
std::string model_str = _get(argc, argv);
if (model_str == "")
{
error("%s - src model expects a string value!", thisName());
return;
}
source->model = model_str;
}
else
{
error("%s - unknown command: src %d %s", thisName()
, src_id, cmd2.c_str());
return;
}
}
else if (cmd1 == "ref")
{
if (argc < 1)
{
error("%s - too few arguments for %s", thisName(), cmd1.c_str());
return;
}
bool offset = false;
std::string cmd2 = _get(argc, argv);
if (cmd2 == "offset")
{
offset = true;
cmd2 = _get(argc, argv);
}
const char* offset_str = offset ? " offset" : "";
if (cmd2 == "")
{
error("%s - ref%s must be followed by a string!"
, thisName(), offset_str);
return;
}
else if (cmd2 == "pos")
{
if (argc < 2)
{
error("%s - ref%s pos must be followed by at least 2 coordinates!"
, thisName(), offset_str);
return;
}
float x, y, z{};
if (!_get(argc, argv, x))
{
error("%s - x must be a float value!", thisName());
return;
}
if (!_get(argc, argv, y))
{
error("%s - y must be a float value!", thisName());
return;
}
if (argc >= 1 && !_get(argc, argv, z))
{
error("%s - z must be a float value!", thisName());
return;
}
if (argc != 0)
{
error("%s - ref%s pos must be followed by at most 3 coordinates!"
, thisName(), offset_str);
return;
}
if (offset)
{
_engine.state.reference_position_offset = {x, y, z};
}
else
{
_engine.state.reference_position = {x, y, z};
}
}
// For backwards compatibility, use "rot" for 3D rotations
else if (cmd2 == "azi")
{
if (argc != 1)
{
error("%s - ref%s azi must be followed by exactly 1 angle!"
, thisName(), offset_str);
return;
}
float azi;
if (!_get(argc, argv, azi))
{
error("%s - ref%s azi expects a float value!"
, thisName(), offset_str);
return;
}
auto rotation = ssr::quat(
gml::qrotate(gml::radians(azi), {0.0f, 0.0f, 1.0f}));
if (offset)
{
_engine.state.reference_rotation_offset = rotation;
}
else
{
_engine.state.reference_rotation = rotation;
}
}
else if (cmd2 == "rot")
{
if (argc < 1)
{
error("%s - ref%s rot must be followed by at least 1 angle!"
, thisName(), offset_str);
return;
}
float azimuth, elevation{}, roll{};
if (!_get(argc, argv, azimuth))
{
error("%s - ref%s rot expects float values!"
, thisName(), offset_str);
return;
}
if (argc >= 1 && !_get(argc, argv, elevation))
{
error("%s - ref%s rot expects float values!"
, thisName(), offset_str);
return;
}
if (argc >= 1 && !_get(argc, argv, roll))
{
error("%s - ref%s rot expects float values!"
, thisName(), offset_str);
return;
}
if (argc != 0)
{
error("%s - ref%s rot must be followed by at most 3 angles!"
, thisName(), offset_str);
return;
}
auto rotation = ssr::quat(
gml::qrotate(gml::radians(azimuth), {0.0f, 0.0f, 1.0f}) *
gml::qrotate(gml::radians(elevation), {1.0f, 0.0f, 0.0f}) *
gml::qrotate(gml::radians(roll), {0.0f, 1.0f, 0.0f}));
if (offset)
{
_engine.state.reference_rotation_offset = rotation;
}
else
{
_engine.state.reference_rotation = rotation;
}
}
else
{
error("%s - invalid string for ref%s: %s"
, thisName(), offset_str, cmd2.c_str());
return;
}
}
else if (cmd1 == "vol")
{
if (argc != 1)
{
error("%s - vol must be followed by exactly 1 value!", thisName());
return;
}
float master_volume;
if (!_get(argc, argv, master_volume))
{
error("%s - vol expects a float value!", thisName());
return;
}
_engine.state.master_volume = master_volume;
}
else if (cmd1 == "processing")
{
if (argc != 1)
{
error("%s - processing must be followed by exactly 1 value!"
, thisName());
return;
}
bool processing;
if (!_get(argc, argv, processing))
{
error("%s - processing expects a boolean value!", thisName());
return;
}
_engine.state.processing = processing;
}
else
{
// TODO: amplitude_reference_distance?
error("%s - unknown command: %s", thisName(), cmd1.c_str());
return;
}
}
protected:
std::filesystem::path _canvasdir;
Renderer _engine;
std::vector<std::string> _source_ids;
};
template<typename Renderer>
class SsrFlext : public SsrFlextBase<Renderer>
{
public:
SsrFlext(int argc, const t_atom* argv)
: SsrFlextBase<Renderer>(_get_parameters(argc, argv))
{
post("%s - trying to create %d sources", this->thisName(), _in_channels);
for (size_t i = 0; i < _in_channels; ++i)
{
auto id = this->_engine.add_source("");
this->_engine.get_source(id)->active = true;
this->_source_ids.push_back(id);
this->AddInSignal();
}
this->_init();
}
private:
apf::parameter_map _get_parameters(int argc, const t_atom* argv)
{
_in_channels = 0;
int threads = 0;
std::string first_string = "", second_string = "";
while (argc > 0)
{
// Note: IsInt(*argv) doesn't work in Pd
if (this->IsFloat(*argv))
{
int arg;
if (!this->_get(argc, argv, arg))
{
throw std::invalid_argument("Numeric arguments must be integers!");
}
if (!_in_channels)
{
if (arg < 0)
{
throw std::invalid_argument("A negative number of sources ... "
"how is this supposed to work?");
}
_in_channels = arg;
}
else if (!threads)
{
if (arg < 0)
{
throw std::invalid_argument("A negative number of threads ... "
"how is this supposed to work?");
}
threads = arg;
}
else
{
throw std::invalid_argument("Too many numeric arguments!");
}
}
else if (this->IsSymbol(*argv))
{
if (first_string == "")
{
first_string = this->_get(argc, argv);
}
else if (second_string == "")
{
second_string = this->_get(argc, argv);
}
else
{
throw std::invalid_argument("Too many string arguments!");
}
}
else
{
throw std::invalid_argument("Unsupported argument type!");
}
}
if (!_in_channels)
{
post("%s - first numeric argument should specify number of sources! "
"None given, creating one source by default ...", this->thisName());
_in_channels = 1;
}
if (first_string == "")
{
throw std::invalid_argument(
"At least one string must be specified as argument!");
}
apf::parameter_map params;
params.set("reproduction_setup", first_string);
params.set("hrir_file", first_string);
// TODO: At some point, "prefilter_file" should become part of the
// configuration file for the reproduction setup.
// As soon as this happens, "second_string" should be removed!
if (second_string != "")
{
params.set("prefilter_file", second_string);
}
if (threads)
{
params.set("threads", threads);
}
// TODO: let the user choose those values:
params.set("delayline_size", 100000); // in samples
params.set("initial_delay", 1000); // in samples
return params;
}
int _in_channels;
};
#endif
|