aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Changed it so opensim.exe should scan for new application plugins every time ↵MW2007-11-051-0/+1
| | | | its ran, rather than just the first time (or when the addins and addin-db-000 directories were deleted).
* Added forgotten ApplicationPlugins directory and moved the load region code ↵MW2007-11-041-42/+21
| | | | | | | | out to a plugin. To make opensim search for the new plugin, you will need to delete the "addin-db-000" and "addins" sub directories in bin if you have them.
* normalized line endingsJeff Ames2007-11-041-17/+17
|
* Added forgotten IApplicationPlugin fileMW2007-11-041-0/+17
|
* Added support for OpenSim application plugins (as requested by Adam), which ↵MW2007-11-041-1/+11
| | | | | | | use Mono.addins for loading/management. (which is a pure .net solution so works on both Mono and MS .net, and is under the MIT license, will add the source code for the library later). I also suggest we look into switching to using Mono.addins for our Region module loading management. A little bit more refactoring of Scene.
* First part of Scene refactoring:MW2007-11-031-1/+2
| | | | | | Started the move of some of the methods from scene into a inner class (currently called InnerScene.cs), the idea being that the code related to the 3d scene (primitive/entities/Avatars etc) will be in this inner class, then what is now Scene.cs will be left as a kind of wrapper class around it. And once the spilt is complete can be renamed to something like RegionInstance (or any name that sounds good and ids it as the Region layer class that "has" a scene). Added SceneCommunicationService which at the moment is a kind of high level wrapper around commsManager. The idea being that it has a higher level API for the Region/Scene to send messages to the other regions on the grid. a Example of the API is that instead of having sendXmessage methods, it has more functional level method like PassAvatarToNeighbour. Hopefully this will allow more freedom to do changes in communications that doesn't break other things.
* *Moved region loading into its own interface IRegionLoadermingchen2007-11-031-15/+16
| | | | | *Added ability to load regioninfo remotely from a webserver from a single file. See share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt for more info and an example file.
* * Diuerse beavtificatemslbsa712007-11-011-1/+1
|
* redefault to sqlite for all services, especially now thatSean Dague2007-10-311-4/+4
| | | | | | we can run without a config file
* * Added a streamhandler that does streams both in and outlbsa712007-10-311-1/+1
| | | | | | | * The RestDeserialisehandler now does streams and returns an object instead of string
* Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax2007-10-301-1/+2
| | | | InevntoryServer
* * Optimized usingslbsa712007-10-304-84/+71
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-293-8/+8
| | | | | | | Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
* * ModuleLoader: Privatized some too-public fieldslbsa712007-10-291-1/+1
| | | | | | | * Scene: Changed name from MakeAvatarPhysical to MakeRootAgent and added ForEachClient * SceneManager: Added ForEachScene * Worked some on appearances.
* Started the process of cleaning up AssetCache and moving most of the code ↵MW2007-10-291-5/+1
| | | | into modules. Have moved TextureRequest handling (from the client) to a module. But even though to start with I just did a little bit of cleaning up of the existing code, it doesn't seem to work as good as the old code so I need to spend more time on it. So for now am committing my changes but with them not in use. So for now all Texture and asset requests are still handled by the old code in AssetCache.
* *Replaced -useexecutepath with an updated -inifile extension. You can now ↵mingchen2007-10-281-15/+15
| | | | specify either a filename (will use the default config path, or you can specify a full path.
* Added method to create default config file in region server(OpenSim) ↵Tleiades Hax2007-10-261-5/+74
| | | | following along the same priciples as in the other servers.
* Temporary fix for a missing Opensim.ini file.MW2007-10-262-10/+3
|
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-261-40/+63
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* Very early first implementation of grid based assets.Tleiades Hax2007-10-261-0/+4
| | | | | Run this on a major grid, and weep
* fix line endingsSean Dague2007-10-251-132/+132
|
* apply http://bug.opensecondlife.org/view.php?id=512 from chillkenSean Dague2007-10-252-4/+4
| | | | | | which cleans up the verbose logic
* * Added XMLRPC Controller Module to OpenSimMain which allows XML-RPC queries ↵Adam Frisby2007-10-252-0/+135
| | | | | | | | to be sent to the core application. * Disabled by default, but has two functions so far -- shutdown (timed or now), and create-region. * Added SendGeneralAlert function to SceneManager allowing all-user alerts to be sent from OpenSimMain.
* Introduced a build error in the last patchTleiades Hax2007-10-241-3/+0
|
* * Added "create-region" console command. Syntax: create-region <name> ↵Adam Frisby2007-10-231-26/+36
| | | | | | | <region.xml filename> * Spring cleaning.
* * Return of R2162. /Take that SVN!/Adam Frisby2007-10-221-8/+10
|
* revert r2162 as it completely clobbered all the work onSean Dague2007-10-221-10/+8
| | | | | | | the ChatModule by MW and myself. Couldn't find Adam online after that rev went in.
* * Major ass commit.Adam Frisby2007-10-221-8/+10
| | | | | | | * Sqlite Storage Engine now supports terrain -- however be aware that every terrain revision stored will at 512KB to your database file. At the moment it is storing every revision from the first. * Fixed an issue where by noverbose mode would display lots of useless junk. Noverbose mode is now quite usable. * Fixed a whole bunch of console message issues such as naming and categorisation
* Made some changes to the load/save xml format, So that the old format can ↵MW2007-10-221-1/+22
| | | | still be used, I have added new console commands of "load-xml2" and "save-xml2", if the old versions worked for you then please continue using them (at least for now). The new versions haven't been tested that much, so their format could be subject to change.
* changes to pass nini config object to the modules that getSean Dague2007-10-191-27/+27
| | | | | | loaded so that they may read out any bits they are interested in
* *Added -useexecutepath to use the path of the .exe as the path to find ↵mingchen2007-10-192-0/+9
| | | | configuration and libraries and not the current working directory.
* * Total refactoring of Asset Server for massive winlbsa712007-10-191-2/+6
| | | | | | * There is now a AssetServerBase * lolcat in ur assets
* Add gryc's patch to run commands in a shutdown_commands.txt file when the ↵Charles Krinke2007-10-181-0/+7
| | | | sim is shutdown. A config setting has also been added to OpenSim.ini. Thank you very much, gryc.
* Add "force-update", "command-script" & "show modules" to console help.Charles Krinke2007-10-181-0/+3
|
* * Chillken Patch #417 - upgraded version numbers to 0.4 - thanks Chillken!lbsa712007-10-151-1/+1
|
* OpenSimMain now respects the asset_plugin paramter, and storing of assets ↵Tleiades Hax2007-10-131-2/+3
| | | | will *not* throw an exception
* Added capbility to use MySQL as the database backend in stand alone mode for ↵Tleiades Hax2007-10-131-3/+1
| | | | | | | assets and inventory. Added asset_plugin key to "StandAlone" section of OpenSim.ini
* (no commit message)Tleiades Hax2007-10-131-1/+3
|
* Asset server implementation. Again one of these "plumbing" releases, where ↵Tleiades Hax2007-10-131-1/+1
| | | | | | | no real functionality has been introduced, but ground work has been made, enabling the asset server, and preparing the sim server to query the asset server. Introduced an "IPlugin" interface, which plugins can inherit from.
* * Now loading modules from ScriptEngines directory as well.lbsa712007-10-101-12/+8
|
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-3/+5
| | | | | | | * Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
* Some tiny refactoringMW2007-10-051-5/+4
|
* more refactoringMW2007-10-031-4/+11
|
* Some continuation of lbsa71's refactoring of the CommunicationsManager.MW2007-10-031-2/+7
|
* * Moved setup of LocalInventoryService and LocalUserServices to the app layerlbsa712007-10-021-2/+7
| | | | | | | * Killed off 'parent' relation from LocalUserServices to CommunicationsLocal * Deleted obsolete project InventoryServiceBase * Deleted superfluous createCol function
* * Fixed Culture-variant parsing of config optionslbsa712007-09-252-3/+5
|
* * Encapsulated all CommunicationsManager serviceslbsa712007-09-241-1/+2
|
* *** CHANGED CONFIG BEHAVIOUR ***lbsa712007-09-241-2/+2
| | | | | | * Changed really strange LocalSettings behaviour with enforcing hard-coded plugin names if none supplied * UserServices and InventoryPlugin will only load if supplied with filename
* * Purged 'Regions' code pending Agent layer grok.lbsa712007-09-231-1/+1
| | | | | | * Changed so prims aren't loaded until AFTER parcels. * The region startup flow is still an ungodly rats nest.
* * Continuing refactoring of presencelbsa712007-09-211-8/+6
| | | | | | | | * Deleted stub ScenePresence.Body.cs * Added stub Region classes The idea is to, at first, have every ScenePresence have one RegionPresence, moving code over to it until we can detach the two classes and not have a ScenePresence for every RegionPresence.