| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| |
| |
| |
| | |
RayEndIsIntersection byte
|
| |
| |
| |
| | |
rotation it was stored with.
|
| |
| |
| |
| | |
whether to use the serialized rotation or not. Not used yet.
|
| |
| |
| |
| |
| |
| |
| |
| | |
inventory.
This should happen if the client supplies a task ID with the RezObject call.
The rez goes through the same code as llRezObject(), so the same perms are applied.
Rotation isn't yet preserved, this should be fixed shortly.
|
|\ \
| |/ |
|
| |
| |
| |
| | |
exception output on Windows.
|
| |
| |
| |
| |
| |
| | |
a warning. There appears to be a race condition on slow logins
that attempts to prioritize before the scene presence is fully
initialized.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
improved networking performance.
Reprioritization algorithms need to be ported still. One is
in place.
|
|\ \
| |/ |
|
| |
| |
| |
| | |
populating the local id scene object index instead of each part's local id
|
| |
| |
| |
| |
| | |
This updates prim counts correctly if an object is moved by something other than an avatar (e.g. scripts, region modules)
Create TestMoveOwnerObject() regression test for this case.
|
| |
| |
| |
| |
| |
| | |
implement the display names functionality as such, but it allows scripts
that are display name aware to function as if the display name were implemented
and set to the avatar name.
|
|\ \
| |/ |
|
| |
| |
| |
| | |
with the fact that it's one word rather than two.
|
| |
| |
| |
| |
| | |
However, the calls to the land management module to record prims need to remain, since they were also being used to return owner object lists, etc.
This is probably why prim counts were being done there in the first place.
|
| |
| |
| |
| |
| |
| |
| |
| | |
changes to all the estates that the user owns).
This applies to adding/removing estate users, groups, managers and bans.
This is the application of the AllEstates_0.5.patch from http://opensimulator.org/mantis/view.php?id=5420
Thanks very much, Snoopy!
|
| |
| |
| |
| |
| |
| |
| | |
WARNING!!!!!
You can TAKE them, but you can't REZ them again. Only the first of the contained
objects will rez, the rest is inaccessible until rezzing them is implemented.
Also, rotations are not explicitly stored. This MAY work. Or not.
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
ssh://melanie@3dhosting.de/var/git/careminster into careminster-presence-refactor
|
| | | |
|
|\ \ \
| |/ /
| | |
| | | |
ssh://melanie@3dhosting.de/var/git/careminster into careminster-presence-refactor
|
| | | |
|
|\ \ \
| |/ /
|/| /
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
well as the basic entities list.
Added a prim counts test to reinforce this - shift-copy was no incrementing prim count. This will sometime become a basic scene test.
New code needs to be refactored so we just call SceneGraph.AddSceneObject(). This will happen in the near future.
With this, basic owner prim counts on a single parcel appear to be working fine (with the same previous existing taint calls as used by the land management module).
More work to do.
|
| |\ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
counts populated by LandManagementModule.
In order to pass ILandObject into IClientAPI.SendLandProperties(), had to push ILandObject and IPrimCounts into OpenSim.Framework from OpenSim.Region.Framework.Interfaces, in order to avoid ci
Counts are showing odd behaviour at the moment, this will be addressed shortly.
|
| | | |
|
|\ \ \ |
|
| | |/
| |/|
| | |
| | | |
well as Entities
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
prim (e.g. a SOG with 3 prims would have the action executed three times).
To do this, a new SceneObjectGroupsByFullID index in SceneGraph which just index's prims by their root part UUID, in order to avoid the inefficiency of filtering existing lists.
Existing callers to SceneGraph.ForEachSOG() did not fail due to the multiple per SOG action executions - they were probably just much less efficient.
Code suggests that no callers expected ForEachSOG() to execute actions on sog multiple times
|
| |/
| |
| |
| | |
are indexing each part's UUID, not just the root part.
|
| |
| |
| |
| | |
Not functional yet, but tests now act against this object rather than interrogating the module directly
|
| |
| |
| |
| |
| |
| |
| | |
listen for that rather than EventManager.OnParcelPrimCountAdd
OnParcelPrimCountAdd had the wrong semantics for the PrimCountModule - it was invoked for every entity in the scene, not just new ones, which would screw up the untainted count.
Extend automated test for this scenario.
|
| | |
|
| |
| |
| |
| | |
clearer what they relate to.
|
| | |
|
| | |
|
| |
| |
| |
| | |
region part of an existing estate, then list the existing region names.
|
| |
| |
| |
| | |
but it seems that the terse update causes the first prim to rotate improperly on occasion (only temporary, it's fixed by the full update on deselect, but this will prevent confusion.)
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
|
| | |
| | |
| | |
| | |
| | | |
Run alter table estate_settings add column AllowLandmark tinyint not null default 1, add column AllowParcelChanges tinyint not null default 1, add column AllowSetHome tinyint not null default 1;
to make this work.
|
| | | |
|
| |\ \
| | |/ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
OSP resolved ID if newer CreationData is not present.
This should resolve issues where the creator for rezzed objects was being shown as "Unknown user" where previous behaviour was to show the OSP resolved account.
This is being done by parsing the serialized objects and updating the CreatorID if no CreationData exists. This operation might be expensive for sculpties where the sculpt texture is inlined with the object data. Will just have to see.
This relies on the IAR streaming inventory data before asset data (as is currently the case). Will need to introduce more stringent checks for file order on loading (much like JAR zips must start with the manifest file).
This is for IAR loading only. Tests updated to check this behaviour.
|