Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-09-03 | BulletSim: first version of raycast. Only single contact point and no | Robert Adams | 1 | -0/+14 | |
filtering. | |||||
2017-09-02 | BulletSim: most of the plumbing for raycast. Needs new BulletSim.dll to | Robert Adams | 1 | -0/+7 | |
work. | |||||
2017-01-05 | Massive tab and trailing space cleanup | Melanie Thielker | 1 | -60/+60 | |
2015-08-30 | Renamed the namespaces too | Diva Canto | 1 | -1/+1 | |
2015-08-30 | Major renaming of Physics dlls / folders. No functional changes, just renames. | Diva Canto | 1 | -0/+0 | |
2015-01-25 | BulletSim: add parameters and parameter definitions for VHACD | Robert Adams | 1 | -0/+15 | |
addition coming. | |||||
2014-08-21 | BulletSim: add new Bullet 2.82 constraint type codes and rename the | Robert Adams | 1 | -1/+3 | |
BulletSim fixed constraint to not be confused with the native version. | |||||
2013-10-26 | BulletSim: update collision flags to make sure they fit in the shorts provided. | Robert Adams | 1 | -7/+7 | |
2013-09-11 | BulletSim: add ClearCollisionProxyCache function to API. | Robert Adams | 1 | -0/+2 | |
Add proxy cache clearing when some properties are changed. This fixes a problem where objects would stop colliding of they were moved with setPosition mulitple times. | |||||
2013-09-11 | BulletSim: add axis parameter for specifying enable, damping, and stiffness ↵ | Robert Adams | 1 | -1/+1 | |
for spring constraints. Renumber parameter ops since I can as no one is using them yet. | |||||
2013-09-11 | BulletSim: add physChangeLinkSpring to change linkset link to be a spring ↵ | Robert Adams | 1 | -1/+3 | |
constraint. Add implementation to create spring constraint. Send up property updates for linkset children at the end of flexible linkset links. The simulator probably doesn't do the right thing yet. | |||||
2013-09-11 | BulletSim: add unmanaged and XNA functions for hinge, slider and spring ↵ | Robert Adams | 1 | -0/+24 | |
constraints. | |||||
2013-09-11 | BulletSim: add API and calls for spring constraint parameters. | Robert Adams | 1 | -0/+8 | |
2013-05-21 | BulletSim: add gImpact shape type. Add logic to use gImpact shape | Robert Adams | 1 | -0/+5 | |
for prims that have cuts or holes. Default logic to 'off' as it needs debugging. | |||||
2013-04-29 | BulletSim: remove trailing white space to make git happier. No functional ↵ | Robert Adams | 1 | -3/+3 | |
changes. | |||||
2013-04-24 | BulletSim: update DLLs and SOs to they have no dependencies on newer | Robert Adams | 1 | -0/+7 | |
glibc (2.14) since that is not yet in some Linux distributions. Add unmanaged API calls and code for creating single convex hull shapes. | |||||
2013-04-01 | BulletSim: update unmanaged API for HACD parameter passing. Bullet HACD | Robert Adams | 1 | -1/+16 | |
mesh to hull conversion calls in place but code not working. Update BulletSim DLLs and SOs for new API and HACD code. | |||||
2013-02-17 | BulletSim: add calls for creating all the different Bullet constraint types. | Robert Adams | 1 | -0/+27 | |
Updated the DLLs and SOs and code for BulletXNA to create the types. All the detailed control calls are not all in place yet. | |||||
2013-02-12 | BulletSim: More work on center-of-mass. Remove linksetinfo and rely on ↵ | Robert Adams | 1 | -3/+4 | |
simulator to update info. | |||||
2013-02-08 | BulletSim: add parameter to set global contact breaking threshold. Update ↵ | Robert Adams | 1 | -0/+1 | |
DLLs and SOs for setting same. | |||||
2013-02-05 | BulletSim: rework some parameter setting implementation moving functionality ↵ | Robert Adams | 1 | -36/+2 | |
that was in BSScene to BSParam. Remove unused parameters that were passed to the unmanaged code. Update DLLs and SOs for the new param block. | |||||
2013-01-28 | BulletSim: rename 'uint' to 'UInt32' to make clear the type that is passed ↵ | Robert Adams | 1 | -14/+14 | |
to unmanaged code. | |||||
2013-01-23 | BulletSim: pass up and report the real collision penetration. | Robert Adams | 1 | -0/+1 | |
2013-01-23 | BulletSim: working on COM | Robert Adams | 1 | -0/+19 | |
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-06 | BulletSim: comments and removing small compile errors introduced in last commit. | Robert Adams | 1 | -1/+1 | |
2013-01-04 | BulletSim: add ResetBroadphasePool and ResetConstraintSolver diagnostic | Robert Adams | 1 | -6/+10 | |
functions. If values set from console, the functions are called. Looking for why the collision pools fill up with unnecessary stuff. | |||||
2013-01-01 | BulletSim: add parameter to have Bullet output performance statistics | Robert Adams | 1 | -2/+2 | |
every so many frames. Default to off. | |||||
2013-01-01 | BulletSim: move over and port the interface for BulletXNA. | Robert Adams | 1 | -3/+3 | |
Copied BulletSNPlugin.BulletSimAPI to a new BulletSPlugin.BSAPIXNA.cs and then modifyed the latter to comply with the BSAPITemplate definition. Not totally debugged but the code is all there for an INI variable to select either unmanaged C++ Bullet or the C# version of Bullet. | |||||
2013-01-01 | BulletSim: subclass Bullet[World|Body|Shape|Constraint] for unmanaged | Robert Adams | 1 | -1/+1 | |
to have pointers and managed to have objects. Initial paste of XNA code. Commented out. | |||||
2012-12-31 | BulletSim: remove unused unmanaged memory reference functions from ↵ | Robert Adams | 1 | -2/+2 | |
BSAPITemplate. | |||||
2012-12-31 | BulletSim: remove rigid body contruction functions from BSAPITemplate that ↵ | Robert Adams | 1 | -5/+0 | |
relied on prebuilt construction info structures. | |||||
2012-12-31 | BulletSim: eliminate the use of the unmanaged HeightMapInfo structure. | Robert Adams | 1 | -16/+2 | |
Remove all related calls from the unmanaged and BSAPITemplate interfaces. Update DLLs and SOs to include the version without HeightMapInfo structures. | |||||
2012-12-31 | BulletSim: complete movement of BulletSimAPI functions to BSAPITemplate. | Robert Adams | 1 | -13/+30 | |
Update BulletSim DLLs and SOs with simplier step function interface. | |||||
2012-12-31 | BulletSim: nearly complete in conversion from BulletSimAPI to BSAPITemplate. ↵ | Robert Adams | 1 | -5/+2 | |
Only initialization and debug fuctions left. | |||||
2012-12-31 | BulletSim: another round of conversion: dynamics world and collision object ↵ | Robert Adams | 1 | -4/+4 | |
functions. | |||||
2012-12-31 | BulletSim: first round of conversion from direct BulletSimAPI interfacing by ↵ | Robert Adams | 1 | -778/+169 | |
BulletSim core to using the BulletSimAPITemplate. Physical object creation and destruction first. | |||||
2012-12-29 | BulletSim: remove check for small motor movement because, while it | Robert Adams | 1 | -1/+1 | |
did the right thing for stopping (speed reducing to zero), it prevented movement from starting (speed increasing from zero). Will revisit when the generalize PID motor is debugged. | |||||
2012-12-29 | BulletSim: tweeking avatar capsule code in an attempt to have | Robert Adams | 1 | -1/+3 | |
asymmetrical avatar capsule work now that rotation is being passed from the simulator. Turns out the Bullet capsule is just not very functional: it doesn't scale properly, the implementation only half does asymmetry and, in general, is hard to work with. Avatar shape is about what it was before these changes. Added initial data structures for avatar shape mesh. | |||||
2012-12-27 | BulletSim: correct collision mask definition for linkset children. | Robert Adams | 1 | -12/+12 | |
Remove unused code. Add comments and TODOs. | |||||
2012-12-24 | BulletSim: Rename some of the interface structures (BulletWorld, ...) | Robert Adams | 1 | -0/+392 | |
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-21 | BulletSim: Move all the parameter variables, tables and get and fetch logic ↵ | Robert Adams | 1 | -33/+35 | |
to a separate, static class for easier addition and to remove all that bulk from the BSScene class. | |||||
2012-12-13 | BulletSim: Add 'BulletSimData' which separates structures created | Robert Adams | 1 | -176/+7 | |
for the operation of BulletSim and those defintiions/structures defined so they can be used in the unmanaged world. Consolidate setting of collision flags so implementation is not scattered. | |||||
2012-12-10 | BulletSim: Fix crash on the destruction of physical linksets. | Robert Adams | 1 | -0/+23 | |
While fixing the above, add methods to physical body and shape pointer wrapper so routines won't have to know that IntPtr.Zero means no physical instance. Fix problem with physical linksets failing after a few sits and unsits by properly restoring child prom positions for compound linksets after multiple selection and deselections. | |||||
2012-12-06 | BulletSim: rewrite and improve vehicle angularDeflection, verticalAttraction, | Robert Adams | 1 | -0/+1 | |
linearMotorUp and related vehicle forces. Fixed problems with downward vehicle position correction forces being too large. Add vehicle collision flag so can sense whether vehicle is on the ground. | |||||
2012-12-03 | BulletSim: Reduce idle region physics overhead where there are MANY | Robert Adams | 1 | -32/+32 | |
static objects by more restrictive selection of objects that collide with static objects. Rename collision mask fuctions from 'filter' to 'group' so it is clear what is being set. Rename BulletSimAPI.SetCollisionFilterMask() to SetCollisionGroupMask to match above. Restore passing of time step to linear and angular motion component routines. Use buffering vehicle physical parameter get/set routines consistantly. Make range enforcement clearer by using ClampInRange() function for parameter setting. Remove commented out experimental vehicle calculations. | |||||
2012-12-01 | BulletSim: Add DumpActivationInfo2 function. Change static objects from ↵ | Robert Adams | 1 | -2/+5 | |
DISABLE_SIMULATION to ISLAND_SLEEPING. Update DLLs and SOs to add DumpActivationInfo2 function. | |||||
2012-11-26 | BulletSim: increase vehicle stability by suppressing Bullet's update to ↵ | Robert Adams | 1 | -1/+1 | |
angular velocity. | |||||
2012-11-25 | BulletSim: add terrain collision margin and vehicle angular damping | Robert Adams | 1 | -0/+7 | |
parameters to the parameter block. New API call for setting collision margin. | |||||
2012-11-22 | Rename BulletSim's PhysicsShapeType to BSPhysicsShapeType because it | Melanie | 1 | -5/+5 | |
conflicts with PhysicsShape type defined in later libOMV |