| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
OpenSim/Region/Framework/Scenes/SceneBase.cs
OpenSim/Services/Interfaces/IGridService.cs
OpenSim/Services/LLLoginService/LLLoginResponse.cs
(conflicts were debug statements that are commented out in master branch)
|
| |\ |
|
| | |
| | |
| | |
| | | |
b) Move the other prims in the reverse direction to compensate
|
| |\ \
| | |/ |
|
| | |
| | |
| | |
| | | |
its main permissions
|
| | |
| | |
| | |
| | |
| | |
| | | |
when rezzing from user inventory and prim inventory.
Also, fixed a bug: when rezzing a coalesced object from a prim's inventory, apply the coalesced object's name and description only to the first sub-object; not to all the objects in the coalescence. (This was already done correctly when rezzing from a user's inventory.)
|
| |\ \
| | |/ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
instead of zeroing it to resolve mouselook camera problems
Addresses http://opensimulator.org/mantis/view.php?id=6892
Thanks to tglion for this spot.
This resolves a recent regression from 17b32b764acd815400d9eb903aaec6dcebd60ac7
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
CorssRegion, TeleportFinishEvent).
Have Simian grid service return the region size.
Many teleport related debug log messages. Can be removed when teleport
works (like that's ever going to happen).
Conflicts:
OpenSim/Framework/RegionInfo.cs
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
CorssRegion, TeleportFinishEvent).
Have Simian grid service return the region size.
Many teleport related debug log messages. Can be removed when teleport
works (like that's ever going to happen).
|
| | |
| | |
| | |
| | |
| | | |
Add 'not found' caching in EntityTransferModule.GetRegionContainingWorldLocation
so hitting borders and bad teleports do not continuiously hammer on the GridService.
|
| | |
| | |
| | |
| | | |
with a passed region size. This time in the map code and grid services code.
|
| | | |
|
| | |
| | |
| | |
| | | |
was wrong for large regions anyway.
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
Add new region crossing code to varregion
Conflicts:
OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
OpenSim/Region/Framework/Scenes/ScenePresence.cs
|
| |\ \ |
|
| | |\ \
| | | |/ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
try/catch as sometimes it appears that this can be corrupt.
As per Oren's suggestion.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
NPC tests until positions are known to be stable.
Also resolve issues with NoSitTarget() tests where I was trying to use a destroyed PhysActor
|
| | | |
| | | |
| | | |
| | | | |
ScenePresence inst var name was slightly different
|
| | | |
| | | |
| | | |
| | | |
| | | | |
These stopped working because current code calculates sit heights based on avatar physics rather than appearance data.
Also changed BasicPhysics to not divide Z param of all set sizes by 2 - there's no obvious good reason for this and basicphysics is only used in tests
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
SP.HandleAgentSit()
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
actual crossing mechanics for seated avatars, using the supporting code from
the previous commits. Physics is not supported yet, although some few bits
for them are already in place due to the earlier code drops. With this commit,
crossing sitting avatar by "editing" the prim across the border, by using
llSetPos or keyframe motion may already be possible. Vehicles will come next.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Parts of region crossing code
- New bakes handling code
- Bakes now sent from sim to sim without central storage
- Appearance handling changes
- Some changes to sitting
- A number of unrelated fixes and improvements
|
| |/
| |
| |
| |
| | |
but I don't know if it runs. Will probably crash and burn as the supporting
code isn't there yet.
|
| |
| |
| |
| |
| |
| | |
Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z.
This keeps the downward compatibility and follows the scheme of 'region'
and 'world' location naming that is happening in the Util module.
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| | |
x/y rot before sending agent updates, instead of before any agent update processing
It turns out that the x/y rot data in mouselook is needed to implement this and to push the avatar against the ground if walking in mouselook.
Doing this in the terse send so that we preserve mouselook rotation information
|
| |
| |
| |
| |
| |
| |
| |
| | |
Fixes http://opensimulator.org/mantis/view.php?id=3274
When not in mouselook, avatar only sends rotations around the Z plane (since that's the only way an avatar can rotate).
However, in mouselook it also sends X and Y information. But sending X and Y in terse updates causes issues with wrong camera movement in mouselook.
So strip out X and Y components for now. If this is an issue, then could strip out before sending avatar terse update, though this generates more cpu work.
Thanks to mirceakitsune for suggesting an initial fix
|
|\ \
| |/ |
|
| |
| |
| |
| | |
for slow walk/run in 4cfe02a rather than the magic number
|
| |
| |
| |
| | |
only set true once and never reset
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
AGENT_CONTROL_STOP is specified to SP.HandleAgentUpdate if the user holds down the space bar on a viewer.
For a stopped avatar, this prevents fly or walk/run (though not rotate) until released.
For a walking/running avatar, this reduces movement to half speed.
For a flying avatar, this stops the avatar.
These are observed behaviours on the LL grid - there was no previous OpenSimulator implementation
This commit introduces an optional parameter to SP.AddNewMovement(), which means that it will no longer compile on .NET 3.5 or earlier versions of Mono than 2.8
Currently, this does not work for jumping, and if used whilst flying the avatar continues the fly animation even though it does not move
|
| |
| |
| |
| | |
rather than a byte
|
| | |
|
| | |
|
| |
| |
| |
| | |
This was due to the PhysicsActor no longer being recreated on stand from ground.
|
| |
| |
| |
| | |
sitting
|
| | |
|
| |
| |
| |
| |
| |
| | |
not any specified avatar rotation as well.
Don't translate root prim position by avatar rotation.
|
| |
| |
| |
| | |
explicitly specified
|
| |
| |
| |
| | |
Need to take into account rotation of linked prim now that we are always specifying sits wrt the root prim
|
| |
| |
| |
| | |
I forgot that m_post is being set inconsistently between non-explicit and explicit ragets
|
| |
| |
| |
| | |
specified as well.
|