aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-03-24Get the full viewer name even if it's (incorrectly) sent in the 'Channel' fieldOren Hurvitz1-1/+1
Recent versions of Firestorm and Singularity have started sending the viewer name in the 'Channel' field, leaving only their version number in the 'Viewer' field. So we need to search both of these fields for the viewer name. This resolves http://opensimulator.org/mantis/view.php?id=6952
2014-03-05Add UUID and ready status (whether region has finished starting up) to "show ↵Justin Clark-Casey (justincc)1-10/+17
regions" console output.
2014-02-15Fix displacement and location operations on legacy trees and grass inRobert Adams1-4/+4
the 'load oar' and 'scene' commands. Before they were ignored but the code now relies on the SOG.IsAttachment function for attachmentness.
2014-02-02Add "--no-objects" parameter to 'load oar'.Robert Adams1-0/+2
2014-02-02Change new 'load oar' parameters to be hyphenated to be consistant withRobert Adams1-8/+8
existing parameters. ('--forceterrain' becomes '--force-terrain'). The old forms have been kept for downward compatiblity.
2014-01-19varregion: remove --noterrain and --noparcel parameters in 'load oar'.Robert Adams1-4/+10
Add --forceterrain and --forceparcel to 'load oar'. In order to not change the operation of --merge (which does an object merge and suppresses terrain and parcel information loading), added the --force* parameters to be used when loading multiple oars to build up a varregion. Added --rotation and --rotationcenter parameters to 'load oar' which apply a rotation to the loaded oar objects before displacing. The rotation is in degrees (pos or neg) and the center defaults to "<128, 128, 0>".
2014-01-19varregion: add --noterrain and --noparcel to 'load oar'.Robert Adams1-2/+4
--noterrain suppresses the loading of the terrain from the oar. --noparcels suppresses the loading of parcel information from the oar.
2014-01-19varregion: add --displacement parameter to 'load oar'.Robert Adams1-2/+3
Adds displacment to all objects and terrain loaded from the oar. As an example, if you have a 512x512 region and an old 256x256 oar, doing load oar --displacement "<128,128,0>" oarFile.oar will load the object (and terrain) into the middle of the 512x512 region. If displacement is not specified, 'load oar' works like it always has. If you have a 5
2013-12-14varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams1-2/+2
Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z. This keeps the downward compatibility and follows the scheme of 'region' and 'world' location naming that is happening in the Util module.
2013-12-10Add console utility commands "scale scene" and "translate scene". Note that ↵dahlia1-2/+88
repeated use of these commands will induce floating point accumulation errors. Please back up your region before using.
2013-11-26"rotate scene" command now uses Constants.RegionSize / 2 to pick the center ↵dahlia1-4/+15
of rotation and center can be optionally overridden in the command line
2013-11-26add a "rotate scene" console command. Seems to work for prims/sculpts/mesh ↵dahlia1-0/+33
but not for foliage, don't know why. Also doesn't work on terrain. Successive use of this command will likely introduce floating point error accumulation. Back up your region before using it :)
2013-11-19Fix bug where "show modules" would accidentally list all the shared modules ↵Justin Clark-Casey (justincc)1-1/+1
again as "non-shared" Addresses http://opensimulator.org/mantis/view.php?id=6860
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-2/+2
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-09-27refactor: rename Scene.IncomingCloseAgent() to CloseAgent() in order to make ↵Justin Clark-Casey (justincc)1-1/+1
it clear that all non-clientstack callers should be using this rather than RemoveClient() in order to step through the ScenePresence state machine properly. Adds IScene.CloseAgent() to replace RemoveClient()
2013-09-26minor code formatting for the sake of consistency and readabilitydahlia1-18/+36
2013-09-25VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-2/+2
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-08-08Add parameter and explanation of ManagedStats return to OpenSimDefaults.ini.Robert Adams1-2/+2
Add 'callback' query parameter to managed stats return to return function form of JSON data.
2013-08-08Add a JSON web fetch of the statististics managed by StatsManager.Robert Adams1-0/+7
Disabled by default. Enable by setting [Startup]ManagedStatsRemoteFetchURI="Something" and thereafter "http://ServerHTTPPort/Something/" will return all the managed stats (equivilent to "show stats all" console command). Accepts queries "cat=", "cont=" and "stat=" to specify statistic category, container and statistic names. The special name "all" is the default and returns all values in that group.
2013-08-08Remove never implemented stub modules commands (list, load, unload) from ↵Justin Clark-Casey (justincc)1-40/+0
back in 2009. "show modules" is the functional console command that will show currently loaded modules. Addresses http://opensimulator.org/mantis/view.php?id=6730
2013-07-18Added MinPoolThreads to ini [Startup] section to control SmartThreadPool.Dan Lake1-1/+3
2013-07-17command line kick user now uses exact name match instead of substring search ↵Dan Lake1-2/+3
to avoid kicking the wrong user or multiple wrong users.
2013-07-04change "debug packet" command to "debug lludp packet" to conform with other ↵Justin Clark-Casey (justincc)1-51/+0
"debug lludp" options also moves the implementing code into LLUDPServer.cs along with other debug commands from OpenSim.cs gets all debug lludp commands to only activate for the set scene if not root
2013-06-17Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)1-1/+1
simulator console This means the "show stats" command is now active on the robust console.
2013-03-14Log same environment information to Robust log as is already done for ↵Justin Clark-Casey (justincc)1-0/+1
simulator logs, for debug purposes
2013-02-27Get "show modules" console command to obey selected command line region/sJustin Clark-Casey (justincc)1-1/+1
2013-02-27Get "show modules" console command to show modules in alphabetical order, ↵Justin Clark-Casey (justincc)1-7/+20
and group shared and non-shared modules together This is to make it easier to tell if a region has a certain module active or not
2013-01-10Move scene debug commands into separate module. Command changes from "debug ↵Justin Clark-Casey (justincc)1-37/+0
scene <key> <value>" to "debug scene set <key> <value>" to accomodate future settings
2013-01-10minor: add missing newline to "debug scene" console commandJustin Clark-Casey (justincc)1-1/+1
2013-01-10Remove unimplemented "debug teleport" console commandJustin Clark-Casey (justincc)1-2/+0
2013-01-10Add "debug scene pbackup true|false" console command. This enables or ↵Justin Clark-Casey (justincc)1-4/+6
disable periodic scene backup. For debug purposes. If false, scene is still saved on shutdown.
2012-11-23Fix problem where restarting the currently selected region would stop ↵Justin Clark-Casey (justincc)1-0/+20
various console commands (e.g. "show users") from working. This was because the "currently selected" scene reference was being left as the dead scene instead of the restarted Scene object.
2012-11-22Factor out command script code.Justin Clark-Casey (justincc)1-36/+0
This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers
2012-11-22Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)1-128/+6
2012-11-22Make "show info" command available across all serversJustin Clark-Casey (justincc)1-16/+1
This helpfully lists version information, startup location and console log level
2012-11-12Remove the old style module loader and all references to itMelanie1-43/+4
2012-10-29Fix memory leak where removing an NPC did not remove its circuits.Justin Clark-Casey (justincc)1-1/+1
This was because we were removing by circuitcode where NPCs have no code. Now removing by agent ID instead. This commit also fixes the "show circuits" console command to work properly where the circuit has no associated IP address.
2012-10-12Add "active true|false" to "debug scene" console command.Justin Clark-Casey (justincc)1-3/+10
This allows the scene update and maintenance loops to be started and stopped for debug purposes.
2012-09-14Support multi-region OAR filesOren Hurvitz1-1/+2
Merged ArchiveWriteRequestPreparation.cs and ArchiveWriteRequestExecution.cs. This simplifies the code, and it's faster to write each scene to the archive as it's found rather than all at once at the end.
2012-09-12Make "show http-handlers" command available for ROBUST instances as well as ↵Justin Clark-Casey (justincc)1-31/+0
the simulator executable.
2012-08-20no-op change for cia.vc testJustin Clark-Casey (justincc)1-0/+1
2012-08-20Add --force flag to "kick user" console command to allow bypassing of recent ↵Justin Clark-Casey (justincc)1-7/+17
race condition checks. This is to allow a second attempt to remove an avatar even if "show connections" shows them as already inactive (i.e. close has already been attempted once). You should only attempt --force if a normal kick fails. This is partly for diagnostics as we have seen some connections occasionally remain on lbsa plaza even if they are registered as inactive. This is not a permanent solution and may not work anyway - the ultimate solution is to stop this problem from happening in the first place.
2012-08-03Strip experimental tag from --publish option of "save oar" region console ↵Justin Clark-Casey (justincc)1-8/+7
command
2012-07-25Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)1-1/+1
This better reflects the long-term purpose of that project and matches Monitoring modules.
2012-07-25Add experimental "OpenSim object memory churn" statistics to output of ↵Justin Clark-Casey (justincc)1-36/+36
region console "show stats" command This aims to capture the amount of memory that OpenSim turns over whilst operating a region. This memory is not lost - apart from leaks it is reclaimed by the garbage collector. However, the more memory that gets turned over the more work the GC has to do to reclaim it.
2012-07-19minor: switch around mixed up circuit code and endpoint data in "show ↵Justin Clark-Casey (justincc)1-1/+1
connections" region console command
2012-07-12Extend "show circuits" to show circuit code, ip and viewer name.Justin Clark-Casey (justincc)1-20/+31
Also change to use standard table formatting "show circuits" and "show connections" console commands are very similar but access different data structures.
2012-07-12Add active status to "show connections"Justin Clark-Casey (justincc)1-1/+7
2012-07-12Put output for "show connections" command into standard table format.Justin Clark-Casey (justincc)1-19/+16
Also moves into own method.
2012-06-26Replace "kill uuid" console command with the more consistent "delete object ↵Justin Clark-Casey (justincc)1-56/+0
uuid", which was present in the last opensim release.