Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-05-06 | BulletSim: extend BSActorLockAxis to allow locking linear movement in | Robert Adams | 1 | -2/+2 | |
addition to angular movement. Not enabled by anything yet. | |||||
2013-05-03 | BulletSim: zero vehicle motion when changing vehicle type. | Robert Adams | 1 | -1/+1 | |
Rebuild compound linkset of any child in the linkset changes shape. Comments and better detailed logging messages. | |||||
2013-05-02 | BulletSim: Rebuild physical body if physical shape changes for mesh and hull. | Robert Adams | 1 | -1/+1 | |
Properly rebuilds collision caches. Release asset data fetched when building mesh or hulls. | |||||
2013-04-29 | BulletSim: remove trailing white space to make git happier. No functional ↵ | Robert Adams | 1 | -1/+1 | |
changes. | |||||
2013-04-29 | BulletSim: rename variable 'PhysicsScene' to be either 'PhysScene' or ↵ | Robert Adams | 1 | -94/+94 | |
'm_physicsScene' to match coding conventions and reduce confusion. | |||||
2013-04-29 | BulletSim: massive refactor of shape classes. Removed shape specific code ↵ | Robert Adams | 1 | -22/+12 | |
from BSShapeCollection. Using BSShape* classes to hold references to shape. Simplified shape dependency callbacks. Remove 'PreferredShape' methods and have each class specify shape type. Disable compound shape linkset for a later commit that will simplify linkset implementation. | |||||
2013-04-23 | BulletSim: improve avatar stair walking up. Add more parameters to control force | Robert Adams | 1 | -0/+5 | |
of both position change and up force that move avatars over barrier. Default parameters are for steps up to 0.5m in height. | |||||
2013-04-08 | BulletSim: moving comments around. No functional change. | Robert Adams | 1 | -9/+1 | |
2013-04-08 | BulletSim: clean up actor code so routines use the same coding pattern. | Robert Adams | 1 | -11/+11 | |
Fix a few enabling problems. | |||||
2013-04-08 | BulletSim: complete movement of physical object action code out of the | Robert Adams | 1 | -255/+52 | |
physical object and into actors for setForce, setTorque, hover, lock axis and avatar move. | |||||
2013-03-31 | BulletSim: not quite functional axis lock code. | Robert Adams | 1 | -1/+1 | |
2013-03-31 | BulletSim: convert BSDynamic to a BSActor and change BSPrim to set | Robert Adams | 1 | -31/+15 | |
up the vehicle actor. | |||||
2013-03-31 | BulletSim: Add physical 'actors' that operate on the physical object. | Robert Adams | 1 | -74/+9 | |
Add first 'actor' for locked axis. | |||||
2013-03-25 | BulletSim: fix possible race condition where an prim's asset can be ↵ | Robert Adams | 1 | -1/+1 | |
requested quicker than the asset fetcher returns and thus falsely reporting that an asset was not fetched and defaulting the assset to a bounding box. | |||||
2013-03-19 | BulletSim: add terrain contact processing threshold parameter. Initialize ↵ | Robert Adams | 1 | -1/+1 | |
contact processing threshold for static object as well as mesh terrain. | |||||
2013-03-01 | BulletSim: add parameters, code cleanup around checking and enforcing | Robert Adams | 1 | -6/+41 | |
maximum velocity and angular velocity values for prims. | |||||
2013-02-26 | BulletSim: fix crash around race condition when a mesh asset cannot | Robert Adams | 1 | -1/+1 | |
be fetched. Update TODO list. | |||||
2013-02-21 | BulletSim: add OutOfBounds logic and some position sanity checking | Robert Adams | 1 | -3/+24 | |
to eliminate some of the "cannot find terrain height" warning messages. | |||||
2013-02-17 | BulletSim: experimental lock axis code using constraints. Not enabled | Robert Adams | 1 | -20/+72 | |
by default. Like more debugging is needed. | |||||
2013-02-16 | BulletSim: fix physical object appearing to slowly float off when | Robert Adams | 1 | -1/+1 | |
they stop moving. | |||||
2013-02-12 | BulletSim: fix density since the simulator/viewer track density in a | Robert Adams | 1 | -3/+52 | |
funny unit that is 100 times real density (default 1000). Fix avatar drifting slowly when stationary flying. Fix for physical prims getting corrected for being under terrain when it was just its geometric center that was below terrain. Add PreUpdatePropertyAction allowing plugable modifiction of phys parameters returned from Bullet. Fix an exception setting GravityMultiplier on initialization. Update DLLs and SOs for good measure (no functional change). | |||||
2013-02-12 | BulletSim: More work on center-of-mass. Remove linksetinfo and rely on ↵ | Robert Adams | 1 | -2/+2 | |
simulator to update info. | |||||
2013-02-08 | BulletSim: include the linkage to the layered prim implementation. Separate ↵ | Robert Adams | 1 | -144/+51 | |
layers for physical (vs simulator) location displacement and linksets. | |||||
2013-02-07 | BulletSim: Adapt BulletSim to the newer physical properties. Viewer | Robert Adams | 1 | -29/+25 | |
dialog setting of friction, restitution, ... working. | |||||
2013-02-07 | BulletSim: fix exceptions caused by setting physical properties before the ↵ | Robert Adams | 1 | -5/+10 | |
prim body is initialized. | |||||
2013-02-07 | BulletSim: add user setting of friction, density and restitution. | Robert Adams | 1 | -20/+79 | |
2013-01-31 | BulletSim: fix crash caused when linksets were rebuilt. A problem added | Robert Adams | 1 | -4/+12 | |
when individual child pos/rot changes were implementated a week or so ago. Remove some passing of inTaintTime flag when it was never false. | |||||
2013-01-31 | BulletSim: make sure vehicle physical properties are set when going | Robert Adams | 1 | -2/+2 | |
physical by delaying setting until pre-step time. Change vehicle.Refresh() to schedule the pre-step setting. Comments and updating of TODO list. | |||||
2013-01-29 | BulletSim: fix physics repositioning when under ground to only happen | Robert Adams | 1 | -1/+5 | |
for physical objects. Non-physical objects can go anywhere they want. | |||||
2013-01-28 | BulletSim: first unit test: vehicle angular attraction | Robert Adams | 1 | -16/+16 | |
2013-01-27 | BulletSim: reinstate the supression of rotational velocity for vehicles | Robert Adams | 1 | -1/+1 | |
2013-01-27 | BulletSim: first attempt at reporting top colliders | Robert Adams | 1 | -6/+0 | |
2013-01-27 | BulletSim: finish the post step event for physical object actions. Modify ↵ | Robert Adams | 1 | -0/+6 | |
vehicle to use post step event for logging. | |||||
2013-01-24 | BulletSim: zero motion on an object that we pop up because it is | Robert Adams | 1 | -1/+7 | |
below terrain. If the position is being corrected because it is out of bounds, all other movement rules are out the window. | |||||
2013-01-23 | BulletSim: remove setting of vehicle InterpolationRotationalVelocity. | Robert Adams | 1 | -2/+2 | |
This doesn't seem to help the vehicle stability. Rename vehicle internal variables adding a "V" or "W" so it is clear when coordinates are vehicle or world relative. | |||||
2013-01-23 | BulletSim: small change to center-of-mass computation left out last commit | Robert Adams | 1 | -3/+8 | |
2013-01-23 | BulletSim: center-of-gravity linkset changes. Not working yet. | Robert Adams | 1 | -21/+1 | |
Conflicts: OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs | |||||
2013-01-23 | BulletSim: working on COM | Robert Adams | 1 | -4/+11 | |
2013-01-23 | BulletSim: remove the unused RestoreBodyDependencies used by linksets | Robert Adams | 1 | -18/+2 | |
and vehicles and clean up code by removing their kludgyness. | |||||
2013-01-21 | BulletSim: Tweeks to vehicle motion. | Robert Adams | 1 | -1/+2 | |
Pass through old angular velocity making for smoother transitions. Remove some old kludges for angular motion (damping and rotvel suppression). | |||||
2013-01-21 | BulletSim: allow changing position and rotation of a child of a linkset | Robert Adams | 1 | -7/+9 | |
without rebuilding the whole compound shape. Should make vehicles move smoother. | |||||
2013-01-20 | BulletSim: More aggressive as setting character velocity to zero | Robert Adams | 1 | -4/+9 | |
when should be standing. Modify angular force routines to be the same pattern as linear force routines. BulletSim vehicle turning is scaled like SL and is DIFFERENT THAN ODE!! Fix some bugs in BSMotor dealing with the motor going to zero. Add a bunch of parameters: MaxLinearVelocity, MaxAngularVelocity, MaxAddForceMagnitude, VehicleMaxLinearVelocity, VehicleMaxAngularVelocity, and most of the values are defaulted to values that are larger than in SL. Use the new parameters in BSPrim, BSCharacter and BSDynamic. | |||||
2013-01-20 | BulletSim: modify motors to return correction rather than current value | Robert Adams | 1 | -1/+1 | |
to better use them for incremental updates. Modify prim and character to use the new motors. Simplify the vehicle linear movement code to just update the velocity directly or the basic movement. | |||||
2013-01-18 | BulletSim: add logic to turn off pre-step actions when object goes | Robert Adams | 1 | -0/+21 | |
non-active. This turns off 'setForce', 'setTorque' and 'moveToTarget' when the object is selected or made non-physical. | |||||
2013-01-17 | BulletSim: Add one function that all actors who act on the physical | Robert Adams | 1 | -20/+13 | |
can use to know if the object is currently active. Code cleaning including use of Util.ClampV function. | |||||
2013-01-14 | BulletSim: fix not moving physical objects below terrain to over terrain. | Robert Adams | 1 | -1/+1 | |
Add locking on register prestep action list preventing potential race conditions. Little comment and formatting changes. | |||||
2013-01-14 | BulletSim: disable center-of-mass computation for linksets until debugged. ↵ | Robert Adams | 1 | -14/+12 | |
Move physical prim above ground if it is underground. Previously tried to correct by applying and up force but the prim would never go through the ground. | |||||
2013-01-11 | BulletSim: move center of gravity of linkset to its geometric center. | Robert Adams | 1 | -10/+30 | |
Necessitated allowing simulator and physical position of a body to get out of sync since Bullet assumes that <0,0,0> is the center of mass. Update DLLs and SOs for the UpdateChildTransform so positions of individual prim in a linkset can be implemented. | |||||
2013-01-11 | BulletSim: Add IsSelected attribute to physical objects. Have vehicles check ↵ | Robert Adams | 1 | -20/+61 | |
to see if physical before trying to step. Replace vehicle gravity application. Previously relying on Bullet to apply gravity but since vehicles over-ride the velocity calculation, gravity never had a chance to accelerate the body down. Added AddForceImpulse as well as AddForce for those who need to apply immediate velocity updates. Use the impulse to apply the linear motion. | |||||
2013-01-11 | BulletSim: remove double application of buoyancy. Centralize computation of ↵ | Robert Adams | 1 | -19/+4 | |
buoyancy. Add motor angular debugging controls. |