private SonarSoundEngine engine;
private TreeMap<LDSSound,SonarSample> soundMapping = new TreeMap<LDSSound, SonarSample>();
public LDSAudioEngine(){
try{
engine = new SonarSoundEngine(64);
loadSounds();
engine.run();
}catch(LineUnavailableException e){
//Log error
}