Java JNI bindings for Nvidia PhysX 5.6.0.
The generated bindings contain most of the original documentation converted to javadoc. For further reading there is also the official PhysX documentation.
The library is published on maven central, so you can easily add this to your dependencies:
dependencies {
// java bindings
implementation("de.fabmax:physx-jni:2.6.0")
// native libraries - you can add the one matching your system or all
runtimeOnly("de.fabmax:physx-jni:2.6.0:natives-windows")
runtimeOnly("de.fabmax:physx-jni:2.6.0:natives-linux")
runtimeOnly("de.fabmax:physx-jni:2.6.0:natives-macos")
runtimeOnly("de.fabmax:physx-jni:2.6.0:natives-macos-arm64")
}
The Android version of the library is packaged as a single aar
archive containing both java classes
and native libs:
dependencies {
implementation("de.fabmax:physx-jni-android:2.6.0")
}
This is still work in progress, but the bindings already include most major parts of the PhysX SDK:
- Basics
- Static and dynamic actors
- All geometry types (box, capsule, sphere, plane, convex mesh, triangle mesh and height field)
- All joint types (revolute, spherical, prismatic, fixed, distance and D6)
- Articulations
- Vehicles
- Character controllers
- Scene serialization
- CUDA support is removed from jni bindings, see below
Furthermore, I added bindings to V-HACD, which is not part of PhysX but fits in the context very well.
The detailed list of mapped functions is given by the interface definition files. The Java classes containing the actual bindings are generated from these files during build.
After build (or after running the corresponding gradle task generateJniBindings
) the generated Java
classes are located under physx-jni/src/main/generated
.
- Windows (x86_64)
- Linux (x86_64)
- MacOS (x86_64, and arm64)
- Android (arm-v8 (aarch64) only for now)
Moreover, there is also a version for javascript/webassembly: physx-js-webidl.
You can take a look at HelloPhysX.java for a hello world example on how to use the library. There also are a few tests with slightly more advanced examples (custom simulation callbacks, triangle mesh collision, custom filter shader, etc.).
To see a few real life demos you can take a look at my kool demos:
- Vehicle: Vehicle demo with a racetrack and a few obstacles.
- Character: 3rd person character demo on an island.
- Ragdolls: Simple Ragdoll demo.
- Joints: A chain running over two gears.
- Collision: Various collision shapes.
Note: These demos run directly in the browser and obviously don't use this library, but the webassembly version mentioned above. However, the two are functionally identical, so it shouldn't matter too much. The JNI version is much faster though.
Whenever you create an instance of a wrapper class within this library, this also creates an object on the native side. Native objects are not covered by the garbage collector, so, in order to avoid a memory leak, you have to clean up these objects yourself when you are done with them.
Here is an example:
// create an object of PxVec3, this also creates a native PxVec3
// object behind the scenes.
PxVec3 vector = new PxVec3(1f, 2f, 3f);
// do something with vector...
// destroy the object once you are done with it
vector.destroy();
This approach has two potential problems: First, as mentioned, if you forget to call destroy(), the memory on the native heap is not released resulting in a memory leak. Second, creating new objects on the native heap comes with a lot of overhead and is much slower than creating a new object on the Java side.
These issues aren't a big problem for long living objects, which you create on start-up and use until you exit
the program. However, for short-lived objects like, in many cases, PxVec3
this can have a large impact. Therefore,
there is a second method to allocate these objects: Stack allocation. To use this, you will need some sort of
memory allocator like LWJGL's MemoryStack. With that one the above example could look like this:
try (MemoryStack mem = MemoryStack.stackPush()) {
// create an object of PxVec3. The native object is allocated in memory
// provided by MemoryStack
PxVec3 vector = PxVec3.createAt(mem, MemoryStack::nmalloc, 1f, 2f, 3f);
// do something with vector...
// no explicit destroy needed, memory is released when we leave the scope
}
While the PxVec3.createAt()
call looks a bit more complicated, this approach is much faster and comes without the
risk of leaking memory, so it should be preferred whenever possible.
At a few places it is possible to register callbacks, e.g., PxErrorCallback
or
PxSimulationEventCallback
. In order to implement a callback, the corresponding Java callback class has to be
extended. The implementing class can then be passed into the corresponding PhysX API.
Here's an example how this might look:
// implement callback
public class CustomErrorCallback extends PxErrorCallbackImpl {
@Override
public void reportError(PxErrorCodeEnum code, String message, String file, int line) {
System.out.println(code + ": " + message);
}
}
// register / use callback
CustomErrorCallback errorCb = new CustomErrorCallback();
PxFoundation foundation = PxTopLevelFunctions.CreateFoundation(PX_PHYSICS_VERSION, new PxDefaultAllocator(), errorCb);
Several PhysX classes (e.g. PxActor
, PxMaterial
, ...) have a userData field, which can be used to store an arbitrary
object reference. Since the native userData field is a void pointer, a wrapper class JavaNativeRef
is needed to store
a java object reference in it:
PxRigidDynamic myActor = ...
// set user data, can be any java object, here we use a String:
myActor.setUserData(new JavaNativeRef<>("Arbitrary data"));
// get user data. You need to specify the type yourself, here we expect it to be a String:
JavaNativeRef<String> userData = JavaNativeRef.fromNativeObject(myActor.getUserData());
System.out.println(userData.get());
This library used to support PhysX CUDA extensions (partially). However, with version 5.6.0
, building PhysX with
CUDA support became a lot more complicated because now the CUDA toolkit needs to be installed separately, which is
relatively cumbersome to do (especially in the GitHub workflow environment, which builds the distribution version
of this library).
Personally, I never really used the CUDA functions because the strict requirement to have an Nvidia GPU was to much
of a limitation for me anyway (and, for typical scenes, the performance benefits where not even that great). I
therefore opted to remove CUDA support for now. If you absolutely need CUDA you can still use the last version with
working CUDA support which is v2.5.1
. And it might be
possible that I bring back CUDA support some time in the future.
You can build the bindings yourself. However, this requires cmake
, python3
and the C++ compiler appropriate to your
platform (Visual Studio 2022 (Community) on Windows, clang on Linux, and Xcode on MacOS):
# Clone this repo
git clone https://github.com/fabmax/physx-jni.git
# Enter that directory
cd physx-jni
# Download submodule containing the PhysX source code
git submodule update --init
# Optional, but might help in case build fails
./gradlew generateNativeProject
# Build native PhysX (requires Visual Studio 2022 (Community) on Windows, clang on Linux, and Xcode on MacOS)
./gradlew buildNativeProject
# Generate Java/JNI code and build library
./gradlew build