本文整理汇总了Java中org.lwjgl.openal.ALCdevice类的典型用法代码示例。如果您正苦于以下问题:Java ALCdevice类的具体用法?Java ALCdevice怎么用?Java ALCdevice使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ALCdevice类属于org.lwjgl.openal包,在下文中一共展示了ALCdevice类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: alcGetInt
import org.lwjgl.openal.ALCdevice; //导入依赖的package包/类
private static int alcGetInt(ALCdevice device, int pname)
{
ByteBuffer byteBuffer = ByteBuffer.allocateDirect(4);
IntBuffer intBuffer = byteBuffer.asIntBuffer();
//ALC10.alcGetInteger(device, pname, intBuffer);
return intBuffer.get(0);
}
开发者ID:sonicether,项目名称:Sound-Physics,代码行数:10,代码来源:SoundPhysics.java
示例2: printALCInfo
import org.lwjgl.openal.ALCdevice; //导入依赖的package包/类
private void printALCInfo() {
IntBuffer version = BufferUtils.createIntBuffer(2);
ALCdevice device;
if(ALC10.alcIsExtensionPresent(null, "ALC_ENUMERATION_EXT")) {
if(ALC10.alcIsExtensionPresent(null, "ALC_ENUMERATE_ALL_EXT")) {
printDevices(ALC11.ALC_ALL_DEVICES_SPECIFIER, "playback");
} else {
printDevices(ALC10.ALC_DEVICE_SPECIFIER, "playback");
}
printDevices(ALC11.ALC_CAPTURE_DEVICE_SPECIFIER, "capture");
} else {
System.out.println("No device enumeration available");
}
device = ALC10.alcGetContextsDevice(ALC10.alcGetCurrentContext());
checkForErrors();
System.out.println("Default playback device: " + ALC10.alcGetString(device, ALC10.ALC_DEFAULT_DEVICE_SPECIFIER));
System.out.println("Default capture device: " + ALC10.alcGetString(device, ALC11.ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER));
ALC10.alcGetInteger(AL.getDevice(), ALC10.ALC_MAJOR_VERSION, version);
ALC10.alcGetInteger(AL.getDevice(), ALC10.ALC_MINOR_VERSION, (IntBuffer) version.position(1));
checkForErrors();
System.out.println("ALC version: " + version.get(0) + "." + version.get(1));
System.out.println("ALC extensions:");
String[] extensions = ALC10.alcGetString(device, ALC10.ALC_EXTENSIONS).split(" ");
for ( String extension : extensions ) {
if ( extension.trim().length() == 0 ) {
continue;
}
System.out.println(" " + extension);
}
checkForErrors();
}
开发者ID:mleoking,项目名称:PhET,代码行数:39,代码来源:OpenALInfo.java
示例3: setupEFX
import org.lwjgl.openal.ALCdevice; //导入依赖的package包/类
private static void setupEFX()
{
//Get current context and device
ALCcontext currentContext = ALC10.alcGetCurrentContext();
ALCdevice currentDevice = ALC10.alcGetContextsDevice(currentContext);
if (ALC10.alcIsExtensionPresent(currentDevice, "ALC_EXT_EFX"))
{
log("EFX Extension recognized.");
}
else
{
logError("EFX Extension not found on current device. Aborting.");
return;
}
//Create auxiliary effect slots
auxFXSlot0 = EFX10.alGenAuxiliaryEffectSlots();
log("Aux slot " + auxFXSlot0 + " created");
EFX10.alAuxiliaryEffectSloti(auxFXSlot0, EFX10.AL_EFFECTSLOT_AUXILIARY_SEND_AUTO, AL10.AL_TRUE);
auxFXSlot1 = EFX10.alGenAuxiliaryEffectSlots();
log("Aux slot " + auxFXSlot1 + " created");
EFX10.alAuxiliaryEffectSloti(auxFXSlot1, EFX10.AL_EFFECTSLOT_AUXILIARY_SEND_AUTO, AL10.AL_TRUE);
auxFXSlot2 = EFX10.alGenAuxiliaryEffectSlots();
log("Aux slot " + auxFXSlot2 + " created");
EFX10.alAuxiliaryEffectSloti(auxFXSlot2, EFX10.AL_EFFECTSLOT_AUXILIARY_SEND_AUTO, AL10.AL_TRUE);
auxFXSlot3 = EFX10.alGenAuxiliaryEffectSlots();
log("Aux slot " + auxFXSlot3 + " created");
EFX10.alAuxiliaryEffectSloti(auxFXSlot3, EFX10.AL_EFFECTSLOT_AUXILIARY_SEND_AUTO, AL10.AL_TRUE);
checkErrorLog("Failed creating auxiliary effect slots!");
//Create effect objects
reverb0 = EFX10.alGenEffects(); //Create effect object
EFX10.alEffecti(reverb0, EFX10.AL_EFFECT_TYPE, EFX10.AL_EFFECT_EAXREVERB); //Set effect object to be reverb
checkErrorLog("Failed creating reverb effect slot 0!");
reverb1 = EFX10.alGenEffects(); //Create effect object
EFX10.alEffecti(reverb1, EFX10.AL_EFFECT_TYPE, EFX10.AL_EFFECT_EAXREVERB); //Set effect object to be reverb
checkErrorLog("Failed creating reverb effect slot 1!");
reverb2 = EFX10.alGenEffects(); //Create effect object
EFX10.alEffecti(reverb2, EFX10.AL_EFFECT_TYPE, EFX10.AL_EFFECT_EAXREVERB); //Set effect object to be reverb
checkErrorLog("Failed creating reverb effect slot 2!");
reverb3 = EFX10.alGenEffects(); //Create effect object
EFX10.alEffecti(reverb3, EFX10.AL_EFFECT_TYPE, EFX10.AL_EFFECT_EAXREVERB); //Set effect object to be reverb
checkErrorLog("Failed creating reverb effect slot 3!");
//Create filters
directFilter0 = EFX10.alGenFilters();
EFX10.alFilteri(directFilter0, EFX10.AL_FILTER_TYPE, EFX10.AL_FILTER_LOWPASS);
sendFilter0 = EFX10.alGenFilters();
EFX10.alFilteri(sendFilter0, EFX10.AL_FILTER_TYPE, EFX10.AL_FILTER_LOWPASS);
sendFilter1 = EFX10.alGenFilters();
EFX10.alFilteri(sendFilter1, EFX10.AL_FILTER_TYPE, EFX10.AL_FILTER_LOWPASS);
sendFilter2 = EFX10.alGenFilters();
EFX10.alFilteri(sendFilter2, EFX10.AL_FILTER_TYPE, EFX10.AL_FILTER_LOWPASS);
sendFilter3 = EFX10.alGenFilters();
EFX10.alFilteri(sendFilter3, EFX10.AL_FILTER_TYPE, EFX10.AL_FILTER_LOWPASS);
checkErrorLog("Error creating lowpass filters!");
applyConfigChanges();
//setReverbParams(ReverbParams.getReverb0(), auxFXSlot0, reverb0); //Set the global reverb parameters and apply them to the effect and effectslot
//setReverbParams(ReverbParams.getReverb1(), auxFXSlot1, reverb1); //Set the global reverb parameters and apply them to the effect and effectslot
//setReverbParams(ReverbParams.getReverb2(), auxFXSlot2, reverb2); //Set the global reverb parameters and apply them to the effect and effectslot
//setReverbParams(ReverbParams.getReverb3(), auxFXSlot3, reverb3); //Set the global reverb parameters and apply them to the effect and effectslot
}
开发者ID:sonicether,项目名称:Sound-Physics,代码行数:74,代码来源:SoundPhysics.java
示例4: execute
import org.lwjgl.openal.ALCdevice; //导入依赖的package包/类
/**
* Runs the actual test, using supplied arguments
*/
protected void execute(String[] args) {
int lastError = ALC10.ALC_NO_ERROR;
IntBuffer sampleCount = BufferUtils.createIntBuffer(1);
int state = AL10.AL_PLAYING;
int FMT = AL10.AL_FORMAT_MONO16;
int FMTSIZE = 16/8;
int FREQ = 44100;
int TIME = 5;
int SAMPS = (FREQ * TIME);
ByteBuffer buf = BufferUtils.createByteBuffer(SAMPS * FMTSIZE);
// check that capture is available
if(!ALC10.alcIsExtensionPresent(AL.getDevice(), "ALC_EXT_CAPTURE")) {
throw new OpenALException("ALC_EXT_CAPTURE extension not available");
}
// get list of devices
String[] captureDevices = ALC10.alcGetString(null, ALC11.ALC_CAPTURE_DEVICE_SPECIFIER).split("\0");
System.out.println("Available Capture Devices: ");
for(int i=0; i<captureDevices.length; i++) {
System.out.println(i + ": " + captureDevices[i]);
}
String defaultRecorder = ALC10.alcGetString(AL.getDevice(), ALC11.ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER);
System.out.println("Default capture device: " + defaultRecorder);
ALCdevice device = ALC11.alcCaptureOpenDevice(null, FREQ, FMT, SAMPS);
if(device != null) {
// record some sound
// =====================================
System.out.print("Recording using " + ALC10.alcGetString(device, ALC11.ALC_CAPTURE_DEVICE_SPECIFIER) + "...");
ALC11.alcCaptureStart(device);
while (sampleCount.get(0) < SAMPS) {
pause(1000);
ALC10.alcGetInteger(device, ALC11.ALC_CAPTURE_SAMPLES, sampleCount);
}
System.out.println("done");
ALC11.alcCaptureStop(device);
// capure the samples
ALC11.alcCaptureSamples(device, buf, SAMPS);
ALC11.alcCaptureCloseDevice(device);
// -------------------------------------
// play back recording
// ===================
IntBuffer buffers = BufferUtils.createIntBuffer(1);
IntBuffer sources = BufferUtils.createIntBuffer(1);
buffers.position(0).limit(1);
AL10.alGenBuffers(buffers);
sources.position(0).limit(1);
AL10.alGenSources(sources);
System.out.print("Playing...");
AL10.alBufferData(buffers.get(0), FMT, buf, FREQ);
AL10.alSourcei(sources.get(0), AL10.AL_BUFFER, buffers.get(0));
AL10.alSourcei(sources.get(0), AL10.AL_LOOPING, AL10.AL_FALSE);
AL10.alSourcePlay(sources.get(0));
while (state == AL10.AL_PLAYING)
{
pause(100);
state = AL10.alGetSourcei(sources.get(0), AL10.AL_SOURCE_STATE);
}
System.out.println("done");
AL10.alDeleteSources(sources);
AL10.alDeleteBuffers(buffers);
}
alExit();
}
开发者ID:mleoking,项目名称:PhET,代码行数:82,代码来源:ALCCaptureTest.java
示例5: getDevice
import org.lwjgl.openal.ALCdevice; //导入依赖的package包/类
public static ALCdevice getDevice() {
return AL.getDevice();
}
开发者ID:Blunderchips,项目名称:Dwarf2D,代码行数:4,代码来源:openAL.java
示例6: OpenALManager
import org.lwjgl.openal.ALCdevice; //导入依赖的package包/类
public OpenALManager(AudioConfig config) {
logger.info("Initializing OpenAL audio manager");
config.subscribe(configListener);
try {
AL.create();
} catch (LWJGLException e) {
throw new RuntimeException(e);
}
AL10.alGetError();
logger.info("OpenAL {} initialized!", AL10.alGetString(AL10.AL_VERSION));
ALCcontext context = ALC10.alcGetCurrentContext();
ALCdevice device = ALC10.alcGetContextsDevice(context);
logger.info("Using OpenAL: {} by {}", AL10.alGetString(AL10.AL_RENDERER), AL10.alGetString(AL10.AL_VENDOR));
logger.info("Using device: {}", ALC10.alcGetString(device, ALC10.ALC_DEVICE_SPECIFIER));
logger.info("Available AL extensions: {}", AL10.alGetString(AL10.AL_EXTENSIONS));
logger.info("Available ALC extensions: {}", ALC10.alcGetString(device, ALC10.ALC_EXTENSIONS));
IntBuffer buffer = BufferUtils.createIntBuffer(1);
ALC10.alcGetInteger(device, ALC11.ALC_MONO_SOURCES, buffer);
logger.info("Max mono sources: {}", buffer.get(0));
buffer.rewind();
ALC10.alcGetInteger(device, ALC11.ALC_STEREO_SOURCES, buffer);
logger.info("Max stereo sources: {}", buffer.get(0));
buffer.rewind();
ALC10.alcGetInteger(device, ALC10.ALC_FREQUENCY, buffer);
logger.info("Mixer frequency: {}", buffer.get(0));
buffer.rewind();
AL10.alDistanceModel(AL10.AL_INVERSE_DISTANCE_CLAMPED);
// Initialize sound pools
pools.put("sfx", new BasicSoundPool(30)); // effects pool
pools.put("music", new BasicStreamingSoundPool(2)); // music pool
pools.get("sfx").setVolume(config.getSoundVolume());
pools.get("music").setVolume(config.getMusicVolume());
}
开发者ID:zoneXcoding,项目名称:Mineworld,代码行数:43,代码来源:OpenALManager.java
注:本文中的org.lwjgl.openal.ALCdevice类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论