aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BulletSimAPI.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-12-31BulletSim: nearly complete in conversion from BulletSimAPI to BSAPITemplate. ↵Robert Adams1-667/+0
Only initialization and debug fuctions left.
2012-12-31BulletSim: another round of conversion: dynamics world and collision object ↵Robert Adams1-4/+4
functions.
2012-12-31BulletSim: first round of conversion from direct BulletSimAPI interfacing by ↵Robert Adams1-778/+169
BulletSim core to using the BulletSimAPITemplate. Physical object creation and destruction first.
2012-12-29BulletSim: remove check for small motor movement because, while itRobert Adams1-1/+1
did the right thing for stopping (speed reducing to zero), it prevented movement from starting (speed increasing from zero). Will revisit when the generalize PID motor is debugged.
2012-12-29BulletSim: tweeking avatar capsule code in an attempt to haveRobert Adams1-1/+3
asymmetrical avatar capsule work now that rotation is being passed from the simulator. Turns out the Bullet capsule is just not very functional: it doesn't scale properly, the implementation only half does asymmetry and, in general, is hard to work with. Avatar shape is about what it was before these changes. Added initial data structures for avatar shape mesh.
2012-12-27BulletSim: correct collision mask definition for linkset children.Robert Adams1-12/+12
Remove unused code. Add comments and TODOs.
2012-12-24BulletSim: Rename some of the interface structures (BulletWorld, ...)Robert Adams1-0/+392
to get ready for... Start creation of BulletAPITemplate. This defines the abstract interface functions. Following commits will move over to the new interface. This will enable switching between the managed and unmanaged version of Bullet.
2012-12-21BulletSim: Move all the parameter variables, tables and get and fetch logic ↵Robert Adams1-33/+35
to a separate, static class for easier addition and to remove all that bulk from the BSScene class.
2012-12-13BulletSim: Add 'BulletSimData' which separates structures createdRobert Adams1-176/+7
for the operation of BulletSim and those defintiions/structures defined so they can be used in the unmanaged world. Consolidate setting of collision flags so implementation is not scattered.
2012-12-10BulletSim: Fix crash on the destruction of physical linksets.Robert Adams1-0/+23
While fixing the above, add methods to physical body and shape pointer wrapper so routines won't have to know that IntPtr.Zero means no physical instance. Fix problem with physical linksets failing after a few sits and unsits by properly restoring child prom positions for compound linksets after multiple selection and deselections.
2012-12-06BulletSim: rewrite and improve vehicle angularDeflection, verticalAttraction,Robert Adams1-0/+1
linearMotorUp and related vehicle forces. Fixed problems with downward vehicle position correction forces being too large. Add vehicle collision flag so can sense whether vehicle is on the ground.
2012-12-03BulletSim: Reduce idle region physics overhead where there are MANYRobert Adams1-32/+32
static objects by more restrictive selection of objects that collide with static objects. Rename collision mask fuctions from 'filter' to 'group' so it is clear what is being set. Rename BulletSimAPI.SetCollisionFilterMask() to SetCollisionGroupMask to match above. Restore passing of time step to linear and angular motion component routines. Use buffering vehicle physical parameter get/set routines consistantly. Make range enforcement clearer by using ClampInRange() function for parameter setting. Remove commented out experimental vehicle calculations.
2012-12-01BulletSim: Add DumpActivationInfo2 function. Change static objects from ↵Robert Adams1-2/+5
DISABLE_SIMULATION to ISLAND_SLEEPING. Update DLLs and SOs to add DumpActivationInfo2 function.
2012-11-26BulletSim: increase vehicle stability by suppressing Bullet's update to ↵Robert Adams1-1/+1
angular velocity.
2012-11-25BulletSim: add terrain collision margin and vehicle angular dampingRobert Adams1-0/+7
parameters to the parameter block. New API call for setting collision margin.
2012-11-22Rename BulletSim's PhysicsShapeType to BSPhysicsShapeType because itMelanie1-5/+5
conflicts with PhysicsShape type defined in later libOMV
2012-11-21BulletSim: Make avatar capsule so it is not circular.Robert Adams1-1/+2
Simple attempt to make avatars better shaped. Replace parameter 'avatarCapsuleRadius' with 'avatarCapsuleWidth' and 'avatarCapsuleDepth'. More tweeking to avatar height calculation. A little better but short avatar's feet are above the terrain and tall avatar's feet are a little below the ground.
2012-11-21BulletSim: add terrainImplementation parameter with default to Mesh.Robert Adams1-0/+1
2012-11-21BulletSim: enablement and debugging of mesh terrain.Robert Adams1-3/+3
2012-11-21BulletSim: pull heightmap implementation out of the terrain manager so a ↵Robert Adams1-2/+2
mesh terrain can be implemented.
2012-11-21BulletSim: rename SHAPE_AVATAR to SHAPE_CAPSULE with the eye to eventually ↵Robert Adams1-1/+1
having mesh avatars.
2012-11-21BulletSim: uplevel FixedShapeKey out of ShapeData structure (since it is ↵Robert Adams1-11/+13
getting simplified out of existance someday) and update all the references to same.
2012-11-21BulletSim: uplevel PhysicsShapeType out of ShapeData structure (since it is ↵Robert Adams1-18/+19
getting simplified out of existance someday) and update all the references to that enum.
2012-11-18BulletSim: remove the obsolete interface to the Bullet code. Update ↵Robert Adams1-134/+0
BulletSim libraries with code stripped of the obsolete code.
2012-11-06BulletSim: Add separate linear and angular damping function calls. Add ↵Robert Adams1-0/+9
function for recalculating compound shape bounding box.
2012-11-03BulletSim: fix compound linkset crash by not freeing shape of child prims.Robert Adams1-1/+1
Remove all compilation warnings (mostly 'protected' in sealed classes.) Add the dynamicAabbEnable parameter to creation of compound shapes.
2012-11-03BulletSim: parameterize selection of linkset implementationRobert Adams1-0/+1
2012-11-03BulletSim: debugging of compound shape implementation of linksets.Robert Adams1-4/+11
Add compound shape creation and freeing in shape manager. Add optional taint-time execution method and update code to use it. Add API2 linkage for more compound shape methods (get num, get/remove by index, ...) Modify perferred shape return so linkset children can have differet shapes than root. Add Position and Orientation calls to linksets so children can be moved around by the linkset by its own calculation. Allows for very general linkset implementations.
2012-11-03BulletSim: Remove use of shapeData in ShapeCollection and rely on the ↵Robert Adams1-0/+1
available BSPhysObject varaiables. Fix line endings in BSLinksetCompound.
2012-11-03BulletSim: add definitions for linkset collision maskRobert Adams1-0/+3
2012-11-03BulletSim: correct spelling of Bullet call. It's 'swept' not 'sweep'.Robert Adams1-2/+2
2012-10-19BulletSim: reorder avatar collision checking to eliminate double collision_end.Robert Adams1-1/+1
Various tweekings to avatar shape/mass/inertia/etc. Remove change from avatar radius to diameter. But still the avatar sinks. Collision_end now happens immediately rather than at the next subscription time.
2012-10-19BulletSim: change nonimal physics frame rate to 55 to give same numbers as ODE.Robert Adams1-1/+1
Change character scaling to represent size of capsule (diameter rather than radius) Modify create capsule call to pass radius and height. Eliminate errors when calculating shape inertia (should have some type checking).
2012-10-19BulletSim: Update BSCharacter to use API2 interface.Robert Adams1-2/+9
Add capsule shape to BSShapeCollection(). Remember last updated values so inter frame diffs can be computed. Parameterize avatarStandingFriction and reduce to 10 from 999. The latter high value made avatars very hard to push. Set CCD parameters for prims and characters of specified.
2012-10-11BulletSim: remove some unused API2 calls because they were removed from ↵Robert Adams1-12/+0
Bullet 2.81
2012-10-11BulletSim: cosmetic changes (comments and renaming). Give mass to terrain to ↵Robert Adams1-2/+1
improve interactions.
2012-10-11BulletSim: Add Force* operations to objects to allow direct push to engine.Robert Adams1-0/+2
Update BSDynamics to use same (don't want to delay updates til next taint-time. Suppress queuing a taint update for position and orientation calls if value does not change. Move Bullet timing statistics call from C# back to C++ code. Throttle taints per simulation step and add parameter to set. By default, don't create hulls for physical objects. Add a parameter to turn on and off.
2012-10-11BulletSim: Fix crash when linking large physical linksets.Robert Adams1-2/+12
Properly remove and restore linkage constraints when upgrading a prim's mesh to a hull. Lots more debug logging. Definitions and use of Bullet structure dumping. Centralize detail logging so a Flush() can be added for debugging.
2012-10-02BulletSim: Make parameter value defaults match what should be the default ↵Robert Adams1-1/+1
and what is in OpenSimDefaults.ini. Comment and debug printout changes.
2012-10-02BulletSim: impliment FloatOnWater OS function.Robert Adams1-7/+1
2012-09-27BulletSim: rename some constraint variables to be consistant with other name ↵Robert Adams1-4/+17
use. Added callbacks for shape and body changes in GetBodyAndShape() so the linkset constraints can be picked up and restored. A better design might be to have a "prim shape changed" event. Think about that. Added constraint types to general constraint class.
2012-09-27BulletSim: remove the trailing spaces from lines to make git happierRobert Adams1-2/+2
2012-09-27BulletSim: Fix linkset crash. Caused by the different body and shapeRobert Adams1-4/+4
pointers at runtime and at taint-time. Now passes the body into the taint. Vehicles zero inertia when active to eliminate Bullet's contribution to vehicle motion.
2012-09-27BulletSim: btGhostObjects working to make 'volume detect' work.Robert Adams1-26/+52
Rearrangement and cleanup of shape collection code. Much more readable. Enabling and use of collision filters and masks. Addition of ID to body creation BulletSimAPI calls so always set in shape for collision reporting. Change default of ShouldSplitSimulationIslands and ShouldRandomizeSolverOrder from 'false' to 'true'. When 'false', this suppresses NO_CONTACT_RESPONSE which makes volume detect fail.
2012-09-27BulletSim: renamed members of BulletShape, BulletSim and BulletBodyRobert Adams1-18/+31
so the members case is consistant. Caused modifications everywhere. New logic in BSShapeCollection to track use and sharing of shapes. I just reslized, though, that shapes cannot be shared because the shape's UserPointer is the localID of the prim and is required for tracking collisions. More changes coming. Added DuplicateCollisionShape2() to API and changed BuildNativeShape2 to take a ShapeData structure so don't have to pass so many parameters. This matches the latest version of BulletSim.dll. Additions and removal of DetailLog() statements for debugging.
2012-09-27BulletSim: complete code for managed code shape and body tracking. Not debugged.Robert Adams1-4/+39
Eliminate some null exceptions created adding the above code. Add and remove some detailed logging statements.
2012-09-27BulletSim: add class and infrastructure for shape and objectRobert Adams1-25/+66
tracking in the C# code. Needed for the changing body type (to and from GhostObjects) for volumeDetect.
2012-09-27BulletSim: move a bunch of common logic out of BSPrim and BSCharacterRobert Adams1-47/+10
and into the parent class BSPhysObject. Rework collision logic to enable extra collision after done colliding. Rename 'Scene' to 'PhysicsScene' to differentiate it from the simulator 'Scene'.
2012-09-15BulletSim: add the debugging routine DumpRigidBody2() to API2.Robert Adams1-3/+6
2012-09-15BulletSim: Add 'IsNativeShape2' callRobert Adams1-4/+7