aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * 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
|
* forgotten filesMW2009-03-031-2/+2
|
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-032-6/+25
| | | | | | | | 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-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-022-95/+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.
* 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).
* 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.
* 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.
* 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.
* * Update ScenePresenceTests to reflect current REST communication workflow.Sean Dague2009-02-261-11/+27
| | | | | | | * 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
* Plumb in the RetrieveInstantMessages event that is sent by the viewerMelanie Thielker2009-02-263-0/+14
| | | | | | 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-264-44/+74
| | | | | | | | 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.
* Add check in SceneManager to stop opensim.exe crashing if no regions/scenes ↵MW2009-02-261-1/+8
| | | | were loaded.
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-256-8/+9
|
* * 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
* * 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
* 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.
* * Experimental softening of SOG waiting for update on link - changing from ↵lbsa712009-02-251-3/+3
| | | | abort to forced update.
* * Refactored SOP.FolderID weirdness by removing calls to empty setter. YEs, ↵lbsa712009-02-251-1/+3
| | | | | | | I do realize the setter has to be there for legacy reasons, but since the calls will never acually DO anyhting, I'm removing them. * So, SOP.FolderID is actually a cruft field that should be removed.
* Allow /* C-style comments */ in LSL scripts.Mike Mazur2009-02-252-17501/+17655
| | | | | | This fixes Mantis #3199. opensim-libs SVN r87 contains the corresponding changes.
* Fixes Mantis #3220. Thank you kindly, MPallari, for a patch that:Charles Krinke2009-02-251-3/+3
| | | | | | | This patch changes InformClientOfNeighbour, CrossRegion and SendRegionTeleport methods to virtual.
* Fixes Mantis #3187. Thank you kindly, DoranZemlja for a patch that:Charles Krinke2009-02-252-0/+2
| | | | | Deals with the multiple warning side affect introduced earlier.
* A few updates necessary for load balancer.Mike Mazur2009-02-257-42/+79
| | | | | | | | | - 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
* Close-to-final tweaking with appearance. This time sending *everything*. ↵diva2009-02-242-36/+29
| | | | Addresses mantis #3223.
* 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.
* remove log4net dependency and from PrimMesher.csDahlia Trimble2009-02-242-7/+18
| | | | | sync PrimMesher.cs with PrimMesher.dll version 29 on forge
* 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.
* From: Christopher Yeoh <yeohc@au1.ibm.com>Sean Dague2009-02-231-0/+1
| | | | | | | | | This patch fixes a bug where if a script in a child prim has taken control of an avatar when they sit, although permission for camera control is revoked when they stand, free camera control is not restored. Currently it is only restored if the script is in the root prim (though its not clear to me where this happens!).
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-232-3/+3
|
* * Commenting out threaded Scene update for the moment.Adam Frisby2009-02-231-2/+3
| | | | | * It works, but makes certain building tasks slow to update.
* * Fix for recent thread patch - IsAlive apparently is not as reliable as ↵Adam Frisby2009-02-231-1/+2
| | | | ThreadState.