aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-182-61/+52
|
* * Added the ability to type the partial name of a region in the start ↵Teravus Ovares2008-03-182-5/+58
| | | | | | | location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
* Formatting cleanup.Jeff Ames2008-03-1876-1982/+1893
|
* Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2008-03-182-55/+82
|
* Formatting cleanup.Jeff Ames2008-03-181-1/+0
|
* Building on Joha's update...Teravus Ovares2008-03-181-5/+25
| | | | | * Server now listens to the client's start location request for 'home' or 'last' and sends the user to the home location or the last location.
* Replaced some Console.WriteLine calls with writes to log.Jeff Ames2008-03-171-1/+3
|
* From: Alan M Webb <awebb@vnet.ibm.com>Sean Dague2008-03-171-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Here's a diff of the changes I have made in support of the following LSL script functions. llSetScriptState llGetScriptState llCSV2List llListRandomize llList2ListStrided llListFindList llResetOtherScript llGetScriptName It was necessary to modify ExecutorBase in support of the ScriptState implementations. I also modified SceneObjectPart and SceneObjectPart.Inventory to corrects a quoting mismatch in the commentary that through off live parsing of the files. I also simplified the State definition at the start of BuiltinCommands.
* * made some privates protected lbsa712008-03-121-2/+2
|
* * made GridManager class publiclbsa712008-03-121-1/+1
|
* * Renamed Main.cs to GridServerBase.cslbsa712008-03-122-3/+3
|
* * Refactored out exe bit out of Grid Server for great justicelbsa712008-03-122-54/+44
|
* * Refactored some internals in Grid Server Mainlbsa712008-03-121-24/+21
|
* * Refactored out creation of LoginResponselbsa712008-03-121-114/+121
| | | | | * Refactored out ErrorResponse
* * Extracted RegionProfileData from Requestlbsa712008-03-122-131/+141
| | | | | * Introduced ValidateNewRegion and ValidateOverwrite
* * minor refactoringlbsa712008-03-121-84/+82
|
* * Applying patch from Mantis #607 - Grid Server crash. Thanks Diva.Adam Frisby2008-03-111-10/+22
|
* * Four more warnings bite the dust.Adam Frisby2008-03-051-1/+2
|
* Cleaned up a couple compiler warnings.Jeff Ames2008-03-041-2/+3
|
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-043-8/+77
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* Added copyright heaaders. Minor cleanup.Jeff Ames2008-03-046-12/+36
|
* * More compiler warning nukage.Adam Frisby2008-03-031-2/+0
|
* * Removed a bunch of compiler warnings.Adam Frisby2008-03-031-1/+1
|
* * Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares2008-03-032-0/+56
| | | | | | * Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
* Change handler001 through handler009 to moreCharles Krinke2008-03-022-11/+11
| | | | | | | | appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
* * Added base thread pool based presence informing to the message server. Teravus Ovares2008-02-262-26/+86
| | | | | * Not ready yet for use.
* * More Message server stuff. Still not ready.Teravus Ovares2008-02-266-47/+191
|
* * Message Server Linkages (still not ready for use so don't start it yet)Teravus Ovares2008-02-255-15/+146
|
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-221-2/+5
| | | | instances to prevent event race conditions
* "threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen2008-02-211-0/+1
| | | | compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
* Minor cleanup.Jeff Ames2008-02-2037-53/+47
|
* Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey2008-02-191-12/+12
|
* Playing "Name that thread". Adding names and isbackground=true to all ↵Tedd Hansen2008-02-191-1/+1
| | | | threads so it will be easier to debug.
* * Output XmlRpc error message if user server gets a fault response from the ↵Justin Clarke Casey2008-02-181-2/+9
| | | | | | | | | region server on login * This will make it more obvious if one accidentally starts one's region server in standalone rather than grid mode but then tries to login to a grid (as I am wont to do) * We are now sending back a fault code (-32601) if no xmlrpc method is found rather than an ordinary message
* * Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey2008-02-182-11/+18
| | | | | | * Minor documentation bits
* * Do not allow a user to be created if one with the same name already existsJustin Clarke Casey2008-02-181-9/+14
|
* Thank you very much, Diva for a patch to increase the Charles Krinke2008-02-171-14/+24
| | | | | grid server reliability.
* * Took a stab at getting keys to work as intendedlbsa712008-02-141-2/+2
| | | | | | | [Provided by openlifegrid.com]
* * Added more debugging output to GridManager to pin down the key exchange ↵lbsa712008-02-141-3/+15
| | | | | | | | | weirdness [Provided by openlifegrid.com]
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-143-20/+20
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* Changed UserServer create user password input to cleartext so we can see ↵Tedd Hansen2008-02-141-1/+2
| | | | | | | what the all the fuzz/blur is about. Make sure that you hide your monitor and that there are no black vans with large antennas parked outside while you type the password. Actually, turn off your monitor while typing password. Then press reset button on your computer.
* * Added some more comprehensive log entries on region login.lbsa712008-02-131-5/+23
| | | | | | [Provided by openlifegrid.com]
* * Minor guard for null case.lbsa712008-02-131-2/+2
| | | | | | [Provided by openlifegrid.com]
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-103-12/+12
|
* Update version numbers to 0.5Jeff Ames2008-02-072-2/+2
|
* Shorten root inventory create folder message.Charles Krinke2008-02-071-2/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-0528-312/+295
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Added copyright statements.Jeff Ames2008-02-052-2/+58
|
* * Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey2008-02-046-100/+85
| | | | | | | * The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
* Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey2008-02-045-34/+17
|