2012-04-13 21:54:08 +02:00
|
|
|
/*
|
2017-01-13 11:47:07 +01:00
|
|
|
* Copyright (c) 2010-2017 OTClient <https://github.com/edubart/otclient>
|
2012-04-13 21:54:08 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "soundfile.h"
|
|
|
|
#include "oggsoundfile.h"
|
|
|
|
#include <framework/core/resourcemanager.h>
|
|
|
|
|
|
|
|
SoundFile::SoundFile(const FileStreamPtr& fileStream)
|
|
|
|
{
|
|
|
|
m_file = fileStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
SoundFilePtr SoundFile::loadSoundFile(const std::string& filename)
|
|
|
|
{
|
2013-03-04 22:56:22 +01:00
|
|
|
stdext::timer t;
|
2012-04-13 21:54:08 +02:00
|
|
|
FileStreamPtr file = g_resources.openFile(filename);
|
2013-03-04 22:56:22 +01:00
|
|
|
if(!file)
|
|
|
|
stdext::throw_exception(stdext::format("unable to open %s", filename));
|
2012-04-13 21:54:08 +02:00
|
|
|
|
2012-04-24 23:05:46 +02:00
|
|
|
// cache file buffer to avoid lags from hard drive
|
|
|
|
file->cache();
|
|
|
|
|
2012-04-13 21:54:08 +02:00
|
|
|
char magic[4];
|
|
|
|
file->read(magic, 4);
|
|
|
|
file->seek(0);
|
|
|
|
|
|
|
|
SoundFilePtr soundFile;
|
|
|
|
if(strncmp(magic, "OggS", 4) == 0) {
|
|
|
|
OggSoundFilePtr oggSoundFile = OggSoundFilePtr(new OggSoundFile(file));
|
|
|
|
if(oggSoundFile->prepareOgg())
|
|
|
|
soundFile = oggSoundFile;
|
|
|
|
} else
|
2013-03-04 22:56:22 +01:00
|
|
|
stdext::throw_exception(stdext::format("unknown sound file format %s", filename));
|
2012-04-13 21:54:08 +02:00
|
|
|
|
|
|
|
return soundFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALenum SoundFile::getSampleFormat()
|
|
|
|
{
|
|
|
|
if(m_channels == 2) {
|
|
|
|
if(m_bps == 16)
|
|
|
|
return AL_FORMAT_STEREO16;
|
|
|
|
else if(m_bps == 8)
|
|
|
|
return AL_FORMAT_STEREO8;
|
|
|
|
} else if(m_channels == 1) {
|
|
|
|
if(m_bps == 16)
|
|
|
|
return AL_FORMAT_MONO16;
|
|
|
|
else if(m_bps == 8)
|
|
|
|
return AL_FORMAT_MONO8;
|
|
|
|
}
|
|
|
|
return AL_UNDETERMINED;
|
|
|
|
}
|