| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
children.
|
| |
|
| |
|
|
|
|
| |
setting. There is no reason these should be using the simulation time interval for parameter calculation.
|
|
|
|
|
| |
Fix collision code to properly sense mega-region children regions as terrain.
When setting an object physical, reset all the physical properties (friction, ...).
|
|
|
|
| |
center of mass
|
|
|
|
| |
Reset center of mass on an object when going dynamic.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Many changes to BSDynamic for readability and commentary.
Linkset hacking for vehicles: don't over mass the root prim.
Add parameter for link constraint solver iterations.
Correct uses of timestep in timescale calculations for vehicles.
Reorganize code/logic for making objects static and dynamic for readability
and use of API2.
Changed most calls in BSPrim to use API2 calls (the new way).
Avatars do not generate default Bullet collision events but do call up
to the simulator for every avatar. Reduces overhead.
Objects added to collision list only if they are processing collisions.
Reduces overhead especially for large numbers of avatars.
Generalize call for water height to GetWaterHeightAtXYZ().
Catch and correct exception getting terrain height when out of bounds.
Correct race condition in Terrain Manager where creation wasn't at taint-time.
Add API calls for constructing compound shapes.
Move NeedsMeshing() logic into object class.
Reorganize logic for object meshing to reduce rebuilding of meshs/hulls.
|
|
|
|
|
|
|
|
|
| |
'Body' to 'BSBody' for disambiguation when reading code.
Complete the API2 interface so nearly all methods on bullet
classes are available to the managed code. The efficient
single call simulation step is kept in place while all
other creation/destruction/parameterization can be done
in the managed code.
|
| |
|
|
|
|
| |
'unknown'.
|
|
|
|
|
|
| |
Track current collision flags in BSPrim.
Add BulletSimAPI calls for saving and restoring rigidBodies using
construction information structure.
|
|
|
|
|
|
|
|
| |
Major rework of terrain management which finally makes mega-regions work.
Update heightmap of terrain by rebuilding the terrain's body and shape.
There is a problem with just replacing the shape so this workaround
will do for the moment but it will need to be resolved for
mesh and hull switching.
|
|
|
|
|
|
|
| |
Update DLL API for new terrain and shape/body pattern methods.
Terrain creation and modification uses new shape/body pattern.
Move debug logging callback set to initialization call so logging
is per physics engine.
|
| |
|
|
|
|
|
|
|
|
|
| |
Moved all terrain code out of BSScene and into new BSTerrainManager.
Added logic to manage multiple terrains for mega-regions.
Added new functions to BulletSimAPI to match the library.
Moved all of the terrain creation and setup logic from C++ code to C# code.
The unused code has not yet been removed from either place. Soon.
Moved checks for avatar above ground and in bounds into BSCharacter.
|
|
|
|
| |
BSLinkset only know of BSPhysObject's and there is only one list to search in BSScene.
|
|
|
|
| |
move nearly all of the logic into the C# code.
|
|
|
|
|
| |
This fixes the problem of non-base shapes (cubes and spheres)
falling through the terrain.
|
|
|
|
|
|
|
| |
no effect on non-logging running.
Capture region name that is passed to the physics engine and use
it for detail logging file name prefix.
Fix problem with avatars dropping when flying across region boundries.
|
|
|
|
|
|
| |
level of detail for large meshes.
Remove parameter and code for DetailLog (conditional logging into
regular log file).
|
| |
|
|
|
|
| |
for the same bits and it makes the code less complicated.
|
|
|
|
| |
each other.
|
|
|
|
|
|
|
| |
Update BulletSimAPI with new constraint related function calls.
Reorganize locking in BS6DofConstraint.
Update BS6DofConstraint to do constraint reset correctly.
Add new 'midpoint' construction of 6Dof constraint.
|
|
|
|
| |
method variables to reduce confusion between a physics scene and the real scene.
|
|
|
|
| |
and then commenting out most of the additions.
|
|
|
|
| |
Make sure the collisionCollection is reallocated each tick to fix race condition of it being cleared while still in use.
|
|
|
|
| |
were linksets in the region.
|
|
|
|
| |
RemoveAndDestroyConstraint(BSConstraint xx)
|
|
|
|
| |
recomputation after linksets changed, etc
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
debugging.
Linkset bugs fixed where accounting of children would get lost.
Moved scene based vehicle tracking logic from prim to the scene.
Added GetCollisionFlags2 method to BulletSimAPI.
Updated DLLs and SOs.
|
|
|
|
| |
linksets that were caused by checking data structures that are changed regularly from taint time code -- resulted in linksets not being unlinked properly.
|
|
|
|
| |
happen when the taint is invoked can be debugged
|
|
|
|
|
|
| |
6dof constraint but eventually others will be exposed so future
features can use all the Bullet capabilities.
Force children to generate a position update when unlinked.
|
|
|
|
| |
terrain
|
|
|
|
|
|
|
|
| |
This also fixes computation of avatar mass.
Added parameter MaxPersistantManifoldPoolSize.
Fixed a parameter setting bug which caused crashes of there were
more than 400 or so physical objects. I tested up to 5000.
Updated BulletSim DLLs and SOs.
|
|
|
|
| |
multiple buoyancy settings when character flying. Remove chatty log message on prim destruction.
|
|
|
|
| |
collisions on objects that don't care are not reported up.
|
|
|
|
|
|
| |
Add interface 2 enhancements to BSCharacter.
Modify AddForce and SetForce to use the new Bullet interface.
More DetailLog statements for character.
|
|
|
|
| |
trying to find a corrupted memory problem. Update DLL and SO.
|
|
|
|
|
|
| |
themselves. For that, the physics module simply calls RequestAssetMethod, which
in turn points to Scene.PhysicsRequestAsset. This gives physics access to
the asset system without introducing unwanted knowledge of the scene class.
|
|
|
|
| |
not rebuild the physics mesh. Update the DLLs and SOs to latest version.
|
|
|
|
| |
to be consistant with parameter data structure
|
|
|
|
|
|
| |
Set ERP and CFM in linkset constraints.
Reorder rebuilding of object bodies so they are not rebuilt everytime
something is linked and unlinked.
|