aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-06fix infinite recursion loop in SendGridInstantMessageViaXMLRPCAsync()Kunta Kinte1-99/+79
2014-05-06Show more meaningful error messages when failed to give an item to another userOren Hurvitz1-6/+5
2014-05-01Fix issue where only one of multiple attachments on the same attachpoint for ↵Justin Clark-Casey (justincc)1-0/+7
NPCs would be seen by other viewers. It appears that at least Singularity 1.8.5 (but probably others) rely on attachment FromItemIDs being different to display more than one. This commit resolves this by generating random IDs instead of always using UUID.Zero for NPCs. Resolves http://opensimulator.org/mantis/view.php?id=7110
2014-04-24Changed how UserProfile performs a fallback call using the OpenProfile API, ↵Oren Hurvitz1-30/+37
because now JsonRpcRequest() returns an error result instead of throwing an exception
2014-04-24Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz2-193/+1
both the Simulators and Robust
2014-04-23Eliminated many warningsOren Hurvitz2-1/+3
2014-04-21Fixed: when a user logged-in, sometimes he didn't get notified of the Online ↵Oren Hurvitz2-2/+24
status of friends, so they continued to appear Offline. This happened because these notifications (the UDP packets) can only be sent to Root Agents. But the notifications were done in OnClientLogin(), at which point the client is still a Child Agent. Since a FireAndForget is used, it became a race condition as to whether the packets would be sent before or after the client became a Root Agent. To fix this, we now only send the notifications once the client becomes a Root Agent for the first time.
2014-04-19Catch empty url errorBlueWall1-0/+3
2014-04-07Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a userOren Hurvitz1-5/+1
2014-04-06When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz1-1/+7
entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
2014-04-03When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz1-1/+12
case of error
2014-04-03minor: Fix warning in AvatarFactoryModuleJustin Clark-Casey (justincc)1-1/+1
2014-03-25Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels.BlueWall1-6/+0
2014-03-25Move JsonRpc request code out for general availabilityBlueWall1-173/+19
2014-03-25In Core Profiles: as a fallback, try to get profiles from foreign grids ↵Oren Hurvitz2-2/+219
using the OpenProfile protocol Resolves http://opensimulator.org/mantis/view.php?id=6954
2014-03-25Run slow operations in a separate thread, instead of using FireAndForget ↵Oren Hurvitz1-1/+1
(which has a 1-minute timeout) Resolves http://opensimulator.org/mantis/view.php?id=6945
2014-03-24Refactored Load IAR: created a generic mechanism to modify the SOG's as they ↵Oren Hurvitz1-47/+19
are being loaded Resolves http://opensimulator.org/mantis/view.php?id=6942
2014-03-22Fix negative stat for Active ScriptsDev Random1-2/+3
Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
2014-03-22Reverting "Set default name for mute list" that was pushed by mistake.Kevin Cozens1-1/+1
This reverts commit 58def34dbe01af970ca0cbd7362aa24cd85fc43d.
2014-03-22Reverting "Pass method to offline.php" commit that was pushed by mistake.Kevin Cozens1-2/+2
This reverts commit fe16a72a9a10c5b9057351f798d9098ada3002ae.
2014-03-22Pass method to offline.php using ?blah instead of /blah/. Avoids issue with ↵Kevin Cozens1-2/+2
Apache web servers running PHP via CGI.
2014-03-22Set default name for mute list module as shown in OpenSim.ini.exampleKevin Cozens1-1/+1
2014-03-06Prevent adding a land object if it overlaps any existing objects that have ↵Justin Clark-Casey (justincc)2-11/+25
not had their bitmaps adjusted. This is to prevent an immediate problem in http://opensimulator.org/mantis/view.php?id=7035 where a development code bug occasionally overlays all the existing parcels with a blank parcel owned by the estate manager and to gather more data. My guess is that this parcel is being created by the new code in LandManagementModule.GetLandObject(), probably some race between threads since this only happens occasionally. Adds regression tests for this case and for parcel subdivide.
2014-02-24Improve regression test TestSetAppearance()Justin Clark-Casey (justincc)1-42/+69
2014-02-24Re-enable regression TestSaveBakedTextures()Justin Clark-Casey (justincc)1-4/+2
2014-02-24Stop mesh avatars that specify the alpha texture in their bake slots from ↵Justin Clark-Casey (justincc)2-38/+67
causing the simulator to continually request that they rebake This is because the alpha texture is not in the cache, we must continue to have the fallback of looking for these and other persisted bakes in the asset service. Relates to http://opensimulator.org/mantis/view.php?id=6927
2014-02-20minor: Add some method doc to AFM,SetAppearanceAssets()Justin Clark-Casey (justincc)1-0/+6
2014-02-20For now, do not replacing missing wearables with default wearables if itme ↵Justin Clark-Casey (justincc)1-144/+190
details cannot be found. This is causing many issues on OSGrid, possibly due to teleporting timing differences with simulators hosted in different places or HG teleports Added a bit more logging for debug purposes. See http://opensimulator.org/mantis/view.php?id=6939
2014-02-14Change warns associated with UserAgentServiceConnector to debugs, as this is ↵Justin Clark-Casey (justincc)2-2/+2
not necessarily a problen with the source simulator (e.g. someone else's remote simulator cannot be contacted). This is Oren Hurvitz's second patch from http://opensimulator.org/mantis/view.php?id=6956 with a small amount of correction
2014-02-14If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)2-2/+21
lets the caller decide whether to discard the error or not. This is Oren Hurvitz's 0001 patch from http://opensimulator.org/mantis/view.php?id=6956 but I ended up doing some tweaking to resolve patch application issues.
2014-02-04Remove the added whitespace, test concludedMelanie1-1/+1
2014-02-04Bot testMelanie1-1/+1
2014-02-03Remove compile error from returning value in void functionRobert Adams1-1/+1
2014-02-04Add one check for a blank URL because the module wasn't quite sure not to ↵Melanie1-1/+3
work when unconfigured :|
2014-02-04Adding the Avination XBakesModule, the client for the persistent bakes systemMelanie1-0/+189
2014-01-31Make sure Web streams are disposed after useOren Hurvitz1-42/+35
2014-01-20Materials module: a) Store materials as assets; b) Finalized it (removed the ↵Oren Hurvitz1-2/+2
"Demo" label; removed most of the logging); c) Enabled by default Changed UuidGatherer to use 'sbyte' to identify assets instead of 'AssetType'. This lets UuidGatherer handle Materials, which are defined in a different enum from 'AssetType'.
2013-12-16Fix issue with editing notes for other avatarsBlueWall1-2/+2
2013-12-14varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams2-4/+4
Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z. This keeps the downward compatibility and follows the scheme of 'region' and 'world' location naming that is happening in the Util module.
2013-12-11Committing the Avination Scene Presence and related texture codeMelanie2-90/+474
- Parts of region crossing code - New bakes handling code - Bakes now sent from sim to sim without central storage - Appearance handling changes - Some changes to sitting - A number of unrelated fixes and improvements
2013-12-06Add support for user preferences (im via email)BlueWall1-0/+67
2013-11-15minor: Use default(UUID) in rez attachment failure error logging rather than ↵Justin Clark-Casey (justincc)1-1/+1
(UUID)null Patch from http://opensimulator.org/mantis/view.php?id=6843 Thanks Kira.
2013-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)1-2/+2
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-10-07* Refactorteravus1-2/+2
* Break out common BasicDOSProtector code into separate class.
2013-10-07* Added a Basic DOS protection container/base object for the most common ↵teravus1-2/+10
HTTP Server handlers. XMLRPC Handler, GenericHttpHandler and <Various>StreamHandler * Applied the XmlRpcBasicDOSProtector.cs to the login service as both an example, and good practice. * Applied the BaseStreamHandlerBasicDOSProtector.cs to the friends service as an example of the DOS Protector on StreamHandlers * Added CircularBuffer, used for CPU and Memory friendly rate monitoring. * DosProtector has 2 states, 1. Just Check for blocked users and check general velocity, 2. Track velocity per user, It only jumps to 2 if it's getting a lot of requests, and state 1 is about as resource friendly as if it wasn't even there.
2013-10-07varregion: remove scattered use of Constants.RegionSize by having routines ↵Robert Adams2-6/+4
reference RegionInfo.RegionWorldLoc?.
2013-10-04Added SimulatorFeatures/OpenSimExtras: say-range, whisper-range, ↵Diva Canto1-0/+37
shout-range, at the request of Singularity dev Liru-Dargon
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams2-6/+6
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-09-27refactor: rename Scene.IncomingCloseAgent() to CloseAgent() in order to make ↵Justin Clark-Casey (justincc)2-2/+2
it clear that all non-clientstack callers should be using this rather than RemoveClient() in order to step through the ScenePresence state machine properly. Adds IScene.CloseAgent() to replace RemoveClient()
2013-09-25VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams2-6/+6
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.