aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW9-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.
2009-03-03Refactoring of CreateCommsManagerPlugin.MW4-70/+34
Plus some general cleanup of a few other files (deleting excess blank lines etc)
2009-03-02Renamed OpenSimBase m_autoCreateLindenStack to m_autoCreateClientStackMW1-4/+4
2009-03-02Added more error info to CreateCommsManagerPlugin.MW1-0/+1
2009-03-02Added some debug output to CreateCommsManagerPluginMW1-1/+11
2009-03-02Added OpenSim.Client.Linden which is a (non shared) region module that ↵MW1-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.
2009-03-02Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do ↵MW3-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.
2009-03-02Changed IClientNetworkServer.AddScene method from void AddScene(Scene x) to ↵MW2-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.
2009-03-02Removed the commented out InitialiseStandaloneServices and ↵MW2-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.
2009-03-02After another heroic and bloody battle, OpenSim Dino Expedition 1, killed ↵MW4-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.
2009-03-02As part of a dinosaur hunting expedition, IScenePresenceBody.cs was ↵MW1-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).
2009-03-01Mantis#3249. Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke1-7/+6
* Removed compiler warnings * Updated protobuf-net and MXP license files.
2009-03-01Thanks tommil for mantis #3248 - a patch that adds support for avatar ↵Dahlia Trimble2-5/+140
movement to MXP module.
2009-03-01Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames8-16/+143
2009-02-28Added check so Util.ReadSettingsFromIniFile doesn't try to set static fields.MW1-18/+21
2009-02-28Copied the Util.ReadSettingsFromIniFile method from the branch to trunk.MW1-0/+61
2009-02-28Changed it so only .ini file types are loaded from the (optional) config ↵MW1-2/+5
directory rather all files types in that folder.
2009-02-28Applied Patch from mantis #3245. Thanks tlaukkan/TommilMW1-174/+254
2009-02-27Changed the CreateCommsManagerPlugin so it requests a IRegionCreator and ↵MW2-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.
2009-02-27Added GridServerPlugin class (which implements IGridPlugin) to ↵MW3-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.
2009-02-27Applied patch from Mantis# 3240, thanks tlaukkan/TommilMW2-53/+126
2009-02-27Added support for reading ini files from a (optional) config folder. This ↵MW2-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.
2009-02-26svn attribute fixes so that we can play nice between windows and linuxSean Dague13-919/+919
2009-02-26Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW6-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.
2009-02-26This adds a new osGetAgentIP function with threat level set to High. ItSean Dague3-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.
2009-02-26Another change to how the CreateCommsManagerPlugin checks if it should be ↵MW1-1/+2
creating HG or normal CommunicationsManager.
2009-02-26Changed CreateCommsManagerPlugin so it handles external subclasses of ↵MW1-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.
2009-02-26Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW5-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.
2009-02-26* This patch reduces the excessive number of threads opened by the Timer ↵Sean Dague1-24/+37
event. Also simplifies the walking around method. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-02-26* Update ScenePresenceTests to reflect current REST communication workflow.Sean Dague4-92/+119
* Fixed an issue with AssetCache where it would break unit tests randomly. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-02-26* Apply http://opensimulator.org/mantis/view.php?id=3191Justin Clarke Casey1-5/+33
* Make load/save oar and load/save xml2 behave a little better when there is an io problem * Thanks dslake
2009-02-26opps forgot to commit a changed file.MW1-1/+1
2009-02-26Plumb in the RetrieveInstantMessages event that is sent by the viewerMelanie Thielker6-0/+21
when it is ready to receive offline IM
2009-02-26Changed the type of the ApplicationRegistry member from RegistryCore to ↵MW1-2/+2
IRegistryCore
2009-02-26Added IRegistryCore and RegistryCore to OpenSim.Framework.MW8-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).
2009-02-26Attempt to fix the "region starts but doesn't load anything" issueSean Dague1-0/+6
2009-02-26Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW7-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.
2009-02-26Add check in SceneManager to stop opensim.exe crashing if no regions/scenes ↵MW1-1/+8
were loaded.
2009-02-26* Got rid of concrete GridDBService referenceslbsa713-4/+10
2009-02-26* renamed IRegionProfileService to IRegionProfileRouter to better reflect ↵lbsa714-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)
2009-02-25Renamed IMessageUserServerService to IInterServiceUserService.csMW5-229/+229
Renamed MessageUserServerModule to InterMessageUserServerModule
2009-02-25* minor: Remove most mono compiler warningsJustin Clarke Casey18-23/+26
2009-02-25* Properly load items into correct folders when an iar is loadedJustin Clarke Casey1-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
2009-02-25Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW19-68/+69
name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
2009-02-25Added IGridServiceModule to be the base interface for the Service Modules ↵MW1-0/+13
for the Grid, User and Messaging servers.
2009-02-25More refactoring of the Grid, User and Messaging servers. MW15-227/+394
2009-02-25* Fix my own unit testJustin Clarke Casey2-7/+19
* Disable folder iar creation code for now (though this wasn't actually causing the test failure)
2009-02-25* Add InventoryArchiveConstants that I missed from last commitJustin Clarke Casey2-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 :)
2009-02-25* Store inventory data in an 'inventory' directory rather than in the root ↵Justin Clarke Casey3-15/+10
of an iar
2009-02-25* Applied a patch that: Added prim parameters support to MXP client lbsa711-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!