org.lwjgl.openal.SOFTSystemEventProc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-openal Show documentation
Show all versions of lwjgl-openal Show documentation
A cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.openal;
import org.jspecify.annotations.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Type
*
*
* void (*{@link #invoke}) (
* ALCenum eventType,
* ALCenum deviceType,
* ALCdevice *device,
* ALCsizei length,
* ALCchar const *message,
* ALCvoid *userParam
* )
*/
public abstract class SOFTSystemEventProc extends Callback implements SOFTSystemEventProcI {
/**
* Creates a {@code SOFTSystemEventProc} instance from the specified function pointer.
*
* @return the new {@code SOFTSystemEventProc}
*/
public static SOFTSystemEventProc create(long functionPointer) {
SOFTSystemEventProcI instance = Callback.get(functionPointer);
return instance instanceof SOFTSystemEventProc
? (SOFTSystemEventProc)instance
: new Container(functionPointer, instance);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */
public static @Nullable SOFTSystemEventProc createSafe(long functionPointer) {
return functionPointer == NULL ? null : create(functionPointer);
}
/** Creates a {@code SOFTSystemEventProc} instance that delegates to the specified {@code SOFTSystemEventProcI} instance. */
public static SOFTSystemEventProc create(SOFTSystemEventProcI instance) {
return instance instanceof SOFTSystemEventProc
? (SOFTSystemEventProc)instance
: new Container(instance.address(), instance);
}
protected SOFTSystemEventProc() {
super(CIF);
}
SOFTSystemEventProc(long functionPointer) {
super(functionPointer);
}
private static final class Container extends SOFTSystemEventProc {
private final SOFTSystemEventProcI delegate;
Container(long functionPointer, SOFTSystemEventProcI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public void invoke(int eventType, int deviceType, long device, int length, long message, long userParam) {
delegate.invoke(eventType, deviceType, device, length, message, userParam);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy