aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridManager.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-04Cleaned up a couple compiler warnings.Jeff Ames1-2/+3
2008-03-04Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson1-4/+72
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.
2008-02-20Minor cleanup.Jeff Ames1-3/+0
2008-02-19Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey1-12/+12
2008-02-18* Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey1-0/+5
* Minor documentation bits
2008-02-17Thank you very much, Diva for a patch to increase the Charles Krinke1-14/+24
grid server reliability.
2008-02-14* Took a stab at getting keys to work as intendedlbsa711-2/+2
[Provided by openlifegrid.com]
2008-02-14* Added more debugging output to GridManager to pin down the key exchange ↵lbsa711-3/+15
weirdness [Provided by openlifegrid.com]
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-14/+14
* 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.
2008-02-13* Added some more comprehensive log entries on region login.lbsa711-5/+23
[Provided by openlifegrid.com]
2008-02-13* Minor guard for null case.lbsa711-2/+2
[Provided by openlifegrid.com]
2008-02-05Converted logging to use log4net.Jeff Ames1-29/+30
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-02Turn on fastMode for map block queries to grid server if and only if grid is ↵Brian McBee1-0/+1
running MYSQL as the data source.
2008-02-02Thank you very much daTwitch for your first contribution to the C# simulator.Charles Krinke1-0/+13
This is the beginnings of support for storage of region owner in the MySQLManager table and the use of "owner_uuid".
2008-01-15* Mother of all commits:Adam Frisby1-6/+6
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-12* Made it so that if you don't specify a key, the defaults will not be assumed.Adam Frisby1-5/+6
* If you wish to turn off key authentication, set the values to "" (null) in the grid config, and do the same in clients.
2008-01-12* In the interests of making life difficult for everyone, the Grid Server ↵Adam Frisby1-114/+127
now actually checks your authentication keys rather than ignoring them.
2008-01-07* Adding More to the MessageServer classes.Teravus Ovares1-0/+2
* Don't forget to prebuild
2008-01-06* A few more Message Server comms related updatesTeravus Ovares1-1/+62
2008-01-06Added code to gridserver to prevent new region from connecting at X,Y ↵Brian McBee1-112/+128
location already used by an existing region.
2007-12-27* Optimized usingslbsa711-8/+9
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-23Clean up the region initialization GridServer messages a bit.Charles Krinke1-6/+8
2007-12-23Simplify GridServer mainmap log messages.Charles Krinke1-5/+6
2007-12-20* Added a configuration parameter on the Grid Server to disallow forceful ↵Teravus Ovares1-0/+2
banlists. * Added a way for Grid based configuration parameters to (generally used in overriding functionality) to get to the regions on Registration.
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-6/+6
Works with LibSL rev>1532
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-1/+1
notice of doom
2007-12-04* Fixed a whole bunch of console messages.Adam Frisby1-9/+9
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-18Additional debugging output to see for what coordinates is the worldmap Dalien Talbot1-1/+2
requested (crash is gone, but tons of worldmap requests)
2007-10-30* Optimized usingslbsa711-124/+150
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-2/+2
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-18Possible fix for: Remoting exceptions with adjacent non-running sims.Tleiades Hax1-0/+1
Bugs 449, 454, 408, 244, 197 implemented InformClientOfNeighbours as an asynchroneous process, handling timeouts without blocking the main thread. Improved logging of errors, removed catch all in try catch
2007-10-17Renamed SimProfileData to RegionProfileDataTleiades Hax1-20/+20
2007-09-24* the worlds most insignificant commitlbsa711-3/+1
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-08-31Added a Debug method to the Console/log class that has the Conditional ↵MW1-2/+2
attribute (set to "DEBUG"), so we can use that for writing extra debug info to the console. [for anyone who doesn't know about the Conditional attribute, it is a attribute that can be set on a method, and then any call to that method will on be compiled if the terms of that condition are met, ie is this case only if "DEBUG" is true. So its a cleaner implementation of the #if #endif directives]. A few other minor changes.
2007-08-08Grid/GridServer/GridManager.csBrian McBee1-9/+16
Fixed GridManager.cs so that it properly updates the database if you change some parameters in your region (X and Y, region name, etc). It still keys on the region uuid.
2007-07-20* Assortment of Console changes - console messages are now grouped into ↵Adam Frisby1-12/+12
modules (eg "client", "grid", "terrain", "storage", etc)
2007-07-19* Removing more compiler warnings.Adam Frisby1-4/+4
2007-07-18*New Configuration System, much easier and less buggy compared to the ↵mingchen1-0/+2
original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)
2007-07-17* Applying babblefrog's DNS patches from issue #188Adam Frisby1-4/+5
2007-07-16changed to native line ending encodingSean Dague1-710/+710
2007-07-14* Excelsior!Adam Frisby1-0/+6
2007-07-13* OGS project is now back down to zero warnings.Adam Frisby1-0/+1
2007-07-10preliminary inter region communications (between regions in different ↵MW1-1/+5
instances) now works, so child agents and border crossings (and teleporting) now work. The .net remoting is still very basic: we need security sinks added. And we really need the OGS 2 protocol as soon as possible.
2007-07-10Gird mode in sugilite should now work in so far as you should be able to ↵MW1-4/+12
login and move between regions in the same instance. Moving to regions in a different instance of opensim still needs implementing (working on it now). Also trying to look at the map in grid mode will crash the server.
2007-07-08* Fixed reservation handling for existing region authkey situations. ↵Adam Frisby1-7/+1
Reservation key now overrides old sim key, however if reservation not found, sim key is used instead.
2007-07-06*Fixed several bugs that crashed the viewer and opensim server when logging ↵mingchen1-2/+2
in on grid mode *Note: Grid Mode now works in sugilite, but is still unstable **Known bug in which the grid server crashes after being relaunched from a previously create configuration **Crashing of the viewer crashes the OpenSim server which then crashes the grid server -- needs better handling of exceptions **Multiple sims is still untested, but should connect correctly. Moving between the sims may be a different story
2007-07-05*Removed SimProfile.cs as it is no longer needed (in favor of SimProfileData)mingchen1-0/+35
*Added simulator_data_request XMLRPC method to request data from the grid server about a sim instead of faking its login *Login is progressing, now just getting an XML error (http://pastebin.com/942515) -- if you can fix this, throw MingChen in IRC a Private Message
2007-07-04Grid Servers:Adam Frisby1-7/+9
* Sugilite grid server now works with older regions properly (using it on deepgrid for testing) * Sugilite user server still broken with sugilite region server * Reduced the number of compiler warnings to zero Region Servers: * Added debug information to OGS1 Comms to help debug user server connectivity issues.