aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/EntityTransfer (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-08-27Addresses mantis #4991 -- HG between two regions with the same map ↵Diva Canto1-0/+9
coordinates fails with no warning
2010-08-16Attempt at sending TeleportProgress, but it doesn't seem to be doing ↵Diva Canto1-0/+3
anything at all. Left it commented, just as a reminder for where those messages could be sent.
2010-08-16Work on TeleportStart: renamed method from TeleportLocationStart to ↵Diva Canto1-6/+4
TeleportStart, and now sending this upon all teleports, not just some, and in the right place (EntityTransferModule).
2010-08-15Better comment (related to previous commit)Diva Canto1-1/+1
2010-08-15Addresses mantis #4929. Agent was being logged off the grid too soon -- ↵Diva Canto2-6/+23
things may still fail.
2010-08-13minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-13/+13
2010-06-13Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto1-0/+28
neighbours.
2010-06-12Added checks for failed UpdateAgent calls.Diva Canto1-17/+29
2010-06-12* Added CHANGED_TELEPORT event trigger upon inter-sim teleports.Diva Canto1-1/+1
* Cleaned up NewUserConnection.
2010-06-12Make local teleports send CHANGED_TELEPORTMelanie Thielker1-0/+3
2010-06-08Refactor SendCoarseLocations for better performance. Instead of computing ↵Dan Lake1-3/+0
list of all locations fresh for every scene presence on every frame, we will instead compute the list once every 50 frames and send to all connected presences at that time. Also, we only add 60 items to the list when there are more than 60 presences in the scene. For 1000 users, this change yields a 99.8% reduction in list processing and a 98% reduction in network bandwidth for coarse locations.
2010-06-05* Bug fix in TP home: typo in unpacking of GridUserInfo.Diva Canto1-0/+11
* Bug fix in TPs across neighboring regions: bug was introduced when getting rid of crashed sessions.
2010-05-27Revert "Comment noisy "CONNECTION DEBUGGING" messages, because they push more"Melanie1-13/+1
Some other stuff snuck in. This reverts commit 4cc533e7ad94d148351c16f48afd2a688a64c48a.
2010-05-27Comment noisy "CONNECTION DEBUGGING" messages, because they push moreMelanie Thielker1-1/+13
important stuff off screen too fast
2010-05-08* Added missing loggout notification to home grid upon agents logging out in ↵Diva Canto1-0/+8
foreign grids. * Added missing config in StandaloneHypergrid.ini
2010-05-07GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto2-5/+13
home and position info in the presence service. WARNING: I violated a taboo by deleting 2 migration files and simplifying the original table creation for Presence. This should not cause any problems to anyone, though. Things will work with the new simplified table, as well as with the previous contrived one. If there are any problems, solving them is as easy as dropping the presence table and deleting its row in the migrations table. The presence info only exists during a user's session anyway. BTW, the Meshing files want to be committed too -- EOFs.
2010-05-05Added copying of Viewer field to the agent circuit data that is being passed ↵Diva Canto1-0/+6
on TPs and crossings. (XmlRpcGroups files want to be committed too)
2010-02-23* Removed the unused GridRegion.getInternalEndPointPort() (just use ↵John Hurliman1-2/+4
InternalEndPoint.Port). This class is complex enough as it is * Changed the failed to inform neighbor message from a warning to info, since this will fire for every empty neighbor space * Made the EnableSimulator/EstablishAgentCommunication log message more verbose and more clear about what is happening
2010-01-29* HGGridConnector is no longer necessary.Diva Canto2-17/+20
* Handle logout properly. This needed an addition to IClientAPI, because of how the logout packet is currently being handled -- the agent is being removed from the scene before the different event handlers are executed, which is broken.
2010-01-29Works for grid login.Diva Canto2-12/+33
2010-01-28HG 1.5 is in place. Tested in standalone only.Diva Canto2-53/+69
2010-01-27Added ExternalName config on Gatekeeper.Diva Canto1-0/+1
2010-01-24Some method implementations were missing from LocalGridServiceConnector.Diva Canto1-0/+2
2010-01-24Integrated the hyperlinking with the GridService.Diva Canto1-18/+27
2010-01-18Go Home works. With security!!Diva Canto2-8/+71
2010-01-18* Added missing GatekeeperServiceConnectorDiva Canto2-224/+281
* Added basic machinery for teleporting users home. Untested.
2010-01-18* Fixed misspelling of field in GridServiceDiva Canto2-38/+34
* Moved TeleportClientHome to EntityTransferModule
2010-01-17HG teleports through gatekeeper are working.Diva Canto2-17/+12
2010-01-17Agent gets there through the Gatekeeper, but still a few quirks to fix.Diva Canto2-6/+44
2010-01-17Oops, forgot this one.Diva Canto1-0/+137
2010-01-17HG agent transfers are starting to work. Gatekeeper handlers are missing.Diva Canto1-229/+240
2010-01-16Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto1-1/+1
yet.
2010-01-16Finished moving object crossings into EntityTransferModuleDiva Canto1-3/+3
2010-01-16Moved prim crossing to EntityTransferModule. Not complete yet.Diva Canto1-49/+372
2010-01-15Renamed IAgentTransferModule to IEntityTransferModule -- accounts for ↵Diva Canto1-0/+1201
objects too.