aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimMain.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-12-13Minor cleanupJeff Ames1-9/+0
2007-12-12* Start listening for client connections immediately after a region ↵Teravus Ovares1-6/+7
initializes during initial instance startup. (as opposed to waiting for 'all of the regions' to initialize first) * Removed hackish timer based client notification about regions up (no longer needed) * Added a comment about an inventory based login failure that causes me lots of greif testing and debugging. Comment includes *why* it's failing.
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-1/+1
notice of doom
2007-12-07added one more command to the console help.Jeff Ames1-2/+2
2007-12-06removed obsolete Verbose() functionJeff Ames1-16/+11
2007-12-06more minor cleanup. added some command descriptions to region server help.Jeff Ames1-11/+13
2007-12-05From Gary Chernega (IBM)Sean Dague1-3/+12
This patch adds x, y, and z offsets to the load-xml command. If you had a prim at 100,100,20 thats where it would get loaded everytime. This patch lets you place it at an offset from 100,100,20.. as such: load-xml <filespec> -newUI 3 1 2 Loading the prim at 103, 101, 22
2007-12-05* Applied MSSQL Patch from akokko, Thanks! akokkoTeravus Ovares1-0/+7
* This hasn't been tested in MSSQL mode, however it's been checked to make sure it doesn't cause any issues with mySQL/SQLlite
2007-12-04* Fixed a whole bunch of console messages.Adam Frisby1-2/+2
2007-12-03Added a flag to load-xml console command, that will generate new uuids for ↵MW1-2/+10
the loaded Sceneobjects (as per mantis request #53). To use append "-newUID" to the end of the command, so new format is : "load-xml <filename> -newUID". If you don't add the "-newUID", then the uuids in the xml file will be kept.
2007-12-03Applied patch from mantis issue #110 (with one or two tiny changes) , thanks ↵MW1-0/+9
mpallari/_SomeOne_
2007-12-03* Moved XMLRPC Controller to a Application Plugin. Requires testing.Adam Frisby1-4/+5
2007-11-30added support for a console command script to be ran every 20 minutes (will ↵MW1-0/+20
make that time changable in a future commit), to use add a entry under the Startup section of opensim.ini , with: timer_Script = "<filename>" (the filename being the console "script" you want to be ran every 20 minutes). This hasn't been tested very much so..
2007-11-30* Extended our semi-stupid implementation of in world object permissions to ↵Teravus Ovares1-1/+1
show a user's client that it can't edit a prim if it doesn't have permission. * Permissions is due for a big revamp. The current way it's done is a hack at best.
2007-11-28* Restaring the sim works fine in grid mode now. Sims announce themselves ↵Teravus Ovares1-0/+2
to their neighbors when they start up. Neighbors get this message and tell their agents that there's a new sim up. * Certain unrecoverable physics based crashes in ODE are now hooked up to the 'restart the sim' routine.
2007-11-27Fixed an event in the events chain in inter-region communications.Teravus Ovares1-0/+3
As a consequence, restarting sims in the same process instance now shows them when they come back up in grid mode and standalone mode.
2007-11-26* Restarting regions with the estate tools works in sandbox mode. I'm still ↵Teravus Ovares1-1/+1
working on grid mode, however. It doesn't break anything, but that feature doesn't work in grid mode yet either.
2007-11-25* Added the ability to restart your individual sims from within them using ↵Teravus Ovares1-1/+45
the estate tools. * The sims properly restart, however they don't yet notify the existing avatars that they are up. To see the sim again, you'll need to log-out and back in until I can figure out how to get the proper data to the sims and to the avatar so they reconnect again.
2007-11-24*Shared Modules have feelings too! -- Shared Region Modules that are found ↵mingchen1-1/+1
in DLLs are now correctly loaded automagically.
2007-11-24* Added a nice 'The Region is going down.' message to the user when the sim ↵Teravus Ovares1-1/+2
owner issues 'shutdown' on the console.
2007-11-23* the export-map now takes 'CurrentOrFirst' Scene, not necessarily the ↵lbsa711-5/+4
CurrentScene (as that is not set initially, and hence the command was a bit unintuitive)
2007-11-21* Did some initial work for prim crossing. Just glue so far.Teravus Ovares1-1/+18
* Added the child_get_tasks OpenSim.ini flag for testing the UDP packet sending code and packet throttler. This flag gets purposely disabled in grid mode. This flag also has the consequence that you can see the prim in neighboring regions without going into them. Be warned, this causes tons of dropped packets.
2007-11-18Added "export-map <filename>" console command to the region server that will ↵MW1-0/+14
export a jpg image of the world map covering a 20 X 20 regions area centred on the current active region (ie the one set with change-region). While this should work in grid mode (if using the grid asset server and if my last commit did fix the world map), you might need to call the "export-map" command then wait a little while (60 seconds?) and then call it again so that you make sure the region has got all the texture assets from the asset server.
2007-11-18Attempt to get World Map working in Grid mode, will need to be using the ↵MW1-1/+2
grid asset server for it to work correctly and has only been quickly tested in a three region grid. Moved PermissionManager creation out of the Scene constructor and instead a PermissionManager is passed to the constructor as a param. So that we could create and use custom permissionsManagers. Added AllowMovement property to ScenePresence which can be used to stop movement of avatars (for example in a custom region that wanted avatars always in one place). Added PermissionManager call when copying objects, although currently the call will always return true so that it allows copying in places like Wright Plaza. A few other changes/fixes.
2007-11-16More cleaning up when deleting regions from a instance. NOTE: ↵MW1-1/+1
IGridServices.DeregisterRegion() method needs implementing for grid mode.
2007-11-15*** BIG CHANGES : REGION STORAGE MOVED : UPDATE YOUR OpenSim.ini FROM ↵lbsa711-9/+10
OpenSim.ini.example ** * Now moved region storage from region to application, so we have one storage per application, instead of one per region. * Changed so that the region store providers use connectionstrings, not filenames * Removed various unfit fields and properties (call me Darwin)
2007-11-15* Added MySQLDataStore (adapted from MonoSqlitelbsa711-3/+3
* Made startup a little bit more forgiving on dll load * Minor renamings and musings
2007-11-14Added "show regions" console command that displays the list of regions in ↵MW1-3/+10
that instance and their X , Y locations. (as requested/suggested by ckrinke)
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-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 usingslbsa711-33/+35
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-4/+4
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.MW1-10/+0