aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BulletSimAPI.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-09-15BulletSim: Way too many changes in one commit.Robert Adams1-18/+11
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.
2012-09-07BulletSim: Add Bullet body and shape to BSPhysObject and renameRobert Adams1-30/+410
'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.
2012-09-07BulletSim: Modify collision flag calls to return the current flags.Robert Adams1-3/+13
Track current collision flags in BSPrim. Add BulletSimAPI calls for saving and restoring rigidBodies using construction information structure.
2012-08-31BulletSim: Update BulletSimAPI to match the DLL interface.Robert Adams1-3/+5
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.
2012-08-31BulletSim: clean up some variable naming for consistancy.Robert Adams1-18/+37
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.
2012-08-31BulletSim: Changes to terrain storage and management so mega-regions work.Robert Adams1-6/+55
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.
2012-08-31BulletSim: add new interface for mesh, hull and terrain creation that will ↵Robert Adams1-7/+20
move nearly all of the logic into the C# code.
2012-08-15BulletSim: add hinge constraint.Robert Adams1-0/+27
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.
2012-08-10BulletSim: many, many detailed logging messages for physical linksetRobert Adams1-2/+7
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.
2012-08-09BulletSim: separate out the constraints by type. The linksets useRobert Adams1-17/+20
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.
2012-08-07BulletSim: Added avatar capsule scaling for size of avatar.Robert Adams1-0/+1
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.
2012-08-03BulletSim: pass collision subscription information to the C++ code so ↵Robert Adams1-13/+14
collisions on objects that don't care are not reported up.
2012-08-03BulletSim: Add AddObjectForce to BulletSim API.Robert Adams1-0/+3
Add interface 2 enhancements to BSCharacter. Modify AddForce and SetForce to use the new Bullet interface. More DetailLog statements for character.
2012-07-31BulletSim: change boolean parameters in the shape data from int's to float's ↵Robert Adams1-5/+5
to be consistant with parameter data structure
2012-07-31BulletSim: add parameters and API calls for setting ERP and CFM.Robert Adams1-8/+37
Set ERP and CFM in linkset constraints. Reorder rebuilding of object bodies so they are not rebuilt everytime something is linked and unlinked.
2012-07-26BulletSim: refactor all the linkset logic out of the prim classRobert Adams1-1/+1
and into its own class. The BulletSim data structures track individual prims as linksets of 1 so most of the prim code is not different between a linked and unlinked object.
2012-07-25BulletSim: Move constraint tracking from C++ code to C# codeRobert Adams1-2/+46
for more flexibility.
2012-07-23BulletSim: add all the new functions to BulletSimAPI.Robert Adams1-4/+128
Modify ZeroMotion() to not make tainting calls and to use new API calls.
2012-07-20BulletSim: more detail logging for vehicle and general physics debugging.Robert Adams1-0/+51
Physical linksets are fully functional. Tweeking of the vehicle code to make it semi-work. Utilize the new API2 for some setting operations. Add GetOrientation() API call for proper reporting of children of linksets. Changes the interface between C# and C++ code so old DLLs won't work!
2012-03-23BulletSim: add a bunch of internal Bullet configuration parameters to ↵Robert Adams1-0/+9
OpenSimDefaults.ini and the code.
2012-03-23BulletSim: add some new runtime setable parameters to match the dll.Robert Adams1-4/+6
2012-03-21BulletSim: add some new runtime setable parameters to match the dll.Robert Adams1-4/+6
2012-01-25Update BulletSim.dll with some interface changes and tuning (see ↵Robert Adams1-0/+4
opensim-libs). Change BSScene to use new interface.
2011-08-26BulletSim: add mesh representation. Use meshes for static objects and switch ↵Robert Adams1-10/+21
to hulls for physical objects.
2011-08-18BulletSim: add runtime setting of physics parameters. Update default values.Robert Adams1-4/+16
2011-08-05BulletSim: Parameters settable from ini file. Linksets. Physical property ↵Robert Adams1-4/+40
value tuning
2011-07-22Pass collisions and updates in pinned memory (saves marshaling).Robert.Adams1-3/+15
Fix folding feet by using collision normals. Add constraint specification.
2011-07-22Pass collisions and updates in pinned memory (saves marshaling).Dan Lake1-3/+15
Fix folding feet by using collision normals. Add constraint specification.
2011-06-20BulletSim initial checkinRobert Adams1-0/+186