mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Just trying out some thing with events, there changes/additions are likely to be temporary.
This commit is contained in:
@@ -60,6 +60,14 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
|
||||
public event RemoveScript OnRemoveScript;
|
||||
|
||||
public delegate void SceneGroupMoved(LLUUID groupID, LLVector3 delta);
|
||||
|
||||
public event SceneGroupMoved OnSceneGroupMove;
|
||||
|
||||
public delegate void SceneGroupGrabed(LLUUID groupID, LLVector3 offset);
|
||||
|
||||
public event SceneGroupGrabed OnSceneGroupGrab;
|
||||
|
||||
public void TriggerPermissionError(LLUUID user, string reason)
|
||||
{
|
||||
if (OnPermissionError != null)
|
||||
@@ -153,5 +161,21 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
OnRemoveScript(localID, itemID);
|
||||
}
|
||||
}
|
||||
|
||||
public void TriggerGroupMove(LLUUID groupID, LLVector3 delta)
|
||||
{
|
||||
if (OnSceneGroupMove != null)
|
||||
{
|
||||
OnSceneGroupMove(groupID, delta);
|
||||
}
|
||||
}
|
||||
|
||||
public void TriggerGroupGrab(LLUUID groupID, LLVector3 offset)
|
||||
{
|
||||
if (OnSceneGroupGrab != null)
|
||||
{
|
||||
OnSceneGroupGrab(groupID, offset);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -931,6 +931,8 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
{
|
||||
AbsolutePosition = pos;
|
||||
ScheduleGroupForTerseUpdate();
|
||||
|
||||
m_scene.EventManager.TriggerGroupMove(this.UUID, pos);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -1279,6 +1281,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
|
||||
public virtual void OnGrabGroup(LLVector3 offsetPos, IClientAPI remoteClient)
|
||||
{
|
||||
m_scene.EventManager.TriggerGroupGrab(this.UUID, offsetPos);
|
||||
}
|
||||
|
||||
public void DeleteGroup()
|
||||
|
||||
Reference in New Issue
Block a user