From 9f6b3e2357e76b9b85b447da189b4bf4163edd3c Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Tue, 13 Nov 2007 22:48:19 +0000 Subject: * Added AvatarPicker in Standalone mode. Works for finding avatar to ban, manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done. --- OpenSim/Framework/Data/GridData.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'OpenSim/Framework/Data') diff --git a/OpenSim/Framework/Data/GridData.cs b/OpenSim/Framework/Data/GridData.cs index b3b6ed7..23e7bf6 100644 --- a/OpenSim/Framework/Data/GridData.cs +++ b/OpenSim/Framework/Data/GridData.cs @@ -26,9 +26,19 @@ * */ using libsecondlife; +using System.Collections.Generic; namespace OpenSim.Framework.Data { + public class AvatarPickerAvatar + { + public LLUUID AvatarID; + public string firstName; + public string lastName; + public AvatarPickerAvatar() + { + } + } public enum DataResponse { RESPONSE_OK, @@ -66,6 +76,8 @@ namespace OpenSim.Framework.Data /// An array containing all the sim profiles in the specified range RegionProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); + + List GeneratePickerResults(LLUUID queryID, string query); /// /// Authenticates a sim by use of it's recv key. /// WARNING: Insecure -- cgit v1.1