aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-12-01BulletSim: Add DumpActivationInfo2 function. Change static objects from ↵Robert Adams1-2/+2
DISABLE_SIMULATION to ISLAND_SLEEPING. Update DLLs and SOs to add DumpActivationInfo2 function.
2012-11-29BulletSim: remove time scaling of computed vehicle absolute velocity since ↵Robert Adams1-11/+4
Bullet will scale the movement by the time slice. Restore LIMIT_MOTOR_UP to definitition of BOAT simce some vehicle engines use it even for land vehicles. Push vehicle parameter updates through the regular property update to solve vehicles floating off when they should be stopped.
2012-11-28BulletSim: move GetWaterLevelAtXYZ from BSScene to BSPhysTerrain.Robert Adams1-3/+4
2012-11-26BulletSim: increase vehicle stability by suppressing Bullet's update to ↵Robert Adams1-44/+6
angular velocity.
2012-11-25BulletSim: small change to add position correction force with AddForce ↵Robert Adams1-5/+4
rather than just storing it in the variable
2012-11-22Rename BulletSim's PhysicsShapeType to BSPhysicsShapeType because itMelanie1-1/+1
conflicts with PhysicsShape type defined in later libOMV
2012-11-21BulletSim: Make avatar capsule so it is not circular.Robert Adams1-1/+3
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: uplevel PhysicsShapeType out of ShapeData structure (since it is ↵Robert Adams1-1/+1
getting simplified out of existance someday) and update all the references to that enum.
2012-11-21BulletSim: change PositionSanityCheck to apply a force to correct position ↵Robert Adams1-32/+29
corrections (below ground and floating).
2012-11-18BulletSim: Use base class constructors for initialization of BSShape and ↵Robert Adams1-1/+1
other classes.
2012-11-06BulletSim: Add ZeroAngularMotion method to physical objects. Add inTaint ↵Robert Adams1-16/+45
flag to ZeroMotion method. Update the references to those functions.
2012-11-03BulletSim: fix compound linkset crash by not freeing shape of child prims.Robert Adams1-0/+3
Remove all compilation warnings (mostly 'protected' in sealed classes.) Add the dynamicAabbEnable parameter to creation of compound shapes.
2012-11-03BulletSim: debugging of compound shape implementation of linksets.Robert Adams1-36/+16
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: Add RawPosition and RawOrientation to BSPhysObject and rename ↵Robert Adams1-2/+12
MassRaw to RawMass. Fix BSShapeCollection to use Raw* for creating the body to eliminate exception from referencing the physical body before it has been created.
2012-11-03BulletSim: Remove use of shapeData in ShapeCollection and rely on the ↵Robert Adams1-25/+5
available BSPhysObject varaiables. Fix line endings in BSLinksetCompound.
2012-11-03BulletSim: rename BSBody and BSShape to PhysBody and PhysShape. Add skeleton ↵Robert Adams1-64/+64
of BSLinksetCompound.
2012-11-03BulletSim: vehicle tweeking.Robert Adams1-8/+37
Add AddTorque() method to BSPrim. Remove some manual motor actions in computing angular force (will eventually be replaced with motor class). Remove some experimental changes.
2012-11-03BulletSim: remove center-of-mass setting for linksets because it causes the ↵Robert Adams1-1/+1
constraint calculation to pull the objects together.
2012-11-03BulletSim: centralize mass/inertia computation with ↵Robert Adams1-13/+26
UpdatePhysicalMassProperties() function. Didn't add setMassRaw because assignment with side effect is dirty.
2012-11-03BulletSim: Add activations after vehicle properties change. Problem was the ↵Robert Adams1-12/+62
vehicle was going to sleep while waiting for commands. Make AddAngularForce work the same way as AddForce -- accumulates values and pushes them once into Bullet.
2012-11-03BulletSim: Add banking and other new code to vechile dynamics. Add third ↵Robert Adams1-1/+3
party license and contributor in for for Aurora-Sim project for physics code.
2012-10-22BulletSim: remove chatty debug message.Robert Adams1-1/+1
2012-10-22BulletSim: fix bug that caused error (and a crash on 32 bit Linux) when mesh ↵Robert Adams1-4/+5
assets weren't already in the cache. Comment cleanups.
2012-10-22BulletSim: fix problem of not rebuilding shape by clearing last rebuild ↵Robert Adams1-0/+1
failed flag in BSPrim.ForceBodyShapeRebuild()
2012-10-22BulletSim: remove trailing spaces to make git happy.Robert Adams1-5/+5
2012-10-19BulletSim: add asset fetching so BulletSim works with new physics asset ↵Robert Adams1-48/+48
handling. Refactor some names to make them available for the asset tracking and fetching.
2012-10-19BulletSim: change nonimal physics frame rate to 55 to give same numbers as ODE.Robert Adams1-7/+7
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: remove code in ShapeCollection that hinted at shape sharing.Robert Adams1-8/+8
Add new function to ParameterDefn for calling BulletSimAPI to set values. Tweaking to BSCharacter parameter setting to try and have avatars stand.
2012-10-19BulletSim: Update BSCharacter to use API2 interface.Robert Adams1-22/+44
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-2/+2
Bullet 2.81
2012-10-11BulletSim: Use full linkset mass when computing vehicle gravity force. Add ↵Robert Adams1-2/+10
taint-time specification to new AddForce().
2012-10-11BulletSim: cosmetic changes (comments and renaming). Give mass to terrain to ↵Robert Adams1-4/+6
improve interactions.
2012-10-11BulletSim: Add Force* operations to objects to allow direct push to engine.Robert Adams1-4/+29
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-3/+6
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: Add ForcePosition and ForceOrientation to BSPhysObject and to its ↵Robert Adams1-5/+34
children of BSPrim and BSCharacter.
2012-10-02BulletSim: impliment FloatOnWater OS function.Robert Adams1-5/+72
2012-10-02BulletSim: remove warnings for unused variables.Robert Adams1-12/+5
2012-09-28BulletSim: remember to release the physical body and shape when a prim is ↵Robert Adams1-9/+9
destroyed. This fixes many problems with physical linksets.
2012-09-27BulletSim: add separate runtime and taint-time linkset children lists to ↵Robert Adams1-2/+1
keep the creation of constraints separate from runtime.
2012-09-27BulletSim: rename some constraint variables to be consistant with other name ↵Robert Adams1-3/+11
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-106/+106
2012-09-27BulletSim: remove the unused body management code from BSPrim. There is no ↵Robert Adams1-374/+0
going back now.
2012-09-27BulletSim: Fix linkset crash. Caused by the different body and shapeRobert Adams1-5/+17
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: Terrain sets proper collision flags on creation.Robert Adams1-32/+30
Static objects are set to ISLAND_SLEEPING rather than DISABLE_SIMULATION. Might reconsider this and, alternatively, have dynamic objects force activation. Clean up use of DetailLog().
2012-09-27BulletSim: btGhostObjects working to make 'volume detect' work.Robert Adams1-6/+22
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-59/+100
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: fix regression that caused cylindar shapes to have a box ↵Robert Adams1-1/+9
collision shape
2012-09-27BulletSim: complete code for managed code shape and body tracking. Not debugged.Robert Adams1-43/+78
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-6/+41
tracking in the C# code. Needed for the changing body type (to and from GhostObjects) for volumeDetect.
2012-09-27BulletSim: Convert BSCharacter to use common BSPhysObject code and variables.Robert Adams1-27/+13
Fix avatar height calculation to properly account for the capsule ends. Rearrange some locking in TerrainManager to eliminate possible race conditions. Move DetailLog() definition into common BSPhysObject class. Some variable renaming to make usage clearer (refactor.rename makes this so easy).