aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Hypergrid (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield4-975/+0
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-02-04- add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur1-34/+34
- trim trailing whitespace
2009-01-30Bug fix on posting assets onto foreign users inventory. Check that the key ↵diva1-1/+2
is already in the local asset map before adding it.
2009-01-22* Change the currently misleading log message when capabilities are added ↵Justin Clarke Casey1-1/+1
twice, and provide some more information * No functional change * It strikes me that there may be caps problems if double registration is presented if cleanup failed for a previous agent (so a caps handler will remain in memory for that agent but with a different seed). This needs investigation
2009-01-21* refactor: Extract caps related code from scene and put into a region moduleJustin Clarke Casey1-1/+1
* No functional changes in this revision
2009-01-18Getting rid of the CheckRegion call during TPs. This seems to be not just ↵diva1-12/+1
useless, but sometimes problematic (mantis #2999). Initial tests indicate that this call is not necessary. Let's see if this stands in the wild.
2009-01-14* minor: Change around more debugging messagesJustin Clarke Casey1-1/+3
2009-01-06* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey1-1/+1
terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
2009-01-06* Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey1-4/+6
2009-01-06* minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey1-5/+4
2009-01-06* refactor: Remove the need to separately pass in the http listener to the ↵Justin Clarke Casey1-2/+2
scene - this is always available via CommsManager
2009-01-03Extra check to avoid client crashes on HG home teleports.diva1-12/+18
2009-01-03Another interregion comms change that will not work well with previous ↵diva1-1/+2
versions. This commit moves InformRegionOfChildAgent from OGS1 to RESTComms, effectively having the complete child agent life cycle over REST: create=POST, update=PUT, close=DELETE. Additional changes include more functions in the IHyperlink interface, and some refactorings in the HG code for better reuse in RESTComms.
2009-01-03Split agent updates into two messages: full update and position+camera ↵diva1-1/+1
update. They're both sent over HTTP PUT. The full update is sent on TPs, for now; later it will also be sent on region crossings.
2009-01-01Major changes in interregion communications. This breaks compatibility with ↵diva1-9/+25
older versions, and may result is all sorts of weirdnesses when interacting with sims in older versions. Changes: - Introducing synchronous Teleports. Now the receiving region calls back the sending region after the client has been made a root agent there, that is, after client sends CompleteMovement to the destination. - SendCloseAgent moved from OGS1 Remoting to RESTComms.
2008-12-31Added a SendChildAgentDataUpdate call on Teleports, so that the agent at the ↵diva1-23/+30
destination will have all the necessary information.
2008-12-29Minor change in HGSceneCommunicationService, making one field public ↵diva1-1/+1
readonly. Totally harmless.
2008-12-22Fix for attachment crossing on TPs. Now that we're letting the viewer have ↵diva1-7/+10
control over MakeRoot at the destination, we need to pass the attachments after that. Attachment crossing requires a root agent at the destination.
2008-12-22This commit is a major change on the TP process. Several things were wrong ↵diva1-17/+25
and/or broken. (a) ExpectAvatarCrossing is redundant (and bad) because the client triggers the same method on the receiving region after it receives TeleportFinish. (b) At least two of the *Async methods in SceneCommunicationService weren't asynchronous at all; I made them be asynchronous. Crossing fingers...
2008-12-21Slowing TPs down a bit further.diva1-4/+4
2008-12-20Slowing things down even more on TPs, to see if that helps the European ↵diva1-1/+2
folks connected to osgrid.
2008-12-20This reduces DNS lookups in TPs by a factor of 4. Let's see if this fixes ↵diva1-5/+16
some of the crashes experienced by ppl in Europe connected to OSGrid. If DNS lookup does not resolve, they may experience a substantial increase in "Region not available", but they shouldn't crash.
2008-12-20Slowing things down a little bit in TPs, with a couple of extra Thread.Sleep ↵diva1-1/+5
to give enough time for the destination to set up CAPs for the incoming agent before sending EAC to the client.
2008-12-15Attempt at fixing the HG home jump by looking up hyperlink regions before ↵diva1-1/+1
grid-local regions.
2008-12-15Bug fix in new child agents management. Thanks DigiDaz for helping identify ↵diva1-37/+45
this issue. We need to update all child agents whenever the root agent crosses regions. The update now includes child agents in common neighbours. This is so that those get updated with the seeds of the new child agents that are spawned from the receiving region. This also fixes some timing issues. We need to close child agents from the originating region before we update child agents in the receiving region.
2008-12-15Bug fix for Hypergrid. This bug was introduced by the recent TP fixes, and ↵diva1-11/+14
affected the jump back home.
2008-12-14Mantis#2725. Thank you kindly, Diva, for a patch that:Charles Krinke1-31/+56
Adds missing protocol pieces for EstablishAgentCommunication event which allows the client to activate CAPS and the EQ for child agents.
2008-12-03Remove the bandaid (fast rip)Melanie Thielker1-10/+10
2008-12-03Apply Diva's bandaid to OpenSim's scraped knee.Melanie Thielker1-10/+10
2008-12-01* minor: remove 2 mono compiler warningsJustin Clarke Casey1-1/+1
2008-11-30Mantis #2584 (again)Melanie Thielker1-10/+13
Next step of diva's TP fixes and HG support
2008-11-29Mantis #2584Melanie Thielker1-0/+18
Applying a patch from Diva. This patch introduces significant improvements in teleporting. Thank you, Diva.
2008-11-28* refactor: Replace derez destiation magic numbers with an enumerationJustin Clarke Casey1-2/+2
2008-11-25Mantis#2692: Thanks Diva, for a patch that fixes a bug in HyperGrid.Homer Horwitz2-7/+5
2008-11-25Update svn properties.Jeff Ames4-870/+870
2008-11-25* minor: eliminate mono compiler warningsJustin Clarke Casey1-1/+1
2008-11-25* Apply http://opensimulator.org/mantis/view.php?id=2640Justin Clarke Casey4-0/+870
* This is Diva's hypergrid patch, as perviously discussed on the opensim-dev mailing list * Applied some minor prebuild.xml jiggling to resolve a dependency issue * Thanks Diva!