aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Avatar (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-11-17 remove unused parameterUbitUmarov1-1/+1
2015-11-17 work around some 'tests' errors: AgentGroupDataUpdate is udpUbitUmarov1-1/+3
2015-11-17 work around some 'tests' errors: a new event queue has a few null eventsUbitUmarov1-0/+7
2015-11-02apply OtakuMegane code changes to irc channel chat so some characters are ↵UbitUmarov1-1/+4
not lost
2015-10-26 try fix IRC connector issue on mantis 7731 but with code a bit diferent ↵UbitUmarov1-12/+14
from proposed patch. Also append '@irc' to nick on region messages, so message origin is clear
2015-10-04 in llAttachToAvatarTemp() (TempAttachmentsModule) dont add to inventory, ↵UbitUmarov1-1/+1
like master
2015-09-29 try fix some whitespaces VS decided to changeUbitUmarov1-26/+28
2015-09-29 add processing of AvatarGroupsRequest message that should be used to get ↵UbitUmarov1-7/+34
other avatars group memberships, but keep it disabled since some viewers no longer suport it correctly and expect memberships in reply to avatar properties, so we need to keep wasting bandwith sending useless information when some viewers really only want avatarproperties
2015-09-28 remove groups handlers onClientClosedUbitUmarov1-29/+32
2015-09-27 let SendAvatarGroupsReply fall back to UDP if no caps and make use of itUbitUmarov1-67/+1
2015-09-27 several changes to xmlrpcGroups. Packets AgentData and AgentGroupData are ↵UbitUmarov1-83/+67
private to the requesting agent, etc
2015-09-26 in xmlrpcGroups send all groups on MakeRoot. this will slow down crossings ↵UbitUmarov1-2/+2
even more, but viewers seem to need it now, something to review later
2015-09-04Deleted OpenSim.Framework.Communications. Moved its two remaining files to ↵Diva Canto4-4/+0
OpenSim.Framework.
2015-09-02seems to compile ( tests comented out)UbitUmarov1-1/+1
2015-03-29varregion: any conversions of use of Constants.RegionSize converted intoRobert Adams2-0/+4
Util.cs routines to convert region coords to and from world coords or handles.
2015-01-08Make the IteratingUuidGatherer the only UuidGatherer.Justin Clark-Casey (justincc)1-4/+6
This UUID gatherer provides a superset of the previous gatherer's functionality as it also allows the caller to control gathering iterations for load purposes.
2014-11-25refactor: Move methods to start a monitored thread, start work in its own ↵Justin Clark-Casey (justincc)1-1/+1
thread and run work in the jobengine from Watchdog to a WorkManager class. This is to achieve a clean separation of concerns - the watchdog is an inappropriate place for work management. Also adds a WorkManager.RunInThreadPool() class which feeds through to Util.FireAndForget. Also switches around the name and obj arguments to the new RunInThread() and RunJob() methods so that the callback obj comes after the callback as seen in the SDK and elsewhere
2014-11-25Add "wearables check" console commandJustin Clark-Casey (justincc)1-9/+87
This checks that all the wearable assets and any assets for a given logged in avatar exist in the asset service
2014-11-25Add "wearables show" console command.Justin Clark-Casey (justincc)1-3/+97
This shows summary wearables information (shape, hair, etc.) for all avatars in the scene or specific information about a given avatar's wearables. Similar to the existing "attachments show" command.
2014-11-25refactor: consistently put all test classes in the OpenSim.Tests.Common ↵Justin Clark-Casey (justincc)1-1/+0
package rather than some in OpenSim.Tests.Common.Mock the separate mock package was not useful and was just another using line to always add
2014-11-21Remove braindead "fix" that messed up intersim scripted giving.Melanie Thielker1-0/+17
2014-10-30Fix a potential nullref in VivoxMelanie Thielker1-0/+4
2014-09-25Add a sample use for the validationMelanie Thielker1-1/+2
2014-09-04Start long-lived thread in IRCConnector via watchdog rather than ↵Justin Clark-Casey (justincc)1-13/+5
indepedently, so that it can be seen in "show threads" and stats
2014-08-15On teleport to a region that already has a child agent established (e.g. a ↵Justin Clark-Casey (justincc)1-1/+1
neighbour) don't resend all the initial avatar and object data again. This is unnecessary since it has been received (and data continues to be received) in the existing child connection.
2014-08-12 change XMLIrpgGroups attach to events, using the more correctUbitUmarov1-7/+24
\addons\Groups\... model
2014-05-19On verbose groups messaging logging, count all operations in reported time ↵Justin Clark-Casey (justincc)1-3/+3
when sending group messages, not just those after get group members and get presence status, as applicable
2014-05-19Split verbose groups messaging logging into its own setting separate from ↵Justin Clark-Casey (justincc)1-23/+77
that of the groups module. This is to allow us to get useful information on messaging without being overwhelmed by the rest of groups debug. Enabled with [Groups] DebugMessagingEnabled = true in config (default false) Or "debug groups messaging verbose true|false on the console" (similar to existing groups setting). Done for both xmlrpc and V2 groups.
2014-05-19Fix recent regression from 77e7bbc where an attachment on a received group ↵Justin Clark-Casey (justincc)3-4/+27
notice with XmlRpcGroups messaging did not appear in the user's inventory. This was because the "session ID" when the message template was copied was always replaced with the group ID, whereas a notice requires this to be the notice ID. Instead just copy the "session ID" as is - other callers already have this set properly so replacing with group ID was redundant anyway. Relates to http://opensimulator.org/mantis/view.php?id=7037
2014-05-12For XmlRpcGroups (Flotsam) module, when MessageOnlineUsersOnly = true, ↵Justin Clark-Casey (justincc)1-13/+26
handle notices to offline users directly as known undeliverable messages rather than discarding or attempting delivery. Offline notices can still be controlled with the [Messaging] ForwardOfflineGroupMessages setting. Looks to address more of http://opensimulator.org/mantis/view.php?id=7037 Only for Flotsam now for testing, but if approach works should be possible with core offline notices as well.
2014-05-12Add send group notice regression test for when MessageOnlineUsersOnly=trueJustin Clark-Casey (justincc)1-0/+71
2014-05-12minor: eliminate unused UUID in xmlrpc ↵Justin Clark-Casey (justincc)1-2/+0
GroupsMessagingModule.ProcessMessageFromGroupSession()
2014-05-06Show more meaningful error messages when failed to give an item to another userOren Hurvitz1-2/+3
2014-04-23Eliminated many warningsOren Hurvitz2-3/+3
2014-03-25Remove the spammy "voice not enabled" message some viewers trigger in non ↵Melanie Thielker1-4/+4
voice parcels
2014-03-12When sending group notices through group messaging, allow the agent ID to ↵Justin Clark-Casey (justincc)2-6/+6
use for fetching group data to be different from im.fromAgentID This is because xmlrpcgroups currently always checks visibility for the requesting agent ID (unlike Groups v2, which can accept UUID.Zero) But group notice IMs have a from agent which is the group rather than the sending agent. Further addresses http://opensimulator.org/mantis/view.php?id=7037
2014-03-11Send group notices through the same messaging module mechanism used to send ↵Justin Clark-Casey (justincc)3-91/+151
group chat to avoid timeout issues when sending messages to large groups. Only implementing for XmlRpcGroups initially to test. May require MessageOnlineUsersOnly = true in [Groups] to be effective. In relation to http://opensimulator.org/mantis/view.php?id=7037
2014-03-07Add regression test for sending group notices via xmlrpc groups connector.Justin Clark-Casey (justincc)2-0/+56
2014-02-14Log information about which function, request data and agent ID triggered an ↵Justin Clark-Casey (justincc)1-14/+5
XmlRpcGroupsServiceConnector error
2013-12-26varregion: many more updates removing the constant RegionSize and replacingRobert Adams2-0/+4
with a passed region size. This time in the map code and grid services code.
2013-12-18Create regression test TestSendAgentGroupDataUpdate() for groups agent data ↵Justin Clark-Casey (justincc)1-3/+62
sending
2013-12-14varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams1-2/+2
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-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)4-11/+9
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-10-15Added support for attachments to group notices when using Flotsam groups.Kevin Cozens1-50/+122
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-2/+2
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-25VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-2/+2
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-08-22Stop "handle sit user name" command from trying to sit avatars on objects ↵Justin Clark-Casey (justincc)1-0/+3
which have sit positions but are attachments
2013-08-22Stop "sit user name" and "stand user name" console commands from trying to ↵Justin Clark-Casey (justincc)1-2/+8
sit/stand avatars already sitting/standing
2013-08-20Add --regex options to "sit user name" and "stand user name" console ↵Justin Clark-Casey (justincc)1-50/+81
commands to sit/stand many avatars at once. Currently, first name and last name are input separate but are concatenated with a space in the middle to form a regex. So to sit all bots with the first name "ima", for instance, the command is "sit user name --regex ima .*"
2013-08-20Add experimental "sit user name" and "stand user name" console commands in ↵Justin Clark-Casey (justincc)1-0/+180
SitStandCommandsModule. "sit user name" will currently only sit the given avatar on prims which have a sit target set and are not already sat upon. Chiefly for debug purposes.