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
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program 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.
*
* This program 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/>.
*
*/
/*
* Copyright (C) 2006-2010 - Frictional Games
*
* This file is part of HPL1 Engine.
*/
#include "hpl1/engine/impl/OpenALSoundEnvironment.h"
#include "hpl1/engine/impl/tinyXML/tinyxml.h"
namespace hpl {
cOpenALSoundEnvironment::cOpenALSoundEnvironment() /*:
mfDensity(1.0f),
mfDiffusion(1.0f),
mfGain(0.32f),
mfGainHF(0.89f),
mfGainLF(0.0f),
mfDecayTime(1.49f),
mfDecayHFRatio(0.83f),
mfDecayLFRatio(1.0f),
mfReflectionsGain(0.05f),
mfReflectionsDelay(0.007f),
mfLateReverbGain(1.25f),
mfLateReverbDelay(0.011f),
mfEchoTime(0.25f),
mfEchoDepth(0.0f),
mfModulationTime(0.25f),
mfModulationDepth(0.0f),
mfAirAbsorptionGainHF(0.994f),
mfHFReference(5000.0f),
mfLFReference(250.0f),
mfRoomRolloffFactor(0.0f),
mbDecayHFLimit(true)*/
{
}
cOpenALSoundEnvironment::~cOpenALSoundEnvironment() {
}
bool cOpenALSoundEnvironment::CreateFromFile(const tString &asFile) {
#if 0
tString strType;
TiXmlDocument doc;
if (!doc.LoadFile(asFile.c_str()))
return false;
TiXmlElement* pMain = doc.FirstChildElement("SoundEnvironment")->FirstChildElement("Main");
if (pMain)
{
strType = pMain->Attribute("Type");
mstrName = pMain->Attribute("Name");
}
float* pfTemp;
TiXmlElement* pParams = doc.FirstChildElement("SoundEnvironment")->FirstChildElement("Parameters");
if ( (pParams == NULL) || (strType.compare("OpenAL")!=0) )
{
doc.Clear();
return false;
}
mfDensity = cString::ToFloat(pParams->Attribute("Density"),0);
mfDiffusion = cString::ToFloat(pParams->Attribute("Diffusion"),0);
mfGain = cString::ToFloat(pParams->Attribute("Gain"),0);
mfGainHF = cString::ToFloat(pParams->Attribute("GainHF"),0);
mfGainLF = cString::ToFloat(pParams->Attribute("GainLF"),0);
mfDecayTime = cString::ToFloat(pParams->Attribute("DecayTime"),0);
mfDecayHFRatio = cString::ToFloat (pParams->Attribute("DecayHFRatio"),0);
mfDecayLFRatio = cString::ToFloat (pParams->Attribute("DecayLFRatio"),0);
mfReflectionsGain = cString::ToFloat(pParams->Attribute("ReflectionsGain"),0);
mfReflectionsDelay = cString::ToFloat(pParams->Attribute("ReflectionsDelay"),0);
pfTemp = cString::ToVector3f(pParams->Attribute("ReflectionsPan"),cVector3f(0)).v;
mfReflectionsPan[0] = pfTemp[0];
mfReflectionsPan[1] = pfTemp[1];
mfReflectionsPan[2] = pfTemp[2];
mfLateReverbGain = cString::ToFloat(pParams->Attribute("LateReverbGain"),0);
mfLateReverbDelay = cString::ToFloat(pParams->Attribute("LateReverbDelay"),0);
pfTemp = cString::ToVector3f(pParams->Attribute("LateReverbPan"),cVector3f(0)).v;
mfLateReverbPan[0] = pfTemp[0];
mfLateReverbPan[1] = pfTemp[1];
mfLateReverbPan[2] = pfTemp[2];
mfEchoTime = cString::ToFloat(pParams->Attribute("EchoTime"),0);
mfEchoDepth = cString::ToFloat(pParams->Attribute("EchoDepth"),0);
mfModulationTime = cString::ToFloat(pParams->Attribute("ModulationTime"),0);
mfModulationDepth = cString::ToFloat(pParams->Attribute("ModulationDepth"),0);
mfAirAbsorptionGainHF = cString::ToFloat(pParams->Attribute("AirAbsorptionGainHF"),0);
mfHFReference = cString::ToFloat(pParams->Attribute("HFReference"),0);
mfLFReference = cString::ToFloat(pParams->Attribute("LFReference"),0);
mfRoomRolloffFactor =cString::ToFloat(pParams->Attribute("RoomRolloffFactor"),0);
mbDecayHFLimit = cString::ToInt(pParams->Attribute("DecayHFLimit"),0);
doc.Clear();
pParams = NULL;
#endif
return true;
}
} // namespace hpl
|