aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey2008-05-121-1/+12
| | | | startup will now terminate instead of carrying on (and thus burying the error message)
* * Minor: Initial cleaning up of some of the grid sim login messagesJustin Clarke Casey2008-05-121-0/+5
|
* * Fix opensim region server shutdown.Justin Clarke Casey2008-05-092-43/+7
|
* * Spring cleaning, round 3029Adam Frisby2008-05-083-4/+5
|
* * For no good reason (since there are a hundred million other things to ↵Justin Clarke Casey2008-05-073-37/+51
| | | | | | | | fix), change formatting of version information printed to the log * Push printing down into OpenSimMain so both console and consoleless configurations will get it
* From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey2008-05-072-5/+50
| | | | | | | | Implements the show version command. If you type show version at the console, you will get the revision that opensim is running, assuming you have the .svn/entries file in your base directory (e.g. you are running from code extracted from our SVN repository) A patch to also send this to the client should follow shortly
* * Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey2008-05-071-11/+15
| | | | | | | | where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
* * Cleaning up code, making it conform to OpenSim standards.Adam Frisby2008-05-061-1/+1
|
* * Refactor: Break out permissions code into a separate region PermissionsModuleJustin Clarke Casey2008-05-051-10/+3
|
* plumb in connection string to the user database paths. mysql and mssqlSean Dague2008-05-021-1/+1
| | | | | | | just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
* * More refactorings of UDPServer.Adam Frisby2008-05-022-26/+14
| | | | | | * Removed all references where possible. * Renamed lots of variables from UDPServerXYZ to clientServerXYZ
* * More clientstack abstractions - We now only have a single constructor call ↵Adam Frisby2008-05-021-5/+5
| | | | to UDPServer. Going to reduce this with an abstracted constructor in a bit.
* * Commit 2/3 - Please dont attempt to update to this revision until all 3 ↵Adam Frisby2008-05-022-68/+19
| | | | are in.
* Minor formatting and documentation cleanup.Jeff Ames2008-05-021-7/+7
|
* removed last db4o refSean Dague2008-05-011-5/+1
|
* * In ur code. Making it static.Adam Frisby2008-05-011-2/+2
| | | | | * Converted a bunch of functions to static functions.
* * Assorted spring cleanings.Adam Frisby2008-05-012-26/+11
|
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-05-011-1/+0
|
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-292-6/+9
| | | | | | | | | * Fixes the admin_shutdown xmlrpc method * Adds a share/python/console/shutdown.py script for shutting down a background OpenSim * For more details see http://xyzzyxyzzy.net/2008/04/29/console-less-opensim/ * There should also be instructions in the opensimulator wiki soon as well
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-283-682/+785
| | | | | | | | | | | | | | | | | | Note: This is the first part of some changes from Dr Scofield to support console-less operation of an OpenSim region server. The changes are not yet complete. * refactors OpenSimMain into two classes: OpenSimMain and OpenSimMainConsole. OpenSimMainConsole derives from OpenSimMain and basically is the "old" OpenSimMain * drops StartConsole from RegionApplicationBase (was only called from the "old" OpenSimMain anyhow) * reverts the changes to TryGetScene(string, out scene) as that seems to work perfectly fine * adds a check to region-remove to see whether m_sceneManger.CurrentScene is non-null before comparing it against the region-to-be-removed
* * Fixed 'Welcome to Krynn' default that I missed and got stuck in by a patch.Teravus Ovares2008-04-281-1/+1
| | | | | * Changed it to 'Welcome to OpenSimulator' as opposed to 'Welcome to OpenSim'
* * Patch from XenReborn to make remove-region work properly without needing ↵Teravus Ovares2008-04-271-3/+48
| | | | | | | | to do a change-region first. Careful though. I still suggest you do a change-region first. * Patch from Melanie to implement touch_end. * Thanks XenReborn!. Thanks Melanie!
* replace hard tabs with 4 spaces to be consistant in the source.Sean Dague2008-04-241-3/+3
| | | | | | Please adjust your editors to not use hard tabs.
* * Patch from Melanie. Mantis 0001037: Add various internal plumbing to ↵Teravus Ovares2008-04-231-1/+4
| | | | | | | the example economy module, implements llSetPayPrice(), money() and llGiveMoney() in scripts. Thanks Melanie! * Moves module loading before the script engine so the script engine can pick up events from modules registering interfaces with scene.
* fix for mantis 1036Sean Dague2008-04-231-0/+1
|
* fixed mantis: 1035, as well as ordering commandsSean Dague2008-04-231-10/+9
| | | | | | alphabetically because out of order lists bother me. :)
* allow for Inventory database source to be specified in mainSean Dague2008-04-231-1/+1
| | | | | | | | configs. This works with sqlite and nhibernate backends, and stays with default seperate ini files for mysql and mssql until someone writes those.
* changes to allow asset_source to be specified in the opensim.iniSean Dague2008-04-231-1/+1
| | | | | | | | this will work for sqlite and nhibernate, but will be ignored for mysql and mssql (reverting to their ini files) until someone writes that bit.
* Two small changes:Sean Dague2008-04-231-2/+15
| | | | | | | 1. add addin-db-001 to the delete list 2. allow for connection strings for data sources in the config file
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-211-2/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-212-9/+12
| | | | (this took a while to run).
* * Terrain Module code has been reformatted to comply with guidelines.Adam Frisby2008-04-211-9/+4
| | | | | * Fixed a variety of code quality issues. (Yes, I've found ReSharper.)
* * Insert an OpenSim warning telling the user to ignore the ERROR assembly ↵Justin Clarke Casey2008-04-191-0/+3
| | | | scanning messages. This is a temporary measure.
* refactor: eliminate method in UserProfileCacheServiceJustin Clarke Casey2008-04-111-1/+1
|
* * Minor: Show summary count of connected agents in 'show users' region ↵Justin Clarke Casey2008-04-081-1/+7
| | | | console output
* * Various terrain engine fixesAdam Frisby2008-04-061-0/+1
| | | | | | * Includes patch #894 fixes for terrain load-tile * Large number of other terrain fixes and new commands included.
* changing more references to OpenSim.DataSean Dague2008-04-021-10/+10
|
* * Set Svn Properties eol-style: |337Teravus Ovares2008-03-311-1/+1
|
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-03-311-0/+9
| | | | | | | | | * (and Ansgar/Ansi) * Fleshes out the voice stubs to better interact with the viewer CAPS requests - no actual voice support yet! * In his own words "the attached patch enhances the existing voice support by returning a proper voice account user and password and is preparing the config file so that we can specify a SIP server (not yet working). currently the SIP is hardcoded. the next step is to refactor voice support into a region module. working on that. "
* **Big ass update warning**Adam Frisby2008-03-301-17/+9
| | | | | | | | * Renamed plugin console message, to send a message to a plugin, use either "plugin <message>", or any unrecognised message will be sent ("plugin" sends explicitly) This replaces the old "script <message>". * Terrain commands - "terrain <command>" now works again. "Script terrain <command>" does not. Many of the commands have now been reimplemented, eg load-tile. However some have new syntax. * New console command handler, you can now use things like "terrain help" or "terrain save help". See TerrainModule.cs for an example of how to use the new "Commander" class. * Commander class - advanced processing of console input and also enables a script API to be generated from registered console commands.
* * Tidy up 'show users' displayJustin Clarke Casey2008-03-291-11/+12
|
* Re-enabled terrain texture generation for the world map. Adam can clean up/ ↵MW2008-03-291-0/+5
| | | | | | | | sort it out when he gets time. Most likely doesn't really work in grid mode as the generated textures are marked as temporary and I don't think they are updated to the asset server. We have to either live with these textures being sent to the asset server, and manually clean them out from time to time or wait until there is some asset management system in place. Also currently the texture is only generated at region startup, it is not updated after terraforming.
* * Remove a spammy comment I meant to remove from the last commitJustin Clarke Casey2008-03-241-2/+1
|
* * Make standalone non-home region caps work again.Justin Clarke Casey2008-03-241-0/+9
| | | | | | * When I removed the hard coding for the http port last night, I foolishly assumed standalone would be okay :)
* Fixed a small XmlRpcCommand bugJohan Berntsson2008-03-241-1/+4
|
* XmlRpcCommand refactoringJohan Berntsson2008-03-241-35/+2
|
* * Start passing around a region server's http port in RegionInfo.Justin Clarke Casey2008-03-231-1/+1
| | | | | | | | | | | * This means that caps methods (editing scripts, poss map functions, etc) on non-home regions should now work with servers which are listening for http ports on a non default (9000) port. * If you are running a region server, this may only work properly once your grid server upgrades to this revision * PLEASE NOTE: This shouldn't cause inter-region problems if one end of the connection hasn't upgraded to this revision. However if it does, the instability will persist until the grid and region (and possibly all the region's neighbours) have upgraded to this revision. * This revision also adds extra login related messages, both for success and failure conditions
* *Moved LandManagement into its own region module (spiffy!)mingchen2008-03-221-1/+4
|
* Formatting cleanup.Jeff Ames2008-03-181-46/+51
|
* Formatting cleanup.Jeff Ames2008-03-184-106/+104
|