aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - turn private m_gui into protected m_gui to allow manipulation inDr Scofield2009-04-162-12/+3
| | | | | | | | derived classes - make OpenSimBackground inherit from OpenSim instead of OpenSimBase so that it will have a MainConsole instance and we can use console commands, setting m_gui to false
* * Explicitly start the asset server thread so that unit tests can run single ↵Justin Clarke Casey2009-04-141-0/+2
| | | | rather than multi-threaded (which may be behind the occasional test freezes)
* * refactor: rename AssetCache.Initialize() to AssetCache.Reset() to avoid ↵Justin Clarke Casey2009-04-141-5/+6
| | | | having Initialise() and Initialize() in the same class - very difficult to read.
* - Add new RegionModulesControllerPlugin to the application modulesHomer Horwitz2009-04-051-1/+21
| | | | | | | | - Change several classes to use the new plugin for handling of region-modules (NOTE: No regionmodule is using this yet) - Add necessary prebuild parts (don't forget to runprebuild) Attention: Work in progress. This shouldn't break anything, but you never know...
* Directory defaults for region xml files when creating a new region got ↵idb2009-04-051-9/+3
| | | | | | | changed/lost with svn 8550 when a check was added for the file name having .xml extension. The extension check has been moved slightly earlier and the original directory logic restored. Fixes Mantis #3386
* * Proactively fixed bug-potential concerning the fact that m_httpServer ↵lbsa712009-04-031-6/+1
| | | | property was differently referred to between RegionApplicationBase and all other grid services.
* - adding -logconfig option to allow configuration of log4net fromDr Scofield2009-04-031-2/+14
| | | | | | | log4net config file other then bin/OpenSim.exe.config - moving ArgvConfigSource initialization up to allow for configuration of XmlConfigurator.Configure()
* Add a PIDFile in [Startup], which the PID will be written toMelanie Thielker2009-04-011-1/+9
|
* Another bit of refactoring to try to make sense of ↵diva2009-03-291-0/+1
| | | | OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
* * Apply http://opensimulator.org/mantis/view.php?id=3343Justin Clarke Casey2009-03-261-1/+0
| | | | | | | * Removes long unused -useexecutepath switch * Thanks coyled
* * minor: Adjust exception catching on load/save xml[2]/oar. Justin Clarke Casey2009-03-251-21/+7
| | | | | | * Allow non FileNotFoundExceptions to propogate rather than post a misleading error message
* * minor: spit out creator name on save iarJustin Clarke Casey2009-03-251-4/+4
| | | | | | * not yet ready for use
* adding presence.ControllingClient.Kick(msg) to the brew.Dr Scofield2009-03-251-12/+9
|
* enhances the console command "kick user" with an optional alertDr Scofield2009-03-251-1/+12
| | | | | message which will be dialog-ed to the user just before being kicked.
* * Fix edit scale command - was looking for one too few argumentsJustin Clarke Casey2009-03-241-1/+1
|
* * Group OpenSim.Framework.Servers interfaces togetherJustin Clarke Casey2009-03-191-0/+1
|
* Adds support for unlink-region command in hypergrid.diva2009-03-181-0/+22
|
* * Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey2009-03-111-7/+12
| | | | | | | * In most cases, the setting in OpenSim.ini.example is taken as the canonical one since this is the file virtually everyone ends up using * OpenSim will start up with a blank OpenSim.ini, in which case sqlite is the default database (as before)
* update some ini defaults in code - all defaults from beginning of ↵Dahlia Trimble2009-03-112-3/+3
| | | | OpenSim.ini.example thru DefaultScriptEngine = "XEngine"
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-107-290/+312
|
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-03-062-3/+1
|
* * For now, restore file extension for default oar name I accidentally ↵Justin Clarke Casey2009-03-041-1/+1
| | | | removed on the last commit
* * Add the abilty to load and save iar item nodes where folders have ↵Justin Clarke Casey2009-03-041-1/+1
| | | | identical names
* Refactoring of CreateCommsManagerPlugin.MW2009-03-031-34/+0
| | | | | Plus some general cleanup of a few other files (deleting excess blank lines etc)
* Renamed OpenSimBase m_autoCreateLindenStack to m_autoCreateClientStackMW2009-03-021-4/+4
|
* Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do ↵MW2009-03-021-14/+99
| | | | | | | | | we really still need RegionApplicationBase?] Added a flag (bool m_autoCreateLindenStack = true) which says if the ClientStack will be autocreated and initialised when creating regions. This helps with moving ClientStacks to Region modules. Currently this flag is hardcoded to true, as it is only for testing at the moment, so you need to change the value in the code if you want to turn off auto creating.
* Removed the commented out InitialiseStandaloneServices and ↵MW2009-03-022-103/+0
| | | | InitialiseGridServices (which are now preformed in CreateCommsManagerPlugin) methods from OpenSimBase and HGOpenSimNode. As if we decided to swap back to the old methods we can always re-add them, rather than leave them commented out.
* Changed it so only .ini file types are loaded from the (optional) config ↵MW2009-02-281-2/+5
| | | | directory rather all files types in that folder.
* Added support for reading ini files from a (optional) config folder. This ↵MW2009-02-272-1/+15
| | | | | | | | allows the spliting up of opensim.ini into multiple ini files. The ini files in this folder are loaded after the masterini file (if that is set) and before opensim.ini. The default folder it looks for and searches is "bin\config", but that can be set by using the command arg "-inidirectory=<path>" (path is local to bin\) when starting up opensim.exe.
* Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW2009-02-261-1/+6
| | | | | | | of Scenes should implement and register with the ApplicationRegistry.StackModuleInterface<>(); So that other plugins can attach to their OnNewRegionCreated event. Made some changes to IRegistryCore and RegistryCore so they support "Stacked" interfaces.
* Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW2009-02-262-101/+98
| | | | | | Also in that plugin it registers the IUserService with all the Scenes (as they are created). So now we can start changing over all uses of IUserService, that currently access it from the CommunicationsManager to accessing it from the Scene.RequestModuleInterface call. Once that is done we can move the UserService creation out to its own plugin and remove all references to it from the CommunicationsManager. Then we can take the next CommunicationsManager interface and repeat.
* * Apply http://opensimulator.org/mantis/view.php?id=3191Justin Clarke Casey2009-02-261-5/+33
| | | | | | | * Make load/save oar and load/save xml2 behave a little better when there is an io problem * Thanks dslake
* Changed the type of the ApplicationRegistry member from RegistryCore to ↵MW2009-02-261-2/+2
| | | | IRegistryCore
* Added IRegistryCore and RegistryCore to OpenSim.Framework.MW2009-02-263-43/+60
| | | | | | | | Added a ApplicationRegistry to OpenSimBase. Changed LoadRegionsPlugin so it registers itself to that application registry. Added a event to LoadRegionsPlugin, that is triggered when it creates a new scene ,although maybe this event should actually be in opensimBase incase other plugins are creating regions (like the RemoteAdminPlugin).
* Attempt to fix the "region starts but doesn't load anything" issueSean Dague2009-02-261-0/+6
|
* Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW2009-02-261-0/+1
| | | | | | | work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
* From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague2009-02-251-1/+1
| | | | | | | The mono addin filter for the AssetCache is incorrect, this fixes it. The problem only shows up when you have more than one AssetCache to choose from.
* A few updates necessary for load balancer.Mike Mazur2009-02-251-2/+6
| | | | | | | | | - handle GetUser request for nonexistent user gracefully - include throttle levels in ClientInfo - code to save/restore throttles in client stack - only update/send updates to active clients - make animation classes serializable
* First step in separating out the Userserver console command handling to a ↵MW2009-02-241-0/+2
| | | | | | | "module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
* Thank you kindly, TLaukkan (Tommil) for a patch that solves:Charles Krinke2009-02-231-27/+32
| | | | | | If -background=true is specified on the command line, a null pointer exception crashes the server in OpenSim/Region/Application/OpenSimBase.cs in method StartupSpecific. Its trying to dereference m_console which is null, presumably because we're in background mode.
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-223-10/+10
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-221-5/+5
|
* Applied patch from mantis #3213. Which adds a check to create region ↵MW2009-02-211-1/+6
| | | | command, to make sure the .xml is passed in the command arguments. Thanks BlueWall
* THE BIG ANTI-REMOTING SCHLEP -- StartRemoting is no more. Sims in older ↵diva2009-02-202-2/+2
| | | | | | | versions will have a hard time communicating with sims on this release and later, especially if they haven't transitioned to RESTComms at all. There's still some cleanup to do on assorted data structures, but the main functional change here is that sims no longer listen on remoting ports.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-201-1/+1
|
* Restoring method 2 of linking regions in HG, which was commented out for ↵diva2009-02-181-92/+22
| | | | some bizarre reason. Fixes mantis #3141. Thanks Vinc for providing an alternative patch, which wasn't used but served to expose the mix-up.
* From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague2009-02-181-19/+35
| | | | | | | I've changed the extension point name, and the internal references that used the same string. I also fixed up the messaging around the asset loader so that it is more explicit.
* Adds support for preserving animations on region crossings and TPs. diva2009-02-181-0/+79
| | | | | | | Known issue: after TP, the self client doesn't see the animations going, but others can see them. So there's a bug there (TPs only, crossings seem to be all fine). Untested: did not test animation overriders; only tested playing animations from the viewer.
* * Apply http://opensimulator.org/mantis/view.php?id=3068Justin Clarke Casey2009-02-171-64/+68
| | | | | | | * This enables parsing of xml files and files obtained via http for the -inimaster option as well as -inifile * Thanks StrawberryFride!
* * refactor: remove AssetCache field hanging off SceneJustin Clarke Casey2009-02-162-2/+2
| | | | | | * This is always available at Scene.CommsManager.AssetCache