aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-05-17udp transfer: make number packets estimation coerent with number actually ↵UbitUmarov1-2/+8
sent. Use the safer lower max packet size defined in os source (600) and not OMV one (1100).
2012-05-17 trigger collision sounds on active agent position for better spatial effect ↵UbitUmarov2-23/+22
without using the detailed collision position. (current error will be half max physical prim size). Moved some checks from sop to collisionSound code
2012-05-17increase avatars collisions report to 10 per sec, Stopped sound on avatar to ↵UbitUmarov2-2/+2
volumedetect collision
2012-05-17 add avatar colision sounds. Changed test sound UUIDUbitUmarov2-62/+120
2012-05-17default colisionVolume is 0, use it only for user specified soundUbitUmarov1-3/+6
2012-05-17default collision sounds. Incomplete, untested, needs revisionUbitUmarov2-1/+205
2012-05-16collision sounds: simplify send code a bit and limit sending rate to 5 per ↵UbitUmarov1-1/+36
sec per part ???
2012-05-16 Added a invalidCollisionSoundUUID so that scripts can stop all collision ↵UbitUmarov3-6/+23
sounds with llCollisionSound("",...). UUID.Zero means defaults should be used. In case part has several scripts with confliting llCollisionSound result depende on exec order. Specially on reset the efect of "" depends on reset order, it should override the others. This is intermediate improve(?) since collisions sounds seem to need a deaper revision.
2012-05-15 use part VolumeDetectActive and not rootPart.VolumeDetectActive to be ↵UbitUmarov1-2/+5
coerent with other places in case of future changes. Should be equivalent if all is well.
2012-05-15sop colisions don't play sounds on volume detectorsUbitUmarov1-1/+1
2012-05-15sop: - added UpdatePhysicsSubscribedEvents() to update physics ator ↵UbitUmarov1-48/+118
collision events subcription where needed. Made it consider also VolumeDtc and phantom cases. - added extra calls to it on physics ator proprieties changes. - Fixed land collisions reports. - Handle the case of physics sending a last zero colisions reports to trigger collision_end. - Made the physics collisions report rate be 20 per second. (needs review/testing)
2012-05-15ubitODE: if stopped having collisions do report zero colisions once, so ↵UbitUmarov2-9/+43
collision_end event can be triggered. Changed reports rate to the requested rate and not full ode rate.
2012-05-15ubitODE: fix not reporting land collisions on same cases.UbitUmarov1-2/+25
2012-05-15Port the mel/dahlia fixMelanie1-0/+3
2012-05-15don't send colision events to volume detectorsUbitUmarov1-1/+2
2012-05-14make llGetCameraPos and llGetCameraRot apply to avatar that granted ↵UbitUmarov1-4/+14
permission and not owner
2012-05-15Fix an omissionMelanie1-1/+1
2012-05-14Completely revamp collision handling. Now works as it is supposed to.Melanie4-522/+189
2012-05-14Check parcel entry permissions when moving objectsMelanie1-1/+2
2012-05-14Allow non-gods to deed no-mod objectsMelanie1-1/+4
2012-05-13ubitODE fix force in case of mlinear motor offset presentUbitUmarov1-4/+5
2012-05-12 display a sleep time of zero if forced spare time to zero, when sim fps is ↵UbitUmarov1-2/+7
lower than desired, for better display coerence.
2012-05-12ªTEST MESS* reduce animation packets send. Added onchangeanim event with ↵UbitUmarov5-3/+49
parameters to define if to add or remove, and if to send anims pack on that evocation, etc
2012-05-12ubitODE let vehicles responde faster to changes of some parameters like ↵UbitUmarov1-12/+13
motors decay times
2012-05-12 ubitODE reduced again a bit the max allowed correction velocity on ↵UbitUmarov1-1/+1
colisions, to reduce a bit bouncing inerent to colisions.
2012-05-12ubitODE: trial workaround for avatar colisionsUbitUmarov1-6/+49
2012-05-11 revert terminal vel reduction. It helped but not efectiveUbitUmarov1-2/+2
2012-05-11Mantis 6015 new LSL function llGetAgentList.Talun4-0/+96
Details in the lsl wiki
2012-05-10reduce avatars terminal velocity to less than 30m/s or colisions with basic ↵UbitUmarov2-6/+9
boxs fail badly. (ode lib problem. chode just may support a bit higher velocity due to the use of tilt).
2012-05-10ubitode: changes to vehicles servosUbitUmarov1-100/+154
2012-05-07Fix moving no-mod objects. Fixes a regression introduced with the undo fixMelanie2-4/+29
2012-05-07 minor change to linear motor decayUbitUmarov1-11/+17
2012-05-05UbitODE: reduced the diference btw dinamic and static friction, making ↵UbitUmarov1-17/+17
dinamic larger more identical to static.
2012-05-05SOG: tell physics about when we want a force or a impulse. (sorry add to ↵UbitUmarov1-2/+4
change here also)
2012-05-05ubitODE prims: - moved outbounds checking back to ↵UbitUmarov1-4/+91
UpdatePositionAndVelocity() from move() so it's done at end of each ode step and when it reports positions to core. There should be no need to check in both places. - Addforce() and AddAngularForce now apply a force if parameter pushforce is true or apply a impulse if false as it's actually needed (the prims grab case should be a force)
2012-05-05 force lower avatar density for testingUbitUmarov1-0/+4
2012-05-04 UbitODE: leave avatar 'freemove' state (entered on setmomentum) on any ↵UbitUmarov1-2/+4
significant change like new 'velocity' or new position, etc, requests
2012-05-04Add the default animation to the child agent data updateMelanie1-0/+3
2012-05-04Reverse the order of physics event unsubscription to allow GC. Adapted from ↵Melanie1-2/+2
Unit's reverted patch
2012-05-04Retain velocity on walking crossing - adapted from Ubit's reverted patchMelanie1-1/+13
2012-05-04Revert "*TO TEST/REVIEW* added current default animation in animationSet.cs ↵Melanie2-28/+8
to/fromArray in array element 0. This may cause compatibilities issues, but think this information is needed for proper crossings. OSG regions did survived tps in/out with this. ALso added velocity in crossings cases, for now detected by Teleport flag equal to Default (0);" This reverts commit 12c9916193bbb87aaa95407f798c241cbe5e23cb.
2012-05-04*TO TEST/REVIEW* added current default animation in animationSet.cs ↵UbitUmarov2-8/+28
to/fromArray in array element 0. This may cause compatibilities issues, but think this information is needed for proper crossings. OSG regions did survived tps in/out with this. ALso added velocity in crossings cases, for now detected by Teleport flag equal to Default (0);
2012-05-04SOG copy bug fix, now new group has own empty list of sitted avatars. Also ↵UbitUmarov1-12/+54
changed crossing code to restore sitting avas in case of group cross fail
2012-05-03Stabilize sit position on region crossingMelanie1-1/+7
2012-05-03Clear permissions given to the object we stand up fromMelanie1-1/+25
2012-05-02 Improved sitted avatars crossings ( plus tests on vehicles)UbitUmarov2-9/+18
2012-05-02Preserve attachment rotation on objects rezzed via a script. Makes toastersMelanie3-0/+11
work right, finally.
2012-05-01Fix saving of attachment positionsMelanie1-1/+1
2012-04-29ubitODE fix applyROtationImpulse, let vehicle hover be relative to root ↵UbitUmarov2-15/+32
prim and not center of mass ( as SL docs said) updated some flags to current ones
2012-04-29ubitode fix inertia for same cases. Added a nasty lock on llGetCenterOfMass ↵UbitUmarov2-97/+91
and simulate