aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* After seeing sdague do his happy dance over trunk working "the best he has ↵MW2008-02-271-2/+268
| | | | | | | | ever seen". I'm not sure I should be doing this commit, but oh well. So anyway, it moves the Asset downloading (packet sending) to a module (AssetDownloadModule). So now at last, AssetCache should be just dealing with fetching assets from the asset server and caching them.
* * Turned Friends Module into a shared module (to comply with ↵Teravus Ovares2008-02-272-13/+73
| | | | | | | Scene.AddXmlRPCHandler being shared). * Fixed a null ref issue in Scene.Close()
* Update svn properties.Jeff Ames2008-02-272-132/+132
|
* UserService.ClearAgent call is no longer made when a childagent connection ↵MW2008-02-271-6/+5
| | | | | | | is being closed. DisableSimulatorPacket now skips the packet throttles
* * Committing file loaders - forgot yesterday.Adam Frisby2008-02-273-2/+135
|
* make trunk compile again. I think Adam forgot to check in some filesSean Dague2008-02-261-2/+2
|
* * Implemented - Terragen File Format Loader for new Terrain Module.Adam Frisby2008-02-263-2/+37
|
* Update svn properties.Jeff Ames2008-02-266-679/+679
|
* * Hooked up replacment TerrainModule, raising land will now be weird as both ↵Adam Frisby2008-02-261-5/+87
| | | | modules are technically active. Beta software, yada yada yada. Will disable one of them by the end of the day.
* * Reimplementing Terrain as Region ModulesAdam Frisby2008-02-263-0/+81
| | | | | | | | | * New method involves interfaces for ** Terrain Paint Brushes (ie raise brush, lower brush, etc) ** Terrain Flood Brushes (ie raise area, lower area, etc) ** Terrain Effects (ie erosion, etc) [= W.I.P, not committed] * Provided sample implementation for Raise Paint and Raise Area brushes.
* * Another slight tweak to the Voice Chat engine - crash caused by switching ↵Adam Frisby2008-02-261-5/+2
| | | | to shared module fixed.
* * Small voice chat fixAdam Frisby2008-02-261-6/+9
|
* * Updated Voice Chat Server, added support for voice to cross region ↵Adam Frisby2008-02-261-6/+7
| | | | boundaries providing they are all located on the same simulator.
* * Fixed a null assignment in voice server.Adam Frisby2008-02-261-1/+1
|
* * Converted VoiceChatServer into a shared region module - now only one ↵Adam Frisby2008-02-261-8/+22
| | | | instance is required for the entire simulator, rather than one per region.
* * Added support for RealXtend Voice Chat as a Region Module to OpenSim ↵Adam Frisby2008-02-264-0/+593
| | | | Trunk. Enabled via [VoiceChat] enabled=true in OpenSim.ini
* * Start sending "ImageNotFound" packet back to the client if we can't find ↵Justin Clarke Casey2008-02-255-31/+195
| | | | | | | | | | | | an image * This might stop some client's constant requests for unfound textures, which is a candidate for the memory leak * If a texture is not found then the "Image not found" texture will now be displayed clientside * If it works, this should resolve mantis 676 * Non texture image requests do not receive this packet yet * This will require a prebuild
* * Resolve Mantis 667 by not passing on textures with no actual data onto ↵Justin Clarke Casey2008-02-251-1/+4
| | | | TextureSender
* * Caught HttpListenerException and swallowed if with outputlbsa712008-02-253-16/+15
| | | | | | | | * Moved Flush into Close since it's always done in that order. * Minor renamings * Reversed if for clarity
* * Added Support within the ODEPlugin for Selected. Which means that;Teravus Ovares2008-02-232-6/+22
| | | | | | | | * When you select a physical prim, it stops while you've got it selected. * When you move or alter a prim in some manner, it doesn't become collidable until you de-select it * When you select a prim, it doesn't become temporarily 'phantom' until you make some change to it while it's selected. (this prevents accidental selections in prim floor from causing it to go phantom on you(but don't move it or you'll fall)) * There's one major difference, and that's a physical object won't stop if you don't have permission to edit it. This prevents people who don't have edit permissions on a prim from stopping it while it's moving.
* * Converted the last of the events to the private delegate instance method ↵Teravus Ovares2008-02-221-18/+32
| | | | to avoid race conditions.
* * Downgrade texture exception to a warning.Justin Clarke Casey2008-02-221-4/+5
|
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-225-9/+21
| | | | instances to prevent event race conditions
* * Moved the EventManager over to delegate instances to prevent race conditions.Teravus Ovares2008-02-221-49/+104
|
* "threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen2008-02-214-2/+13
| | | | compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
* Remove a couple compiler warnings.Jeff Ames2008-02-212-5/+5
|
* * Properly guard against the possibility that CopyInventoryItem doesn't get ↵Justin Clarke Casey2008-02-201-5/+16
| | | | an asset back from the cache
* * Eliminate AssetCache.CopyAsset()Justin Clarke Casey2008-02-201-32/+26
| | | | | | | * Resolve a bad logic bug in AssetCache.GetAsset() * This may make some asset related things work better (possibly getting main map images will now be improved).
* * Only count download requests for assets which are not already waiting for ↵Justin Clarke Casey2008-02-204-15/+16
| | | | | | | | | data from the asset server * This should stop the constant increase in the download requests statistics * If you see stat numbers for download requests which are far from what you'd expect, please report
* * Found the land bug, yayTeravus Ovares2008-02-201-1/+1
|
* Minor cleanup.Jeff Ames2008-02-2046-66/+52
|
* * Report 'asset not found' situations back to UserTextureDownloadServiceJustin Clarke Casey2008-02-203-7/+26
| | | | | | | * This fixes some of the 'runaway downloads' problem but not all of it * Also fix up logging messages so texture requests are reported as such rather than as assets
* * re-enabled AssetNotFound codelbsa712008-02-201-77/+80
| | | | | | * turned script asset fetching asynchronous
* Fixed big bug in AgentAssetTransactions, now don't seem to be getting any ↵MW2008-02-201-4/+4
| | | | AbortXfer packets. And the "saving data" message in the client on logout seems to have gone. (So that message was all my fault.)
* some changes to the initialising of AgentAssetTransactionModule to see if ↵MW2008-02-201-9/+23
| | | | they help with the xfer/grey avatar problems.
* small changeMW2008-02-201-0/+11
|
* * Added a few more packets to ClientView. Added tendons to the Skeletal ↵Teravus Ovares2008-02-201-3/+220
| | | | Groups Module, made it shared to save on threads.
* * Fixed xml loading bug (the xml was scheduled for update before added to a ↵lbsa712008-02-203-5/+3
| | | | | | | | scene) * Fixed ClickAction situation on the same note (properties shouldn't cause big changes) * Added some more debug output to AssetCache
* * Cleanup of some memory consuming items on ScenePresence.Close().Teravus Ovares2008-02-204-9/+77
| | | | | | * Untangled a tangly shutdown loop for the ScenePresence. * Suggested to the Garbage Collector that this may be a good time to >.>, <.< *gasp* collect the memory.
* * Made a quickupdate method to run through only entities that have scheduled ↵Teravus Ovares2008-02-204-1/+55
| | | | | | | | | themselves for updates looking for changes. This runs 10 times a second. * Set the massively slow UpdateEntities method to run every 2 seconds instead of 10 times a second. This method runs through *all* of the entities can calls the virtual update(). * Documented some of the code in the scene.Update method.
* Doc correctionJustin Clarke Casey2008-02-191-1/+1
|
* * Add documentationJustin Clarke Casey2008-02-193-16/+112
| | | | | | | | * The reason why pending downloads tick ever upwards is because missing assets are never signalled to the TextureSender * Rectifying this is not straightfoward, but this will constitute the next patch. * This does not explain the memory leak.
* From: Michael Osias <mosias@us.ibm.com>Sean Dague2008-02-196-147/+458
| | | | | | | | This patch implements the llSendRemoteData command and fixes mantis 552, and possibly 586.
* Playing "Name that thread". Adding names and isbackground=true to all ↵Tedd Hansen2008-02-192-3/+19
| | | | threads so it will be easier to debug.
* * Probably fixed the corner freeze bug. On uninitialized avatar, ODEPlugin ↵Teravus Ovares2008-02-181-3/+9
| | | | was trying to set the height of avatar to 127m, which you can imagine is a bit /wrong\
* * Fixed a land manager exception or two with Math.Max(255,Math.Min(0,val))Teravus Ovares2008-02-182-9/+65
| | | | | * Trapped a few more into little self contained boxes with padlocks on them.
* a new attempt at converting to the right typesSean Dague2008-02-181-1/+1
|
* Attempt to fix casting issue introduced by RegionSize constant. I think thisSean Dague2008-02-181-1/+1
| | | | | | should actually all be uints, but this will hopefully let people log in again.
* Patch from Michael Osias IBM (jimbo2120)Justin Clarke Casey2008-02-184-0/+43
| | | | | | | | In his own words: If a prim becomes a listener or remote channel and the script is deleted, it cannot become a listener or channel again with a new script. This patch fixes that.
* Small change to the IAgentAssetTransactions file that Chi11ken added for me ↵MW2008-02-181-2/+2
| | | | | | | (thanks Chi11ken). when I forgot to commit it on saturday. [The ComsmsManager will die]