FS#113 - Copy Attenuation and MinDistance members in sf::Sound's copy constructor

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1175 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2009-07-12 19:14:00 +00:00
parent ed0cf87e28
commit 8e90f147e4

View File

@ -46,15 +46,15 @@ Sound::Sound()
/// Construct the sound from its parameters
////////////////////////////////////////////////////////////
Sound::Sound(const SoundBuffer& Buffer, bool Loop, float Pitch, float Volume, const Vector3f& Position) :
myBuffer(&Buffer)
myBuffer(NULL)
{
ALCheck(alGenSources(1, &mySource));
ALCheck(alSourcei (mySource, AL_BUFFER, Buffer.myBuffer));
ALCheck(alSourcei (mySource, AL_LOOPING, Loop));
ALCheck(alSourcef (mySource, AL_PITCH, Pitch));
ALCheck(alSourcef (mySource, AL_GAIN, Volume * 0.01f));
ALCheck(alSource3f(mySource, AL_POSITION, Position.x, Position.y, Position.z));
SetBuffer(Buffer);
SetLoop(Loop);
SetPitch(Pitch);
SetVolume(Volume);
SetPosition(Position);
}
@ -63,15 +63,19 @@ myBuffer(&Buffer)
////////////////////////////////////////////////////////////
Sound::Sound(const Sound& Copy) :
AudioResource(Copy),
myBuffer (Copy.myBuffer)
myBuffer(NULL)
{
ALCheck(alGenSources(1, &mySource));
ALCheck(alSourcei (mySource, AL_BUFFER, myBuffer ? myBuffer->myBuffer : 0));
ALCheck(alSourcei (mySource, AL_LOOPING, Copy.GetLoop()));
ALCheck(alSourcef (mySource, AL_PITCH, Copy.GetPitch()));
ALCheck(alSourcef (mySource, AL_GAIN, Copy.GetVolume() * 0.01f));
ALCheck(alSource3f(mySource, AL_POSITION, Copy.GetPosition().x, Copy.GetPosition().y, Copy.GetPosition().z));
if (Copy.myBuffer)
SetBuffer(*Copy.myBuffer);
SetLoop(Copy.GetLoop());
SetPitch(Copy.GetPitch());
SetVolume(Copy.GetVolume());
SetPosition(Copy.GetPosition());
SetRelativeToListener(Copy.IsRelativeToListener());
SetMinDistance(Copy.GetMinDistance());
SetAttenuation(Copy.GetAttenuation());
}