A handcrafted/generated Java binding for the Dear-ImGui with no dependencies and ready to use pre-compiled binaries.
It's a straightforward binding, which uses JNI to do a direct calls to the Dear-ImGui API.
Since we live in Java world - some things require to do them respectively to that fact. Please read Binding notice.
Despite this fact, see official documentation and wiki
to get more info about how to do things in ImGui.
Binding doesn't force you to use backend renderer which is introduced here. Feel free to use your own renderer engine if you need so. See how things are done in ImGuiImplGl3.
Binding has the next version naming: imguiVersion-bindingVersion.
For example 1.74-0.1 means that binding uses 1.74 version of ImGui and binding itself has version 0.1.
Some of the very specific features are still in a wip state.
Make sure you have installed Java 8 or higher.
You can try this binding by yourself in a three simple steps:
git clone --branch v1.74-0.2.1 https://github.com/SpaiR/imgui-java.git
cd imgui-java
gradlew :imgui-lwjgl3:startExample
That's it! This will start an example app ImGuiGlfwExample which relies on the GLFW and LWJGL3. Feel free to modify ImGuiGlfwExample#showUi method to try different ImGui widgets in action.
Add jcenter repository:
repositories {
jcenter()
}
Add binding dependency:
dependecies {
implementation 'io.imgui.java:binding:1.74-0.2.1'
}
If you want to use LWJGL3 renderer:
dependecies {
implementation 'io.imgui.java:binding:1.74-0.2.1'
implementation 'io.imgui.java:lwjgl3:1.74-0.2.1'
}
Disclaimer!
LWJGL3 renderer is based on the 3.2.3 version of the LWJGL.
You'll need to add additional dependencies to it. Specifically lwjgl itself, glfw and opengl modules.
You can find how to do it here.
Go to the /bin folder and pick a native library for your OS. Then you'll need to provide java.library.path VM option with folder
where you placed the downloaded file.
You are ready to use imgui-java binding!
- All ImGui methods are available in
camelCase, not inPascalCase. - In places where in C++ you need to pass
ImVec2orImVec4, here you'll need to pass two or four float parameters respectively. - When you need to get an input/output to/from the Dear-ImGui use primitive wrappers:
ImBool,ImIntetc. - Due to the Java and JNI restrictions we can't provide a fully fledged callbacks to the ImGui::InputText*() methods. Partly you could replace some of the features (like setting of the allowed chars to input) by using the ImGuiInputTextData class. Read javadoc to get more info.
To build native libraries you should install mingw-w64. Then modify GenerateLibs
to build specific binaries you need. After you configured everything run gradlew :imgui-binding:generateLibs task.
This will build native libraries and place them in ~/imgui-binding/build/libsNative folder.
This binding is partly based on the work of xpenatan and his version jDear-imgui.
See the LICENSE file for license rights and limitations (Apache-2.0).
