aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-039-42/+919
| | | | | | | | There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
* Refactoring of CreateCommsManagerPlugin.MW2009-03-034-70/+34
| | | | | 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
|
* Added more error info to CreateCommsManagerPlugin.MW2009-03-021-0/+1
|
* Added some debug output to CreateCommsManagerPluginMW2009-03-021-1/+11
|
* Added OpenSim.Client.Linden which is a (non shared) region module that ↵MW2009-03-021-0/+81
| | | | creates and initialises the LindenClientStack (or actually whatever client stack was set in opensim.ini) for that region. Currently this module is still at a early stage so just for testing, so its hardcoded to be disabled. To enable first turn off auto creation of the client stack in opensimbase (see last revision) and then in OpenSim.Client.Linden.LLClientStackModule change bool m_createClientStack = false; to true.
* Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do ↵MW2009-03-023-95/+100
| | | | | | | | | 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.
* Changed IClientNetworkServer.AddScene method from void AddScene(Scene x) to ↵MW2009-03-022-3/+2
| | | | void AddScene(IScene x). As there should be no need for the client view to have a reference to Scene. IScene should be all it needs.
* 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.
* After another heroic and bloody battle, OpenSim Dino Expedition 1, killed ↵MW2009-03-024-40/+0
| | | | off OsSetParcelMediaTime, which was only ever added for testing. And all the logic code of it has been commented out for a long time.
* As part of a dinosaur hunting expedition, IScenePresenceBody.cs was ↵MW2009-03-021-37/+0
| | | | terminated. The expedition leader, MW, believes it never lead a meaningful life, and is sure it hasn't contributed anything in the last 500,000 years (or 2 years).
* Mantis#3249. Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-03-011-7/+6
| | | | | | * Removed compiler warnings * Updated protobuf-net and MXP license files.
* Thanks tommil for mantis #3248 - a patch that adds support for avatar ↵Dahlia Trimble2009-03-012-5/+140
| | | | movement to MXP module.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-03-018-16/+143
|
* Added check so Util.ReadSettingsFromIniFile doesn't try to set static fields.MW2009-02-281-18/+21
|
* Copied the Util.ReadSettingsFromIniFile method from the branch to trunk.MW2009-02-281-0/+61
|
* 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.
* Applied Patch from mantis #3245. Thanks tlaukkan/TommilMW2009-02-281-174/+254
|
* Changed the CreateCommsManagerPlugin so it requests a IRegionCreator and ↵MW2009-02-272-5/+4
| | | | | | | subscribes to the OnNewRegionCreated event on that interface rather than requesting the LoadRegionsPlugin directly. Removed the reference to OpenSim.ApplicationPlugins.LoadRegions from the CreateCommsManagerPlugin project.
* Added GridServerPlugin class (which implements IGridPlugin) to ↵MW2009-02-273-91/+168
| | | | | | | | | OpenSim.Grid.GridServer.Modules. This class handles all the initialising of the grid server. And made GridServer into basically a generic server that just loads plugins. So this is a step towards having a generic server that loads service modules.
* Applied patch from Mantis# 3240, thanks tlaukkan/TommilMW2009-02-272-53/+126
|
* 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.
* svn attribute fixes so that we can play nice between windows and linuxSean Dague2009-02-2613-919/+919
|
* Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW2009-02-266-5/+34
| | | | | | | 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.
* This adds a new osGetAgentIP function with threat level set to High. ItSean Dague2009-02-263-0/+38
| | | | | | | isn't tested, but it doesn't break anything else. The reason for this function is to let in world tools be used to coordiante out of world network services that need access to client ip addresses.
* Another change to how the CreateCommsManagerPlugin checks if it should be ↵MW2009-02-261-1/+2
| | | | creating HG or normal CommunicationsManager.
* Changed CreateCommsManagerPlugin so it handles external subclasses of ↵MW2009-02-261-9/+10
| | | | | | | OpenSimBase. This process of checking if it should be creating HG or normal CommunicationsManager needs to change. So look out for a revert of this whole plugin soon.
* Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW2009-02-265-101/+365
| | | | | | 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.
* * This patch reduces the excessive number of threads opened by the Timer ↵Sean Dague2009-02-261-24/+37
| | | | | | | event. Also simplifies the walking around method. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * Update ScenePresenceTests to reflect current REST communication workflow.Sean Dague2009-02-264-92/+119
| | | | | | | * Fixed an issue with AssetCache where it would break unit tests randomly. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * 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
* opps forgot to commit a changed file.MW2009-02-261-1/+1
|
* Plumb in the RetrieveInstantMessages event that is sent by the viewerMelanie Thielker2009-02-266-0/+21
| | | | | | when it is ready to receive offline IM
* 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-268-48/+153
| | | | | | | | 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-267-45/+32
| | | | | | | work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
* Add check in SceneManager to stop opensim.exe crashing if no regions/scenes ↵MW2009-02-261-1/+8
| | | | were loaded.
* * Got rid of concrete GridDBService referenceslbsa712009-02-263-4/+10
|
* * renamed IRegionProfileService to IRegionProfileRouter to better reflect ↵lbsa712009-02-264-4/+28
| | | | | | | | | | use (naming is a work in progress...) * introduced new IRegionProfileService that is going to be _one_ profileService * Had GridDBService inherit the IRegionProfileService (preparing for re-wiring things and de-duplicating eventually)
* Renamed IMessageUserServerService to IInterServiceUserService.csMW2009-02-255-229/+229
| | | | | Renamed MessageUserServerModule to InterMessageUserServerModule
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-2518-23/+26
|
* * Properly load items into correct folders when an iar is loadedJustin Clarke Casey2009-02-251-8/+12
| | | | | | | * At the moment, any existing folders with the same name are reused - will need an option to always create new folders * not yet ready for general use
* Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW2009-02-2519-68/+69
| | | | name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
* Added IGridServiceModule to be the base interface for the Service Modules ↵MW2009-02-251-0/+13
| | | | for the Grid, User and Messaging servers.
* More refactoring of the Grid, User and Messaging servers. MW2009-02-2515-227/+394
|
* * Fix my own unit testJustin Clarke Casey2009-02-252-7/+19
| | | | | | * Disable folder iar creation code for now (though this wasn't actually causing the test failure)
* * Add InventoryArchiveConstants that I missed from last commitJustin Clarke Casey2009-02-252-6/+137
| | | | | | | * This commit also does a first pass at creating folders for an inventory archive (previously everything was dumped in the same destiantion folder). * This code might not work yet and nobody else should be using it yet anyway :)
* * Store inventory data in an 'inventory' directory rather than in the root ↵Justin Clarke Casey2009-02-253-15/+10
| | | | of an iar
* * Applied a patch that: Added prim parameters support to MXP client lbsa712009-02-251-12/+98
| | | | | | | | | | | * Updated MXP to contain extension fragment with prims and updated MXPClientView to fill in the parameters. * Added google protobuffers dll. * Update MXP dll. * Updated MXPClientView to send prim parameters as Perception event extension * Started OpenSim and connected with IdealistViewer via MXP and ensured from log that parameters are being sent. * Ensured that nant test target runs succesfully. This closes mantis #3229. Thanks, tlaukkan!