Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 36 additions & 4 deletions jme3-lwjgl/src/main/java/com/jme3/audio/lwjgl/LwjglALC.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,52 @@

import com.jme3.audio.openal.ALC;
import java.nio.IntBuffer;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.lwjgl.LWJGLException;
import org.lwjgl.openal.AL;
import org.lwjgl.openal.ALC10;
import org.lwjgl.openal.ALCcontext;
import org.lwjgl.openal.ALCdevice;

public class LwjglALC implements ALC {
/**
* message logger for this class
*/
private static final Logger logger
= Logger.getLogger(LwjglALC.class.getName());

@Override
public void createALC() {
try {
AL.create();
} catch (LWJGLException ex) {
throw new RuntimeException(ex);
int numRetriesRemaining = 4;
int retryDelayMsec = 100; // 0.1-second delay between retries

while (true) {
try {
AL.create();
break;

} catch (LWJGLException exception1) {
if (numRetriesRemaining < 1) {
throw new RuntimeException(exception1);
}

// Retry to mitigate JME Issue 1383.
--numRetriesRemaining;
String message = String.format(
"Caught an LWJGLException from AL.create(). "
+ "Will retry after %d msec, "
+ "with %d more retr%s remaining.%n",
retryDelayMsec,
numRetriesRemaining,
(numRetriesRemaining == 1) ? "y" : "ies");
logger.log(Level.WARNING, message);

try {
Thread.sleep(retryDelayMsec);
} catch (InterruptedException exception2) {
}
}
}
}

Expand Down