• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ALCCapabilities类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.lwjgl.openal.ALCCapabilities的典型用法代码示例。如果您正苦于以下问题:Java ALCCapabilities类的具体用法?Java ALCCapabilities怎么用?Java ALCCapabilities使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ALCCapabilities类属于org.lwjgl.openal包,在下文中一共展示了ALCCapabilities类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: initialize

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
private void initialize(){
	device = alcOpenDevice((ByteBuffer)null);
	if(device == 0L){
		Application.error("Unable to open default audio device");
		return;
	}
	
	ALCCapabilities deviceCaps = ALC.createCapabilities(device);
	
	if(!deviceCaps.OpenALC10){
		Application.error("OpenALC10 Unsupported");
		return;
	}
	
	
	context = alcCreateContext(device, (IntBuffer)null);
	if(context == 0L){
		Application.error("Unable to create ALC Context");
		return;
	}
	
	ALC10.alcMakeContextCurrent(context);
	AL.createCapabilities(deviceCaps);
}
 
开发者ID:tek256,项目名称:LD38,代码行数:25,代码来源:Mixer.java


示例2: SoundPlayer

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
public SoundPlayer() {
    this.device = ALC10.alcOpenDevice((ByteBuffer) null);
    if (this.device == 0) {
        throw new IllegalStateException("Failed to open the default device.");
    }
    this.context = ALC10.alcCreateContext(this.device, (IntBuffer) null);
    if (this.context == 0) {
        throw new IllegalStateException("no context?");
    }
    ALC10.alcMakeContextCurrent(this.context);
    ALCCapabilities deviceCaps = ALC.createCapabilities(this.device);
    AL.createCapabilities(deviceCaps);
    String deviceSpecifier = ALC10.alcGetString(this.device, ALC10.ALC_DEVICE_SPECIFIER);
    System.err.println("Using device " + deviceSpecifier);
    System.out.println("ALC_FREQUENCY: " + alcGetInteger(this.device, ALC_FREQUENCY) + "Hz");
    System.out.println("ALC_REFRESH: " + alcGetInteger(this.device, ALC_REFRESH) + "Hz");
    System.out.println("ALC_SYNC: " + (alcGetInteger(this.device, ALC_SYNC) == ALC_TRUE));
    System.out.println("ALC_MONO_SOURCES: " + alcGetInteger(this.device, ALC_MONO_SOURCES));
    System.out.println("ALC_STEREO_SOURCES: " + alcGetInteger(this.device, ALC_STEREO_SOURCES));
}
 
开发者ID:TechShroom,项目名称:EmergencyLanding,代码行数:21,代码来源:SoundPlayer.java


示例3: init

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
public void init() throws Exception {
    this.device = alcOpenDevice((ByteBuffer) null);
    if (device == NULL) {
        throw new IllegalStateException("Failed to open the default OpenAL device.");
    }
    ALCCapabilities deviceCaps = ALC.createCapabilities(device);
    this.context = alcCreateContext(device, (IntBuffer) null);
    if (context == NULL) {
        throw new IllegalStateException("Failed to create OpenAL context.");
    }
    alcMakeContextCurrent(context);
    AL.createCapabilities(deviceCaps);
}
 
开发者ID:justjanne,项目名称:SteamAudio-Java,代码行数:14,代码来源:SoundManager.java


示例4: init

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
public static void init()
{
    mainGain = 0.05f;

    device = alcOpenDevice((ByteBuffer)null);
    ALCCapabilities deviceCaps = ALC.createCapabilities(device);

    context = alcCreateContext(device, (IntBuffer)null);
    alcMakeContextCurrent(context);
    createCapabilities(deviceCaps);

    audioPlayers = new ArrayList<>();

    alDistanceModel(AL_LINEAR_DISTANCE_CLAMPED);
}
 
开发者ID:ubercube,项目名称:ubercube,代码行数:16,代码来源:AudioSystem.java


示例5: LwjglAudioDevice

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
LwjglAudioDevice()
{
    device = alcOpenDevice((ByteBuffer) null);
    ALCCapabilities deviceCaps = ALC.createCapabilities(device);

    context = alcCreateContext(device, (IntBuffer) null);
    alcMakeContextCurrent(context);
    AL.createCapabilities(deviceCaps);

    SilenceEngine.eventManager.addDisposeHandler(this::cleanUp);
}
 
