INFO: Camera created.
Mar 31, 2009 9:20:28 PM class com.jmex.audio.openal.OpenALSystem OpenALSystem()
SEVERE: Exception
org.lwjgl.LWJGLException: Could not locate OpenAL library.
at org.lwjgl.openal.AL.create(AL.java:153)
at org.lwjgl.openal.AL.create(AL.java:104)
at org.lwjgl.openal.AL.create(AL.java:191)
at com.jmex.audio.openal.OpenALSystem.<init>(OpenALSystem.java:77)
at com.jmex.audio.AudioSystem.getSystem(AudioSystem.java:63)
at com.jmex.game.StandardGame.initSound(StandardGame.java:338)
at com.jmex.game.StandardGame.initSystem(StandardGame.java:320)
at com.jmex.game.StandardGame.run(StandardGame.java:210)
at java.lang.Thread.run(Thread.java:619)
Mar 31, 2009 9:20:28 PM com.jmex.game.DefaultUncaughtExceptionHandler uncaughtException
SEVERE: Main game loop broken by uncaught exception
java.lang.UnsatisfiedLinkError: org.lwjgl.openal.AL10.nalListener3f(IFFF)V
at org.lwjgl.openal.AL10.nalListener3f(Native Method)
at org.lwjgl.openal.AL10.alListener3f(AL10.java:675)
at com.jmex.audio.openal.OpenALEar.update(OpenALEar.java:61)
at com.jmex.audio.Ear.trackOrientation(Ear.java:106)
at com.jmex.game.StandardGame.initSound(StandardGame.java:338)
at com.jmex.game.StandardGame.initSystem(StandardGame.java:320)
at com.jmex.game.StandardGame.run(StandardGame.java:210)
at java.lang.Thread.run(Thread.java:619)
I keep getting this exception and I've tried everything. The paths are correct, the library is there, etc, etc.. It seems as though nalListener3f is not implemented in this version of OpenAL32.dll and the error simply incorrectly reports that the entire library is not found.
My sound card is just fine, listening to music right now. I used to be able to run jME on this machine before. I tried copying the libraries into /windows/system32, adding -Djava.library.path, defining native library path under build path in eclipse of lwgl.jar library, etc.. Finds all the other libraries fine. I build jME from source and used the included libraries in lib directory. I downloaded brand new lwgl and OpenAL libraries, linked those. I downloaded the pre-build jME package and used its included libraries. Tried jNPL demos, install and the window flashes and no error reported (I'm assuming its in some log).
What else can I try?