aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-07-30Refactor: Replace instances of m_isphysical with IsPhysical rather than have ↵Justin Clark-Casey (justincc)1-33/+40
some code reference the private var and other the public var without any functionality difference. Add some method doc to IsPhysical
2011-07-30refactor: Rename ODEPrim.ParentPrim() to AddChildPrim() for code readabilityJustin Clark-Casey (justincc)1-11/+14
2011-07-30minor: remove mono compiler warnings, some code spacing adjustmentsJustin Clark-Casey (justincc)3-7/+8
2011-07-30minor: Add method doc to collision subscription methods. Change method case ↵Justin Clark-Casey (justincc)3-7/+26
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-16Fix physics proxy regeneration when a mesh with more than one submesh is resizedJustin Clark-Casey (justincc)1-0/+1
Addresses http://opensimulator.org/mantis/view.php?id=5584
2011-07-15Fix some local id issues in physics glueroot2-8/+2
2011-07-12Port implementation of llCastRay() from Aurora.Justin Clark-Casey (justincc)2-17/+103
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-12temporarily fix the build break with building the OdePlugin tests assembly.Justin Clark-Casey (justincc)1-2/+3
This needs to be fixed properly.
2011-07-12minor: remove whitespace to trigger another buildJustin Clark-Casey (justincc)1-1/+0
2011-07-12When a mesh object is added to a scene, delay adding the physics actor until ↵Justin Clark-Casey (justincc)2-25/+29
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)2-2/+3
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-11comment out accidential ProcessTaints physics debug line left in codeJustin Clark-Casey (justincc)1-1/+1
2011-07-09minor: code tidy and inserted log lines for future use.Justin Clark-Casey (justincc)2-22/+35
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)2-53/+23
added in the last commit
2011-07-08refactor: Separate the OdeScene class into its own file from OdePlugin.cs, ↵Justin Clark-Casey (justincc)2-3825/+3873
to improve code readability
2011-07-08minor: commented out log lines for future use and very small code tidyJustin Clark-Casey (justincc)2-4/+8
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-24This fixes mantis #5198 and related. Physics is not my expertise, so I'm not ↵Diva Canto1-0/+5
100% sure of what all the consequences of this change are. Pushing up, so others can take a look.
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-10-04Formatting cleanup.Jeff Ames1-4/+4
2010-10-02Replace CalculateMass with a more accurate version, contributed by Ubit.Melanie1-234/+219
Thank you.
2010-09-26Typo fixesMelanie1-1/+1
2010-09-26adding configurable j2kDecodeCache pathBlueWall1-1/+5
allowing the decoded sculpt map cache path to be defined in the configuration files. Use DecodedSculpMapPath in the [Startup] section to set the path. The default is still ./bin/j2kDecodeCache
2010-09-25Add prim name to OdePrim Error and Warning messages.Justin Clark-Casey (justincc)1-42/+45
This aims to make it easier to identify and remove rogue prims that are causing ODE to fall over.
2010-06-25minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2-14/+14
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-03-12* Added a better check to the SimianGrid connectors to test if they are ↵John Hurliman1-2/+2
enabled or not. This method should work equally well with standalone or robust mode * Applying #4602 from Misterblu to add collision detection to BulletDotNET
2010-02-15Formatting cleanup.Jeff Ames1-25/+25
2010-02-14Revolution is on the roll again! :)Revolution3-39/+372
Fixes: Undo, T-pose of others on login, modifiedBulletX works again, feet now stand on the ground instead of in the ground, adds checks to CombatModule. Adds: Redo, Land Undo, checks to agentUpdate (so one can not fall off of a region), more vehicle parts. Finishes almost all of LSL (1 function left, 2 events). Direct flames and kudos to Revolution, please Signed-off-by: Melanie <melanie@t-data.com>
2010-02-04Applying patch #4534 by Misterblue to fix ODE physics stickinessJohn Hurliman1-0/+2
2010-01-04Formatting cleanup. Add copyright headers.Jeff Ames4-515/+509
2009-12-22Glue code for a couple of new LSL function implementationsMelanie2-0/+18
2009-12-08* Commit some sit code that's commented out for now.Teravus Ovares (Dan Olivares)1-1/+8
2009-12-05* Adds Normal to the fields returned by the Physics RaycasterTeravus Ovares (Dan Olivares)1-2/+8
* Fixes recognizing when a sit target is and isn't set. * * 1. Vector3.Zero. * * 2. Orientation: x:0, y:0, z:0, w:1 - ZERO_ROTATION * * (or) Orientation: x:0, y:0, z:0, w:0 - Invalid Quaternion * * (or) Orientation: x:0, y:0, z:1, w:0 - Invalid mapping, some older objects still exist with it
2009-12-05* Fixes mantis 4416. Animator is dereferenced on logoutTeravus Ovares (Dan Olivares)1-1/+4
2009-12-03* Fixes the 10x10x10 hard physics limitation. (wierdly, you have to set ↵Teravus Ovares (Dan Olivares)2-0/+5
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-26* Fixes a case of d.BodyEnable with IntPtr.Zero passed as the parameter in ↵Teravus Ovares (Dan Olivares)1-1/+4
linkset where EnableBody was called and the body is immediately disabled. The previous functionality assumed that a body was received in EnableBody but.. in some cases, it wasn't.
2009-11-23* Resolves mantis 4390 http://opensimulator.org/mantis/view.php?id=4390Teravus Ovares (Dan Olivares)1-1/+1