Jolt Physics - Le Bottin des Jeux Linux

Jolt Physics

🗃️ Specifications

📰 Title: Jolt Physics 🕹️ / 🛠️ Type: Tool
🗃️ Genre: Development 🚦 Status: 02. In dev. (no status)
🏷️ Category: Development ➤ Engine ➤ Physics engine 🌍️ Browser version:
🔖 Tags: 📦️ Package Name:
🐣️ Approx. start: 📦️ Arch package:
🐓️ Latest: 📦️ RPM package:
📍️ Version: Latest: - / Dev: 📦️ Deb package:
🏛️ License type: 🕊️ Libre 📦️ Flatpak package:
🏛️ License: MIT 📦️ AppImage package:
🏝️ Perspective: First person (interface) 📦️ Snap package:
👁️ Visual: Text ⚙️ Generic binary:
⏱️ Pacing: Real Time 📄️ Source:
👫️ Played: Single 📱️ PDA support:
🎖️ This record: 5 stars 🕳️ Not used:
🎀️ Game design: 👫️ Contrib.: goupildb
🎰️ ID: 16383 🐛️ Created: 2023-11-20
🐜️ Updated: 2023-11-20

📖️ Summary

[en]: [fr]:

🚦 Entry status

💡 Lights on: 🦺️ Work in progress:
📰 What's new?: 💥️ New New version published (to be updated):
🎨️ Significant improvement: 🚧️ Some work remains to be done:
🕳️ Not used2: 👔️ Already shown:

🎥️ Videos

🕸️ Links

🏡️ Website & videos
[Homepage] [Dev site] [Features/About] [Screenshots] [Videos t(202xxx) gd(202xxx) gu(202xxx) r(202xxx) lp(202xxx) ht(202xxx)

g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx) g(202xxx)

g[fr](202xxx) g[de](202xxx) g[ru](202xxx) g[pl](202xxx) g[cz](202xxx) g[sp](202xxx) g[pt](202xxx) g[it](202xxx) g[tr](202xxx)] [WIKI] [FAQ] [RSS] [Changelog 1 2 3]

💰 Commercial: (empty)

🍩️ Resources
(empty):

🛠️ Technical informations
[PCGamingWiki] [MobyGames]

🐘 Social
Devs (Credits 1 2 [fr] [en]): [Site 1 2] [Chat] [mastodon] [PeerTube] [YouTube] [PressKit] [Interview 1(202xxx) 2(202xxx)]
The Project: [Blog] [Chat] [Forums] [mastodon] [PeerTube] [YouTube] [PressKit] [Lemmy] [reddit] [Discord]

🐝️ Related
[GameFromScratch]

📦️ Misc. repositories
[Repology] [pkgs.org] [Arch Linux / AUR] [openSUSE] [Debian/Ubuntu] [Flatpak] [AppImage (author's repo)] [Snap] [PortableLinuxGames]

🕵️ Reviews
[HowLongToBeat] [metacritic] [OpenCritic] [iGDB]

🕊️ Source of this Entry: [GameFromScratch]

🐘 Social Networking Update (on mastodon)

🛠️ Title: Jolt Physics
🦊️ What's:
🏡️
🐣️
🔖
📦️
📖 Our entry: http://www.lebottindesjeuxlinux.tuxfamily.org/en/online/lights-on/

🥁️ Update:
⚗️
📌️ Changes:
🐘 From: 📶️

🏝️ https://www.youtube.com/embed/
🦉️ https://www.youtube.com/embed/
🦝️ https://www.youtube.com/embed/
🦝️ https://www.youtube.com/embed/
🦝️[fr] https://www.youtube.com/embed/
🕵️ https://www.youtube.com/embed/
🕯️ https://www.youtube.com/embed/
🕯️ https://www.youtube.com/embed/
🕯️[fr] https://www.youtube.com/embed/
🎲️ https://www.youtube.com/embed/
🎲️ https://www.youtube.com/embed/
🎲️[fr] https://www.youtube.com/embed/
🎲️👤️ https://www.youtube.com/embed/
🎲️👤️ https://www.youtube.com/embed/
🎲️👥️ https://www.youtube.com/embed/
🎮️ https://www.youtube.com/embed/
🎮️ https://www.youtube.com/embed/
🎮️ https://www.youtube.com/embed/
🐧 https://www.youtube.com/embed/
🐧 https://www.youtube.com/embed/

🕶️

📕 Description [en]

📕🐧"blabla"🐧📕

A multi core friendly rigid body physics and collision detection library suitable for games and VR applications, used by Horizon Forbidden West.

Design Considerations
So why create yet another physics engine? First of all, this has been a personal learning project and secondly I wanted to address some issues that I had with existing physics engines:

In games we usually need to do many more things than to simulate the physics world and we need to do this across multiple threads. We therefore place a lot of emphasis on concurrently accessing the physics simulation data outside of the main physics simulation update:
Sections of the world can be loaded / unloaded in the background. A batch of physics bodies can be prepared on a background thread without locking or affecting the physics simulation and then inserted into the world all at once with a minimal impact on performance.
Collision queries can run in parallel with other operations like insertion / removal of bodies. The query code is guaranteed to see a body in a consistent state, but when a body is changed during a collision query there is no guarantee if the change is visible to the query or not. If a thread modifies the position of a body and then does a collision query, it will immediately see the updated state (this is often a problem when working with a read version and a write version of the world).
It is also possible to run collision queries in parallel to the main physics simulation by doing the broad phase query before the simulation step. This way, long running processes (like navigation mesh generation) can be spread out across multiple frames while still running the physics simulation every frame.
One of the main sources of performance problems we found was waking up too many bodies while loading / unloading content. Therefore, bodies will not automatically wake up when created and neighboring bodies will not be woken up when bodies are removed. This can be triggered manually if desired.
The simulation runs deterministically, so you could replicate a simulation to a remote client by merely replicating the inputs to the simulation. Read the Deterministic Simulation section to understand the limits of this.
The simulation of this physics engine tries to simulate behavior of rigid bodies in the real world but makes approximations in the simulation so should mainly be used for games or VR simulations.
For more information see the Architecture and API documentation section.

Features

☑ Simulation of rigid bodies of various shapes using continuous collision detection:
• Sphere.
• Box.
• Capsule.
• Tapered-capsule.
• Cylinder.
• Convex hull.
• Compound.
• Mesh (triangle).
• Terrain (height field).
☑ Simulation of constraints between bodies:
• Fixed.
• Point.
• Distance (including springs).
• Hinge.
• Slider (also called prismatic).
• Cone.
• Rack and Pinion.
• Gear.
• Pulley.
• Smooth spline paths.
• Swing-twist (for humanoid shoulders).
• 6 DOF.
☑ Motors to drive the constraints.
☑ Collision detection:
• Casting rays.
• Testing shapes vs shapes.
• Casting a shape vs another shape.
• Broadphase only tests for quickly determining which objects may intersect.
☑ Sensors (trigger volumes).
☑ Animated ragdolls:
• Hard keying (kinematic only rigid bodies).
• Soft keying (setting velocities on dynamic rigid bodies).
• Driving constraint motors to an animated pose.
• Mapping a high detail (animation) skeleton onto a low detail (ragdoll) skeleton and vice versa.
☑ Game character simulation (capsule)
• Rigid body character. Moves during the physics simulation. Cheapest option and most accurate collision response between character and dynamic bodies.
• Virtual character. Does not have a rigid body in the world but simulates one using collision checks. Updated outside of the physics update for more control. Less accurate interaction with dynamic bodies.
☑ Vehicles
• Wheeled vehicles.
• Tracked vehicles.
• Motorcycles.
☑ Soft body simulation (e.g. a soft ball or piece of cloth).
☑ Water buoyancy calculations.
☑ An optional double precision mode that allows large worlds.

Supported Platforms

☑ Windows (VS2019, VS2022) x86/x64/ARM32/ARM64 (Desktop/UWP)
☑ Linux (tested on Ubuntu 22.04) x64/ARM64
☑ Android (tested on Android 14) x86/x64/ARM32/ARM64
☑ Platform Blue (a popular game console) x64
☑ macOS (tested on Monterey) x64/ARM64
☑ iOS (tested on iOS 15) x64/ARM64
☑ WebAssembly, see this separate project.

Required CPU features

• On x86 the minimal requirements are SSE2 but the library can be compiled using SSE4.1, SSE4.2, AVX, AVX2, or AVX512.
• On ARM64 the library requires NEON with FP16 support.

Compiling

• The library has been tested to compile with Cl (Visual Studio 2019-2022), Clang 10+ and GCC 9+.
• It uses C++17 and only depends on the standard template library.
• It doesn't make use of compiler generated RTTI or exceptions.
• If you want to run on Platform Blue you'll need to provide your own build environment and PlatformBlue.h file due to NDA requirements (see Core.h for further info).

For build instructions go to the Build section. When upgrading from an older version of the library go to the Release Notes or API Changes sections.

📕 Description [fr]

, par
En C++.

Name est un