2009-08-09 21:16:39 +00:00
|
|
|
/*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Copyright 2009-2011 Jörg Hermann Müller
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
|
|
|
* This file is part of AudaSpace.
|
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Audaspace 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 2 of the License, or
|
2009-08-09 21:16:39 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* AudaSpace 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
|
2011-02-18 23:47:37 +00:00
|
|
|
* GNU General Public License for more details.
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Audaspace; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2009-08-09 21:16:39 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-25 10:21:56 +00:00
|
|
|
/** \file audaspace/FX/AUD_FaderReader.cpp
|
|
|
|
* \ingroup audfx
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
#include "AUD_FaderReader.h"
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
2011-06-03 23:28:57 +00:00
|
|
|
AUD_FaderReader::AUD_FaderReader(AUD_Reference<AUD_IReader> reader, AUD_FadeType type,
|
2009-08-09 21:16:39 +00:00
|
|
|
float start,float length) :
|
|
|
|
AUD_EffectReader(reader),
|
|
|
|
m_type(type),
|
|
|
|
m_start(start),
|
2011-06-14 12:13:19 +00:00
|
|
|
m_length(length)
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-06-21 20:14:53 +00:00
|
|
|
void AUD_FaderReader::read(int& length, bool& eos, sample_t* buffer)
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
int position = m_reader->getPosition();
|
|
|
|
AUD_Specs specs = m_reader->getSpecs();
|
|
|
|
int samplesize = AUD_SAMPLE_SIZE(specs);
|
|
|
|
|
2011-06-21 20:14:53 +00:00
|
|
|
m_reader->read(length, eos, buffer);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
if((position + length) / (float)specs.rate <= m_start)
|
|
|
|
{
|
|
|
|
if(m_type != AUD_FADE_OUT)
|
|
|
|
{
|
2011-06-14 12:13:19 +00:00
|
|
|
memset(buffer, 0, length * samplesize);
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(position / (float)specs.rate >= m_start+m_length)
|
|
|
|
{
|
|
|
|
if(m_type == AUD_FADE_OUT)
|
|
|
|
{
|
2011-06-14 12:13:19 +00:00
|
|
|
memset(buffer, 0, length * samplesize);
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-08 13:55:31 +00:00
|
|
|
float volume = 1.0f;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
2010-01-01 05:09:30 +00:00
|
|
|
for(int i = 0; i < length * specs.channels; i++)
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
2010-01-01 05:09:30 +00:00
|
|
|
if(i % specs.channels == 0)
|
|
|
|
{
|
|
|
|
volume = (((position+i)/(float)specs.rate)-m_start) / m_length;
|
|
|
|
if(volume > 1.0f)
|
|
|
|
volume = 1.0f;
|
|
|
|
else if(volume < 0.0f)
|
|
|
|
volume = 0.0f;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
2010-01-01 05:09:30 +00:00
|
|
|
if(m_type == AUD_FADE_OUT)
|
|
|
|
volume = 1.0f - volume;
|
|
|
|
}
|
2009-08-09 21:16:39 +00:00
|
|
|
|
2011-06-14 12:13:19 +00:00
|
|
|
buffer[i] = buffer[i] * volume;
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|