aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/GridService/GridService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-05Limits -= 2onefang1-1/+2
Low Y regions are no longer reserved for HG links. Varregions don't have to be square. Both now report a warning, but continue anyway. Cool VL Viewer handles non square regions, Singularity crashes. Not tested on others.
2019-05-19Various logging fix ups.onefang1-2/+2
Mostly removing console spam. Default to INFO on the console and DEBUG in the log files. More time stamp resolution.
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-146/+148
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-73/+342
2012-10-09Move OpenSim.Data.RegionFlags -> OpenSim.Framework.RegionFlags to make it ↵Justin Clark-Casey (justincc)1-24/+24
easier for other code to use (e.g. LSL_Api) without having to reference OpenSim.Data just for this.
2012-08-25Fix and refactor region registration. Reorder checks to short-curcuit ↵Melanie1-25/+28
expensive and destructive ones. Properly fix region reservation and authentication. Make region moves and flags preservation work again as intended. Prevent failes reservation take-over from damging reservation data.
2012-06-26Show region positions in "show regions" robust console commandJustin Clark-Casey (justincc)1-1/+7
2012-06-26minor: correct GridService "show regions" cibsike cinnabd usage statementJustin Clark-Casey (justincc)1-1/+1
2012-06-26Add much easier ConsoleDisplayTable AddColumn() and AddRow() methods.Justin Clark-Casey (justincc)1-6/+5
Use these for new "show regions" command rather than old cumbersome stuff.
2012-06-26Add "show regions" console command to ROBUST to show all regions currently ↵Justin Clark-Casey (justincc)1-0/+44
registered. Command is not added in standalone, which has its own version of "show regions" that can also show estate name
2012-06-25Add "show region at" command to grid service to get the details of a region ↵Justin Clark-Casey (justincc)1-22/+69
at a specific location. "show region" command becomes "show region name" to disambiguate This is the same format as used by "show object name", etc. "deregister region" also becomes "deregister region id"
2012-06-13Add "deregister region" by uuid command to grid service to allow manual ↵Justin Clark-Casey (justincc)1-0/+45
deregistration of simulators. Useful if a simulator has crashed without removing its regions and those regions have been reconfigured differently
2012-05-23Add ConsoleDisplayList for more consistent formatting of console output in ↵Justin Clark-Casey (justincc)1-9/+9
list form. Convert "show region" to use this structure rather than hand-constructing
2012-05-23Add missing Y co-ord in "show region" console command informationJustin Clark-Casey (justincc)1-1/+1
2012-05-23Lay out "show region" information in an easier to read line by line formatJustin Clark-Casey (justincc)1-9/+11
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-2/+2
<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.
2011-11-19Get rid of the spurious [WEB UTIL] couldn't decode <OpenSim agent ↵Justin Clark-Casey (justincc)1-2/+2
57956c4b-ff2e-4fc1-9995-613c6256cc98>: Invalid character 'O' in input string messages These are just the result of an attempt to canonicalize received messages - it's not important that we constantly log them. Also finally get the deregister grid service message working properly
2011-11-19Improve some grid region log messages to express regions at co-ordinate ↵Justin Clark-Casey (justincc)1-3/+3
(e.g. 1000, 1000) rather than meter positions (256000, 256000)
2011-11-19improve region deregistration log messageJustin Clark-Casey (justincc)1-1/+4
2011-11-19Don't register a region twice on both official registration and maptile ↵Justin Clark-Casey (justincc)1-0/+1
regeneration. Maptile storage appears orthogonal to region registration
2011-10-08Tweak to language of last commit in rejecting UUID.Zero in ↵Justin Clark-Casey (justincc)1-2/+4
GridService.RegisterRegion() Allowing regions with UUID.Zero causes problems elsewhere according to http://opensimulator.org/mantis/view.php?id=3426 It's probably a bad idea to allow these in any case.
2011-10-08GridService - Region UUID can not be NULLPixel Tomsen1-0/+2
http://opensimulator.org/mantis/view.php?id=3426
2011-08-05Get "show region" command in GridService to show grid co-ordinates rather ↵Justin Clark-Casey (justincc)1-2/+3
than meters co-ord. This makes it consistent with "show regions" Addresses http://opensimulator.org/mantis/view.php?id=5619
2011-08-02If GetRegionByName can't match something in the local db, then search the ↵Justin Clark-Casey (justincc)1-6/+27
hypergrid if that functionality has been enabled. This should fix the problem today where old style HG addresses (e.g. "hg.osgrid.org:80:Vue-6400") stopped working since 8c3eb324c4b666e7abadef4a714d1bd8d5f71ac2
2011-08-02Change GridService.GetRegionByName() to only return info if there is an ↵Justin Clark-Casey (justincc)1-1/+1
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-08-02Revert "In GridService, have GetRegionByName() call GetRegionsByName() with ↵Justin Clark-Casey (justincc)1-5/+4
a max return of 1 instead of duplicating code." This reverts commit 8d33a2eaa10ed75146f45cca4d6c19ac814d5fee. Better fix will be along in a minute
2011-08-02In GridService, have GetRegionByName() call GetRegionsByName() with a max ↵Justin Clark-Casey (justincc)1-4/+5
return of 1 instead of duplicating code. This also fixes the problem where this method would not return a hypergrid region, unlike GetRegionsByName()
2011-02-18If GridService.GetNeighbours() could not find the region then log a warning ↵Justin Clark-Casey (justincc)1-1/+11
rather than causing a null reference on the normal log line This also extends the TestChildAgentEstablished() test to actually activate the EntityTransferModule, though the test is not yet viable
2011-02-04minor: Correct misspelling of neighbour in log messages.Justin Clark-Casey (justincc)1-1/+1
Thanks Fly-Man-
2010-10-22Revert "Merge remote branch 'otakup0pe/mantis5110'"Justin Clark-Casey (justincc)1-1/+1
This reverts commit 21187f459ea2ae590dda4249fa15ebf116d04fe0, reversing changes made to 8f34e46d7449be1c29419a232a8f7f1e5918f03c.
2010-10-22Revert "* additional serveruri cleanup"Justin Clark-Casey (justincc)1-1/+1
This reverts commit 19119d7705f8381a3c207d0e64a23243215a12b9.
2010-10-20* additional serveruri cleanupJonathan Freedman1-1/+1
2010-10-18Change substring matching to prefix matching in region search. This affectsMelanie1-1/+1
both map and login, as they use the same method.
2010-10-03* additional serveruri cleanupJonathan Freedman1-1/+1
2010-08-06Added Check4096 config var under [GridService], at the request of many. ↵Diva Canto1-15/+15
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 ↵Marck1-0/+16
range. Also add GetHyperlinks() to the grid service.
2010-08-04Allow specifying default region flags. Correct a typo.Melanie Thielker1-1/+2
2010-07-30Bug fix: make m_HypergridLinker static.Diva Canto1-1/+1
2010-07-05Don't include hyperlinks as neighbors, even if grid operators have done the ↵Diva Canto1-1/+5
mistake of placing them as neighbors. This will not prevent further mess ups coming from that unsupported action.
2010-06-13Fixes the long-standing RegionUp bug! Plus lots of other cleanups related to ↵Diva Canto1-2/+3
neighbours.
2010-05-09* Fixed spamming the assets table with map tiles. The tile image ID is now ↵Diva Canto1-1/+2
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-1/+4
2010-03-12minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-4/+2
2010-02-21Small bug fixes for making tests work.Diva Canto1-14/+16
2010-01-31Assorted bug fixes related to hyperlinkingDiva Canto1-1/+2
2010-01-24Hypergrid map search back on, this time with a config var in the grid service.Diva Canto1-3/+17
2010-01-24Some method implementations were missing from LocalGridServiceConnector.Diva Canto1-1/+3
2010-01-24Integrated the hyperlinking with the GridService.Diva Canto1-2/+5
2010-01-18* Fixed misspelling of field in GridServiceDiva Canto1-1/+1
* Moved TeleportClientHome to EntityTransferModule
2010-01-15Implement region registration with authenticationMelanie1-1/+18