aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Catch the occasional resolution exception that comes out of ↵Justin Clarke Casey2008-03-221-3/+20
| | | | SceneCommunicationService.EnableChildAgents so we can see what hostname is failing
* * Downgrade 'texture not found' message to DEBUG and stop putting out ↵Justin Clarke Casey2008-03-221-7/+7
| | | | | | | | | | 'already dispatched' message completely temporarily * I believe that if the Linden client has not started to receive a texture after 15 seconds, it re-requests it. * My hypothesis is that the texture packets are often still in the texture queue (esp. if the client has just cleared its cache), so another load of packets get added... * If this is the cause, resolution is going to be rather complicated.
* * Reducing spam on console so we only notify once if we're dropping repeated ↵Justin Clarke Casey2008-03-221-22/+29
| | | | | | | | requests for missing textures * Also minor logic change so that we actually do retry missing texture requests (we weren't before)
* * Minor log message changeJustin Clarke Casey2008-03-221-1/+1
|
* * Tell the user what the new terrain commands format is if they try to ↵Justin Clarke Casey2008-03-221-1/+4
| | | | | | | | execute a deprecated one * As per CharlieO's suggestion in #806. Thanks!
* * Committing some math to discover the Oriented Bounding Box and decomposing ↵Teravus Ovares2008-03-221-0/+113
| | | | | | | it into planes and normals. * No obvious functionality difference as the Ray-cast code is incomplete for OBB right now.
* Remove a couple more compiler warnings by commenting unused variables.Charles Krinke2008-03-211-2/+6
| | | | | This takes us down to 15 compiler warnings on a VS2005 C# build.
* * Small adjust to last commit's logging so we only print out one warning ↵Justin Clarke Casey2008-03-211-3/+6
| | | | when we start dropping requests
* * If a client session requests the same texture more than n times (currently ↵Justin Clarke Casey2008-03-211-11/+19
| | | | | | | | | | | | n=5), we now drop the subsequent requests * This may improve region memory usage * This is a short-term response to a problem whereby some clients keep requesting the same texture even after we've sent it * This treats the symptom rather than the cause. * n can be adjusted by changing the constant at the top of UserTextureDownloadService if necessary
* Comment out an unused 'str' and add a WriteLine to useCharles Krinke2008-03-211-1/+4
| | | | | an "Exception e" with e.ToString() to eliminate 2 warnings.
* * Updated ray tracing code. It's now good enough to use when the XYZ ↵Teravus Ovares2008-03-213-1/+40
| | | | | | | | | vector components of the scale have a difference of less then 4.5 meters. * When a new prim is created and raytracing is called for, raytrace from the camera position to the ground in the direction of the Norm(RayEnd - RayStart). * If we got a hit based on our camera, create the new prim at the edge of the prim we hit. * Don't raytrace if the difference between any component of the vector exceeds 4.5meters.
* * Removed more encoding faults.Adam Frisby2008-03-212-7/+1
|
* * Converted a large number of ASCII encodings to UTF8.Adam Frisby2008-03-213-3/+5
| | | | | | | * We should not be using ASCII anywhere except for legacy compatibility reasons. * A large number of UTF8 Encoders are being used in places where we should be using Util.StringToField instead. These have been tagged with // ENCODING FAULT * This should fix Mantis#799 - Japanese Profile Text does not work.
* * Fix for #499: linked primsets don't rotate properly when using a door ↵Teravus Ovares2008-03-211-1/+1
| | | | | | | | script that works OK on SL * Fix for #693: llSetRot malfunction in linked prims causing instance of invisible prim
* * First draft resolution of mantis 777, 734, 389 - scripts do not save in ↵Justin Clarke Casey2008-03-204-49/+85
| | | | | | | | | | | | non-home regions * Should work in multi-region standalone and grid modes * This should also solve other non-home region caps issues (map requests, RC client inventory requests, etc) * We now pass CAPS information on to the destination region on region crossing, and set up a CAPS object when an agent becomes a master * Current limitation is that this will only work if your http_listener_port is 9000 * This is a very early code cut (lots of bad practice, hard coding and inefficiency). However, I wanted to get this out there for feedback and my own sanity. Next few patches will clean up the mess.
* Added back a fix that lbsa71 did aqes ago to fix a buffer overflow in the ↵MW2008-03-201-1/+1
| | | | packetpool, which somewhere through time got lost/reverted
* Another poxy patch which consists mainly of logging changes (some already ↵Justin Clarke Casey2008-03-201-2/+1
| | | | commented out) to find out what CAPS is doing
* Fix server crash when setting prims physical under basic physics.Jeff Ames2008-03-191-2/+6
|
* * Adding log debugging messages and making others more explicitJustin Clarke Casey2008-03-192-9/+36
| | | | | | | * This reveals that the problem with saving scripts in a non-home region in multi-region configurations is due to a CAPS setup issue * For some reason the client is still using the CAPS on the region it just came from, causing the ScenePresence lookup to fail (since the presence is now, correctly, a child agent).
* * Fix for if 782: Locked prims may still be moved by click+drag.Teravus Ovares2008-03-192-1/+35
| | | | | * Remember, your admin user and estate managers can move locked objects that are not owned by them. That functionality differs from the Linden way of thinking and it's by design! It is not a bug! Create a non-god user and use that as your normal account.
* * Print a warning every 20 times a client requests a texture that it should ↵Justin Clarke Casey2008-03-191-23/+43
| | | | | | | | | | already have received * The warning will be [USER TEXTURE DOWNLOAD SERVICE]: Received {0} requests for already dispatched texture {1} from client {2} This is to see whether the texture packet queue memory leak is caused by clients continually re-requesting textures they should already have
* * Documentation patch from krtaylor. Thanks!Justin Clarke Casey2008-03-191-0/+3
|
* Fixed some comparisons of LLUUIDs to null.Jeff Ames2008-03-193-11/+7
| | | | | Thanks to DrSchofld for pointing this out.
* * Add a large amount of extra locking to m_parts in SceneObjectGroup Justin Clarke Casey2008-03-181-125/+235
| | | | | | | * Should help stop any InvalidOperationExceptions caused by concurrent read/write * The extra locking should be okay, but I'm really surprised we've got away without mucho crashes due to this...
* * Stop (which currently removes) all scripts in an object when that object ↵Justin Clarke Casey2008-03-182-0/+14
| | | | is deleted from the region
* Formatting cleanup.Jeff Ames2008-03-185-194/+198
|
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-181-6/+6
|
* Formatting cleanup.Jeff Ames2008-03-1894-2711/+2623
|
* Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2008-03-183-14/+86
|
* * Move missing texture request forward so that we don't actually ask the ↵Justin Clarke Casey2008-03-171-21/+26
| | | | AssetCache for it if we know it's missing.
* * DEV: Remove client's CAPS handlers object when they log outJustin Clarke Casey2008-03-171-1/+6
|
* Fix a few mono compiler warnings. Minor cleanup.Jeff Ames2008-03-172-4/+4
|
* * Reduce the annoyingness of clients that continually request unfound ↵Justin Clarke Casey2008-03-171-6/+34
| | | | | | | | | textures (probably for some good reason) by dropping all subsequent requests after the first reply. * Print out a console message every 20 tries rather than every single one. * This weakens the problem but does not eliminate it
* Replaced some magic PCode numbers with enum values.Jeff Ames2008-03-172-2/+2
|
* From: Alan M Webb <awebb@vnet.ibm.com>Sean Dague2008-03-172-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* * Fixed prim creation in basic physics mode. ( BasicPhysics returns null ↵Teravus Ovares2008-03-161-3/+7
| | | | probably a lot more then it should? )
* Part 2 of fixing inventory for client 1.19.1 (RC), inventory items should ↵MW2008-03-151-0/+1
| | | | | | | now show up. Most likely still some problems and most like needs some more work (and still a couple of things to finish off).
* * Fix for Justincc's bug report #768 - Terrain looks rather phallic.Adam Frisby2008-03-141-3/+6
|
* * Remove stupid bug I just introduced where delinking would only delink one ↵Justin Clarke Casey2008-03-141-12/+1
| | | | | | | | prim at a time. * Teaches me not to say stuff like 'this is now working'
* * Minor - error message should be a warning. SpellingJustin Clarke Casey2008-03-142-2/+2
|
* * The rest of the fix necessary for mantis #766 - terse updates brokenJustin Clarke Casey2008-03-143-16/+43
| | | | | | | * Even very rapid linking/delinking should now behave normally. Terse updates still occur as before * Hopefully this ends the recent linking problems - please let us know if there are more
* * As yet incomplete fix for mantis #766 - terse updates brokenJustin Clarke Casey2008-03-143-3/+27
| | | | | | | * Currently, terse updates are back, and extremely rapid linking and delinking will only break occasionally * More work to do here
* * You can leave godmode if you want now.Teravus Ovares2008-03-143-5/+16
| | | | | * Fixed a compile error.
* * Added null root part guardlbsa712008-03-144-22/+18
| | | | | | * Normalized some UUID handling * Compacted a few Contains/Add into Set
* Attempt to fix mantis #741, could not replicate it myself. But the error ↵MW2008-03-141-130/+137
| | | | was suggesting that the SceneObjectPart was null, so added a null check, to make sure the sceneobject to be attached is found before attempting the attachment.
* attempt to try to fix mantis issue # 613, which seems to be a threading ↵MW2008-03-141-8/+8
| | | | issue. Queue is only threadsafe if its a public static member, which in this case it wasn't. And we were locking it during both enqueues and dequeues. So have added those locks to a syncObject. But it still needs testing on a high load region, as that seems to be when the exception happened.
* Update svn properties.Jeff Ames2008-03-145-265/+265
|
* * Fixed 'flatten area' brush, so it now has a 'force' instead of instantly ↵Adam Frisby2008-03-1410-213/+336
| | | | | | | | | | | flattening the selected area. * Noise, and Noise-Area brushes now use Perlin noise, more closely simulating the method LL uses officially. * TerrainModule has been cleaned up slightly. * TerrainUtil class has several new functions related to seeded noise generation. * Extracted ITerrainEffect, ITerrainFloodEffect, ITerrainLoader, ITerrainPaintableEffect, TerrainChannel to seperate files.
* * Added proper handling of llSetStatus(STATUS_PHYSICS,BOOL)Teravus Ovares2008-03-142-1/+61
|
* * Preliminary work with the ODEPlugin to collect collision data.Teravus Ovares2008-03-144-1/+10
|