| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Clean up some parameter code in Statistics.Binary.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
de-duplicating XAssetService.
This makes it possible to use the dedupliicating service without needing to migrate all the existing asset data beforehand.
Currently controlled by a ChainedServiceModule setting in [AssetService] (e.g. ChainedServiceModule = "OpenSim.Services.AssetService.dll:AssetService")
Not yet ready for use.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
by DAExampleModule when instantiating a dynamc object.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
necessary to get attributes to save (though this probably happens anyway due to the prim move)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
GetLinkEntity() method
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
simulator logs, for debug purposes
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
is not in the scene.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
osNpcGetRot()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
misidentified for moving prims.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
having to continually take intermediate Vector3s to avoid race conditions
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
input to GetLandObject()
This conforms to the existing ILandChannel.ParcelsNearPoint() method
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
could be returned for a rotating camera
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
could be returned for a moving camera
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
be misidentified for a moving prim
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
PRIM_SIZE and PRIM_ROT_LOCAL
This function is used by all the various ll*Params() and os*Params() functions
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
whilst the function was called.
|
|\ \ \ \ \ \
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Conflicts:
OpenSim/Region/Framework/Scenes/ScenePresence.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/Plugins/SensorRepeat.cs
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
could be returned for moving prims
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
llAddToLandPassList(), llSetParcelMusicURL() and llGetParcelMusicURL() for moving prims
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
one.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
llTeleportAgentGlobalCoords(), llEjectFromLand() and llOverMyLand() where the wrong parcel could be identified for very fast moving avatars.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
co-ordinates could be given for a fast moving prim
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
returned (accidentally stated that commit 1774c631 was this fix).
Commit 1774c631 was actually a fix for a similar minor race condition in llGetAccel()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
changing angular velocity could return inconsistent results
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
be returned if the prim was rotating during the call
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
LSL_Api.GetPartRot()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
the world rotation if the avatar to which they are attached is sitting
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This addresses http://opensimulator.org/mantis/view.php?id=6567
This creates a ScenePresence.GetWorldRotation() with the same semantics as SOP.GetWorldRotation()
SP.Rotation can't be used since it's relative to the sat upon prim if the avatar is sitting.
|
| |\ \ \ \ \ |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
conditions with a serialization thread.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
this is being done lazily
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This allows region modules to add dynamic objects to SOPs rather than having to continually push and pull OSD dynamic attributes.
This is to explore the original MOAP use case for dynamic attributes where it could be very awkward and possibly time-consuming to keep reconstructing MediaEntrys from stored DynamicAttributes.
This commit adds a DOExampleModule to demonstrate/evolve this code.
Dynamic objects involve no storage or persistence changes - the 'backing store' for any data that does need to be saved will remain the DAMap.
DOExampleModule in this commit only attaches a fresh dynamic object. Actually constructing this from stored dynamic attributes and handling persistence is left for later.
These changes should affect no existing functionality, though it may or may not reveal necessary changes in DAMap down the road.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
connection when It's done sending. Be on the lookout for an old linux/mono bug where the client doesn't get the last bit of the stream before it is disconnected!. Code on opensim-libs. All tests pass.. HttpServer's internal tests pass.. but just a bad feeling. More people should test :)
|
|\ \ \ \ \ \ \
| | |_|_|_|_|/
| |/| | | | | |
|
| | |_|_|_|/
| |/| | | | |
|
|\ \ \ \ \ \
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | | |
Conflicts:
OpenSim/Region/Framework/Scenes/Tests/SceneObjectUndoRedoTests.cs
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
future debugging of VectorRenderModule
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
failing because they have no linemap.
Adapted fix from http://opensimulator.org/mantis/view.php?id=6571
Thanks Nickel Briand
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
section of OpenSim.ini. False by default.
This option allows the simulator to specify that the cancel button on inter-region teleports should never appear.
This exists because sometimes cancellation will result in a stuck avatar requiring relog.
It may be hard to prevent this due to the protocol design (the LL grid has the same issue)
In small controlled grids where teleport failure is practically impossible it can be better to disable teleport cancellation entirely.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
teleports is still not recommended.
Previously, hitting the cancel button on a teleport would cancel on the client side but the request was ignored on the server side.
Cancel would still work if the teleport failed in the early stages (e.g. because the destination never replied to early CreateAgent and UpdateAgent messages).
But if the teleport still completed after a delay here or later on, the viewer would become confused (usual symptom appears to be avatar being unable to move/reteleport).
This commit makes OpenSimulator obey cancellations which are received before it sends the TeleportFinish event queue message and does proper cleanup.
But cancellations received after this (which can happen even though the cancel button is removed as this messages comes on a different thread) can still result in a frozen avatar.
This looks extremely difficult and impossible to fix.
I can replicate the same problem on the Linden Lab grid by hitting cancel immediately after a teleport starts (a teleport which would otherwise quickly succeed).
|