aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSNPlugin/BSShapeCollection.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-1015/+0
2012-12-18* Merges BulletSim Updates to BulletSimN(BulletSNPlugin)teravus1-3/+3
2012-12-23* Initial commit of BulletSimN (BulletSNPlugin). Purely C# implementation ↵teravus1-19/+19
of BulletSim. This is designed to be /as close as possible/ to the BulletSim plugin while still being entirely in the managed space to make keeping it up to date easy as possible (no thinking work). This implementation is /slower/ then the c++ version just because it's fully managed, so it's not appropriate for huge sims, but it will run small ones OK. At the moment, it supports all known features of BulletSim. Think of it like.. POS but everything works. To use this plugin, set the physics plugin to BulletSimN.
2012-12-21BulletSim: Move all the parameter variables, tables and get and fetch logic ↵Robert Adams1-6/+6
to a separate, static class for easier addition and to remove all that bulk from the BSScene class.
2012-12-12BulletSim: fix problem of avatar's floating off the ground after unsitting. ↵Robert Adams1-9/+14
Reworked size/scale logic so physical scale is kept in Bullet and physObject scale is the preferred size -- usually same as size but avatars are computed differently.
2012-12-11BulletSim: add ini file and command line parameters to controlRobert Adams1-1/+1
dumping of physical vehicle parameters (out of Bullet) on each simulation step and to optionally scale vehicle angular velocity by the time step. The latter looks to be part of a difference between angular parameters for ODE and BulletSim. SL docs say angular velocity is measured in radians/timeScale. Not sure if this is different than what ODE does.
2012-12-10BulletSim: Fix crash on the destruction of physical linksets.Robert Adams1-8/+8
While fixing the above, add methods to physical body and shape pointer wrapper so routines won't have to know that IntPtr.Zero means no physical instance. Fix problem with physical linksets failing after a few sits and unsits by properly restoring child prom positions for compound linksets after multiple selection and deselections.
2012-12-08BulletSim: fix small problem with setting size/scale of native shapes which ↵Robert Adams1-6/+9
caused the native shapes to be rebuilt when not necessary.
2012-12-06BulletSim: add detail logging detail flag so I don't have to comment and ↵Robert Adams1-27/+34
uncomment the detail logging when changing the depth of logged info.
2012-11-29BulletSim: add expanded call to IMesher/Meshmerizer which enables/disables ↵Robert Adams1-4/+3
mesh caching. Since BulletSim caches and tracks the unmanaged memory version of meshes, the Meshmerizer itself does not need to cache built meshes once BulletSim has made the physical proxy mesh.
2012-11-22Rename BulletSim's PhysicsShapeType to BSPhysicsShapeType because itMelanie1-28/+28
conflicts with PhysicsShape type defined in later libOMV
2012-11-21BulletSim: Make avatar capsule so it is not circular.Robert Adams1-4/+5
Simple attempt to make avatars better shaped. Replace parameter 'avatarCapsuleRadius' with 'avatarCapsuleWidth' and 'avatarCapsuleDepth'. More tweeking to avatar height calculation. A little better but short avatar's feet are above the terrain and tall avatar's feet are a little below the ground.
2012-11-21BulletSim: rename SHAPE_AVATAR to SHAPE_CAPSULE with the eye to eventually ↵Robert Adams1-3/+3
having mesh avatars.
2012-11-21BulletSim: uplevel FixedShapeKey out of ShapeData structure (since it is ↵Robert Adams1-6/+6
getting simplified out of existance someday) and update all the references to same.
2012-11-21BulletSim: uplevel PhysicsShapeType out of ShapeData structure (since it is ↵Robert Adams1-28/+28
getting simplified out of existance someday) and update all the references to that enum.
2012-11-21BulletSim: change PositionSanityCheck to apply a force to correct position ↵Robert Adams1-1/+1
corrections (below ground and floating).
2012-11-03BulletSim: fix compound linkset crash by not freeing shape of child prims.Robert Adams1-6/+10
Remove all compilation warnings (mostly 'protected' in sealed classes.) Add the dynamicAabbEnable parameter to creation of compound shapes.
2012-11-03BulletSim: search the mesh and hull lists to find shapes if type is not ↵Robert Adams1-14/+88
known. This makes sure the correct accounting is done for the particular shape.
2012-11-03BulletSim: Move construction of compound linkset from ShapeCollectionRobert Adams1-43/+42
into LinksetCompound where it should be. Create meshes for native shapes when part of a compound linkset because scale is currently per object and not per collision shape. Don't schedule a LinksetCompound refresh if just changing properties.
2012-11-03BulletSim: debugging of compound shape implementation of linksets.Robert Adams1-35/+117
Add compound shape creation and freeing in shape manager. Add optional taint-time execution method and update code to use it. Add API2 linkage for more compound shape methods (get num, get/remove by index, ...) Modify perferred shape return so linkset children can have differet shapes than root. Add Position and Orientation calls to linksets so children can be moved around by the linkset by its own calculation. Allows for very general linkset implementations.
2012-11-03BulletSim: Add RawPosition and RawOrientation to BSPhysObject and rename ↵Robert Adams1-1/+1
MassRaw to RawMass. Fix BSShapeCollection to use Raw* for creating the body to eliminate exception from referencing the physical body before it has been created.
2012-11-03BulletSim: Remove use of shapeData in ShapeCollection and rely on the ↵Robert Adams1-54/+62
available BSPhysObject varaiables. Fix line endings in BSLinksetCompound.
2012-11-03BulletSim: rename BSBody and BSShape to PhysBody and PhysShape. Add skeleton ↵Robert Adams1-23/+23
of BSLinksetCompound.
2012-11-03BulletSim: remove center-of-mass setting for linksets because it causes the ↵Robert Adams1-1/+1
constraint calculation to pull the objects together.
2012-11-03BulletSim: Add banking and other new code to vechile dynamics. Add third ↵Robert Adams1-1/+1
party license and contributor in for for Aurora-Sim project for physics code.
2012-10-23BulletSim: fix problem with avatars sinking into the ground.Robert Adams1-2/+2
Change terrain activation state to DISABLE_SIMULATION for better performance.
2012-10-23BulletSim: minor change to insure avatar body recreation when shape changes.Robert Adams1-3/+3
2012-10-22BulletSim: fix bug that caused error (and a crash on 32 bit Linux) when mesh ↵Robert Adams1-5/+26
assets weren't already in the cache. Comment cleanups.
2012-10-22BulletSim: fix problem of not rebuilding shape by clearing last rebuild ↵Robert Adams1-2/+7
failed flag in BSPrim.ForceBodyShapeRebuild()
2012-10-22BulletSim: remove trailing spaces to make git happy.Robert Adams1-10/+10
2012-10-22BulletSim: encorporate UBit's suggestion to save a copy of mesh raw data.Robert Adams1-2/+1
2012-10-19BulletSim: add asset fetching so BulletSim works with new physics asset ↵Robert Adams1-115/+181
handling. Refactor some names to make them available for the asset tracking and fetching.
2012-10-19BulletSim: reorder avatar collision checking to eliminate double collision_end.Robert Adams1-4/+4
Various tweekings to avatar shape/mass/inertia/etc. Remove change from avatar radius to diameter. But still the avatar sinks. Collision_end now happens immediately rather than at the next subscription time.
2012-10-19BulletSim: change nonimal physics frame rate to 55 to give same numbers as ODE.Robert Adams1-2/+5
Change character scaling to represent size of capsule (diameter rather than radius) Modify create capsule call to pass radius and height. Eliminate errors when calculating shape inertia (should have some type checking).
2012-10-19BulletSim: remove code in ShapeCollection that hinted at shape sharing.Robert Adams1-74/+36
Add new function to ParameterDefn for calling BulletSimAPI to set values. Tweaking to BSCharacter parameter setting to try and have avatars stand.
2012-10-19BulletSim: Fix small problems with last patch: BSScene.World properly ↵Robert Adams1-1/+1
initialized and setting of C++ parameters commented out. Comments and logging added.
2012-10-19BulletSim: Update BSCharacter to use API2 interface.Robert Adams1-15/+36
Add capsule shape to BSShapeCollection(). Remember last updated values so inter frame diffs can be computed. Parameterize avatarStandingFriction and reduce to 10 from 999. The latter high value made avatars very hard to push. Set CCD parameters for prims and characters of specified.
2012-10-12BulletSim: only use native sphere shape if it is a sphere.Robert Adams1-1/+2
2012-10-11BulletSim: fix problem with some shapes (like cylinders) being implemented ↵Robert Adams1-1/+1
as cubes.
2012-10-11BulletSim: cosmetic changes (comments and renaming). Give mass to terrain to ↵Robert Adams1-15/+16
improve interactions.
2012-10-11BulletSim: Add Force* operations to objects to allow direct push to engine.Robert Adams1-1/+1
Update BSDynamics to use same (don't want to delay updates til next taint-time. Suppress queuing a taint update for position and orientation calls if value does not change. Move Bullet timing statistics call from C# back to C++ code. Throttle taints per simulation step and add parameter to set. By default, don't create hulls for physical objects. Add a parameter to turn on and off.
2012-10-11BulletSim: Fix crash when linking large physical linksets.Robert Adams1-14/+31
Properly remove and restore linkage constraints when upgrading a prim's mesh to a hull. Lots more debug logging. Definitions and use of Bullet structure dumping. Centralize detail logging so a Flush() can be added for debugging.
2012-10-02BulletSim: Fix problem where box shapes were not being rebuilt if the shape ↵Robert Adams1-4/+6
type changed.
2012-10-02BulletSim: remove warnings for unused variables.Robert Adams1-1/+1
2012-09-28BulletSim: remember to release the physical body and shape when a prim is ↵Robert Adams1-7/+7
destroyed. This fixes many problems with physical linksets.
2012-09-27BulletSim: add separate runtime and taint-time linkset children lists to ↵Robert Adams1-11/+14
keep the creation of constraints separate from runtime.
2012-09-27BulletSim: rename some constraint variables to be consistant with other name ↵Robert Adams1-24/+41
use. Added callbacks for shape and body changes in GetBodyAndShape() so the linkset constraints can be picked up and restored. A better design might be to have a "prim shape changed" event. Think about that. Added constraint types to general constraint class.
2012-09-27BulletSim: remove the trailing spaces from lines to make git happierRobert Adams1-21/+21
2012-09-27BulletSim: Fix linkset crash. Caused by the different body and shapeRobert Adams1-6/+4
pointers at runtime and at taint-time. Now passes the body into the taint. Vehicles zero inertia when active to eliminate Bullet's contribution to vehicle motion.
2012-09-27BulletSim: Terrain sets proper collision flags on creation.Robert Adams1-5/+11
Static objects are set to ISLAND_SLEEPING rather than DISABLE_SIMULATION. Might reconsider this and, alternatively, have dynamic objects force activation. Clean up use of DetailLog().