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
|
#include "StdAfx.h"
#include "mmgr.h"
#include "Sound.h"
#include <cstdlib>
#include <cmath>
#include <alc.h>
#include <boost/cstdint.hpp>
#include "SoundSource.h"
#include "SoundBuffer.h"
#include "SoundItem.h"
#include "AudioChannel.h"
#include "Music.h"
#include "ALShared.h"
#include "Music.h"
#include "LogOutput.h"
#include "TimeProfiler.h"
#include "ConfigHandler.h"
#include "Exceptions.h"
#include "FileSystem/FileHandler.h"
#include "Platform/errorhandler.h"
#include "Lua/LuaParser.h"
CSound* sound = NULL;
CSound::CSound() : prevVelocity(0.0, 0.0, 0.0), numEmptyPlayRequests(0), numAbortedPlays(0), soundThread(NULL)
{
boost::mutex::scoped_lock lck(soundMutex);
mute = false;
appIsIconified = false;
int maxSounds = configHandler->Get("MaxSounds", 128);
pitchAdjust = configHandler->Get("PitchAdjust", false);
masterVolume = configHandler->Get("snd_volmaster", 60) * 0.01f;
Channels::General.SetVolume(configHandler->Get("snd_volgeneral", 100 ) * 0.01f);
Channels::UnitReply.SetVolume(configHandler->Get("snd_volunitreply", 100 ) * 0.01f);
Channels::UnitReply.SetMaxEmmits(1);
Channels::Battle.SetVolume(configHandler->Get("snd_volbattle", 100 ) * 0.01f);
Channels::UserInterface.SetVolume(configHandler->Get("snd_volui", 100 ) * 0.01f);
Channels::BGMusic.SetVolume(configHandler->Get("snd_volmusic", 100 ) * 0.01f);
SoundBuffer::Initialise();
soundItemDef temp;
temp["name"] = "EmptySource";
SoundItem* empty = new SoundItem(SoundBuffer::GetById(0), temp);
sounds.push_back(empty);
if (maxSounds <= 0)
{
LogObject(LOG_SOUND) << "MaxSounds set to 0, sound is disabled";
}
else
soundThread = new boost::thread(boost::bind(&CSound::StartThread, this, maxSounds));
configHandler->NotifyOnChange(this);
}
CSound::~CSound()
{
if (soundThread)
{
soundThread->interrupt();
soundThread->join();
delete soundThread;
soundThread = 0;
}
sounds.clear();
SoundBuffer::Deinitialise();
}
bool CSound::HasSoundItem(const std::string& name)
{
soundMapT::const_iterator it = soundMap.find(name);
if (it != soundMap.end())
{
return true;
}
else
{
soundItemDefMap::const_iterator it = soundItemDefs.find(name);
if (it != soundItemDefs.end())
return true;
else
return false;
}
}
size_t CSound::GetSoundId(const std::string& name, bool hardFail)
{
boost::mutex::scoped_lock lck(soundMutex);
if (sources.empty())
return 0;
soundMapT::const_iterator it = soundMap.find(name);
if (it != soundMap.end())
{
// sounditem found
return it->second;
}
else
{
soundItemDefMap::const_iterator itemDefIt = soundItemDefs.find(name);
if (itemDefIt != soundItemDefs.end())
{
return MakeItemFromDef(itemDefIt->second);
}
else
{
if (LoadSoundBuffer(name, hardFail) > 0) // maybe raw filename?
{
soundItemDef temp = defaultItem;
temp["file"] = name;
return MakeItemFromDef(temp);
}
else
{
if (hardFail)
{
ErrorMessageBox("Couldn't open wav file", name, 0);
return 0;
}
else
{
LogObject(LOG_SOUND) << "CSound::GetSoundId: could not find sound: " << name;
return 0;
}
}
}
}
}
SoundSource* CSound::GetNextBestSource(bool lock)
{
if (sources.empty())
return NULL;
sourceVecT::iterator bestPos = sources.begin();
for (sourceVecT::iterator it = sources.begin(); it != sources.end(); ++it)
{
if (!it->IsPlaying())
{
return &(*it); //argh
}
else if (it->GetCurrentPriority() <= bestPos->GetCurrentPriority())
{
bestPos = it;
}
}
return &(*bestPos);
}
void CSound::PitchAdjust(const float newPitch)
{
boost::mutex::scoped_lock lck(soundMutex);
if (pitchAdjust)
SoundSource::SetPitch(newPitch);
}
void CSound::ConfigNotify(const std::string& key, const std::string& value)
{
boost::mutex::scoped_lock lck(soundMutex);
if (key == "snd_volmaster")
{
masterVolume = std::atoi(value.c_str()) * 0.01f;
if (!mute && !appIsIconified)
alListenerf(AL_GAIN, masterVolume);
}
else if (key == "snd_volgeneral")
{
Channels::General.SetVolume(std::atoi(value.c_str()) * 0.01f);
}
else if (key == "snd_volunitreply")
{
Channels::UnitReply.SetVolume(std::atoi(value.c_str()) * 0.01f);
}
else if (key == "snd_volbattle")
{
Channels::Battle.SetVolume(std::atoi(value.c_str()) * 0.01f);
}
else if (key == "snd_volui")
{
Channels::UserInterface.SetVolume(std::atoi(value.c_str()) * 0.01f);
}
else if (key == "snd_volmusic")
{
Channels::BGMusic.SetVolume(std::atoi(value.c_str()) * 0.01f);
}
else if (key == "PitchAdjust")
{
bool tempPitchAdjust = (std::atoi(value.c_str()) != 0);
if (!tempPitchAdjust)
PitchAdjust(1.0);
pitchAdjust = tempPitchAdjust;
}
}
bool CSound::Mute()
{
boost::mutex::scoped_lock lck(soundMutex);
mute = !mute;
if (mute)
alListenerf(AL_GAIN, 0.0);
else
alListenerf(AL_GAIN, masterVolume);
return mute;
}
bool CSound::IsMuted() const
{
return mute;
}
void CSound::Iconified(bool state)
{
boost::mutex::scoped_lock lck(soundMutex);
if (appIsIconified != state && !mute)
{
if (state == false)
alListenerf(AL_GAIN, masterVolume);
else if (state == true)
alListenerf(AL_GAIN, 0.0);
}
appIsIconified = state;
}
void CSound::PlaySample(size_t id, const float3& p, const float3& velocity, float volume, bool relative)
{
boost::mutex::scoped_lock lck(soundMutex);
if (sources.empty() || volume == 0.0f)
return;
if (id == 0)
{
numEmptyPlayRequests++;
return;
}
if (p.distance(myPos) > sounds[id].MaxDistance())
{
if (!relative)
return;
else
LogObject(LOG_SOUND) << "CSound::PlaySample: maxdist ignored for relative payback: " << sounds[id].Name();
}
SoundSource* best = GetNextBestSource(false);
if (best && (!best->IsPlaying() || (best->GetCurrentPriority() <= 0 && best->GetCurrentPriority() < sounds[id].GetPriority())))
{
if (best->IsPlaying())
++numAbortedPlays;
best->Play(&sounds[id], p, velocity, volume, relative);
}
CheckError("CSound::PlaySample");
}
void CSound::StartThread(int maxSounds)
{
try
{
{
boost::mutex::scoped_lock lck(soundMutex);
//TODO: device choosing, like this:
//const ALchar* deviceName = "ALSA Software on SB Live 5.1 [SB0220] [Multichannel Playback]";
const ALchar* deviceName = NULL;
ALCdevice *device = alcOpenDevice(deviceName);
if (device == NULL)
{
LogObject(LOG_SOUND) << "Could not open a sounddevice, disabling sounds";
CheckError("CSound::InitAL");
return;
}
else
{
ALCcontext *context = alcCreateContext(device, NULL);
if (context != NULL)
{
alcMakeContextCurrent(context);
CheckError("CSound::CreateContext");
}
else
{
alcCloseDevice(device);
LogObject(LOG_SOUND) << "Could not create OpenAL audio context";
return;
}
}
LogObject(LOG_SOUND) << "OpenAL info:\n";
LogObject(LOG_SOUND) << " Vendor: " << (const char*)alGetString(AL_VENDOR );
LogObject(LOG_SOUND) << " Version: " << (const char*)alGetString(AL_VERSION);
LogObject(LOG_SOUND) << " Renderer: " << (const char*)alGetString(AL_RENDERER);
LogObject(LOG_SOUND) << " AL Extensions: " << (const char*)alGetString(AL_EXTENSIONS);
LogObject(LOG_SOUND) << " ALC Extensions: " << (const char*)alcGetString(device, ALC_EXTENSIONS);
if(alcIsExtensionPresent(NULL, "ALC_ENUMERATION_EXT"))
{
LogObject(LOG_SOUND) << " Device: " << alcGetString(device, ALC_DEVICE_SPECIFIER);
const char *s = alcGetString(NULL, ALC_DEVICE_SPECIFIER);
LogObject(LOG_SOUND) << " Available Devices: ";
while (*s != '\0')
{
LogObject(LOG_SOUND) << " " << s;
while (*s++ != '\0')
;
}
}
// Generate sound sources
for (int i = 0; i < maxSounds; i++)
{
SoundSource* thenewone = new SoundSource();
if (thenewone->IsValid())
{
sources.push_back(thenewone);
}
else
{
maxSounds = std::max(i-1,0);
LogObject(LOG_SOUND) << "Your hardware/driver can not handle more than " << maxSounds << " soundsources";
delete thenewone;
break;
}
}
// Set distance model (sound attenuation)
alDistanceModel(AL_INVERSE_DISTANCE_CLAMPED);
//alDopplerFactor(1.0);
alListenerf(AL_GAIN, masterVolume);
}
configHandler->Set("MaxSounds", maxSounds);
while (true)
{
boost::this_thread::sleep(boost::posix_time::millisec(50)); // sleep
boost::mutex::scoped_lock lck(soundMutex); // lock
Update(); // call update
}
}
catch(boost::thread_interrupted const&)
{
sources.clear(); // delete all sources
ALCcontext *curcontext = alcGetCurrentContext();
ALCdevice *curdevice = alcGetContextsDevice(curcontext);
alcMakeContextCurrent(NULL);
alcDestroyContext(curcontext);
alcCloseDevice(curdevice);
}
}
void CSound::Update()
{
for (sourceVecT::iterator it = sources.begin(); it != sources.end(); ++it)
it->Update();
CheckError("CSound::Update");
}
size_t CSound::MakeItemFromDef(const soundItemDef& itemDef)
{
const size_t newid = sounds.size();
soundItemDef::const_iterator it = itemDef.find("file");
boost::shared_ptr<SoundBuffer> buffer = SoundBuffer::GetById(LoadSoundBuffer(it->second, false));
if (buffer)
{
SoundItem* buf = new SoundItem(buffer, itemDef);
sounds.push_back(buf);
soundMap[buf->Name()] = newid;
return newid;
}
else
return 0;
}
void CSound::UpdateListener(const float3& campos, const float3& camdir, const float3& camup, float lastFrameTime)
{
boost::mutex::scoped_lock lck(soundMutex);
if (sources.empty())
return;
const float3 prevPos = myPos;
myPos = campos;
alListener3f(AL_POSITION, myPos.x, myPos.y, myPos.z);
SoundSource::SetHeightRolloffModifer(std::min(5.*600./std::max(campos.y, 200.f), 5.0));
//TODO: reactivate when it does not go crazy on camera "teleportation" or fast movement,
// like when clicked on minimap
//const float3 velocity = (myPos - prevPos)*(10.0/myPos.y)/(lastFrameTime);
//const float3 velocityAvg = (velocity+prevVelocity)/2;
//alListener3f(AL_VELOCITY, velocityAvg.x, velocityAvg.y , velocityAvg.z);
//prevVelocity = velocity;
ALfloat ListenerOri[] = {camdir.x, camdir.y, camdir.z, camup.x, camup.y, camup.z};
alListenerfv(AL_ORIENTATION, ListenerOri);
CheckError("CSound::UpdateListener");
}
void CSound::PrintDebugInfo()
{
boost::mutex::scoped_lock lck(soundMutex);
LogObject(LOG_SOUND) << "OpenAL Sound System:";
LogObject(LOG_SOUND) << "# SoundSources: " << sources.size();
LogObject(LOG_SOUND) << "# SoundBuffers: " << SoundBuffer::Count();
LogObject(LOG_SOUND) << "# reserved for buffers: " << (SoundBuffer::AllocedSize()/1024) << " kB";
LogObject(LOG_SOUND) << "# PlayRequests for empty sound: " << numEmptyPlayRequests;
LogObject(LOG_SOUND) << "# Samples disrupted: " << numAbortedPlays;
LogObject(LOG_SOUND) << "# SoundItems: " << sounds.size();
}
bool CSound::LoadSoundDefs(const std::string& filename)
{
//! can be called from LuaUnsyncedCtrl too
boost::mutex::scoped_lock lck(soundMutex);
LuaParser parser(filename, SPRING_VFS_MOD, SPRING_VFS_ZIP);
parser.SetLowerKeys(false);
parser.SetLowerCppKeys(false);
parser.Execute();
if (!parser.IsValid())
{
LogObject(LOG_SOUND) << "Could not load " << filename << ": " << parser.GetErrorLog();
return false;
}
else
{
const LuaTable soundRoot = parser.GetRoot();
const LuaTable soundItemTable = soundRoot.SubTable("SoundItems");
if (!soundItemTable.IsValid())
{
LogObject(LOG_SOUND) << "CSound(): could not parse SoundItems table in " << filename;
return false;
}
else
{
std::vector<std::string> keys;
soundItemTable.GetKeys(keys);
for (std::vector<std::string>::const_iterator it = keys.begin(); it != keys.end(); ++it)
{
const std::string name(*it);
soundItemDef bufmap;
const LuaTable buf(soundItemTable.SubTable(*it));
buf.GetMap(bufmap);
bufmap["name"] = name;
soundItemDefMap::const_iterator sit = soundItemDefs.find(name);
if (sit != soundItemDefs.end())
LogObject(LOG_SOUND) << "Sound " << name << " gets overwritten by " << filename;
soundItemDef::const_iterator inspec = bufmap.find("file");
if (inspec == bufmap.end()) // no file, drop
LogObject(LOG_SOUND) << "Sound " << name << " is missing file tag (ignoring)";
else
soundItemDefs[name] = bufmap;
if (buf.KeyExists("preload"))
{
MakeItemFromDef(bufmap);
}
}
LogObject(LOG_SOUND) << " parsed " << keys.size() << " sounds from " << filename;
}
}
return true;
}
//! only used internally, locked in caller's scope
size_t CSound::LoadSoundBuffer(const std::string& path, bool hardFail)
{
const size_t id = SoundBuffer::GetId(path);
if (id > 0)
{
return id; // file is loaded already
}
else
{
CFileHandler file(path);
if (!file.FileExists())
{
if (hardFail) {
handleerror(0, "Couldn't open audio file", path.c_str(),0);
}
else
LogObject(LOG_SOUND) << "Unable to open audio file: " << path;
return 0;
}
else
{
}
std::vector<boost::uint8_t> buf(file.FileSize());
file.Read(&buf[0], file.FileSize());
boost::shared_ptr<SoundBuffer> buffer(new SoundBuffer());
bool success = false;
const std::string ending = file.GetFileExt();
if (ending == "wav")
success = buffer->LoadWAV(path, buf, hardFail);
else if (ending == "ogg")
success = buffer->LoadVorbis(path, buf, hardFail);
else
{
LogObject(LOG_SOUND) << "CSound::LoadALBuffer: unknown audio format: " << ending;
}
CheckError("CSound::LoadALBuffer");
if (!success)
{
LogObject(LOG_SOUND) << "Failed to load file: " << path;
return 0;
}
else
{
return SoundBuffer::Insert(buffer);
}
}
}
void CSound::NewFrame()
{
Channels::General.UpdateFrame();
Channels::Battle.UpdateFrame();
Channels::UnitReply.UpdateFrame();
Channels::UserInterface.UpdateFrame();
}
|