From 64a98c736848de6099254f23483058668273c1a5 Mon Sep 17 00:00:00 2001 From: gareth Date: Mon, 14 May 2007 03:13:47 +0000 Subject: Finished off adding the new management API to gridserver Updated VersionInfo.cs finally Updated prebuild and rebuilt nant build files Completed Management agent basics --- ExportBot/Commands/CloneProfileCommand.cs | 130 ------------------------------ 1 file changed, 130 deletions(-) delete mode 100644 ExportBot/Commands/CloneProfileCommand.cs (limited to 'ExportBot/Commands/CloneProfileCommand.cs') diff --git a/ExportBot/Commands/CloneProfileCommand.cs b/ExportBot/Commands/CloneProfileCommand.cs deleted file mode 100644 index 68712ff..0000000 --- a/ExportBot/Commands/CloneProfileCommand.cs +++ /dev/null @@ -1,130 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Threading; -using libsecondlife; -using libsecondlife.Packets; - -namespace libsecondlife.TestClient -{ - public class CloneProfileCommand : Command - { - Avatar.AvatarProperties Properties; - Avatar.Interests Interests; - private Dictionary Avatars = new Dictionary(); - List Groups = new List(); - bool ReceivedProperties = false; - bool ReceivedInterests = false; - bool ReceivedGroups = false; - ManualResetEvent ReceivedProfileEvent = new ManualResetEvent(false); - - public CloneProfileCommand(TestClient testClient) - { - testClient.Avatars.OnAvatarInterests += new AvatarManager.AvatarInterestsCallback(Avatars_OnAvatarInterests); - testClient.Avatars.OnAvatarProperties += new AvatarManager.AvatarPropertiesCallback(Avatars_OnAvatarProperties); - testClient.Avatars.OnAvatarGroups += new AvatarManager.AvatarGroupsCallback(Avatars_OnAvatarGroups); - testClient.Self.OnJoinGroup += new MainAvatar.JoinGroupCallback(Self_OnJoinGroup); - -// testClient.Self.Objects.OnNewAvatar += new ObjectManager.NewAvatarCallback(AvatarSeen); - - Name = "cloneprofile"; - Description = "Clones another avatars profile as closely as possible. WARNING: This command will " + - "destroy your existing profile! Usage: cloneprofile [targetuuid]"; - } - - /* void AvatarSeen(Simulator simulator, Avatar avatar, ulong regionHandle, ushort timeDilation) - { - lock (Avatars) - { - Avatars.Add(avatar.UUID,avatar.LocalID); - } - }*/ - - public override string Execute(string[] args, LLUUID fromAgentID) - { - if (args.Length != 1) - return Description; - - LLUUID targetID; - ReceivedProperties = false; - ReceivedInterests = false; - ReceivedGroups = false; - - try - { - targetID = new LLUUID(args[0]); - } - catch (Exception) - { - return Description; - } - - // Request all of the packets that make up an avatar profile - Client.Avatars.RequestAvatarProperties(targetID); - - // Wait for all the packets to arrive - ReceivedProfileEvent.Reset(); - ReceivedProfileEvent.WaitOne(5000, false); - - // Check if everything showed up - if (!ReceivedInterests || !ReceivedProperties || !ReceivedGroups) - return "Failed to retrieve a complete profile for that UUID"; - - Client.Self.SetAvatarInformation(); - - return "Synchronized our profile to the profile of " + targetID.ToStringHyphenated(); - } - - void Avatars_OnAvatarProperties(LLUUID avatarID, Avatar.AvatarProperties properties) - { - lock (ReceivedProfileEvent) - { - Properties = properties; - ReceivedProperties = true; - - if (ReceivedInterests && ReceivedProperties && ReceivedGroups) - ReceivedProfileEvent.Set(); - } - } - - void Avatars_OnAvatarInterests(LLUUID avatarID, Avatar.Interests interests) - { - lock (ReceivedProfileEvent) - { - Interests = interests; - ReceivedInterests = true; - - if (ReceivedInterests && ReceivedProperties && ReceivedGroups) - ReceivedProfileEvent.Set(); - } - } - - void Avatars_OnAvatarGroups(LLUUID avatarID, AvatarGroupsReplyPacket.GroupDataBlock[] groups) - { - lock (ReceivedProfileEvent) - { - foreach (AvatarGroupsReplyPacket.GroupDataBlock block in groups) - { - Groups.Add(block.GroupID); - } - - ReceivedGroups = true; - - if (ReceivedInterests && ReceivedProperties && ReceivedGroups) - ReceivedProfileEvent.Set(); - } - } - - void Self_OnJoinGroup(LLUUID groupID, bool success) - { - Console.WriteLine(Client.ToString() + (success ? " joined " : " failed to join ") + - groupID.ToStringHyphenated()); - - if (success) - { - Console.WriteLine(Client.ToString() + " setting " + groupID.ToStringHyphenated() + - " as the active group"); - Client.Self.ActivateGroup(groupID); - } - } - } -} -- cgit v1.1