aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | BulletSim: add position resetting for stationary avatars so they don'tRobert Adams2013-07-182-5/+20
| | | | | | | | | | | | | | | | | | move around when standing on a stationary object. Create proper linkage between BSCharacter and its actor by generating a UpdatedProperties event the same way BSPrim does.
| * | BulletSim: fix small bug where everything looked like it was collidingRobert Adams2013-07-172-6/+10
| | | | | | | | | | | | before the first simulator step.
* | | Merge branch 'master' into careminsterMelanie2013-07-1814-439/+471
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs OpenSim/Region/CoreModules/Framework/Caps/CapabilitiesModule.cs OpenSim/Region/CoreModules/Scripting/HttpRequest/ScriptsHttpRequests.cs OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs OpenSim/Region/Framework/Scenes/Scene.cs OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs OpenSim/Region/Framework/Scenes/SceneObjectPart.cs OpenSim/Region/Framework/Scenes/ScenePresence.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/Plugins/SensorRepeat.cs OpenSim/Server/Handlers/Simulation/AgentHandlers.cs OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs OpenSim/Services/HypergridService/UserAgentService.cs
| * | BulletSim: add parameter to optionally disable vehicle linear deflection.Robert Adams2013-07-092-16/+34
| | | | | | | | | | | | | | | | | | Add parameter to not apply vehicle linear deflection Z forces if vehicle is not colliding. This defaults to 'true' so vehicles will fall even if there is some linear deflection to apply.
| * | BulletSim: make all the different angularVerticalAttraction algorithmsRobert Adams2013-07-084-138/+146
| | | | | | | | | | | | | | | | | | | | | | | | selectable from configuration paramters. Changed default algorithm to "1" from previous default as it seems to handle Y axis correction a little better. Add config file independent enablement of vehicle angular forces to make debugging easier (independent testing of forces).
| * | minor: remove some mono compiler warnings in OdePluginJustin Clark-Casey (justincc)2013-07-082-2/+1
| | |
| * | BulletSim: Different Implementation of Angular Deflection for vehicles, ↵Vegaslon2013-07-071-15/+16
| | | | | | | | | | | | | | | | | | Activates it again and fixes problem with fighting with vertical attractor removing wobble of forward axis. Comments on testing welcome, May require adjustments of this force or other forces after this commit, exact tweaking to come after testing on other hardware. Signed-off-by: Robert Adams <Robert.Adams@intel.com>
| * | BulletSim: fix jumping up and down of linksets when center-of-massRobert Adams2013-07-071-6/+2
| | | | | | | | | | | | | | | | | | was enabled. Didn't effect the physical position but the viewer saw the linkset jumping between its simulator center and its physical center.
| * | BulletSim: rename position and orientation variables to remove theRobert Adams2013-07-073-95/+71
| | | | | | | | | | | | inconsistant use of Raw* and _* conventions.
| * | BulletSim: implementation of linkset center-of-mass.Robert Adams2013-07-065-29/+70
| | | | | | | | | | | | | | | | | | Default off, for the moment, until more testing. Add separate thread and center-of-mass flags to OpenSimDefaults.ini. Clean up comments in OpenSimDefaults.ini.
| * | BulletSim: More tweaking on center-of-mass. Almost there. Changes have no ↵Robert Adams2013-07-064-101/+51
| | | | | | | | | | | | effect if LinksetOffsetCenterOfMass=false (the default).
| * | BulletSim: comments and non-functional changes working toward the ↵Robert Adams2013-07-064-20/+39
| | | | | | | | | | | | center-of-gravity implementation.
| * | BulletSim: non-functional updates. Comments and formatting.Robert Adams2013-07-064-43/+67
| | | | | | | | | | | | Update TODO list.
* | | Merge branch 'master' into careminsterMelanie2013-07-0412-74/+182
|\ \ \ | |/ /
| * | BulletSim: add the reset of the last commit for flush log file problems.Robert Adams2013-06-302-2/+2
| | | | | | | | | | | | Fix small typo in one log message.
| * | BulletSim: fix an occasional crash with flushing log files.Robert Adams2013-06-301-4/+2
| | |
| * | BulletSim: remove the handle to the vehicle actor and cause routinesRobert Adams2013-06-302-32/+70
| | | | | | | | | | | | that need it to look it up.
| * | BulletSim: set linkset type to be prim specific rather than a simulatorRobert Adams2013-06-303-15/+8
| | | | | | | | | | | | | | | wide default. This allows individual prims to differ in the underlying linkset implementation.
| * | BulletSim: a better version of llMoveToTarget that doesn't go crazy.Robert Adams2013-06-305-19/+98
| | | | | | | | | | | | | | | | | | | | | | | | There is still some overshoot but mostly fixes Mantis 6693. Fix bug where moveToTarget was active for non-physical objects and while selected. Fix bug where move target was not getting changed if the script changed the target during a move.
| * | BulletSim: add inTaintTime parameter to collision cache clear function.Robert Adams2013-06-301-3/+3
| | |
* | | Merge branch 'master' into careminsterMelanie2013-06-233-21/+92
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Framework/Monitoring/BaseStatsCollector.cs OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
| * | BulletSim: move new linear deflection code to own routine.Robert Adams2013-06-211-29/+35
| | | | | | | | | | | | | | | Remove VehicleForwardVelocity changed storage since the value will be modified as movement is processed.
| * | BulletSim: Implementation of Linear Deflection, it is a partial help for the ↵Vegaslon2013-06-201-5/+33
| | | | | | | | | | | | | | | | | | vehicle tuning diffrence between Opensim and Second life. Signed-off-by: Robert Adams <Robert.Adams@intel.com>
| * | BulletSim: rework velocity updating when not colliding and not flyingRobert Adams2013-06-202-5/+42
| | | | | | | | | | | | | | | | | | | | | to prevent infinite jumps. Now jumps last only AvatarJumpFrames long (default 4) which is about as high as in SL. TODO: jumping should only depend on standing (collision with feet) rather than collision anywhere on the avatar.
* | | Merge branch 'master' into careminsterMelanie2013-06-132-14/+30
|\ \ \ | |/ /
| * | BulletSim: when meshing or asset fetching fails, include positionRobert Adams2013-06-112-14/+30
| | | | | | | | | | | | and region with the offending object's name in the error message.
* | | Merge branch 'master' into careminsterMelanie2013-06-114-34/+51
|\ \ \ | |/ / | | | | | | | | | | | | | | | Conflicts: OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
| * | BulletSim: add failure flag for meshing failure vs asset fetch failureRobert Adams2013-06-104-34/+51
| | | | | | | | | | | | | | | | | | so error messages make more sense. Change some BulletSim status log messages from WARN to INFO. Update TODO list.
* | | Merge branch 'avination-current' into careminsterMelanie2013-06-061-1/+39
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Avatar/Inventory/Transfer/InventoryTransferModule.cs OpenSim/Region/Framework/Interfaces/IDynamicMenuModule.cs OpenSim/Region/OptionalModules/ViewerSupport/DynamicMenuModule.cs OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
| * | * This fixes the avatar stuck in objects on login and teleport by gently ↵teravus2013-05-141-0/+12
| | | | | | | | | | | | | | | | | | applying an upward motion when stuck in things on the Z * Comments describe how it filters out good, normal collisions, from 'stuck' collisions.. It's especially sensitive in feetbox collisions since this is where normal collisions happen under usual circumstances.
| * | * Tweaks the hard cut to apply to collisions of Greater then Normal Z 0.95. ↵teravus2013-05-141-1/+27
| | | | | | | | | | | | This fits within Ubit's framework of multi-body collisions, just moves the reactive force to the Midboxgeom(actual detection) instead of the bigbox geom(pre detection)
* | | Merge commit 'e449950030decf7e65e7d9b334ddaed25c1bd629' into careminsterMelanie2013-06-062-12/+47
|\ \ \ | | |/ | |/|
| * | BulletSim: default PhysicsTimeStep to same as the simulator'sRobert Adams2013-06-051-1/+1
| | | | | | | | | | | | | | | | | | heartbeat timestep when running the physics engine on a separate thread. This reduces the occurance of heartbeats that happen when there is no physics step which is seen as vehicle jerkyness.
| * | BulletSim: fix corner case when rebuilding a compound linkset whileRobert Adams2013-06-051-11/+46
| | | | | | | | | | | | | | | | | | a mesh/hull while a mesh or hull is being rebuilt when its asset is fetched. This fixes a 'pure virtual function' crash when changing physical state of complex linksets that include many meshes.
* | | Merge branch 'master' into careminsterMelanie2013-06-043-73/+209
|\ \ \ | |/ / | | | | | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/AsyncCommandManager.cs
| * | BulletSim: experimental movement of physics execution off of heartbeatRobert Adams2013-06-013-73/+209
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | thread. Off by default until more testing. Setting "[BulletSim]UseSeparatePhysicsThread=true" causes the physics engine to be called on its own thread and the heartbeat thread only handles the reporting of property updates and collisions. Physics frame rate is about right but physics execution time goes to zero as accounted by the heartbeat loop.
* | | Merge branch 'master' into careminsterMelanie2013-05-302-2/+5
|\ \ \ | |/ / | | | | | | | | | | | | Conflicts: OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs OpenSim/Region/OptionalModules/Avatar/Voice/VivoxVoice/VivoxVoiceModule.cs
| * | BulletSim: don't zero motion when changing vehicle type.Robert Adams2013-05-281-1/+4
| | | | | | | | | | | | | | | Some vehicle scripts change type on the fly as an easy way of setting all the parameters (like a plane changing to a car when on the ground).
| * | BulletSim: default using mesh asset hulls to 'true'. This means that,Robert Adams2013-05-271-2/+2
| | | | | | | | | | | | | | | | | | if the mesh asset specifies physics hulls, BulletSim will fetch and use same rather than approximating the hulls. If physics hulls are not specified, the representation will fall back to the regular physics mesh.
| * | BulletSim: enable GImpact shape for prims with cuts. Include DLLs and SOsRobert Adams2013-05-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which recompute GImpact shape bounding box after creation as Bullet doesn't do that itself (something it does for nearly every other shape). Now, physical prims without cuts become single mesh convex meshes. Physical prims with cuts become GImpact meshes. Meshes become a set of convex hulls approximated from the mesh unless the hulls are specified in the mesh asset data. The use of GImpact shapes should make some mechanical physics more stable.
* | | Merge branch 'master' into careminsterMelanie2013-05-254-5/+16
|\ \ \ | |/ /
| * | Meshmerizer: remember to add the copied hull verts to the list of hulls.Robert Adams2013-05-241-0/+1
| | |
| * | BulletSim: add VehicleInertiaFactor to allow modifying inertia.Robert Adams2013-05-242-1/+5
| | | | | | | | | | | | | | | Another parameter for vehicle operation tuning. Default to <1,1,1> which means nothing is different under normal use.
| * | BulletSim: properly set mesh hash key in use tracking structure.Robert Adams2013-05-241-1/+4
| | | | | | | | | | | | Shouldn't see any functional difference.
| * | Meshmerizer: add INI parameter to enable DEBUG mesh detail logging.Robert Adams2013-05-241-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | Default to off. To turn mesh parsing DEBUG detail logging on, add [Mesh] LogMeshDetail=true to the INI file.
* | | Merge commit '440905ad14d4261df9da0fd2ce7e20a350982af1' into careminsterMelanie2013-05-251-53/+83
|\ \ \ | |/ /
| * | change a hull debugging message to Debug instead of Infodahlia2013-05-241-1/+1
| | |
| * | correct some errors in decoding of mesh asset convex decomposition datadahlia2013-05-241-53/+83
| | |
* | | Merge branch 'master' into careminsterMelanie2013-05-243-154/+241
|\ \ \ | |/ / | | | | | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectPart.cs OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
| * | add decoder for bounding convex hulldahlia2013-05-231-4/+53
| | |