Add PlacesQuery packet
parent
c5a3ff231f
commit
d91330ea35
|
@ -754,6 +754,8 @@ namespace OpenSim.Client.MXP.ClientStack
|
|||
public event MuteListRequest OnMuteListRequest;
|
||||
public event AvatarInterestUpdate OnAvatarInterestUpdate;
|
||||
|
||||
public event PlacesQuery OnPlacesQuery;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
#endregion
|
||||
|
|
|
@ -442,6 +442,7 @@ namespace OpenSim.Framework
|
|||
public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes);
|
||||
public delegate void MuteListRequest(IClientAPI client, uint muteCRC);
|
||||
public delegate void AvatarInterestUpdate(IClientAPI client, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages);
|
||||
public delegate void PlacesQuery(UUID QueryID, UUID TransactionID, string QueryText, uint QueryFlags, byte Category, string SimName, IClientAPI client);
|
||||
|
||||
#endregion
|
||||
|
||||
|
@ -782,6 +783,8 @@ namespace OpenSim.Framework
|
|||
event AvatarNotesUpdate OnAvatarNotesUpdate;
|
||||
|
||||
event MuteListRequest OnMuteListRequest;
|
||||
|
||||
event PlacesQuery OnPlacesQuery;
|
||||
|
||||
/// <summary>
|
||||
/// Set the debug level at which packet output should be printed to console.
|
||||
|
|
|
@ -313,6 +313,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
|
||||
//private AvatarInterestUpdate handlerAvatarInterestUpdate;
|
||||
|
||||
private PlacesQuery handlerPlacesQuery;
|
||||
|
||||
private readonly IGroupsModule m_GroupsModule;
|
||||
|
||||
//private TerrainUnacked handlerUnackedTerrain = null;
|
||||
|
@ -1112,6 +1114,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
|
||||
//public event AvatarInterestUpdate OnAvatarInterestUpdate;
|
||||
|
||||
public event PlacesQuery OnPlacesQuery;
|
||||
|
||||
public void ActivateGesture(UUID assetId, UUID gestureId)
|
||||
{
|
||||
}
|
||||
|
@ -9140,6 +9144,23 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
//
|
||||
// break;
|
||||
|
||||
case PacketType.PlacesQuery:
|
||||
PlacesQueryPacket placesQueryPacket =
|
||||
(PlacesQueryPacket)Pack;
|
||||
|
||||
handlerPlacesQuery = OnPlacesQuery;
|
||||
|
||||
if (handlerPlacesQuery != null)
|
||||
handlerPlacesQuery(placesQueryPacket.AgentData.QueryID,
|
||||
placesQueryPacket.TransactionData.TransactionID,
|
||||
Utils.BytesToString(
|
||||
placesQueryPacket.QueryData.QueryText),
|
||||
placesQueryPacket.QueryData.QueryFlags,
|
||||
(byte)placesQueryPacket.QueryData.Category,
|
||||
Utils.BytesToString(
|
||||
placesQueryPacket.QueryData.SimName),
|
||||
this);
|
||||
break;
|
||||
default:
|
||||
m_log.Warn("[CLIENT]: unhandled packet " + Pack);
|
||||
break;
|
||||
|
|
|
@ -269,6 +269,8 @@ namespace OpenSim.Region.Examples.SimpleModule
|
|||
|
||||
public event AvatarInterestUpdate OnAvatarInterestUpdate;
|
||||
|
||||
public event PlacesQuery OnPlacesQuery;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
private UUID myID = UUID.Random();
|
||||
|
|
|
@ -375,6 +375,8 @@ namespace OpenSim.Region.OptionalModules.World.NPC
|
|||
|
||||
public event AvatarInterestUpdate OnAvatarInterestUpdate;
|
||||
|
||||
public event PlacesQuery OnPlacesQuery;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
#endregion
|
||||
|
|
|
@ -282,6 +282,8 @@ namespace OpenSim.Tests.Common.Mock
|
|||
|
||||
public event AvatarInterestUpdate OnAvatarInterestUpdate;
|
||||
|
||||
public event PlacesQuery OnPlacesQuery;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
/// <value>
|
||||
|
|
Loading…
Reference in New Issue