mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Plumb in EventNotification* and EventGodDelete
This commit is contained in:
@@ -417,6 +417,10 @@ namespace OpenSim.Framework
|
||||
public delegate void ClassifiedInfoUpdate(UUID classifiedID, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, Vector3 globalPos, byte classifiedFlags, int price, IClientAPI client);
|
||||
public delegate void ClassifiedDelete(UUID classifiedID, IClientAPI client);
|
||||
|
||||
public delegate void EventNotificationAddRequest(uint EventID, IClientAPI client);
|
||||
public delegate void EventNotificationRemoveRequest(uint EventID, IClientAPI client);
|
||||
|
||||
public delegate void EventGodDelete(uint eventID, UUID queryID, string queryText, uint queryFlags, int queryStart, IClientAPI client);
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -733,6 +737,10 @@ namespace OpenSim.Framework
|
||||
event ClassifiedDelete OnClassifiedDelete;
|
||||
event ClassifiedDelete OnClassifiedGodDelete;
|
||||
|
||||
event EventNotificationAddRequest OnEventNotificationAddRequest;
|
||||
event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
|
||||
event EventGodDelete OnEventGodDelete;
|
||||
|
||||
// void ActivateGesture(UUID assetId, UUID gestureId);
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -279,6 +279,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
private ClassifiedDelete handlerClassifiedDelete;
|
||||
private ClassifiedDelete handlerClassifiedGodDelete;
|
||||
|
||||
private EventNotificationAddRequest handlerEventNotificationAddRequest;
|
||||
private EventNotificationRemoveRequest handlerEventNotificationRemoveRequest;
|
||||
private EventGodDelete handlerEventGodDelete;
|
||||
|
||||
private readonly IGroupsModule m_GroupsModule;
|
||||
|
||||
//private TerrainUnacked handlerUnackedTerrain = null;
|
||||
@@ -1042,6 +1046,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
public event ClassifiedDelete OnClassifiedDelete;
|
||||
public event ClassifiedDelete OnClassifiedGodDelete;
|
||||
|
||||
public event EventNotificationAddRequest OnEventNotificationAddRequest;
|
||||
public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
|
||||
public event EventGodDelete OnEventGodDelete;
|
||||
|
||||
public void ActivateGesture(UUID assetId, UUID gestureId)
|
||||
{
|
||||
}
|
||||
@@ -7280,6 +7288,42 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
this);
|
||||
break;
|
||||
|
||||
case PacketType.EventGodDelete:
|
||||
EventGodDeletePacket eventGodDelete =
|
||||
(EventGodDeletePacket)Pack;
|
||||
|
||||
handlerEventGodDelete = OnEventGodDelete;
|
||||
if (handlerEventGodDelete != null)
|
||||
handlerEventGodDelete(
|
||||
eventGodDelete.EventData.EventID,
|
||||
eventGodDelete.QueryData.QueryID,
|
||||
Utils.BytesToString(
|
||||
eventGodDelete.QueryData.QueryText),
|
||||
eventGodDelete.QueryData.QueryFlags,
|
||||
eventGodDelete.QueryData.QueryStart,
|
||||
this);
|
||||
break;
|
||||
|
||||
case PacketType.EventNotificationAddRequest:
|
||||
EventNotificationAddRequestPacket eventNotificationAdd =
|
||||
(EventNotificationAddRequestPacket)Pack;
|
||||
|
||||
handlerEventNotificationAddRequest = OnEventNotificationAddRequest;
|
||||
if (handlerEventNotificationAddRequest != null)
|
||||
handlerEventNotificationAddRequest(
|
||||
eventNotificationAdd.EventData.EventID, this);
|
||||
break;
|
||||
|
||||
case PacketType.EventNotificationRemoveRequest:
|
||||
EventNotificationRemoveRequestPacket eventNotificationRemove =
|
||||
(EventNotificationRemoveRequestPacket)Pack;
|
||||
|
||||
handlerEventNotificationRemoveRequest = OnEventNotificationRemoveRequest;
|
||||
if (handlerEventNotificationRemoveRequest != null)
|
||||
handlerEventNotificationRemoveRequest(
|
||||
eventNotificationRemove.EventData.EventID, this);
|
||||
break;
|
||||
|
||||
default:
|
||||
m_log.Warn("[CLIENT]: unhandled packet " + Pack);
|
||||
break;
|
||||
|
||||
@@ -351,6 +351,10 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
|
||||
public event ClassifiedDelete OnClassifiedDelete;
|
||||
public event ClassifiedDelete OnClassifiedGodDelete;
|
||||
|
||||
public event EventNotificationAddRequest OnEventNotificationAddRequest;
|
||||
public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
|
||||
public event EventGodDelete OnEventGodDelete;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -246,6 +246,10 @@ namespace OpenSim.Region.Examples.SimpleModule
|
||||
public event ClassifiedDelete OnClassifiedDelete;
|
||||
public event ClassifiedDelete OnClassifiedGodDelete;
|
||||
|
||||
public event EventNotificationAddRequest OnEventNotificationAddRequest;
|
||||
public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
|
||||
public event EventGodDelete OnEventGodDelete;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
private UUID myID = UUID.Random();
|
||||
|
||||
@@ -242,6 +242,10 @@ namespace OpenSim.Tests.Common.Mock
|
||||
public event ClassifiedDelete OnClassifiedDelete;
|
||||
public event ClassifiedDelete OnClassifiedGodDelete;
|
||||
|
||||
public event EventNotificationAddRequest OnEventNotificationAddRequest;
|
||||
public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
|
||||
public event EventGodDelete OnEventGodDelete;
|
||||
|
||||
#pragma warning restore 67
|
||||
|
||||
/// <value>
|
||||
|
||||
Reference in New Issue
Block a user