aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-07-25Gatekeeper -> GatekeeperURIonefang1-1/+1
Coz it says all over the source code - // Legacy. Remove soon! And has since later OpenSim 0.7s.
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang5-321/+1070
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel4-26/+143
2012-11-13Last 27 modules' directives (service connectors out).Diva Canto2-0/+4
2012-09-19Correctly override and call base OpenSimTestCase.SetUp() method in ↵Justin Clark-Casey (justincc)1-3/+5
GridConnectorsTests and ArchiverTests. Remove unrelated compile warning from AttachmentsModuleTests.
2012-09-06If reusing dynamic textures, do not reuse small data length textures that ↵Justin Clark-Casey (justincc)1-1/+1
fall below current viewer discard level 2 thresholds. Viewer LL 3.3.4 and before sometimes fail to properly redisplay dynamic textures that have a small data length compared to pixel size when pulled from cache. This appears to happen when the data length is smaller than the estimate discard level 2 size the viewer uses when making this GetTexture request. This commit works around this by always regenerating dynamic textures that fall below this threshold rather than reusing them if ReuseDynamicTextures = true This can be controlled by the [Textures] ReuseDynamicLowDataTextures config setting which defaults to false.
2012-07-13Remove a callstack print out I accidentally left in 2 commits ago in 9ccb578Justin Clark-Casey (justincc)1-1/+0
2012-07-13Rather than instantiating a UTF8 encoding everywhere when we want to supress ↵Justin Clark-Casey (justincc)1-1/+1
the BOM, use a single Util.UTF8NoBomEncoding. This class is thread-safe (as evidenced by the provision of the system-wide Encoding.UTF8 which does not suppress BOM on output).
2012-07-13Don't cache regions data on the other unused LocalGridServiceConnector that ↵Justin Clark-Casey (justincc)2-14/+22
the module code still sets up even if we're using one directly instantiated from the RemoteGridServiceConnector. Also improves log messages to indicate which regions are sending/receiving various neighbour protocol messages.
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-1/+1
<category/module>" to display commands in a category. This is to deal with the hundred lines of command splurge when one previously typed "help" Modelled somewhat on the mysql console One can still type help <command> to get per command help at any point. Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet). Does not affect command parsing or any other aspects of the console apart from the help system. Backwards compatible with existing modules.
2012-03-06Remove static m_MainInstance in LocalGridServiceConnector.Justin Clark-Casey (justincc)1-24/+10
I believe this was originally required back when there could be two LocalGridServiceConnectors but this is no longer the case. Having such statics makes performance testing much more difficult since they prevent GC of objects unless static references are explicitly nulled.
2012-02-18This should smooth movement in heteregeneous networks by a lot: cache the ↵Diva Canto2-2/+40
region by position instead of looking it up all the time -- this was being done during the main update loop!
2011-12-03Add beginning of ScenePresenceAgentTests.TestCreateChildScenePresence()Justin Clark-Casey (justincc)1-4/+5
This required an option to be added to NullRegionData via ConnectionString for it to act as a non-static instance, so that regression tests (which only load this class once) don't get hopeless confused and complex to compensate. Normal standalone operation unaffected.
2011-08-02Change GridService.GetRegionByName() to only return info if there is an ↵Justin Clark-Casey (justincc)1-2/+5
exact region name match, unlike GetRegionsByName() This should fix the first part of http://opensimulator.org/mantis/view.php?id=5606, and maybe 5605. Thanks to Melanie for helping with this.
2011-06-15Added an expiring cache for region information to theMic Bowman2-2/+169
RemoteGridService connector. Timeout is currently set at five minutes. Negative results are not cached. The result is that operations like send an instant message do not have to go through the grid service every time.
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)1-1/+0
OpenSim.Tests.Common instead
2011-03-09Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)1-1/+0
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
2011-02-06Better output for show neighboursDiva Canto1-2/+6
2010-12-29Bug fix in neighbors: serverURI now always has a trailing '/'... neighbors ↵Diva Canto1-1/+1
were not getting notified.
2010-12-27WARNING: simulator config var change! This affects only system-facing ↵Diva Canto1-2/+12
configs. Nothing to do if you follow the rules of not messing with Grid.ini and GridHypergrid.ini. Change the remote Grid region module so that it takes the network connector as a config variable. This allows the region plugin to be reused for both Robust and Simian network connectors.
2010-12-14Fixes mantis #5270 -- Map tiles for hyperlinks not showing in world map for ↵Diva Canto1-22/+87
grided sims.
2010-08-10This file wants to be committedDiva Canto1-37/+37
2010-08-08Tests for distance-sorted fallback regions.Marck1-7/+57
With some extensions to existing grid service tests.
2010-08-06Added Check4096 config var under [GridService], at the request of many. ↵Diva Canto2-7/+7
Changed the iteration that Marck had on the Hyperlinker. ATTENTION! CONFIGURATION CHANGE AFFECTING Robust.HG.ini.example and StandaloneCommon.ini.example.
2010-08-06Allow creation of link regions if there is an existing region within a 4096 ↵Marck2-0/+10
range. Also add GetHyperlinks() to the grid service.
2010-06-13Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto2-20/+2
neighbours.
2010-05-09* Fixed spamming the assets table with map tiles. The tile image ID is now ↵Diva Canto1-1/+3
stored in regionsettings. Upon generation of a new tile image, the old one is deleted. Tested for SQLite and MySql standalone. * Fixed small bug with map search where the local sim regions weren't found.
2010-05-03Assorted bug fixes in hypergrid linking.Diva Canto1-0/+5
2010-02-21Small bug fixes for making tests work.Diva Canto1-3/+3
2010-02-01Bug fix for getting region flags.Diva Canto1-0/+8
2010-01-31Assorted bug fixes related to hyperlinkingDiva Canto1-1/+10
2010-01-29* HGGridConnector is no longer necessary.Diva Canto1-257/+0
* 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-24Some method implementations were missing from LocalGridServiceConnector.Diva Canto1-15/+15
2010-01-24Integrated the hyperlinking with the GridService.Diva Canto1-62/+12
2010-01-17HG agent transfers are starting to work. Gatekeeper handlers are missing.Diva Canto1-1/+26
2010-01-17Hyperlinking minimally tested and working.Diva Canto1-1/+0
2010-01-16Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto2-910/+43
yet.
2010-01-15CommentDiva Canto1-0/+1
2010-01-15* General cleanup of Teleports, Crossings and Child agents. They are now in ↵Diva Canto1-1/+3
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-13Change the error messages on region region registration. This changes URMMelanie3-8/+10
and region. The non-error case should be compatible, so no version bump. Untested.
2010-01-11OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto1-1/+1
2010-01-10NetworkServersInfo removed from CommsManager.Diva Canto1-12/+11
2010-01-10* Starting to clean the house...Diva Canto1-20/+21
* Fixed circular dependency
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto1-88/+107
* HG is seriously broken here * Compiles. Untested.
2010-01-10Remove "login disable", "login enable" and "login status" commands.Melanie1-2/+0
2010-01-09Preliminary work on the new default region setting mechanismMelanie2-0/+30
2009-12-19* Bug fix in HG: preserve the home region coordinates across multiple HG TPs.Diva Canto1-2/+11
* Removed unnecessary debug messages.
2009-12-11Attempt at fixing mantis #4411.Diva Canto1-1/+1
2009-11-09minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-2/+2
2009-11-03Fixed a couple of NREs in corner cases.Diva Canto1-0/+6