aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-07-09Handle UUIDNameRequest UDP packet processing async instead of within the ↵Justin Clark-Casey (justincc)1-1/+1
main inbound UDP processing loop, to avoid any chance that this is delaying the main udp in loop. The potential impact of this should be lower now that these requests are being placed on a queue.
2013-07-09Put guards on a bunch of exception-inducing code, as seen in logs from load ↵Diva Canto6-6/+20
test.
2013-07-09BulletSim: add parameter to optionally disable vehicle linear deflection.Robert Adams2-16/+34
Add parameter to not apply vehicle linear deflection Z forces if vehicle is not colliding. This defaults to 'true' so vehicles will fall even if there is some linear deflection to apply.
2013-07-08remove some cruft and trigger a rebuilddahlia1-1/+0
2013-07-08remove an invalid null UUID check which caused a warningdahlia1-8/+1
2013-07-08BulletSim: make all the different angularVerticalAttraction algorithmsRobert Adams4-138/+146
selectable from configuration paramters. Changed default algorithm to "1" from previous default as it seems to handle Y axis correction a little better. Add config file independent enablement of vehicle angular forces to make debugging easier (independent testing of forces).
2013-07-09minor: remove mono compiler warnings from HGSuitcaseInventoryServiceJustin Clark-Casey (justincc)1-3/+3
2013-07-09minor: remove some mono compiler warnings in UserProfileModuleJustin Clark-Casey (justincc)1-16/+13
2013-07-08minor: remove some mono compiler warnings in new groups codeJustin Clark-Casey (justincc)4-8/+1
2013-07-08minor: remove mono compiler warnings related to keyframe codeJustin Clark-Casey (justincc)2-8/+3
2013-07-08Add missing file BaseOutputStreamHandler.cs from recent commit e19defdJustin Clark-Casey (justincc)1-0/+60
2013-07-08minor: remove some mono compiler warnings in OdePluginJustin Clark-Casey (justincc)2-2/+1
2013-07-08minor: remove now unused migration-hack bool from DAMapJustin Clark-Casey (justincc)1-4/+0
2013-07-08minor: Add back commented out logging message in Caps.RegisterHandler() that ↵Justin Clark-Casey (justincc)1-0/+1
I accidentally removed.
2013-07-08For stat purposes, add names to capability request handlers where these were ↵Justin Clark-Casey (justincc)5-11/+20
not set
2013-07-08BaseHttpServer: if the handler sets the content length, don't override it. ↵Diva Canto1-1/+1
This happens in HEAD handlers.
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)43-80/+346
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2013-07-08Make dictionary read/write locking consistent in CapabilitiesModule, rename ↵Justin Clark-Casey (justincc)1-48/+82
two dictionary fields to standard m_ format
2013-07-08Placed a throttle on UserManagementModule for name lookups. Singularity ↵Diva Canto2-11/+57
apparently is flooding the sims with name requests.
2013-07-07Print out caller IP when unusual requests are received.Diva Canto1-1/+1
2013-07-07BulletSim: Different Implementation of Angular Deflection for vehicles, ↵Vegaslon1-15/+16
Activates it again and fixes problem with fighting with vertical attractor removing wobble of forward axis. Comments on testing welcome, May require adjustments of this force or other forces after this commit, exact tweaking to come after testing on other hardware. Signed-off-by: Robert Adams <Robert.Adams@intel.com>
2013-07-07BulletSim: fix jumping up and down of linksets when center-of-massRobert Adams1-6/+2
was enabled. Didn't effect the physical position but the viewer saw the linkset jumping between its simulator center and its physical center.
2013-07-07BulletSim: rename position and orientation variables to remove theRobert Adams3-95/+71
inconsistant use of Raw* and _* conventions.
2013-07-06Try to normalize the creatorData of scene object parts with the trailing ↵Diva Canto1-0/+4
'/'. What a nightmare this '/' is!
2013-07-06A little more debugDiva Canto1-1/+1
2013-07-06Revert "WARNING: BRUTE FORCE DEBUG AGAIN. AVOID USING THIS COMMIT"Diva Canto1-3/+1
This reverts commit 9b75d757241e87408c50b1f92996bf667960c348.
2013-07-06Some more fixes on strange behaviors of Unknown User, esp. related to large ↵Diva Canto2-16/+16
messy inventories and esp. related to kokua
2013-07-06MORE DEBUG. DON"T USE THIS.Diva Canto1-3/+3
2013-07-06WARNING: BRUTE FORCE DEBUG AGAIN. AVOID USING THIS COMMITDiva Canto1-1/+3
2013-07-06Simina activity detector was too eager. Disabled it in case simian is not ↵Diva Canto1-1/+2
being used.
2013-07-06Add implementations for llSetVelocity and llSetAngularVelocity.Robert Adams3-0/+38
2013-07-06BulletSim: implementation of linkset center-of-mass.Robert Adams5-29/+70
Default off, for the moment, until more testing. Add separate thread and center-of-mass flags to OpenSimDefaults.ini. Clean up comments in OpenSimDefaults.ini.
2013-07-06BulletSim: More tweaking on center-of-mass. Almost there. Changes have no ↵Robert Adams4-101/+51
effect if LinksetOffsetCenterOfMass=false (the default).
2013-07-06BulletSim: comments and non-functional changes working toward the ↵Robert Adams4-20/+39
center-of-gravity implementation.
2013-07-06BulletSim: non-functional updates. Comments and formatting.Robert Adams4-43/+67
Update TODO list.
2013-07-05Changed a few bits in Inventory/Archiver/InventoryArchiveReadRequest.cs to ↵Diva Canto5-25/+29
be less dependent on a Scene.
2013-07-06Fix mono warning in LLImageManagerTestsJustin Clark-Casey (justincc)1-1/+1
2013-07-06Get InventoryWorkerThreads to update watchdog on processing requestsJustin Clark-Casey (justincc)1-0/+2
2013-07-06Update thread watchdog on GridServiceRequestThread periodically and turn off ↵Justin Clark-Casey (justincc)1-1/+3
alarming Unfortunately, alarm can spuriously go off if the thread blocks for a long time on an empty queue.
2013-07-06refactor: Make stats and sim status simpler by extending BaseStreamHandler ↵Justin Clark-Casey (justincc)2-77/+23
like other handlers instead of implementing the IStreamedRequestHandler interface directly
2013-07-05Add very basic regression test TestChildAgentSingleRegionCapabilities() ↵Justin Clark-Casey (justincc)1-0/+88
which checks for addition and removal of capabilities on add/remove of child agent
2013-07-04Delete some verbose debug messagesDiva Canto3-6/+6
2013-07-04Throttle the viewer's requests for region handles. Apparently Kokua is ↵Diva Canto2-18/+161
requesting this for all landmarks in inventory. Not sure why. But this seems to be the root cause of the login freeze mentioned before. This commit adds a blocking queue / process thread pattern.
2013-07-04Guard against completely unknown user UUIDs.Diva Canto1-3/+6
2013-07-04Debug the RegionHandle handler (same issue)Diva Canto1-0/+1
2013-07-04Revert "WARNING: BRUTE FORCE DEBUG. AVOID USING THIS COMMIT."Diva Canto1-4/+0
This reverts commit c95a23863ab51810ccc01afd3dd641c18a183305.
2013-07-04WARNING: BRUTE FORCE DEBUG. AVOID USING THIS COMMIT.Diva Canto1-0/+4
2013-07-04Revert "Same freeze issue, now checking if it's in estate"Diva Canto1-1/+0
This reverts commit ca380ec0397b28a3d7a3f2c60aeb6eaf1153be31.
2013-07-04Same freeze issue, now checking if it's in estateDiva Canto1-0/+1
2013-07-04With diva's permission, temporarily reinsert Unknown UserUMMAU3 to make sure ↵Justin Clark-Casey (justincc)1-7/+18
that GUN7 failure has largely disappeared. Unknown UserUMMAU3 insertion should definitely be removed down the line. However, I would like a little more time to check the GUN* reduction first, since removing UMMAU3 will make these failures appear as GUN7 instead. Also bumps GUN6 -> GUN7 and UMMAU2 -> UMMAU3