开发者ID:sriharshachilakapati,项目名称:SilenceEngine,代码行数:12,代码来源:LwjglAudioDevice.java


示例6: ALSoundEnvironment

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
public ALSoundEnvironment() {
	device = alcOpenDevice((ByteBuffer) null);
	ALCCapabilities deviceCaps = ALC.createCapabilities(device);
	context = alcCreateContext(device, (int[]) null);

	if (!alcMakeContextCurrent(context)) {
		System.err.println("Failed to make context current.");
	}
	AL.createCapabilities(deviceCaps);

	setDistanceModel(DistanceModel.InverseDistance);
}
 
开发者ID:tdc22,项目名称:JAwesomeEngine,代码行数:13,代码来源:ALSoundEnvironment.java


示例7: main

import org.lwjgl.openal.ALCCapabilities; //导入依赖的package包/类
public static void main(String[] args) {
	System.setProperty("org.lwjgl.librarypath", new File("natives/windows").getAbsolutePath());
	String deviceName = ALC10.alcGetString(0, ALC10.ALC_DEFAULT_DEVICE_SPECIFIER);
	long device = ALC10.alcOpenDevice(deviceName);
	long context = ALC10.alcCreateContext(device, new int[] {0});
	ALC10.alcMakeContextCurrent(context);
	ALCCapabilities alcCaps = ALC.createCapabilities(device);
	ALCapabilities alCaps = AL.createCapabilities(alcCaps);

	if (alCaps.OpenAL10) {
		String file = "C:\\Users\\Isaac\\Desktop\\workspace\\assets\\audio\\gunshot2.ogg";

		MemoryStack.stackPush();
		IntBuffer channelsBuf = MemoryStack.stackMallocInt(1);
		MemoryStack.stackPush();
		IntBuffer sampleRateBuf = MemoryStack.stackMallocInt(1);

		ShortBuffer audioBuffer = STBVorbis.stb_vorbis_decode_filename(file, channelsBuf, sampleRateBuf);

		int channels = channelsBuf.get();
		int sampleRate = sampleRateBuf.get();

		MemoryStack.stackPop();
		MemoryStack.stackPop();

		int format = -1;
		if (channels == 1) {
			format = AL10.AL_FORMAT_MONO16;
		} else if (channels == 2) {
			format = AL10.AL_FORMAT_STEREO16;
		}

		int buffer = AL10.alGenBuffers();

		AL10.alBufferData(buffer, format, audioBuffer, sampleRate);

		Stdlib.free(audioBuffer);

		int[] sources = new int[4];
		AL10.alGenSources(sources);

		for (int source : sources) {
			AL10.alSourcei(source, AL10.AL_BUFFER, buffer);
			AL10.alSourcei(source, AL10.AL_LOOPING, AL10.AL_TRUE);
		}

		float length = (float) (AL10.alGetBufferi(buffer, AL10.AL_SIZE) / 2 / channels) / sampleRate;

		try {
			AL10.alSourcePlay(sources[0]);
			Thread.sleep((long) (length * 250));
			AL10.alSourcePlay(sources[1]);
			Thread.sleep((long) (length * 250));
			AL10.alSourcePlay(sources[2]);
			Thread.sleep((long) (length * 250));
			AL10.alSourcePlay(sources[3]);
		} catch (InterruptedException e) {
			e.printStackTrace();
		} finally {}

		new Scanner(System.in).nextLine();

		AL10.alSourceStopv(sources);
		AL10.alDeleteSources(sources);
		AL10.alDeleteBuffers(buffer);
	}

	ALC10.alcDestroyContext(context);
	ALC10.alcCloseDevice(device);
	ALC.destroy();
}
 
开发者ID:warlockcodes,项目名称:Null-Engine,代码行数:72,代码来源:Test.java



注:本文中的org.lwjgl.openal.ALCCapabilities类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ByteArrays类代码示例发布时间:2022-05-22
下一篇:
Java UnmodifiableMap类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap