aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt
diff options
context:
space:
mode:
authorMelanie2012-12-18 09:44:10 +0000
committerMelanie2012-12-18 09:44:10 +0000
commitb9939a46a19af74f79a492e3b9fb3f65d0de31cd (patch)
treeb20ee4582458689096ff58770397c766c4ac36a8 /OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt
parentMerge branch 'master' into careminster (diff)
parentBulletSim: fix vehicles being shot in the air at border crossings because of ... (diff)
downloadopensim-SC_OLD-b9939a46a19af74f79a492e3b9fb3f65d0de31cd.zip
opensim-SC_OLD-b9939a46a19af74f79a492e3b9fb3f65d0de31cd.tar.gz
opensim-SC_OLD-b9939a46a19af74f79a492e3b9fb3f65d0de31cd.tar.bz2
opensim-SC_OLD-b9939a46a19af74f79a492e3b9fb3f65d0de31cd.tar.xz
Merge branch 'master' into careminster
Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
Diffstat (limited to '')
-rwxr-xr-xOpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt34
1 files changed, 30 insertions, 4 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt b/OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt
index 7d6ace8..31dd790 100755
--- a/OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt
+++ b/OpenSim/Region/Physics/BulletSPlugin/BulletSimTODO.txt
@@ -1,3 +1,16 @@
1CURRENT PRIORITIES
2=================================================
3Eliminate all crashes (DONEish)
4 Editing/deleting physical linkset (DONE)
5 Border crossing of physical linkset (DONE)
6Enable vehicle border crossings (at least as poorly as ODE)
7 Avatar created in previous region and not new region when crossing border
8 Vehicle recreated in new sim at small Z value (offset from root value?)
9Calibrate turning radius
10limitMotorUp calibration (more down?)
11study PID motors (include 'efficiency' implementation
12 Add to avatar movement
13
1CRASHES 14CRASHES
2================================================= 15=================================================
320121129.1411: editting/moving phys object across region boundries causes crash 1620121129.1411: editting/moving phys object across region boundries causes crash
@@ -11,16 +24,18 @@ CRASHES
11 24
12VEHICLES TODO LIST: 25VEHICLES TODO LIST:
13================================================= 26=================================================
27Border crossing with linked vehicle causes crash
14Neb vehicle taking > 25ms of physics time!! 28Neb vehicle taking > 25ms of physics time!!
15Vehicles (Move smoothly) 29Vehicles (Move smoothly)
16Add vehicle collisions so IsColliding is properly reported. 30Add vehicle collisions so IsColliding is properly reported.
17 Needed for banking, limitMotorUp, movementLimiting, ... 31 Needed for banking, limitMotorUp, movementLimiting, ...
18Some vehicles should not be able to turn if no speed or off ground. 32Some vehicles should not be able to turn if no speed or off ground.
33Cannot edit/move a vehicle being ridden: it jumps back to the origional position.
19Neb car jiggling left and right 34Neb car jiggling left and right
20 Happens on terrain and any other mesh object. Flat cubes are much smoother. 35 Happens on terrain and any other mesh object. Flat cubes are much smoother.
21 This has been reduced but not eliminated. 36 This has been reduced but not eliminated.
22Light cycle falling over when driving 37Light cycle falling over when driving
23For limitMotorUp, use raycast down to find if vehicle is in the air. 38Implement referenceFrame for all the motion routines.
24Angular motion around Z moves the vehicle in world Z and not vehicle Z in ODE. 39Angular motion around Z moves the vehicle in world Z and not vehicle Z in ODE.
25 Verify that angular motion specified around Z moves in the vehicle coordinates. 40 Verify that angular motion specified around Z moves in the vehicle coordinates.
26Verify llGetVel() is returning a smooth and good value for vehicle movement. 41Verify llGetVel() is returning a smooth and good value for vehicle movement.
@@ -31,12 +46,13 @@ Should vehicle angular/linear movement friction happen after all the components
31After getting off a vehicle, the root prim is phantom (can be walked through) 46After getting off a vehicle, the root prim is phantom (can be walked through)
32 Need to force a position update for the root prim after compound shape destruction 47 Need to force a position update for the root prim after compound shape destruction
33Linkset explosion after three "rides" on Nebadon lite vehicle (LinksetConstraint) 48Linkset explosion after three "rides" on Nebadon lite vehicle (LinksetConstraint)
34Implement referenceFrame for all the motion routines. 49For limitMotorUp, use raycast down to find if vehicle is in the air.
35Cannot edit/move a vehicle being ridden: it jumps back to the origional position. 50Remove vehicle angular velocity zeroing in BSPrim.UpdateProperties().
36Border crossing with linked vehicle causes crash 51 A kludge that isn't fixing the real problem of Bullet adding extra motion.
37 52
38BULLETSIM TODO LIST: 53BULLETSIM TODO LIST:
39================================================= 54=================================================
55Revisit CollisionMargin. Builders notice the 0.04 spacing between prims.
40Avatar height off after unsitting (floats off ground) 56Avatar height off after unsitting (floats off ground)
41 Editting appearance then moving restores. 57 Editting appearance then moving restores.
42 Must not be initializing height when recreating capsule after unsit. 58 Must not be initializing height when recreating capsule after unsit.
@@ -64,11 +80,16 @@ Implement ShapeCollection.Dispose()
64Implement water as a plain so raycasting and collisions can happen with same. 80Implement water as a plain so raycasting and collisions can happen with same.
65Add osGetPhysicsEngineName() so scripters can tell whether BulletSim or ODE 81Add osGetPhysicsEngineName() so scripters can tell whether BulletSim or ODE
66 Also osGetPhysicsEngineVerion() maybe. 82 Also osGetPhysicsEngineVerion() maybe.
83Linkset.Position and Linkset.Orientation requre rewrite to properly return
84 child position. LinksetConstraint acts like it's at taint time!!
67 85
68LINKSETS 86LINKSETS
69====================================================== 87======================================================
70Linksets should allow collisions to individual children 88Linksets should allow collisions to individual children
71 Add LocalID to children shapes in LinksetCompound and create events for individuals 89 Add LocalID to children shapes in LinksetCompound and create events for individuals
90LinksetCompound: when one of the children changes orientation (like tires
91 turning on a vehicle, the whole compound object is rebuilt. Optimize this
92 so orientation/position of individual children can change without a rebuild.
72Verify/think through scripts in children of linksets. What do they reference 93Verify/think through scripts in children of linksets. What do they reference
73 and return when getting position, velocity, ... 94 and return when getting position, velocity, ...
74Confirm constraint linksets still work after making all the changes for compound linksets. 95Confirm constraint linksets still work after making all the changes for compound linksets.
@@ -140,6 +161,11 @@ Remove HeightmapInfo from terrain specification
140 Since C++ code does not need terrain height, this structure et al are not needed. 161 Since C++ code does not need terrain height, this structure et al are not needed.
141Add floating motor for BS_FLOATS_ON_WATER so prim and avatar will 162Add floating motor for BS_FLOATS_ON_WATER so prim and avatar will
142 bob at the water level. BSPrim.PositionSanityCheck(). 163 bob at the water level. BSPrim.PositionSanityCheck().
164Should taints check for existance or activeness of target?
165 When destroying linksets/etc, taints can be generated for objects that are
166 actually gone when the taint happens. Crashes don't happen because the taint closure
167 keeps the object from being freed, but that is just an accident.
168 Possibly have and 'active' flag that is checked by the taint processor?
143 169
144THREADING 170THREADING
145================================================= 171=================================================