Add experimental "show grid size" robust console command.
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)0.8.0.3
parent
3dd5d8508c
commit
6b5533dbdb
|
@ -117,6 +117,13 @@ namespace OpenSim.Services.GridService
|
|||
"For example, show region at 1000 1000",
|
||||
HandleShowRegionAt);
|
||||
|
||||
MainConsole.Instance.Commands.AddCommand("General", true,
|
||||
"show grid size",
|
||||
"show grid size",
|
||||
"Show the current grid size (excluding hyperlink references)",
|
||||
String.Empty,
|
||||
HandleShowGridSize);
|
||||
|
||||
MainConsole.Instance.Commands.AddCommand("Regions", true,
|
||||
"set region flags",
|
||||
"set region flags <Region name> <flags>",
|
||||
|
@ -615,6 +622,28 @@ namespace OpenSim.Services.GridService
|
|||
OutputRegionsToConsoleSummary(regions);
|
||||
}
|
||||
|
||||
private void HandleShowGridSize(string module, string[] cmd)
|
||||
{
|
||||
List<RegionData> regions = m_Database.Get(int.MinValue, int.MinValue, int.MaxValue, int.MaxValue, UUID.Zero);
|
||||
|
||||
double size = 0;
|
||||
|
||||
foreach (RegionData region in regions)
|
||||
{
|
||||
int flags = Convert.ToInt32(region.Data["flags"]);
|
||||
|
||||
if ((flags & (int)Framework.RegionFlags.Hyperlink) == 0)
|
||||
size += region.sizeX * region.sizeY;
|
||||
}
|
||||
|
||||
MainConsole.Instance.Output("This is a very rough approximation.");
|
||||
MainConsole.Instance.Output("Although it will not count regions that are actually links to others over the Hypergrid, ");
|
||||
MainConsole.Instance.Output("it will count regions that are inactive but were not deregistered from the grid service");
|
||||
MainConsole.Instance.Output("(e.g. simulator crashed rather than shutting down cleanly).\n");
|
||||
|
||||
MainConsole.Instance.OutputFormat("Grid size: {0} km squared.", size / 1000000);
|
||||
}
|
||||
|
||||
private void HandleShowRegion(string module, string[] cmd)
|
||||
{
|
||||
if (cmd.Length != 4)
|
||||
|
|
Loading…
Reference in New Issue