Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-03-01 | BulletSim: more things into the TODO list. | Robert Adams | 1 | -1/+6 | |
2013-02-26 | BulletSim: fix crash around race condition when a mesh asset cannot | Robert Adams | 1 | -7/+11 | |
be fetched. Update TODO list. | |||||
2013-02-21 | BulletSim: add OutOfBounds logic and some position sanity checking | Robert Adams | 1 | -10/+12 | |
to eliminate some of the "cannot find terrain height" warning messages. | |||||
2013-02-05 | BulletSim: remove degenerate triangles from meshes. This fixes the | Robert Adams | 1 | -0/+2 | |
invisible barriers in sculptie doorways (Mantis 6529). Bump up level-of-detail for physical meshes to 32 (the max). This fixes the invisible barriers that showed up in prim cut arches. NOTE: the default LOD values are removed from OpenSimDefaults.ini. If you don't change your OpenSimDefaults.ini, you will continue to see the arch problem. | |||||
2013-02-05 | BulletSim: add debugging looking for doorway sculpty problems | Robert Adams | 1 | -0/+3 | |
2013-02-01 | BulletSim: fix problem where editting a physical linkset caused the | Robert Adams | 1 | -0/+1 | |
child prim physical positions to get out of sync with the view. More reliably compute the offset of children in a physical linkset. | |||||
2013-01-31 | BulletSim: fix crash caused when linksets were rebuilt. A problem added | Robert Adams | 1 | -0/+4 | |
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 | -19/+11 | |
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-27 | BulletSim: first attempt at reporting top colliders | Robert Adams | 1 | -0/+4 | |
2013-01-27 | BulletSim: parameterize several vehicle debugging values: physical linear ↵ | Robert Adams | 1 | -2/+7 | |
and angular force factors now default to less than 1 (0.2) vehicle friction and restitution now default to low values | |||||
2013-01-23 | BulletSim: working on COM | Robert Adams | 1 | -0/+2 | |
2013-01-21 | BulletSim: allow changing position and rotation of a child of a linkset | Robert Adams | 1 | -12/+16 | |
without rebuilding the whole compound shape. Should make vehicles move smoother. | |||||
2013-01-21 | BulletSim: remove unused MaxTaintsToProcessPerStep parameter | Robert Adams | 1 | -0/+2 | |
2013-01-20 | BulletSim: modify motors to return correction rather than current value | Robert Adams | 1 | -0/+3 | |
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-17 | BulletSim: Add one function that all actors who act on the physical | Robert Adams | 1 | -1/+5 | |
can use to know if the object is currently active. Code cleaning including use of Util.ClampV function. | |||||
2013-01-15 | BulletSim: add the editting children in linkset going phantom bug to TODO list. | Robert Adams | 1 | -0/+2 | |
2013-01-15 | BulletSim: don't modify angular parameters when doing LIMIT_MOTOR_UP. | Robert Adams | 1 | -12/+12 | |
It was a dumb idea to try and do a nose over feature for jumping cars anyway. Add better logging of native shape creation/reuse so can tell the difference. | |||||
2013-01-15 | BulletSim: add debugging messages to know when assets for physical | Robert Adams | 1 | -0/+17 | |
objects have been fetched. Update TODO list with more work. | |||||
2013-01-11 | BulletSim: move center of gravity of linkset to its geometric center. | Robert Adams | 1 | -0/+2 | |
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: remove double application of buoyancy. Centralize computation of ↵ | Robert Adams | 1 | -27/+31 | |
buoyancy. Add motor angular debugging controls. | |||||
2013-01-08 | BulletSim: Fix hover height (boats float at the correct level). | Robert Adams | 1 | -2/+2 | |
Fix problem of vehicles going crazy when backing up. | |||||
2013-01-07 | BulletSim: add function to push avatar up when hitting stairs. | Robert Adams | 1 | -0/+2 | |
It looks like BulletSim and ODE rely on penetration correction to cause the avatar to move up and thus allowing walking up stairs. Object penetration was minimized for walking and flying (so one doesn't go through walls) and this stopped stairs from working. This commit introduces avatar movement code to check for collisions at the feet while walking and attempts to raise the avatar for the steps. Not yet perfect but movement is better. | |||||
2013-01-06 | BulletSim: update DLLs and SOs with better debugging output. | Robert Adams | 1 | -3/+9 | |
Add definition of hand crafted avatar mesh. Not used yet. Comments and cleanup. | |||||
2013-01-04 | BulletSim: implement llMoveToTarget by adding PIDActive, etc. | Robert Adams | 1 | -8/+12 | |
Implementation of non-vehicle hover but haven't tested it a lot. Update TODO list. | |||||
2012-12-31 | BulletSim: complete movement of BulletSimAPI functions to BSAPITemplate. | Robert Adams | 1 | -1/+9 | |
Update BulletSim DLLs and SOs with simplier step function interface. | |||||
2012-12-31 | BulletSim: first round of conversion from direct BulletSimAPI interfacing by ↵ | Robert Adams | 1 | -1/+6 | |
BulletSim core to using the BulletSimAPITemplate. Physical object creation and destruction first. | |||||
2012-12-31 | BulletSim: change physical data structures to classes. Add default | Robert Adams | 1 | -0/+4 | |
instantiations for PhysBody and PhysShape when BSPhysObject is created to account for them being classes and not structures. Update TODO list. | |||||
2012-12-27 | BulletSim: correct collision mask definition for linkset children. | Robert Adams | 1 | -0/+1 | |
Remove unused code. Add comments and TODOs. | |||||
2012-12-27 | BulletSim: move logic for IsColliding, CollidingGround and CollidingObj from ↵ | Robert Adams | 1 | -1/+2 | |
individual sub-classes and up to parent BSPhysObject class. | |||||
2012-12-27 | BulletSim: fix buoyancy so it's properly set by a script when an | Robert Adams | 1 | -8/+16 | |
object is selected. Update TODO list. | |||||
2012-12-27 | BulletSim: add physical parameter min/max constants in BSParam. I just don't ↵ | Robert Adams | 1 | -0/+1 | |
like raw numbers scattered around the code. | |||||
2012-12-24 | BulletSim: Rename some of the interface structures (BulletWorld, ...) | Robert Adams | 1 | -0/+7 | |
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-24 | BulletSim: Fix single physical prim reporting its mass as zero. | Robert Adams | 1 | -2/+13 | |
Properly return root mass as mass of just the root prim rather than the mass of the linkset. SOG has the logic to add the masses together to get the linkset mass. Update TODO list. | |||||
2012-12-22 | BulletSim: modify avatar motor code to make falling movement better. Clean ↵ | Robert Adams | 1 | -0/+3 | |
up some usages. Disable motor when done. | |||||
2012-12-21 | BulletSim: begin movement of parameters from pinned memory block to ↵ | Robert Adams | 1 | -7/+9 | |
variables all in managed code. Add note to TODO list to remember to do the rest. Other updates to TODO list. | |||||
2012-12-20 | BulletSim: angularMotorUp working again (seems a little slow as it takes ↵ | Robert Adams | 1 | -11/+22 | |
longer than timescale to correct, but getting better). Disabled angularDeflection (need to resolve interactions between angular corrections). Update TODO list. | |||||
2012-12-18 | BulletSim: comments and TODO list update | Robert Adams | 1 | -1/+2 | |
2012-12-26 | BulletSim: scale the force for external AddForce by the simulation | Robert Adams | 1 | -0/+4 | |
step time so it will be applied completely the next step. The internal AddForce routine does not scale the force. | |||||
2012-12-25 | BulletSim: make llBuoyancy work. For some reason, Bullet resets an | Robert Adams | 1 | -1/+2 | |
object's individual gravity to the world gravity when the object is added to the physical world. | |||||
2012-12-17 | BulletSim: fix vehicles going underground when unsat. Problem was that, when ↵ | Robert Adams | 1 | -1/+1 | |
doing unsit, the order of operations on the prims and the vehicle is very chaotic and not in a good order so the root prim was being left physical and thus it fell for a bit. Also changed default of velocity scaling to be closer to the movement standard. | |||||
2012-12-16 | BulletSim: add even more to the TODO list. | Robert Adams | 1 | -4/+27 | |
2012-12-16 | BulletSim: rip out old code for linkset child position fetching. BulletSim ↵ | Robert Adams | 1 | -0/+3 | |
doesn't need to do that bookkeeping because SOG/SOP already does it. | |||||
2012-12-13 | BulletSim: Add more to the TODO list. Clean up and improve some comments. | Robert Adams | 1 | -2/+5 | |
2012-12-12 | BulletSim: updates and rearrangement of the TODO list. | Robert Adams | 1 | -14/+33 | |
2012-12-11 | BulletSim: protect prim property setting to remove crash from taints setting ↵ | Robert Adams | 1 | -2/+7 | |
properties after the destroy object taint has happened. | |||||
2012-12-11 | BulletSim: add ini file and command line parameters to control | Robert Adams | 1 | -2/+5 | |
dumping of physical vehicle parameters (out of Bullet) on each simulation step and to optionally scale vehicle angular velocity by the time step. The latter looks to be part of a difference between angular parameters for ODE and BulletSim. SL docs say angular velocity is measured in radians/timeScale. Not sure if this is different than what ODE does. | |||||
2012-12-08 | BulletSim: update comments and add more to TODO list. | Robert Adams | 1 | -1/+7 | |
2012-12-06 | BulletSim: update and add to the TODO list. | Robert Adams | 1 | -31/+56 | |
2012-12-03 | BulletSim: rework angular corrections to remove any hybrid code and compute ↵ | Robert Adams | 1 | -0/+1 | |
absolute collections. | |||||
2012-12-03 | BulletSim: add stubs for generalization of preStep actions. Will eventually ↵ | Robert Adams | 1 | -1/+5 | |
replace the specialized vehicle processing with preStep event processing. Add TODO comments about this feature. Redo line endings in TODO file to be all Linux. |