All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.nuklear.NkValueGetter Maven / Gradle / Ivy

There is a newer version: 3.3.6
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.nuklear;

import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;

/** Instances of this class may be passed to the {@link Nuklear#nk_plot_function plot_function} function. */
public abstract class NkValueGetter extends Callback implements NkValueGetterI {

    /** Creates a {@code NkValueGetter} instance from the specified function pointer. */
    public static NkValueGetter create(long functionPointer) {
        if (functionPointer == NULL) {
            return null;
        }

        NkValueGetterI instance = Callback.get(functionPointer);
        return instance instanceof NkValueGetter
            ? (NkValueGetter)instance
            : new Container(functionPointer, instance);
    }

    /** Creates a {@code NkValueGetter} instance that delegates to the specified {@code NkValueGetterI} instance. */
    public static NkValueGetter create(NkValueGetterI instance) {
        return instance instanceof NkValueGetter
            ? (NkValueGetter)instance
            : new Container(instance.address(), instance);
    }

    protected NkValueGetter() {
        super(SIGNATURE);
    }

    private NkValueGetter(long functionPointer) {
        super(functionPointer);
    }

    private static final class Container extends NkValueGetter {

        private final NkValueGetterI delegate;

        Container(long functionPointer, NkValueGetterI delegate) {
            super(functionPointer);
            this.delegate = delegate;
        }

        @Override
        public float invoke(long userdata, int index) {
            return delegate.invoke(userdata, index);
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy