GithubHelp home page GithubHelp logo

kerwinzxc / simplephysicsdemo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lottemakesstuff/simplephysicsdemo

0.0 1.0 0.0 22 MB

A simple lil demo showing a jobified physics system

License: MIT License

C# 100.00%

simplephysicsdemo's Introduction

SimplePhysics Demo Buy Me a Coffee at ko-fi.com Become a Patron!

SimplePhysics is a Unity 2018.1 demo showcasing a custom physics system which has all of its processing via the new Unity Jobs system. demo gif - boxes flying everywhere!

  • Its a simplified, bare-bones version of the same concepts behind LotteMakesStuff's HyperPhysics engine.
  • It uses the new Unity 2018.1 Job system to run the physics simulation across all your CPUs cores at once.
    • Its a good nontrivial example of how to chain job dependencies together and how to use NativeArrays
    • It demos Unity's RaycastCommand - a new way of sending batches of raycasts to be processed in jobs
  • It's tiny!! (less than 300 lines!)
  • It's open source- do what you want with it MIT licensed

How do I run it?

This demo showcases new feature added in Unity 2018.1, and has been tested with 2018.1b6. Any release after that should be fine. Once you have cloned the repository, simply open Scenes/SampleScene.unity. There's a fairly basic little set up here, a floor, one wall to bounce off and of course, our physics system (its attached to the Physics Spawner game object). The floor and wall just has regular Unity colliders attached, nothing special there. The spawner only has 3 public properties, Mesh, Material and Spawn direction.

  • Mesh and Material set the assets you want to render the physics objects with. Defaults to a pinkish cube.
  • Spawn Direction defaults to the walls transform. The initial velocity for physics object will be angled towards this transform, spraying out in a satisfying arch.

Wheres the code?

Its all contained in SimpleJobifiedPhysics.cs.

How does it work?

Unlike unity game objects and rigidbodies, our physics objects aren't represented by concrete objects in this engine, but by a "structure of arrays'. At the top of SimpleJobifiedPhysics we define a whole bunch of NativeArrays that hold all the various properties that make up a physics object. If you imagine these laid out in a table or excel sheet, each row across all the arrays is an individual object.

Position Velocity Sleeping RenderingMatrix
Vector3 Vector3 int Matrix4x4
The position of the obect after the previous update The direction and speed the object is moving in
  • Sleeping == 0, the object is moving.
  • Sleeping >= 0, the objet is stable. Counter gets incremented every frame the object sleeps for.
We need this to draw the object with Graphics.DrawMeshInstanced(...)

Okay, there are 5 steps in running this physics engine! All of these steps are implemented as an IJobParallelFor job. These jobs split the work up into batches and run it on all free CPU cores in the system - allowing us to process a lot of stuff very fast.

  1. Force Accumulation - Forces are things that affect the Velocity of our physics objects. Our first task is to calculate all these forces and merge them into Velocity. This demo only ships with one force generator - GravityJob. As long as an object isn't sleeping, we apply gravity to it. Once we have done this we will know how are we want to move
  2. Collision Detection - Now we know how much Velocity is acting on our object, we can use a raycast to see if it would hit anything if it moved the maximum amount it was allowed to move this frame (float distance = (Velocities[i] * DeltaTime).magnitude;). We use Unity's new batch raycasting system, RaycastCommand. Its built on the Job system and runs our casts over all the available CPU cores, just like the rest of our physics engine! Once we have done this we will know how far its safe to move.
  3. Velocity Integration - Now we know how far we can move, we have to integrate it onto our position. We do this in the most simple way possible, adding the velocity scaled by delta time to the position (Euler Integration).
  4. Collision Response - Here we can respond if an object actually hits a collider in the world. In this demo, we reflect the velocity so the colliding object bounces. We also dampen the objects velocity to simulate friction. This damping effect is what ultimately brings an object to a stop. When we detect an object has next to no velocity acting on it we mark it as sleeping -so no forces affect it at all and its position is totally stable. Once an object has been stable for 15 updates, we respawn it to keep the simulation going!
  5. Rendering - Finally, we calculate a matrix we can send to Unity's renderer to correctly position the physics object on the screen. We use Graphics.DrawMeshInstanced(...) to draw all the physics objects because gosh its fast!

All of these steps are implemented as one (or more!) unity jobs and each job in the chain depends on the one that came before it, that's why were passing the JobHandle from each job into the next one we schedule. This tells unity about that dependency, and it won't schedule a job higher up in the chain until the previous job has been totally completed

What next?

Well, that's kinda all there is to it in this demo - there is a lot of room for improvement though if you want to use this as a foundation to build your own physics system! Some of these ideas I have already implemented in HyperPhysics and might write about in the future - others are just cool things to experiment with

  • Currently there is only one force generator, gravity. Try implementing Springs (google for Hooke's Law!), or bouncy, or maybe even joints and constraints!
  • Currently all objects experience the same gravity in the same direction - why not try adding more interesting gravity implementations like gravity attractors, gravity that makes you fall towards the closest tiny planet (like Mario galaxy!). you could even experiment with trigger volumes that slow down all objects that enter them!
  • The simulation size is currently limited to 1023 objects - this is because that is the most Graphics.DrawMeshInstanced(...) can draw in a single call. Try drawing in batches so you can break this limit and
  • The part of this system that scales the worst is our dependancy of Unity's RaycastCommand. Try to write your own raycast system (the custom raycaster in HyperPhysics is the main reason its so fast and can handle so many objects).
  • We are currently treating our Physics Objects as zero mass particles... they cant even rotate! try adding mass and rotations to the system.

Have fun! love, @LotteMakesStuff twitter icon

simplephysicsdemo's People

Contributors

lottemakesstuff avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.