aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/GridService (follow)
Commit message (Collapse)AuthorAgeFilesLines
* work on previus 2 patchsUbitUmarov2019-11-141-19/+17
|
* Attempt to fix the issue where, when logging into the grid, the user ↵Terry2019-11-141-1/+12
| | | | | | | supplies a region name, but instead of going to the specific region, they are sent to a region "Like" the one specified. Signed-off-by: Terry <terry@digiworldz.com> Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
* remove some more useless NULL argumentsUbitUmarov2019-10-221-6/+6
|
* Remove a no longer used property that used ScopeID in an improper wayMelanie2019-10-061-28/+0
|
* fix a HG to local grid tp extra checkUbitUmarov2019-09-071-3/+1
|
* mantis 8580: make some changes on regions find code. (only gatekeeperUbitUmarov2019-09-022-28/+40
| | | | host is used on local grid detection, not its port)
* Massive console refactor. Greatly simplify interface.Melanie2019-08-201-6/+6
|
* now break several things at same time... sog/sop updates, threads options,...UbitUmarov2018-12-281-1/+2
|
* Back-end fix for region name searches made from the viewer grid map dialog.Kevin Cozens2018-07-061-1/+1
| | | | | GetRegionsByName now returns names that include, but don't start with, the given search string.
* If we're going to show regions twice (in standalone) at least make the ↵Diva Canto2017-04-251-3/+3
| | | | formatting consistent...
* Massive tab and trailing space cleanupMelanie Thielker2017-01-054-34/+34
|
* dont allow regions to be register on map area reserved for HG linksUbitUmarov2016-12-161-1/+4
|
* remove a nonsense optionUbitUmarov2016-12-161-5/+0
|
* ok.. another try on the HG uriUbitUmarov2016-12-162-124/+22
|
* GetRegionsByName and GetHypergridRegionByName: detect that provided url is ↵UbitUmarov2016-12-152-12/+27
| | | | for local grid, and make it a local by region name local search
* HG regions URI need to include also the default ports for compatibilityUbitUmarov2016-12-101-5/+6
|
* fix region area rangeUbitUmarov2016-12-011-2/+2
|
* fix region overlaps on registrationUbitUmarov2016-12-011-95/+17
|
* increase HG mapsearch spargetti; add more flexibility on input uri formats. ↵UbitUmarov2016-11-282-58/+177
| | | | To find regions in memory for a grid the http format needs to be used, because aditional compares made by viewers
* HG on links request build the URI in http format with a / at end, this ↵UbitUmarov2016-11-271-3/+6
| | | | should not be needed but is coerent with current serverURI
* fix type bug on hyperlinksUbitUmarov2016-11-211-1/+1
|
* HG LinkRegion receive region size also. Useless since olde r gatekeepers ↵UbitUmarov2016-11-201-2/+6
| | | | dont send it
* stop a spamming robust debug messageUbitUmarov2016-08-021-4/+4
|
* Mantis #7928: show grid size and show regions now working. Integers were ↵Diva Canto2016-06-191-2/+2
| | | | being overflown.
* Pushed AssemblyVersion up to VersionInfo, so that we don't need to do global ↵Diva Canto2016-02-211-1/+1
| | | | replace anymore.
* On to 0.8.3!Diva Canto2015-10-181-1/+1
| | | | | Conflicts: OpenSim/Region/PhysicsModules/ConvexDecompositionDotNet/Properties/AssemblyInfo.cs
* ... merge issueUbitUmarov2015-09-281-5/+3
|
* coment out some debug, clean a bitUbitUmarov2015-09-261-8/+0
|
* seems to compile ( tests comented out)UbitUmarov2015-09-022-65/+5
|
* bad merge?UbitUmarov2015-09-012-2/+67
|\
| * review gridservice module. Not merged os code for varsize, since thatUbitUmarov2015-08-281-0/+68
| | | | | | | | should be handle at db level
| * varregion: any conversions of use of Constants.RegionSize converted intoRobert Adams2015-03-292-27/+31
| | | | | | | | Util.cs routines to convert region coords to and from world coords or handles.
| * Merge branch 'master' of ssh://3dhosting.de/var/git/careminsterMelanie Thielker2014-06-213-32/+71
| |\ | | | | | | | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
| | * Add serialization/deserialization of region size to RegionInfo, GridRegion, ↵Robert Adams2013-12-281-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | and RegionData. This does not modify interfaces or handling of variable sized regions. This only enables the loading and storing of the region size and the reporting of the region size in grid service responses. The database tables already have the code to load and store the region size.
| * | Minor: Add prentheses to make a condition clearerMelanie2014-01-151-2/+1
| | |
* | | Mantis #7664: Added IHypergridLinker interface to establish a contract about ↵Diva Canto2015-08-011-2/+2
| | | | | | | | | | | | what implementers need to provide publicly. This is used by 3rd-party addons such as Wifi.
* | | Added locking to HypergridLinker, to prevent problems if multiple linking ↵Oren Hurvitz2015-07-221-6/+14
| | | | | | | | | | | | requests for the same region are handled simultaneously
* | | Added logging in places where regions are searched for by their locationOren Hurvitz2015-07-222-9/+21
| | | | | | | | | | | | This commit also fixes the log message "Region already exists in coordinates <{0},{1}>": it was actually showing the *requested* coordinates, instead of the coordinates of the previously-existing link.
* | | Updated all occurrences of AssemblyVersion("0.8.1.*") to ↵Diva Canto2015-04-291-1/+1
| | | | | | | | | | | | AssemblyVersion("0.8.2.*")
* | | On the GridService, the central simulator features: ensure that the map tile ↵Diva Canto2015-01-221-1/+7
| | | | | | | | | | | | url ends with '/' because the viewer is dumb and just appends to it.
* | | SimulatorFeatures: the viewer also takes GridName in OpenSim extras. Added ↵Diva Canto2015-01-101-0/+13
| | | | | | | | | | | | that (plus GridURL, in case viewers want to use it too) to the GridService that gives out that info to simulators.
* | | minor: Just have one message that displays successful registration of a ↵Justin Clark-Casey (justincc)2014-12-031-2/+4
| | | | | | | | | | | | region with its parameters rather than 2
* | | OpenSimExtrasBlueWall2014-08-061-0/+43
| | | | | | | | | | | | Move the experimental extra features functionality into the GridService. This sends default values for map, search and destination guide, plus ExportSupported control to the region on startup. Please watch http://opensimulator.org/wiki/SimulatorFeatures_Extras for changes and documentation.
* | | Add code to GridService to check for overlapping of varregionsRobert Adams2014-07-201-6/+123
| | | | | | | | | | | | | | | | | | | | | | | | when registering a new region. Adds parameter "[GridService]SuppressVarRegionOverlapCheckOnRegistration=false" that can be turned on to suppress the error check if a simulator's database has old regions that overlap.
* | | In grid mode, add SuppressConsoleCommands flag to [GridService] so that we ↵Justin Clark-Casey (justincc)2014-07-181-13/+16
| | | | | | | | | | | | | | | | | | can stop misleading grid service only console commands from registering. We need to do this because the simulator initializes and internal copy of the GridService in grid mode for internal purposes
* | | Add ICommands.HasCommand() method so that we can detect whether a command ↵Justin Clark-Casey (justincc)2014-07-181-1/+1
| | | | | | | | | | | | has already been registered without needing to also run it
* | | minor: Remove compiler warning in GridServiceJustin Clark-Casey (justincc)2014-07-141-1/+1
| | |
* | | Add experimental "show grid size" robust console command.Justin Clark-Casey (justincc)2014-07-051-5/+34
| | | | | | | | | | | | | | | This will show an approximate grid size that doesn't count regions that are hyperlinks Not particularly trustworthy since it will still count regions that are not active but were not deregistered (deliberately or due to simulator crash or similar)
* | | Adjust "show regions" and "show region" robust service console output to ↵Justin Clark-Casey (justincc)2014-07-051-5/+5
| | | | | | | | | | | | | | | | | | | | | show size "show regions" drops the owner id column but is till present in "show region" "show regions" name column expanded to allow for longer hg regions (probably still too short, may eventually have to truncate rather than taking up huge screen space)
* | | Change assembly versions to 0.8.1Justin Clark-Casey (justincc)2014-06-171-1/+1
| | |