aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-06-05Typo FixH-H-H1-1/+1
Signed-off-by: Diva Canto <diva@metaverseink.com>
2015-04-29Updated all occurrences of AssemblyVersion("0.8.1.*") to ↵Diva Canto1-1/+1
AssemblyVersion("0.8.2.*")
2015-03-13Actually start a region created via the "create region" console command.Justin Clark-Casey (justincc)1-0/+2
Addresses http://opensimulator.org/mantis/view.php?id=7478
2015-03-11help restart message correctedShy Robbiani1-1/+1
The "restart" console command restarts the currently selected region or all regions in this instance if root is selected. Changed the message accordingly.
2015-01-03Remove the extra key expansion added in commit ↵Diva Canto1-2/+0
a88bc50a168ae729307740fa84540e9571258b13. It's not needed.
2014-12-30Capitalization fail.Diva Canto1-1/+1
2014-12-30Add support for expansion of key values in nini config files.Diva Canto1-0/+2
Add loading of 3rd-party addin inis automatically.
2014-12-30Renamed VERSION_NUMBER to VersionNumberDiva Canto1-1/+1
2014-12-30This cleans up versioning. Specifically:Diva Canto1-1/+1
- It establishes 4 digits for opensim versions - It uses the same number between opensim releases and mono addins versions It also eliminates the last addin.xml files that were still there, for consistency.
2014-12-30WARNING: BREAKING CHANGES FOR REGION MODULE DEVELOPMENT.Diva Canto2-0/+6
This cleans up Opensim's use of mono addins. In particular, the extension points /OpenSim/RegionModules and /OpenSim/WindModule moved from OpenSim.exe to OpenSim.Region.Framework.dll. From here on, developers of region modules should declare their dlls to be dependent on OpenSim.Region.Framework, starting with version 0.8.1 Additional changes: - Addins version uniformly updated to 0.8.1. These numbers should be compatible with the release numbers or else it becomes very confusing. - Mono addins directives moved from files addins.xml to embedded directives in the class and assembly declarations, to make it all consistent
2014-12-29Added AssemblyInfo.cs to OpenSim.exeDiva Canto1-0/+32
2014-11-25refactor: Move methods to start a monitored thread, start work in its own ↵Justin Clark-Casey (justincc)1-1/+1
thread and run work in the jobengine from Watchdog to a WorkManager class. This is to achieve a clean separation of concerns - the watchdog is an inappropriate place for work management. Also adds a WorkManager.RunInThreadPool() class which feeds through to Util.FireAndForget. Also switches around the name and obj arguments to the new RunInThread() and RunJob() methods so that the callback obj comes after the callback as seen in the SDK and elsewhere
2014-11-25Make small adjustment to JobEngine default from previous commit to enable it ↵Justin Clark-Casey (justincc)1-1/+1
when [Startup] section is not present (though this is extremely unlikely).
2014-11-25Add [Startup] JobEngineEnabled setting that allows the job engine to be ↵Justin Clark-Casey (justincc)1-1/+3
disabled for testing purposes if necessary.
2014-11-25Start JobEngine by default in simulator for now.Justin Clark-Casey (justincc)1-0/+2
2014-10-11minor: add --default-user option to "load oar" help long description. Do ↵Justin Clark-Casey (justincc)1-12/+13
other small tidies of "load oar" console command help.
2014-10-09Give ability to define constants that may be used throught the configurationBlueWall1-0/+2
2014-09-23Add persistent command history in consoleJak Daniels1-1/+1
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2014-08-08Change MaxPoolThreads default in code as well from 15 to 300Justin Clark-Casey (justincc)1-1/+1
2014-07-29Allow the "debug scene set physics false|true" command to work when ↵Justin Clark-Casey (justincc)1-3/+4
bulletsim physics is running in a separate thread. This will also allow the "disable physics" setting in the region debug viewer dialog to work in this circumstance.
2014-07-09Fix bug in "show modules" comamnd that was showing shared modules as ↵Justin Clark-Casey (justincc)1-1/+1
non-shared and non-shared as shared
2014-07-05Show region size column in simulator version of "show regions" console commandJustin Clark-Casey (justincc)1-2/+8
2014-07-02Actually call Close() for shared region modules when the simulator is being ↵Justin Clark-Casey (justincc)1-10/+34
shutdown. Adds regression test for this case.
2014-06-01Fixed a few things pertaining to interfacing with the estate service. ↵Diva Canto2-9/+5
Specifically, StoreEstateSettings was not being used anywhere; instead EstatSetting.Save was being called, but that method is a trigger to the DB-layer code directly, which, besides being wrong, was making it impossible to replace the service with a remote connector. Also added more packing/unpacking code.
2014-05-06Console commands for Estate MgmtDev Random1-0/+113
2014-05-06updated version of default user switch for load oar :q :qMatt Lehmann1-0/+1
2014-04-25Restore overload mode accidentally disabled in a prior commit. Add a newMelanie1-0/+6
config option, LogOverloads, to log when a thread pool overload occurs. This option defaults to "True" because the logging data is useful for diagnosing threading issues.
2014-04-03Move new Estate commands to OpenSim.csDev Random1-2/+135
Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
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-22Allow the setting from the environment to take effect if no explicit setting ↵Melanie1-5/+19
is given. This is done by calling the constructor only with a directory if one is actually given.
2014-03-22Allow Mono Plugin Registry setting for RegionsDev Random1-1/+4
Signed-off-by: Melanie <melanie@t-data.com>
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-26Add Util method to load OpSys env varsDev Random1-19/+5
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-28Convert tabs to spaces from previous commit 8c2b41b01Justin Clark-Casey (justincc)1-27/+27
2014-01-27Make inidirectory files supercede distro filesDev Random1-27/+49
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 Adams2-3/+3
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-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)1-1/+1
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-11-04varregion: add plumbing to pass region size from Scene down to theRobert Adams1-3/+4
physics engine. Older physics engines will default to the legacy region size. Update BulletSim to use the new region size information.
2013-10-28Remove legacy sqlite lines added internally by OpenSimulator to the ↵Justin Clark-Casey (justincc)1-3/+0
[Startup] section. These are long unused but confusingly will be seen in the [Startup] section on a "config save".
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams2-3/+3
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.