aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdeScene.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-10-15refactor: make methods that do not need to be public in ODE private or ↵Justin Clark-Casey (justincc)1-52/+81
internal to aid code reading/analysis. Remove some unused method arguments
2011-10-14Change hardcoded ODE total frame time to match the default total frame time ↵Justin Clark-Casey (justincc)1-1/+1
(0.09375 -> 0.089). No apparant ill effects - because the default stepsize is 0.2, there are still 5 physics steps per physics frame. This is a precursor to using the elapsed value passed in (and now changeable in config).
2011-10-05Remove unused local variable i from OdeScene.Simulate()Justin Clark-Casey (justincc)1-3/+0
2011-08-01comment out unused code in OdeScene.TriCallback()Justin Clark-Casey (justincc)1-12/+12
2011-08-01refactor: centralize prim geom removal code from four places to oneJustin Clark-Casey (justincc)1-17/+7
2011-08-01minor: add note to RemovePrimThreadLocked() to the effect that it contrary ↵Justin Clark-Casey (justincc)1-0/+3
to the summary, it is being called from within Simulate() lock (OdeLock)
2011-08-01minor: indentation correctionJustin Clark-Casey (justincc)1-17/+13
2011-07-31refactor: Remove argument to pass in an initial mesh to OdePrim since this ↵Justin Clark-Casey (justincc)1-25/+4
is no longer required and it prevents removal of the _mesh field (which is only used temporarily) If passing in a mesh becomes important again in the future then this can be reinstated.
2011-07-31minor: method docJustin Clark-Casey (justincc)1-1/+0
2011-07-30minor: remove mono compiler warnings, some code spacing adjustmentsJustin Clark-Casey (justincc)1-5/+3
2011-07-30minor: Add method doc to collision subscription methods. Change method case ↵Justin Clark-Casey (justincc)1-3/+19
to reflect OpenSim standards.
2011-07-29fix extremely minor Ode bug where the _taintedPrimL list would always be ↵Justin Clark-Casey (justincc)1-3/+14
cleared on every OdeScene.Simulate() even if it was already empty.
2011-07-29refactor: Move another chunk of ninja code out of the OdeScene.Simulate() ↵Justin Clark-Casey (justincc)1-28/+36
loop for consistency and readability.
2011-07-29refactor: Simplify reading OdeScene.Simulate() loop by shunting all the ↵Justin Clark-Casey (justincc)1-182/+191
NINJA joints stuff into its own method. Now if ninja joints isn't active (which is the default) don't have to wade through a lot of massively indented irrelevant code.
2011-07-29refactor: unindent the OdeScene.Simulate() loop to ignore the long commented ↵Justin Clark-Casey (justincc)1-270/+274
out ifs and locks This is to make it more readable.
2011-07-19Apply the localID to the Physics actor to prevent null calls laterCareminster Team1-3/+3
2011-07-15Fix some local id issues in physics glueroot1-7/+1
2011-07-12Port implementation of llCastRay() from Aurora.Justin Clark-Casey (justincc)1-0/+28
I haven't been able to test this since the viewer won't parse the llCastRay() function. Maybe some activation cap is missing. Could wait until it is activated by default in the viewer.
2011-07-12When a mesh object is added to a scene, delay adding the physics actor until ↵Justin Clark-Casey (justincc)1-15/+18
the sculpt data has been added to the shape (possibly via an async asset service request) This prevents spurious 'no asset data' for meshes added on startup.
2011-07-11When a sculpt/mesh texture is received by a part on a callback request, ↵Justin Clark-Casey (justincc)1-1/+1
don't do the unnecessary work of copying the base shape. Just setting the new base shape is enough to reinsert the sculpt data and set the taint. Also cleans up a few more left-in debugging messages.
2011-07-09minor: code tidy and inserted log lines for future use.Justin Clark-Casey (justincc)1-4/+1
Unable to get to the bottom of why resizing a mesh fails to properly reset the physics proxy, when toggling phantom does After a mesh is generated, the existing sculptdata is set to zero in PrimitiveBaseShape to save memory When phantom is toggled, the sculptdata is regenerated before remeshing. But on resize, the sculptdata is not regenerated. So clearly, resetting sculptdata is possible, but haven't quite been able to pin down how this is being done when phantom is toggled.
2011-07-08refactor: Factor out AddSubMesh() method from long ↵Justin Clark-Casey (justincc)1-5/+5
CraeteMeshFromPrimMesher() method Also remove some of the logging spam left in from the last commit.
2011-07-08minor: code tidy up - remove a couple of Console.WriteLine() accidentally ↵Justin Clark-Casey (justincc)1-6/+8
added in the last commit
2011-07-08refactor: Separate the OdeScene class into its own file from OdePlugin.cs, ↵Justin Clark-Casey (justincc)1-79/+41
to improve code readability
2011-07-08minor: commented out log lines for future use and very small code tidyJustin Clark-Casey (justincc)1-0/+2
2011-06-29Allow physics proxy generation for meshes using new asset format.dahlia1-1/+4
Fix an invalid cast exception while decoding new mesh asset format.
2011-04-12force mesh proxy for simple box prims with path cutdahlia1-0/+3
2010-12-23* Re-Adding Scene TimeDilation to Object Update Packets.Teravus Ovares (Dan Olivares)1-0/+19
* Added Calculating Time Dilation in the OdePlubin * When multiple object updates are stuffed into one packet, average the time dilation between them as a compromise. * Time Dilation on the update is calculated when the EntityUpdate object is created. The pre-calc-ed TD is stored in the Entity update and used when it goes out on the wire. Previously, it was 1.0 all the time. The time dilation is tied to when the update is created, not when the update is sent.
2010-06-19Hunting for the problem in #4777Diva Canto1-0/+1
2010-06-19Reverting my last two commits, putting back Melanie's exception handler. ↵Diva Canto1-1/+10
Doesn't solve #4777.
2010-06-19Reinstated the behavior of AddPrimShape *exactly* as it was as of December. ↵Diva Canto1-10/+1
Trying to fix mantis #4777
2010-06-19Reinstated the behavior of AddPrimShape as it was as of December. Trying to ↵Diva Canto1-0/+1
fix mantis #4777
2010-06-18Remove an error in meshing error reporting. Now doesn't double-bombMelanie1-1/+1
anymore on a bad sculpt
2010-06-12Log and eat sculpt meshing exceptions caused by bad jp2 data.Melanie1-1/+12
2010-01-04Formatting cleanup. Add copyright headers.Jeff Ames1-10/+10
2009-12-03* Fixes the 10x10x10 hard physics limitation. (wierdly, you have to set ↵Teravus Ovares (Dan Olivares)1-0/+2
this for each region in your Regions.ini[PhysicalPrimMax = 10(default)]) * Adds a configurable maximum object mass before the mass is clamped. Default is 10000.01. Configurable by changing maximum_mass_object in the [ODEPhysicsSettings] section. * Clamping the mass is important for limiting the amount of CPU an object can consume in physics calculations. Too high, and the object overcomes restitution forces by gravity alone. This generates more collisions potentially leading to 'deep think'.
2009-11-23* Resolves mantis 4390 http://opensimulator.org/mantis/view.php?id=4390Teravus Ovares (Dan Olivares)1-1/+1
2009-11-22* Adds a test for if the collision is at the bottom of the capsule on ↵Teravus Ovares (Dan Olivares)1-1/+12
avatar. This prevents the 'double jump' capability that's been occurring for ages when avatar collide with prim on the side.
2009-11-09Following various discussions on irc and in the OpenSim dev OSGrid meeting ↵Justin Clark-Casey (justincc)1-1/+1
last week, change av_capsule_tilted to false by default This appears to now give better ODE physics response (less sinking into the ground, etc.) Please change it back if this is actually a bad idea for some reason
2009-11-03minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-3/+3
2009-10-29* Log progress messages when loading OAR files with a lot of assetsJohn Hurliman1-60/+67
* Change the PhysicsCollision callback for objects to send full contact point information. This will be used to calculate the collision plane for avatars * Send the physics engine velocity in terse updates, not the current force being applied to the avatar. This should fix several issues including crouching through the floor and walking through walls
2009-10-28Always send a time dilation of 1.0 while we debug rubberbanding issuesJohn Hurliman1-1/+2
2009-10-28Limit physics time dilation to 1.0John Hurliman1-1/+1
2009-10-28* Reduce the velocity tolerance on sending terse updates to avoid slowly ↵John Hurliman1-3/+10
drifting prims/avatars * Added contacts_per_collision to the ODE config section. This allows you to reduce the maximum number of contact points ODE will generate per collision and reduce the size of the array that stores contact structures
2009-10-28Fixed a bad check on velocity in the ODE near() callback (it was only ↵John Hurliman1-3/+3
checking for velocity in certain directions, and was calling the get_Velocity() function three times)
2009-10-27Move the calculation of time dilation from the scene to the physics engine. ↵John Hurliman1-2/+9
The scene is still the one reporting dilation so this does not break the API or remove flexibility, but it gets the calculation happening in the right place for the normal OpenSim usage. The actual calculation of physics time dilation probably needs tweaking
2009-10-26Experimental change of PhysicsVector to Vector3. UntestedJohn Hurliman1-28/+22
2009-10-26Do case-insensitive comparisons on region names in LLStandaloneLoginModuleJohn Hurliman1-2/+2
2009-10-26* Changed the watchdog timer to improve the speed of UpdateThread(), only ↵John Hurliman1-2/+6
track threads once the first call to UpdateThread() has been made, and allow re-tracking of threads that timed out but revived later * Added a commented out call to Watchdog.UpdateThread() in OdeScene. If it turns out that loading a large OAR file or some other operation is timing out the heartbeat thread, we'll need to uncomment it
2009-10-23Patch from dslake http://opensimulator.org/mantis/view.php?id=4291 0004291: ↵dslake1-2/+3
Inconsistent locking of ODE tainted prims