aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/PhysicsModules/BulletS/BSMotors.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Remove useless executable bit that Windows adds.onefang1-0/+0
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-0/+0
2016-11-07Fix file execute permissions, coz Windows.David Walter Seikel1-0/+0
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-71/+175
2012-12-27BulletSim: fix buoyancy so it's properly set by a script when anRobert Adams1-2/+2
object is selected. Update TODO list.
2012-12-22BulletSim: add Enabled parameter and operation to motors.Robert Adams1-2/+16
2012-12-21BulletSim: repair vehicle problems introduced in previous 'improvements'. ↵Robert Adams1-4/+10
Fix line endings in BSParams.
2012-12-21BulletSim: Better detail logging of VMotor actions.Robert Adams1-7/+8
2012-12-20BulletSim: Check for unspecified TimeScale in BSVMotor and don't scale if ↵Robert Adams1-9/+43
not specified. Add test dump routine. Don'e zero current and target values when error goes to zero as the values could be used externally to store the actual target values, etc.
2012-12-20BulletSim: reorganize motor step code to separate error computation allowing ↵Robert Adams1-51/+91
subclass for PID error correction.
2012-12-18BulletSim: initial implementation of a PID motor. Not hooked up yet.Robert Adams1-6/+38
2012-12-17BulletSim: apply friction to linear and angular motion before returning ↵Robert Adams1-2/+2
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-11BulletSim: protect prim property setting to remove crash from taints setting ↵Robert Adams1-1/+1
properties after the destroy object taint has happened.
2012-12-03BulletSim: rework angular corrections to remove any hybrid code and compute ↵Robert Adams1-2/+15
absolute collections.
2012-12-03BulletSim: format vehicle detail logging messages so vehicle changs are ↵Robert Adams1-3/+3
grouped better in the log output.
2012-11-29BulletSim: remove time scaling of computed vehicle absolute velocity since ↵Robert Adams1-0/+8
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-1/+31
'using' requirements so testing framework is less complicated.
2012-11-27BulletSim: add 'infinite' timescale that does not reduce motor target or ↵Robert Adams1-10/+27
friction.
2012-11-25BulletSim: add ToString override to BSVMotor.Robert Adams1-1/+6
2012-11-25BulletSim: add BSVMotor as BSDynamics linear motor.Robert Adams1-14/+32
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: complete vector motor. Correct line endings.Robert Adams1-104/+129
2012-11-07BulletSim: add classes for physics motors. Eventually these will replace the ↵Robert Adams1-0/+104
manual code for vehicles and add PID functionality to avatar movement.