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