aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/PhysicsModules/BulletS/BSDynamics.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-5/+5
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-338/+761
2012-12-18* Merges BulletSim Updates to BulletSimN(BulletSNPlugin)teravus1-0/+3
2012-12-23* Initial commit of BulletSimN (BulletSNPlugin). Purely C# implementation ↵teravus1-1/+1
of BulletSim. This is designed to be /as close as possible/ to the BulletSim plugin while still being entirely in the managed space to make keeping it up to date easy as possible (no thinking work). This implementation is /slower/ then the c++ version just because it's fully managed, so it's not appropriate for huge sims, but it will run small ones OK. At the moment, it supports all known features of BulletSim. Think of it like.. POS but everything works. To use this plugin, set the physics plugin to BulletSimN.
2012-12-21BulletSim: repair vehicle problems introduced in previous 'improvements'. ↵Robert Adams1-9/+28
Fix line endings in BSParams.
2012-12-21BulletSim: Move all the parameter variables, tables and get and fetch logic ↵Robert Adams1-1/+1
to a separate, static class for easier addition and to remove all that bulk from the BSScene class.
2012-12-20BulletSim: fix incorrectly defined property changed flag.Robert Adams1-3/+1
2012-12-20BulletSim: replace use of funky nullable values for vehicle property update ↵Robert Adams1-26/+43
control (m_known* stuff). Bitmaps will be quicker to test and to clear.
2012-12-20BulletSim: angularMotorUp working again (seems a little slow as it takes ↵Robert Adams1-21/+44
longer than timescale to correct, but getting better). Disabled angularDeflection (need to resolve interactions between angular corrections). Update TODO list.
2012-12-18BulletSim: improve angularVerticalAttraction calculation to compute angular ↵Robert Adams1-18/+15
correction velocity rather than estimating correction (excuse to use trig functions).
2012-12-17BulletSim: apply friction to linear and angular motion before returning ↵Robert Adams1-6/+0
advanced motor value. This seems to be the problem with BulletSim vehicles turning too quickly. Also removed the configuration parameter that controlled the timestep scaling kludge for angular velocity that was added to research the question of quick turning.
2012-12-17BulletSim: fix vehicles going underground when unsat. Problem was that, when ↵Robert Adams1-20/+23
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: fix vehicles being shot in the air at border crossings because of ↵Robert Adams1-2/+5
mis-application of correction to postion for below groundness.
2012-12-11BulletSim: modify LIMIT_MOTOR_UP to limit BOAT types to be at water rather ↵Robert Adams1-2/+2
than ground level. This makes boats float at water level better but not perfectly. There probably needs to be some interaction between HOVER and LIMIT_MOTOR_UP.
2012-12-11BulletSim: add ini file and command line parameters to controlRobert Adams1-3/+6
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-10BulletSim: comment out some chatty debug logging. Rearrange some code in ↵Robert Adams1-3/+5
BSDynamics to make velocity vs force calculation clearer.
2012-12-06BulletSim: rewrite and improve vehicle angularDeflection, verticalAttraction,Robert Adams1-83/+129
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-06BulletSim: Don't add gravity to down force -- let Bullet do that. Add ↵Robert Adams1-14/+28
VehicleAddForce to set of managed vehicle prim properties.
2012-12-06BulletSim: Vehicle angular vertical attraction works. Other vehicle angular ↵Robert Adams1-20/+35
forces commented out for the moment for debugging.
2012-12-03BulletSim: Reduce idle region physics overhead where there are MANYRobert Adams1-35/+46
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-03BulletSim: rework angular corrections to remove any hybrid code and compute ↵Robert Adams1-107/+97
absolute collections.
2012-12-03BulletSim: revert angular vertical attraction from motor to code. The motor ↵Robert Adams1-47/+19
code did not return the restoring difference but the current value. Remove unused commented out code.
2012-12-03BulletSim: format vehicle detail logging messages so vehicle changs are ↵Robert Adams1-14/+14
grouped better in the log output.
2012-12-03BulletSim: localize vehicle property setting so the vehicle prim is only ↵Robert Adams1-33/+128
updated at the end of the vehicle simulation step and the push of the physics property update event only happens if the properties are actually changed.
2012-12-01BulletSim: Add DumpActivationInfo2 function. Change static objects from ↵Robert Adams1-6/+6
DISABLE_SIMULATION to ISLAND_SLEEPING. Update DLLs and SOs to add DumpActivationInfo2 function.
2012-11-29BulletSim: remove time scaling of computed vehicle absolute velocity since ↵Robert Adams1-37/+61
Bullet will scale the movement by the time slice. Restore LIMIT_MOTOR_UP to definitition of BOAT simce some vehicle engines use it even for land vehicles. Push vehicle parameter updates through the regular property update to solve vehicles floating off when they should be stopped.
2012-11-29BulletSim: add copyright header where it is missing. Remove some unnecessary ↵Robert Adams1-2/+0
'using' requirements so testing framework is less complicated.
2012-11-29BulletSim: reverse direction of hover correction. Removes problem with ↵Robert Adams1-8/+8
vehicles being orbited.
2012-11-28BulletSim: fix boats floating low by removing LIMIT_MOTOR_UP flag from ↵Robert Adams1-3/+15
TYPE_BOAT definition.
2012-11-28BulletSim: move GetWaterLevelAtXYZ from BSScene to BSPhysTerrain.Robert Adams1-4/+6
2012-11-27BulletSim: reorganize linear movement routine into separate subroutines ↵Robert Adams1-58/+79
enabling external calibration routines and unit tests.
2012-11-27BulletSim: reorganize angular movement routine into separate subroutines ↵Robert Adams1-95/+114
enabling external calibration routines and unit testing.
2012-11-27BulletSim: implementation of vertical attraction motor.Robert Adams1-41/+62
2012-11-26BulletSim: increase vehicle stability by suppressing Bullet's update to ↵Robert Adams1-8/+13
angular velocity.
2012-11-25BulletSim: use m_angularMotor to do the basic movement. Add the setting of ↵Robert Adams1-60/+64
same. Rename the angular forces and add comments to match MoveAngular to the form of MoveLinear.
2012-11-25BulletSim: organize MoveLinear code for understandability. Make ↵Robert Adams1-89/+40
LIMIT_MOTOR_UP contribution a velocity and not a force.
2012-11-25BulletSim: add BSVMotor as BSDynamics linear motor.Robert Adams1-13/+42
Properly limit *_MOTOR_DECAY_TIMESCALE to 120 as per specs. Invode BSDynamics.Refresh() when vehicle type is changed. Previously the vehicle properties weren't getting set because the physical properties were set before the vehicle type was set. Add a "use name" to BSMotors for identification while debugging. Correct current and target confusion in BSVMotor design. Rename CurrentValueReductionTimescale to FrictionTimescale. Event more detailed logging.
2012-11-25BulletSim: clean up TODO list. It is kept somewhere wlse that should be more ↵Robert Adams1-1/+1
public. Add error logging for the detail log writer so a message is output when it cannot write to the specified logging directory. Modify friction defaults to be closer to ODE's values. Add new collision margin and vehicle angular damping parameters.
2012-11-25BulletSim: small change to add position correction force with AddForce ↵Robert Adams1-11/+18
rather than just storing it in the variable
2012-11-06BulletSim: many changes to tune vehicles for BulletSim.Robert Adams1-63/+161
The problem left is that the vehicle sitting on something needs to press down for gravity and what its sitting on pushes up so the vehicle does not penetrate. The effect is Bullet calculates a lot of random angular motion for the vehicle. Various schemes of damping and zeroing has not resolved the problem.
2012-11-03BulletSim: fix compound linkset crash by not freeing shape of child prims.Robert Adams1-3/+3
Remove all compilation warnings (mostly 'protected' in sealed classes.) Add the dynamicAabbEnable parameter to creation of compound shapes.
2012-11-03BulletSim: rename BSBody and BSShape to PhysBody and PhysShape. Add skeleton ↵Robert Adams1-2/+2
of BSLinksetCompound.
2012-11-03BulletSim: vehicle tweeking.Robert Adams1-84/+52
Add AddTorque() method to BSPrim. Remove some manual motor actions in computing angular force (will eventually be replaced with motor class). Remove some experimental changes.
2012-11-03BulletSim: Add gravity force to vehicle. Some debugging additions.Robert Adams1-2/+6
2012-11-03BulletSim: many small changes for vehicles simulation.Robert Adams1-31/+40
2012-11-03BulletSim: Add banking and other new code to vechile dynamics. Add third ↵Robert Adams1-179/+310
party license and contributor in for for Aurora-Sim project for physics code.
2012-10-22BulletSim: fix bug that caused error (and a crash on 32 bit Linux) when mesh ↵Robert Adams1-2/+3
assets weren't already in the cache. Comment cleanups.
2012-10-22BulletSim: remove trailing spaces to make git happy.Robert Adams1-5/+5
2012-10-11BulletSim: Use full linkset mass when computing vehicle gravity force. Add ↵Robert Adams1-3/+3
taint-time specification to new AddForce().
2012-10-11BulletSim: Add Force* operations to objects to allow direct push to engine.Robert Adams1-6/+6
Update BSDynamics to use same (don't want to delay updates til next taint-time. Suppress queuing a taint update for position and orientation calls if value does not change. Move Bullet timing statistics call from C# back to C++ code. Throttle taints per simulation step and add parameter to set. By default, don't create hulls for physical objects. Add a parameter to turn on and off.