aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-05-08vh: update BulletSim (OpenSim/Region/Physics/BulletSPluginRobert Adams1-46/+138
and DLL/SO) to ac6dcd35fb77f118fc6c3d72cb029591306c7e99 (Mon May 6 21:10:02 2013 -0400) on top of 0.7.5-postfixes.
2012-12-31BulletSim: complete movement of BulletSimAPI functions to BSAPITemplate.Robert Adams1-1/+9
Update BulletSim DLLs and SOs with simplier step function interface.
2012-12-31BulletSim: first round of conversion from direct BulletSimAPI interfacing by ↵Robert Adams1-1/+6
BulletSim core to using the BulletSimAPITemplate. Physical object creation and destruction first.
2012-12-31BulletSim: change physical data structures to classes. Add defaultRobert Adams1-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-27BulletSim: correct collision mask definition for linkset children.Robert Adams1-0/+1
Remove unused code. Add comments and TODOs.
2012-12-27BulletSim: move logic for IsColliding, CollidingGround and CollidingObj from ↵Robert Adams1-1/+2
individual sub-classes and up to parent BSPhysObject class.
2012-12-27BulletSim: fix buoyancy so it's properly set by a script when anRobert Adams1-8/+16
object is selected. Update TODO list.
2012-12-27BulletSim: add physical parameter min/max constants in BSParam. I just don't ↵Robert Adams1-0/+1
like raw numbers scattered around the code.
2012-12-26BulletSim: scale the force for external AddForce by the simulationRobert Adams1-0/+4
step time so it will be applied completely the next step. The internal AddForce routine does not scale the force.
2012-12-25BulletSim: make llBuoyancy work. For some reason, Bullet resets anRobert Adams1-1/+2
object's individual gravity to the world gravity when the object is added to the physical world.
2012-12-24BulletSim: Rename some of the interface structures (BulletWorld, ...)Robert Adams1-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-24BulletSim: Fix single physical prim reporting its mass as zero.Robert Adams1-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-22BulletSim: modify avatar motor code to make falling movement better. Clean ↵Robert Adams1-0/+3
up some usages. Disable motor when done.
2012-12-21BulletSim: begin movement of parameters from pinned memory block to ↵Robert Adams1-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-20BulletSim: angularMotorUp working again (seems a little slow as it takes ↵Robert Adams1-11/+22
longer than timescale to correct, but getting better). Disabled angularDeflection (need to resolve interactions between angular corrections). Update TODO list.
2012-12-18BulletSim: comments and TODO list updateRobert Adams1-1/+2
2012-12-17BulletSim: fix vehicles going underground when unsat. Problem was that, when ↵Robert Adams1-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-16BulletSim: add even more to the TODO list.Robert Adams1-4/+27
2012-12-16BulletSim: rip out old code for linkset child position fetching. BulletSim ↵Robert Adams1-0/+3
doesn't need to do that bookkeeping because SOG/SOP already does it.
2012-12-13BulletSim: Add more to the TODO list. Clean up and improve some comments.Robert Adams1-2/+5
2012-12-12BulletSim: updates and rearrangement of the TODO list.Robert Adams1-14/+33
2012-12-11BulletSim: protect prim property setting to remove crash from taints setting ↵Robert Adams1-2/+7
properties after the destroy object taint has happened.
2012-12-11BulletSim: add ini file and command line parameters to controlRobert Adams1-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-08BulletSim: update comments and add more to TODO list.Robert Adams1-1/+7
2012-12-06BulletSim: update and add to the TODO list.Robert Adams1-31/+56
2012-12-03BulletSim: rework angular corrections to remove any hybrid code and compute ↵Robert Adams1-0/+1
absolute collections.
2012-12-03BulletSim: add stubs for generalization of preStep actions. Will eventually ↵Robert Adams1-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.
2012-12-03BulletSim: begin tracking a TODO list. There just are so many things to ↵Robert Adams1-0/+112
remember to do.