aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Fixes Mantis #3255. Thank you kindly, MCortez, for a patch that:Charles Krinke2009-03-053-15/+41
| | | | | | | | | | Changes to IWindModule interface: Change from assuming a single array of 256 Vector2 values to a lookup function that takes region x, y, z and returns a Vector3 * Changed llWind() to use new lookup method of IWindModule * Moved logic for determining the wind at a given point in the data array from llWind() to the Wind Module itself.
* Fixes Mantis #3194. Thank you kindly, Godfrey for a patch that:Charles Krinke2009-03-051-1/+19
| | | | | | fixes llSetLinkPrimitiveParams() - PRIM_ROTATION rotates the prim containing the script, rather than the specified child prim
* Fixes Mantis #3253. Thank you kindly, Godfrey, for a patch that:Charles Krinke2009-03-051-1/+1
| | | | | | Corrects the incomplete implementation of llXorBase64StringsCorrect() so that it returns the proper reversible result.
* MRM Scripting ChangesAdam Frisby2009-03-053-8/+8
| | | | | | * Renames MiniRegionModule to MRMModule to make it more distinct from the actual Mini Region Module[s] executed in Scene. * Renames MiniRegionModuleBase to MRMBase for convenience. MRM's need to be adjusted to inherit from MRMBase.
* * Implements a number of members on SOGObject for use with the MRM Script ↵Adam Frisby2009-03-052-15/+166
| | | | | | | Engine API. * It's lag-tacular! :D
* * Fleshed out the MRM Module a little.Adam Frisby2009-03-046-44/+87
| | | | | * Please don't use this yet, it represents a very heavy security risk if you enable it.
* * 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-046-49/+161
| | | | identical names
* * Whoops. Left MiniModule enabled to anyone. (potential security risk). ↵Adam Frisby2009-03-041-0/+3
| | | | Disabled - edit code to load.
* * More work on MiniRegionModule module.Adam Frisby2009-03-045-0/+275
|
* * Add gnu tar format long file name support to tar reading and writing.Justin Clarke Casey2009-03-043-85/+126
| | | | | | * Not actually tested yet though existing code which doesn't require long file names looks fine
* IObjectFace needs to be public to compile.Mike Mazur2009-03-041-1/+1
|
* * More work on MiniRegionModule module.Adam Frisby2009-03-048-3/+254
|
* * Implementing some interfaces for aformentioned script engine. Ignore this.Adam Frisby2009-03-044-0/+136
|
* CONTRIBUTORS.txt cleanupAdam Frisby2009-03-031-4/+4
| | | | | | * Reverting CONTRIBUTORS.txt change in r1370, restoring to original 'semi-order-of-appearance' format. * Added some missing contributors. May change this in future to simply cut and paste from the Wiki contributors page.
* Avoid NRE if client sends unrecognized packet type.Jeff Ames2009-03-031-1/+8
|
* Update svn properties.Jeff Ames2009-03-030-0/+0
|
* Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW2009-03-034-7/+6
| | | | it from OpenSim.Client.Linden to OpenSim.Framework.
* forgotten filesMW2009-03-032-2/+302
|
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-0310-44/+924
| | | | | | | | 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-022-0/+114
| | | | 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-013-265/+22
| | | | | | * 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-014-5/+140
| | | | movement to MXP module.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-03-019-234/+361
|
* 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-283-174/+254
|
* updating svn ignore propertiesMW2009-02-270-0/+0
|
* Changed the CreateCommsManagerPlugin so it requests a IRegionCreator and ↵MW2009-02-273-6/+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.
* Changed the order of the OpenSim.Grid.GridServer and ↵MW2009-02-271-6/+6
| | | | OpenSim.Grid.GridServer.Modules projects in prebuild.xml. Hopefully this will fix the mono build problem.
* Added GridServerPlugin class (which implements IGridPlugin) to ↵MW2009-02-274-92/+170
| | | | | | | | | 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-273-53/+127
|
* 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-264-0/+39
| | | | | | | 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-266-101/+407
| | | | | | 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>