aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add 64 bit Windows sqlite3.dll and use this if running a 64-bit windows process.Justin Clark-Casey (justincc)2012-02-211-14/+1
|
* Report an error if the required native Windows ODE library can't be found.Justin Clark-Casey (justincc)2012-02-181-1/+4
|
* On Windows automatically load the correct native ODE library depending on ↵Justin Clark-Casey (justincc)2012-02-181-2/+22
| | | | | | | | | whether the process is 32-bit or 64-bit In theory, this means that a 64-bit Windows OS user can now run OpenSim.exe with ODE and use more than 2 (or 3) GB of memory. However, this is completely untested since I don't currently own a 64-bit Windows box. Feedback appreciated. Using OpenSim.32BitLaunch.exe should continue to work. Other platforms are unaffected. This will currently not work with sqlite - I will add that too if this works.
* Remove the unused CollisionLocker from ODEJustin Clark-Casey (justincc)2011-10-181-7/+1
| | | | Despite its name, this wasn't actually being used in any collision checking
* refactor: Separate the OdeScene class into its own file from OdePlugin.cs, ↵Justin Clark-Casey (justincc)2011-07-081-3825/+7
| | | | to improve code readability
* minor: commented out log lines for future use and very small code tidyJustin Clark-Casey (justincc)2011-07-081-0/+2
|
* Allow physics proxy generation for meshes using new asset format.dahlia2011-06-291-1/+4
| | | | Fix an invalid cast exception while decoding new mesh asset format.
* force mesh proxy for simple box prims with path cutdahlia2011-04-121-0/+3
|
* * Re-Adding Scene TimeDilation to Object Update Packets.Teravus Ovares (Dan Olivares)2010-12-231-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.
* Hunting for the problem in #4777Diva Canto2010-06-191-0/+1
|
* Reverting my last two commits, putting back Melanie's exception handler. ↵Diva Canto2010-06-191-1/+10
| | | | Doesn't solve #4777.
* Reinstated the behavior of AddPrimShape *exactly* as it was as of December. ↵Diva Canto2010-06-191-10/+1
| | | | Trying to fix mantis #4777
* Remove an error in meshing error reporting. Now doesn't double-bombMelanie2010-06-181-1/+1
| | | | anymore on a bad sculpt
* Log and eat sculpt meshing exceptions caused by bad jp2 data.Melanie2010-06-121-1/+12
|
* Formatting cleanup. Add copyright headers.Jeff Ames2010-01-041-10/+10
|
* * Fixes the 10x10x10 hard physics limitation. (wierdly, you have to set ↵Teravus Ovares (Dan Olivares)2009-12-031-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'.
* * Resolves mantis 4390 http://opensimulator.org/mantis/view.php?id=4390Teravus Ovares (Dan Olivares)2009-11-231-1/+1
|
* * Adds a test for if the collision is at the bottom of the capsule on ↵Teravus Ovares (Dan Olivares)2009-11-221-1/+12
| | | | avatar. This prevents the 'double jump' capability that's been occurring for ages when avatar collide with prim on the side.
* Following various discussions on irc and in the OpenSim dev OSGrid meeting ↵Justin Clark-Casey (justincc)2009-11-091-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
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2009-11-031-68/+90
|\
| * * Log progress messages when loading OAR files with a lot of assetsJohn Hurliman2009-10-291-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
| * Always send a time dilation of 1.0 while we debug rubberbanding issuesJohn Hurliman2009-10-281-1/+2
| |
| * Limit physics time dilation to 1.0John Hurliman2009-10-281-1/+1
| |
| * * Reduce the velocity tolerance on sending terse updates to avoid slowly ↵John Hurliman2009-10-281-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
| * Fixed a bad check on velocity in the ODE near() callback (it was only ↵John Hurliman2009-10-281-3/+3
| | | | | | | | checking for velocity in certain directions, and was calling the get_Velocity() function three times)
| * Move the calculation of time dilation from the scene to the physics engine. ↵John Hurliman2009-10-271-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
* | minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2009-11-031-3/+3
|/
* Experimental change of PhysicsVector to Vector3. UntestedJohn Hurliman2009-10-261-28/+22
|
* Do case-insensitive comparisons on region names in LLStandaloneLoginModuleJohn Hurliman2009-10-261-2/+2
|
* * Changed the watchdog timer to improve the speed of UpdateThread(), only ↵John Hurliman2009-10-261-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
* Patch from dslake http://opensimulator.org/mantis/view.php?id=4291 0004291: ↵dslake2009-10-231-2/+3
| | | | Inconsistent locking of ODE tainted prims
* Merge branch 'master' into vehiclesMelanie2009-10-221-0/+10
|\
| * Merge branch 'prioritization' of ssh://opensimulator.org/var/git/opensim ↵John Hurliman2009-10-191-0/+4
| |\ | | | | | | | | | into prioritization
| | * Forgot {} on last commit.Diva Canto2009-10-191-0/+2
| | |
| | * More instrumentation in physics.Diva Canto2009-10-191-0/+2
| | |
| * | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim into ↵John Hurliman2009-10-191-1/+1
| |\ \ | | |/ | |/| | | | prioritization
| * | A bit of instrumentation to figure out what's going on with physics actors.Diva Canto2009-10-181-0/+6
| | |
* | | Merge branch 'master' into vehiclesMelanie2009-10-191-1/+22
|\ \ \ | | |/ | |/|
| * | Formatting cleanup.Jeff Ames2009-10-191-1/+1
| |/
| * * One more attempt at the NullRef In The OdePlugin. This might fix it, but ↵Teravus Ovares (Dan Olivares)2009-10-161-0/+21
| | | | | | | | it will definitely get us closer to the root cause.
* | Merge branch 'master' into vehiclesMelanie2009-10-121-0/+1
|\ \ | |/
| * * Make ODECharacter respect the scene's requested collision update timeTeravus Ovares (Dan Olivares)2009-10-101-0/+1
| | | | | | | | * Set the Scene collision update time to 500 ms
* | Correct a build break caused by an optimization in trunkMelanie2009-10-071-1/+1
| |
* | Merge branch 'master' into vehiclesMelanie2009-10-061-5/+2
|\ \ | |/
| * minor: remove mono compile warningJustin Clark-Casey (justincc)2009-10-051-5/+2
| |
* | Merge branch 'master' into vehiclesMelanie2009-10-011-11/+3
|\ \ | |/
| * Formatting cleanup.Jeff Ames2009-10-011-5/+5
| |
* | Commit initial version of KittoFlora's vehicle changesopensim2009-09-301-16/+38
|/
* Add test to check behaviour if an iar is loaded where no user profile exists ↵Justin Clark-Casey (justincc)2009-09-091-16/+6
| | | | | | for the creators Disable generation of temporary profiles for now, instead record loading user as creator
* * Fix for GetTerrainHeightAtXY to make it compatible when ↵Teravus Ovares (Dan Olivares)2009-09-041-3/+4
| | | | Constants.RegionSize isn't 256