SFML community forums
Help => Audio => Topic started by: Xander314 on July 08, 2011, 10:33:07 am
-
I had always assumed this file to be necessary to any application using audio, or at least those using positional audio. However, the following code runs perfectly happily when linked statically to SFML and provided only with libsndfile-1.dll, not openal32.dl.
When is openal32.dll necessary?
#include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
int main()
{
sf::RenderWindow Window(sf::VideoMode(800, 600, 32), "SFML Sample Application");
sf::Image Image;
Image.LoadFromFile("image.png");
sf::Sprite Sprite(Image);
Sprite.Resize(800.0f, 600.0f);
sf::SoundBuffer Buffer;
Buffer.LoadFromFile("sound.wav");
sf::Sound Sound(Buffer, true);
Sound.SetPosition(5.0f, 1.0f, 10.0f);
Sound.Play();
sf::Listener::SetPosition(0.0f, 0.0f, 0.0f);
while (Window.IsOpened())
{
sf::Event Event;
while (Window.PollEvent(Event))
{
switch (Event.Type)
{
case sf::Event::Closed:
Window.Close();
break;
default:
break;
}
}
Window.Clear();
Window.Draw(Sprite);
Window.Display();
}
return 0;
}
-
It is necessary, but you might already have (a bad) one installed in Windows/System32.
-
Oh yes, so I do ;)
bad
As in outdated?
If I provide the other one in the project directory, will the application find that one before it searches system32?
-
As in outdated?
As in "outdated" and "buggy" ;)
If I provide the other one in the project directory, will the application find that one before it searches system32?
Yes.
-
As in "outdated" and "buggy"
Mostly, I find that outdated implies buggy :P
Thanks for the help :)