Blender Git Commit Log

Git Commits -> Revision 3ea1c1b

Revision 3ea1c1b by Benoit Bolsee (master)
May 17, 2009, 12:51 (GMT)
BGE: new sensor object to generalize Near and Radar sensor, static-static collision capbility.

A new type of "Sensor" physics object is available in the GE for advanced
collision management. It's called Sensor for its similarities with the
physics objects that underlie the Near and Radar sensors.
Like the Near and Radar object it is:
- static and ghost
- invisible by default
- always active to ensure correct collision detection
- capable of detecting both static and dynamic objects
- ignoring collision with their parent
- capable of broadphase filtering based on:
* Actor option: the collisioning object must have the Actor flag set to be detected
* property/material: as specified in the collision sensors attached to it
Broadphase filtering is important for performance reason: the collision points
will be computed only for the objects that pass the broahphase filter.
- automatically removed from the simulation when no collision sensor is active on it

Unlike the Near and Radar object it can:
- take any shape, including triangle mesh
- be made visible for debugging (just use the Visible actuator)
- have multiple collision sensors using it

Other than that, the sensor objects are ordinary objects. You can move them
freely or parent them. When parented to a dynamic object, they can provide
advanced collision control to this object.

The type of collision capability depends on the shape:
- box, sphere, cylinder, cone, convex hull provide volume detection.
- triangle mesh provides surface detection but you can give some volume
to the suface by increasing the margin in the Advanced Settings panel.
The margin applies on both sides of the surface.

Performance tip:
- Sensor objects perform better than Near and Radar: they do less synchronizations
because of the Scenegraph optimizations and they can have multiple collision sensors
on them (with different property filtering for example).
- Always prefer simple shape (box, sphere) to complex shape whenever possible.
- Always use broadphase filtering (avoid collision sensor with empty propery/material)
- Use collision sensor only when you need them. When no collision sensor is active
on the sensor object, it is removed from the simulation and consume no CPU.

Known limitations:
- When running Blender in debug mode, you will see one warning line of the console:
"warning btCollisionDispatcher::needsCollision: static-static collision!"
In release mode this message is not printed.
- Collision margin has no effect on sphere, cone and cylinder shape.

Other performance improvements:
- Remove unnecessary interpolation for Near and Radar objects and by extension
sensor objects.
- Use direct matrix copy instead of quaternion to synchronize orientation.

Other bug fix:
- Fix Near/Radar position error on newly activated objects. This was causing
several detection problems in YoFrankie
- Fix margin not passed correctly to gImpact shape.
- Disable force/velocity actions on static objects

Commit Details:

Full Hash: 3ea1c1b4b640b18e651de7eacb40bb7cc7a2f55f
SVN Revision: 20239
Parent Commit: 96aa60c
Lines Changed: +464, -301

43 Modified Paths:

/source/blender/makesdna/DNA_object_types.h (+2, -0) (Diff)
/source/blender/python/api2_2x/Object.c (+2, -1) (Diff)
/source/blender/src/buttons_logic.c (+54, -28) (Diff)
/source/gameengine/Converter/BL_BlenderDataConversion.cpp (+1, -0) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.h (+11, -0) (Diff)
/source/gameengine/Ketsji/KX_BulletPhysicsController.cpp (+19, -5) (Diff)
/source/gameengine/Ketsji/KX_BulletPhysicsController.h (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_ClientObjectInfo.h (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_ConvertPhysicsObject.h (+1, -0) (Diff)
/source/gameengine/Ketsji/KX_ConvertPhysicsObjects.cpp (+35, -19) (Diff)
/source/gameengine/Ketsji/KX_GameObject.cpp (+20, -6) (Diff)
/source/gameengine/Ketsji/KX_GameObject.h (+8, -1) (Diff)
/source/gameengine/Ketsji/KX_IPhysicsController.cpp (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_IPhysicsController.h (+11, -1) (Diff)
/source/gameengine/Ketsji/KX_MotionState.cpp (+5, -0) (Diff)
/source/gameengine/Ketsji/KX_MotionState.h (+1, -0) (Diff)
/source/gameengine/Ketsji/KX_NearSensor.cpp (+11, -24) (Diff)
/source/gameengine/Ketsji/KX_NearSensor.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_OdePhysicsController.h (+1, -0) (Diff)
/source/gameengine/Ketsji/KX_RadarSensor.cpp (+9, -12) (Diff)
/source/gameengine/Ketsji/KX_RadarSensor.h (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_Scene.cpp (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_SumoPhysicsController.h (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_TouchEventManager.cpp (+27, -7) (Diff)
/source/gameengine/Ketsji/KX_TouchSensor.cpp (+52, -6) (Diff)
/source/gameengine/Ketsji/KX_TouchSensor.h (+2, -1) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsController.cpp (+4, -1) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsController.h (+1, -0) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsEnvironment.h (+2, -2) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp (+111, -88) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.h (+9, -5) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp (+14, -73) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h (+2, -2) (Diff)
/source/gameengine/Physics/common/PHY_IMotionState.h (+2, -0) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsController.h (+2, -1) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsEnvironment.h (+2, -2) (Diff)
/source/gameengine/Physics/Dummy/DummyPhysicsEnvironment.h (+2, -2) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsController.cpp (+5, -0) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsController.h (+1, -0) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsEnvironment.cpp (+5, -2) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsEnvironment.h (+2, -2) (Diff)
/source/gameengine/SceneGraph/SG_IObject.h (+7, -0) (Diff)
/source/gameengine/SceneGraph/SG_Spatial.h (+7, -0) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021