aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fixed the VS 2005 solution/ project files.MW2007-04-304-6/+39
| | | | | and a couple of other small changes
* Copied gridserver ready to convert to asset servergareth2007-04-291-79/+79
| | | | | | I'M THAT NUTS!!!!!!!!
* BugfixesAdam Frisby2007-04-282-1/+5
|
* Dumb mistake #2Adam Frisby2007-04-271-0/+1
|
* Dumb mistake - forgot to assign the datastore variableAdam Frisby2007-04-271-0/+2
|
* Major ass commitAdam Frisby2007-04-272-0/+17
| | | | | Added new "Datastore" parameter to simconfig.xml which is passed to storage engines via a new Initialise() function.
* * Added new commandline option -config <configfile.xml>Adam Frisby2007-04-271-2/+3
| | | | | Note: This is untested but is a very simple change and should 'just work'. If someone can test, appreciated.
* added just what opensim needs...yet another command line option: -noverbose ↵MW2007-04-261-2/+2
| | | | . cut down on the system console output (should really be stopping it all but not all output is going through OpenSim.Framework.Console)
* At last: avatar-template.dat is no moreMW2007-04-261-5/+13
|
* Mostly working again.MW2007-04-263-6/+39
| | | | | | Updated to lastest libsl and handled the changes to the message templates (some byte fields are now ushort fields ). Still seems to be a problem when logging on, in that I get the downloading clothing message at the end of the precaching (which I didn't before)
* attempted bug fixMW2007-04-251-1/+1
|
* updated to use lastest version of libsl but is currently broke when using SL ↵MW2007-04-2510-21/+66
| | | | viewer 1.15.02, due to big changes in the message templates.
* Can now use the xml config file for setting up things like sandbox mode, ↵MW2007-04-251-2/+91
| | | | | | | | login server, physics engine etc. To use this mode add just -configfile to the startup line (instead of the -sandbox etc) A example of what to add to the xml is: SandBox="true" LoginServer="true" UserAccounts="false" LocalAssets="false" PhysicsEngine="basicphysics" (add those to config node in simconfig.xml). The current options for PhysicsEngine are : basicphysics, RealPhysX, OpenDynamicsEngine.
* Small clean up of files and directoriesMW2007-04-2517-98/+25
|
* Moved console input-handling function "RunTerrainCmd" into BasicTerrain ↵Adam Frisby2007-04-241-80/+5
| | | | itself, this allows independent versions of BasicTerrain to have different functionality exposed directly.
* Added mutex instead of lock for updateAdam Frisby2007-04-221-37/+37
|
* Needs testing.Adam Frisby2007-04-223-3/+11
| | | | | | 1. Fixed Update Lock (should now compile) 2. Added support for rescaling a primitive without it jerking to the side.
* Added lock around World.Update to prevent multiple updates occuring ↵Adam Frisby2007-04-221-32/+37
| | | | simultaneously (it happened!)
* SimClient: Added Try/Catch over block of code which is triggering an ↵Adam Frisby2007-04-222-1/+17
| | | | | | | exception that should not be triggerable. (Duplicate key after dictionary is locked, checked for key, then added) [!?!?] AvatarUpdate: Added check for if the physics actor is null before attempting to access it.
* === Dedicated to Jesse. ===lbsa712007-04-221-83/+83
| | | | | | * Deleted empty directory
* Now starts up a laggy (to be fixed) TCP server in grid mode and sends a bannergareth2007-04-221-2/+12
| | | | | | NEED THREAD POOLS!!! DO NOT LET ME GET AWAY WITH BEING LAZY PEOPLE!
* Bumped avatar entry height to 15m above ground rather than the old 1m above ↵Adam Frisby2007-04-221-1/+1
| | | | ground. Should prevent 'below ground' arrivals.
* Removed last references to ancient LandMap[] array.Adam Frisby2007-04-221-2/+1
|
* Commented first 50% of World.cs's functions with /// tagsAdam Frisby2007-04-221-0/+64
|
* Small fixAdam Frisby2007-04-221-0/+1
|
* Added exception handling to each function in World.cs - code is assumed ↵Adam Frisby2007-04-221-224/+369
| | | | stable so MSVC debugging of this code should no longer be needed. If however, it is needed, put a breakpoint on the exception handler concerned.
* Added OpenGridProtocol class - start of the new TCP-based intersim protocol, ↵gareth2007-04-211-83/+83
| | | | | | | | | very basic skeleton First commit since we lost JesseMalt - Dedicated to their memory
* Terrain / Physics / Storage:Adam Frisby2007-04-211-2/+9
| | | | | | * Added terrain "taint" - if terrain is tainted, the terrain is marked as needing to be saved. * Added check for taint in the Backup() routine, if taint is found, terrain is saved and physics engine is notified.
* Config:Adam Frisby2007-04-211-3/+3
| | | | | | * Added sane defaults to each configuration step. (The defaults for sim/user/grid will now create a working grid)
* Terrain:Adam Frisby2007-04-201-0/+5
| | | | | * Added 'multiply' command since rescale doesnt exactly do what Adam wants.
* Terrain:Adam Frisby2007-04-201-0/+5
| | | | | * Added 'rescale' command for normalising a terrain between two values
* Hopefully fixed the forward slash bug in the gridurl set upMW2007-04-201-7/+16
|
* Console:Adam Frisby2007-04-201-3/+75
| | | | | | | | | | | | * Reorganised and added default handlers to main functions * Removed "regenerate" command, use "terrain regenerate" instead. * Added new "terrain seed" command to set the random seed * Added new "terrain load" command to load a terrain from disk * Added new "terrain save" command to save a terrain to disk Terrain: * Added new export and import functions for some common formats * Added new setSeed function to allow customising the random seed
* (no commit message)MW2007-04-171-437/+0
|
* Yet another command line option (really need to get all these moved into a ↵MW2007-04-172-2/+9
| | | | config file), this one: "-localasset" (without the quotes) is a temporary hack to use a local asset server when in grid mode. (use with extreme caution if you have more than one sim in a grid)
* Hopefully undid the murder I committed in the last commitMW2007-04-172-22/+25
|
* A few fixes and stopped sim crossing being attempted in sandbox modeMW2007-04-176-195/+228
|
* Created skeleton SimComms.cs for sim<->sim UDP circuitsgareth2007-04-173-4/+476
| | | | | | Fixed bug with <0,0> co-ordinates on sim crossing
* Sim crossing now works (except for broken co-ordinates, resets to 0,0 - to ↵gareth2007-04-174-18/+142
| | | | | | | | | | be fixed soon) Fixed sandbox mode fully Scrapped former XML-RPC expect_user call for sim crossings Sim client thread can upgrade/downgrade between full and child agent dynamically
* Started to fix sandbox modeMW2007-04-151-59/+72
|
* unbroke sandbox modegareth2007-04-151-2/+2
|
* W00t! multiple sims!gareth2007-04-154-32/+93
| | | | | | | | | Misc bugfixes Child agents!!!!!! General sexy stuff
* Fixed weird XML/HTTP bugsgareth2007-04-131-2/+4
| | | | | | | | Can now update a sim profile at startup automatically! W00t! Untested neighbours code (for sim crossings) Didn't drink any red bull today :( Used liquid guarana extract + cola
* aaaaaaarrrrrrrrrggggghhhhhhhh why oh why?gareth2007-04-121-5/+9
|
* * Replaced GridHTTPServer and UserHTTPServer with BaseHttpServerlbsa712007-04-114-18/+17
| | | | | | * Now dumping default value in config. *
* * Started on converting UserHTTPServer to BaseHttpServerlbsa712007-04-112-14/+14
| | | | | | * Added a 'param' param to the RestMethod * Added RestHandlerEntry to store more info about the 'rest' handler
* Renamed the Servers directory to OpenSim.ServersMW2007-04-111-1/+1
|
* small improvement to the jvm and test scriptMW2007-04-111-0/+1
|
* First basic test script now works in the jvm scripting engine. MW2007-04-112-5/+127
| | | | | | For it to work you need to have a java sdk installed and the javac.exe somewhere in the environment Path variable. Then To test, copy the text from bin/script1.text into a note card and then add that note to a prim.
* Changed so that a bin\ScriptEngines\ directory will be searched for ↵MW2007-04-114-87/+117
| | | | | | | scripting Engines. Added the work in progress JVM scripting engine.