aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-11-13Added "remove-region <region name>" console command that "should" remove the ↵MW1-0/+16
named region/scene.
2007-11-13Some work on cleanly removing Regions.MW1-4/+0
2007-11-12* Sets ZeroMesher as default. (If you want to cut and hollow, you'll need ↵Teravus Ovares1-1/+1
to uncomment the Meshmerizer in OpenSim.ini) * Fixes a geometry issue in ODE when using ZeroMesher
2007-11-11* adds flag in OpenSim.ini for disabling physical prim. Look at ↵Teravus Ovares1-1/+4
OpenSim.ini.example in the bin folder for an example.
2007-11-10* Moves the Meshmerizer to a separate pluginTeravus Ovares1-2/+4
* Experimental. Linux Prebuild needs testing. * One more update after this to remove the ODEMeshing directory....
2007-11-06* Added better logging to AssetCachelbsa711-1/+1
* AssetCache now ignores duplicate uploads * some m_ refactoring * ignored some bins
2007-11-05Changed it so opensim.exe should scan for new application plugins every time ↵MW1-0/+1
its ran, rather than just the first time (or when the addins and addin-db-000 directories were deleted).
2007-11-04Added forgotten ApplicationPlugins directory and moved the load region code ↵MW1-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.
2007-11-04normalized line endingsJeff Ames1-17/+17
2007-11-04Added forgotten IApplicationPlugin fileMW1-0/+17
2007-11-04Added support for OpenSim application plugins (as requested by Adam), which ↵MW1-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.
2007-11-03First part of Scene refactoring:MW1-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.
2007-11-03*Moved region loading into its own interface IRegionLoadermingchen1-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.
2007-11-01* Diuerse beavtificatemslbsa711-1/+1
2007-10-31redefault to sqlite for all services, especially now thatSean Dague1-4/+4
we can run without a config file
2007-10-31* Added a streamhandler that does streams both in and outlbsa711-1/+1
* The RestDeserialisehandler now does streams and returns an object instead of string
2007-10-30Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax1-1/+2
InevntoryServer
2007-10-30* Optimized usingslbsa714-84/+71
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW3-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.
2007-10-29* ModuleLoader: Privatized some too-public fieldslbsa711-1/+1
* Scene: Changed name from MakeAvatarPhysical to MakeRootAgent and added ForEachClient * SceneManager: Added ForEachScene * Worked some on appearances.
2007-10-29Started the process of cleaning up AssetCache and moving most of the code ↵MW1-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.
2007-10-28*Replaced -useexecutepath with an updated -inifile extension. You can now ↵mingchen1-15/+15
specify either a filename (will use the default config path, or you can specify a full path.
2007-10-26Added method to create default config file in region server(OpenSim) ↵Tleiades Hax1-5/+74
following along the same priciples as in the other servers.
2007-10-26Temporary fix for a missing Opensim.ini file.MW2-10/+3
2007-10-26* Added prototypical AvatarFactory module interface to load avatar parameterslbsa711-40/+63
* Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
2007-10-26Very early first implementation of grid based assets.Tleiades Hax1-0/+4
Run this on a major grid, and weep
2007-10-25fix line endingsSean Dague1-132/+132
2007-10-25apply http://bug.opensecondlife.org/view.php?id=512 from chillkenSean Dague2-4/+4
which cleans up the verbose logic
2007-10-25* Added XMLRPC Controller Module to OpenSimMain which allows XML-RPC queries ↵Adam Frisby2-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.
2007-10-24Introduced a build error in the last patchTleiades Hax1-3/+0
2007-10-23* Added "create-region" console command. Syntax: create-region <name> ↵Adam Frisby1-26/+36
<region.xml filename> * Spring cleaning.
2007-10-22* Return of R2162. /Take that SVN!/Adam Frisby1-8/+10
2007-10-22revert r2162 as it completely clobbered all the work onSean Dague1-10/+8
the ChatModule by MW and myself. Couldn't find Adam online after that rev went in.
2007-10-22* Major ass commit.Adam Frisby1-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
2007-10-22Made some changes to the load/save xml format, So that the old format can ↵MW1-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.
2007-10-19changes to pass nini config object to the modules that getSean Dague1-27/+27
loaded so that they may read out any bits they are interested in
2007-10-19*Added -useexecutepath to use the path of the .exe as the path to find ↵mingchen2-0/+9
configuration and libraries and not the current working directory.
2007-10-19* Total refactoring of Asset Server for massive winlbsa711-2/+6
* There is now a AssetServerBase * lolcat in ur assets
2007-10-18Add gryc's patch to run commands in a shutdown_commands.txt file when the ↵Charles Krinke1-0/+7
sim is shutdown. A config setting has also been added to OpenSim.ini. Thank you very much, gryc.
2007-10-18Add "force-update", "command-script" & "show modules" to console help.Charles Krinke1-0/+3
2007-10-15* Chillken Patch #417 - upgraded version numbers to 0.4 - thanks Chillken!lbsa711-1/+1
2007-10-13OpenSimMain now respects the asset_plugin paramter, and storing of assets ↵Tleiades Hax1-2/+3
will *not* throw an exception
2007-10-13Added capbility to use MySQL as the database backend in stand alone mode for ↵Tleiades Hax1-3/+1
assets and inventory. Added asset_plugin key to "StandAlone" section of OpenSim.ini
2007-10-13(no commit message)Tleiades Hax1-1/+3
2007-10-13Asset server implementation. Again one of these "plumbing" releases, where ↵Tleiades Hax1-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.
2007-10-10* Now loading modules from ScriptEngines directory as well.lbsa711-12/+8
2007-10-10* Gave ModuleLoader some good lovin'lbsa711-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
2007-10-05Some tiny refactoringMW1-5/+4
2007-10-03more refactoringMW1-4/+11
2007-10-03Some continuation of lbsa71's refactoring of the CommunicationsManager.MW1-2/+7