aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-11Add a + operator to LSLString, otherwise you will end up with CIL strings ifHomer Horwitz1-0/+5
you have expressions with strings.
2008-10-11* Removed Heartbeat timerTeravus Ovares1-127/+148
* Implemented a proper update thread * Removed the UpdateLock Mutex as it's no longer needed because updates can only happen one at a time now. * This should actually improve performance significantly.. But, see the warning on the next line! * Warning: If there are deadlocks that the threadpool timer method was hiding, this will expose them for all the nastiness they are.
2008-10-11Plumb the remaining search packets and replies.Melanie Thielker3-7/+303
2008-10-11Thanks cmickyb for a patch that enhances the IRC module.Dahlia Trimble2-29/+115
See mantis #2379 for some useful scripts that work with this. Note that I added another configuration parameter in addition to the patch to allow for legacy behavior in the absence of new configuration settings.
2008-10-11Remove a UUID fudge that broke "Abandon Land"Melanie Thielker1-2/+2
2008-10-11Commit Diva's new patch for the DataSnapshot. Comment the defaultMelanie Thielker2-141/+157
metaverseink search provider to prevent accidental data exposure.
2008-10-11Eliminate some unnecessary polygonsDahlia Trimble1-10/+25
2008-10-10Fix an exception handling issue in XEngineMelanie Thielker1-1/+1
2008-10-10* minor: remove warningsJustin Clarke Casey2-25/+25
2008-10-10* minor: Remove highly experimental tags from oar loading and saving functionsJustin Clarke Casey1-6/+0
2008-10-10Committing diva's LandSnapshot update patch. Also included is a smallMelanie Thielker2-131/+135
fix for the LandManagementModule. I changed LandSnapshot to use CachedUserInfo to take a load off the user server. Also, missing owner profiles are legit, warning removed.
2008-10-10added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrab event, for ↵MW4-6/+21
the new surface touch parameters in 1.21 viewers.
2008-10-10added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrabUpdate event, ↵MW3-3/+18
for the new surface touch parameters in 1.21 viewers. TODO: add the touch args to OnGrabObject and OnDeGrabObject.
2008-10-10very tiny change MW1-3/+4
XmlIgnored the SceneObjectPart.SitTargetAvatar property, as (afaik) this is only used to indicate that a avatar is sitting (or about to sit) on the prim. And there are situations where it might not be cleared, like if a client crashes while sitting on the prim. Which results in that avatar's id getting stored in any xml backup or taking the prim into inventory. And then its always classed as a avatar is sitting on that prim.
2008-10-10* Added NullReference check to EventQueueGetModule.Adam Frisby1-2/+8
2008-10-10* Fixed a potential threading issue with EventQueueGet leading to ↵Adam Frisby1-5/+12
spontaneous crashes.
2008-10-10* Just some OGP maintenance. Standards adherence type stuff. Teravus Ovares1-7/+12
2008-10-10Some more decruftingDahlia Trimble1-108/+30
2008-10-10Some decruftingDahlia Trimble1-228/+46
2008-10-10refactoring PrimMesher to add viewer compatable features and some code cleanupDahlia Trimble3-91/+283
2008-10-10A bit more estate fudgingMelanie Thielker4-8/+16
2008-10-10Add the beginnings of a sim health check (through remote admin)Melanie Thielker2-0/+19
2008-10-09Fixed renaming of in-prim items (Mantis #2366)Homer Horwitz1-1/+3
2008-10-09* Apply http://opensimulator.org/mantis/view.php?id=2373Justin Clarke Casey1-73/+242
* Many llSensor() improvements, though sensoring isn't perfect yet * thanks idb!
2008-10-09* fix windows build break - it helps if one actually puts in using ↵Justin Clarke Casey1-1/+3
statements and spells dlls correctly
2008-10-09* minor: get rid of an unecessary casting and logic checkJustin Clarke Casey1-10/+5
2008-10-09* Apply http://opensimulator.org/mantis/view.php?id=2370Justin Clarke Casey1-164/+16
* Refactor lLMessageLinked() to use internal method GetLinkParts * thanks ralphos
2008-10-09Clean up webmap-generation a bit:Homer Horwitz1-17/+3
- Remove some duplicated code - Avoid unnecessary allocation of variables/values if only used once anyway.
2008-10-09* Fix http://opensimulator.org/mantis/view.php?id=2368Justin Clarke Casey1-0/+9
* This returns to writing the OpenSim.ini using default values if it (or OpenSim.xml) isn't found
2008-10-09Provide a sane value for DefaultScriptEngine (ScriptEngine.DotNetEngine)Melanie Thielker1-2/+1
rather then the previous invalid string "DotNetEngine". Remove the script_engine options, as it is not used anymore.
2008-10-09* refactor: separate process of extracting packet from received data from ↵Justin Clarke Casey1-34/+41
actually processing that packet
2008-10-09* minor: initialize udp server in unit testJustin Clarke Casey2-8/+8
2008-10-09* Create project for LindenUDP ClientStack testsJustin Clarke Casey1-0/+44
* No functional tests yet
2008-10-09* minor: very small doc additionJustin Clarke Casey1-1/+1
2008-10-09* Fixes simstats reporter. I'm sure this issue caused all sorts of things ↵Teravus Ovares1-2/+2
related to regionflags and capacity. I'm sorry, the object capacity that you dialed is not valid.. please check the number and dial again.
2008-10-08* minor: remove compile warningJustin Clarke Casey1-1/+1
2008-10-08- Fix wrong order of max/min usage for clipping. Uses Util.Clamp nowHomer Horwitz2-2/+4
- Add support for immediate switching of Music/Media URLs. Radio-scripts should work now.
2008-10-08- removed some unnecessary conversions (double -> double)Homer Horwitz1-2/+2
2008-10-08* minor: Comment out initial regularly occuring EventQueueGet log debug ↵Justin Clarke Casey1-11/+9
message for now, as previously discussed with Ter
2008-10-08* On deselection of objects, stop every object id passed triggering an ↵Justin Clarke Casey1-27/+20
update for the entire group * This was not a problem with objects consisting of less than 30 prims, since the extra schedules would be ignored * However, above approximately 30 prims extra schedules would actually occur. * For instance, a 140 prim object would end up triggering approximately 2500 ObjectUpdates to every avatar in range rather than 140 * Hopefully, this change will improve client responsiveness on deselect and was one of the reasons that the AgentThrottle restriction started causing problems yesterday.
2008-10-08Mantis#2354. Thank you kindly, Tglion for a patch that:Charles Krinke2-0/+25
The average-value of modify.ModifyBlock.Height in LLClientView.cs:4170 seem to be incorrect or it isn't the average? Mhhh... So the terrain build -> Flaten Sphere is unuseable. I have put in a patch that contains a workaround while the main problem is not solved.
2008-10-08* Re-enables map item requests.Teravus Ovares1-51/+261
* Puts remote requests in a single worker thread * Worker thread only starts when there are agents to serve * When there are no agents to serve, it shuts down * A good example of how to deal with threads in non-shared modules so they don't end up consuming threads per regions
2008-10-08warning squashingDr Scofield1-3/+3
2008-10-08Add some permissions checks and fixesMelanie Thielker4-11/+72
2008-10-08Mantis#2352. Thank you kindly, Jonc for a patch that:Charles Krinke1-2/+4
If prim is part of SOG, then ask the SOG to update the position, rather than asking the part itself. Ghosted child prims should no longer result from llSetPos. Not sure if this is the right approach for all cases , would appreciate feedback on the patch.
2008-10-08Mantis#1906. Thank you kindly, Idb for a patch that:Charles Krinke1-18/+1
Removed cache accesses to obtain sensed object/avatar name, it is already available.
2008-10-08Fix friendly errors in DNE as wellMelanie Thielker1-11/+10
2008-10-07Adapt tests to new friendly errors and correct line numbersMelanie Thielker1-2/+2
2008-10-07Restore "friendly errors" to the XEngineMelanie Thielker4-30/+23
2008-10-07* Comment out debug throttle output that I had accidentally left inJustin Clarke Casey1-0/+2