aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-02-01minor: rename GetScriptPrimType() to GetPrimType()Justin Clark-Casey (justincc)1-2/+2
2010-02-01move hollow sphere faces bug back up to LSL_Api.csJustin Clark-Casey (justincc)1-1/+1
2010-02-01remove now duplicated shape code from LSL_Api.csJustin Clark-Casey (justincc)1-4/+4
2010-02-01Copy prim face color setting code from LSL_Api down into SOP so that non-LSL ↵Justin Clark-Casey (justincc)1-0/+192
callers can use it
2010-02-01Actually make EventManager.OnAttach() fire when an object is attached. ↵Justin Clark-Casey (justincc)2-2/+6
Previously, only detach was firing!
2010-02-01Don't try to start attachment scripts or send updates if the attachment ↵Justin Clark-Casey (justincc)2-27/+64
itself has been unsuccessful
2010-01-31Added missing file.Diva Canto1-0/+20
2010-01-30* HGScene is no more.Diva Canto6-1019/+40
* Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
2010-01-29Apply http://opensimulator.org/mantis/view.php?id=3334Justin Clark-Casey (justincc)3-0/+52
Send continuous touch() events if the left mouse button is held down while moving over an object This conforms with Linden Lab practice Thanks Revolution
2010-01-29improve locking of m_items in SceneObjectPartInventoryJustin Clark-Casey (justincc)1-85/+133
2010-01-29Add method to get all items with the same name from a particular primJustin Clark-Casey (justincc)2-2/+37
Extend load oar test to check loading of a sound item
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie5-5/+5
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-28HG 1.5 is in place. Tested in standalone only.Diva Canto2-1/+37
2010-01-26Replace dome tabs with spacesMelanie1-3/+3
2010-01-25Fix a problem where llDie() calls were sometimes leaving dead objects behind.Justin Clark-Casey (justincc)6-13/+52
When an object was deleted, the remove script instance call was aggregating the scripting events as normal. This would queue a full update of the prim before the viewer was notifed of the deletion of that prim (QuitPacket) On some occasions, the QuitPacket would be sent before the full update was dequeued and sent. In principle, you would think that a viewer would ignore updates for deleted prims. But it appears that in the Linden viewer (1.23.5), a prim update that arrives after the prim was deleted instead makes the deleted prim persist in the viewer. Such prims have no properties and cannot be removed from the viewer except by a relog. This change stops the prim event aggregation call if it's being deleted anyway, hence removing the spurious viewer-confusing update.
2010-01-24Fixes Region Crossings on a prim.Revolution1-1/+9
2010-01-23Updates all IRegionModules to the new style region modules.Revolution5-5/+5
Signed-off-by: Melanie <melanie@t-data.com>
2010-01-21add a target position to agent updates to ScenePresence to support ↵unknown1-1/+7
alternative client protocols
2010-01-21Fixes llSetDamage. Patch from RevolutionRevolution1-7/+5
2010-01-19Change a member of the friendslist module to better reflect the client sideMelanie1-1/+1
data storage paradigm of the friends list and avoid repeated, unneccessary fetches of the entire friends list.
2010-01-18* Fixed misspelling of field in GridServiceDiva Canto2-15/+9
* Moved TeleportClientHome to EntityTransferModule
2010-01-16Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto1-11/+13
yet.
2010-01-16Finished moving object crossings into EntityTransferModuleDiva Canto2-298/+0
2010-01-16Moved prim crossing to EntityTransferModule. Not complete yet.Diva Canto3-174/+185
2010-01-15Renamed IAgentTransferModule to IEntityTransferModule -- accounts for ↵Diva Canto3-5/+5
objects too.
2010-01-15* General cleanup of Teleports, Crossings and Child agents. They are now in ↵Diva Canto6-1599/+50
the new AgentTransferModule, in line with what MW started implementing back in May -- ITeleportModule. This has been renamed IAgentTransferModule, to be more generic. * HGSceneCommunicationService has been deleted * SceneCommunicationService will likely be deleted soon too
2010-01-13Bug fix in releasing agent. In Scene, always use SimulatonService, and not ↵Diva Canto2-2/+2
m_SimulationService, because it may be null...
2010-01-13Omit AuthorizationService from the default configurations, because the ↵Diva Canto1-5/+5
service doesn't exist in the distribution.
2010-01-13* Removed debug messages.Diva Canto1-2/+0
* Everything works! (everything that was tested; lots of things to test)
2010-01-13Bug in Teleport fixed -- Appearance was missing from AgentCircuitData.Diva Canto2-0/+3
2010-01-13Several more buglets removed.Diva Canto3-18/+18
2010-01-13Change the error messages on region region registration. This changes URMMelanie1-3/+3
and region. The non-error case should be compatible, so no version bump. Untested.
2010-01-12More appearance woes fixed, this time for child agents. Tested on a grid ↵Diva Canto2-0/+6
with 2 simulators. Everything seems to be working, including border crosses. TPs (prim crossing) need love now.
2010-01-12Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto2-5/+5
Appearance is now being passed with AgentCircuitData, as it should be.
2010-01-11Fixed a couple of bugs with Appearance. Appearance is all good now.Diva Canto4-5/+9
2010-01-11add interface/method documentatio nto IScriptModuleCommsJustin Clark-Casey (justincc)1-2/+18
2010-01-11OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto15-15/+8
2010-01-11CommunicationsManager deleted.Diva Canto7-18/+11
2010-01-10NetworkServersInfo removed from CommsManager.Diva Canto2-2/+0
2010-01-10All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto5-7/+4
deleted, including old LoginService.
2010-01-10CommunicationsManager is practically empty. Only NetworkServersInfo is there.Diva Canto3-16/+15
2010-01-11Whitespace cleanupMelanie3-169/+169
2010-01-11Adds llRotTarget and the events at_rot_target and not_at_rot_target.Revolution3-5/+174
Signed-off-by: Melanie <melanie@t-data.com>
2010-01-10* Changed IPresenceService Logout, so that it takes a position and a lookatDiva Canto2-14/+0
* CommsManager.AvatarService rerouted
2010-01-10Remove all references to master avatar, replacing with estate owner whereMelanie1-6/+0
appropriate. This changes the behavior of the REST plugins and RemoteAdmin's region creation process.
2010-01-10* Last reference to CommsManager.UserProfileCacheService removedDiva Canto1-1/+1
* Grided-sims added the Library module
2010-01-10Clean CRs from previous patchMelanie1-67/+67
2010-01-10Adds land collision events.Revolution2-10/+156
CRs cleaned from patch Signed-off-by: Melanie <melanie@t-data.com>
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto8-118/+28
* HG is seriously broken here * Compiles. Untested.
2010-01-10Fix a small bug in login disable codeMelanie1-1/+1