OpenSim
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
Classes | Public Member Functions | Properties | List of all members
OpenSim.Tests.Common.TestEventQueueGetModule Class Reference
Inheritance diagram for OpenSim.Tests.Common.TestEventQueueGetModule:
Inheritance graph
[legend]
Collaboration diagram for OpenSim.Tests.Common.TestEventQueueGetModule:
Collaboration graph
[legend]

Classes

class  Event
 

Public Member Functions

void Initialise (IConfigSource source)
 This is called to initialize the region module. For shared modules, this is called exactly once, after creating the single (shared) instance. For non-shared modules, this is called once on each instance, after the instace for the region has been created. More...
 
void Close ()
 This is the inverse to Initialise. After a Close(), this instance won't be usable anymore. More...
 
void AddRegion (Scene scene)
 This is called whenever a Scene is added. For shared modules, this can happen several times. For non-shared modules, this happens exactly once, after Initialise has been called. More...
 
void RemoveRegion (Scene scene)
 This is called whenever a Scene is removed. For shared modules, this can happen several times. For non-shared modules, this happens exactly once, if the scene this instance is associated with is removed. More...
 
void RegionLoaded (Scene scene)
 This will be called once for every scene loaded. In a shared module this will be multiple times in one instance, while a nonshared module instance will only be called once. This method is called after AddRegion has been called in all modules for that scene, providing an opportunity to request another module's interface, or hook an event from another module. More...
 
void ClearEvents ()
 
bool Enqueue (OSD o, UUID avatarID)
 
void DisableSimulator (ulong handle, UUID avatarID)
 
void EnableSimulator (ulong handle, IPEndPoint endPoint, UUID avatarID, int regionSizeX, int regionSizeY)
 
void EstablishAgentCommunication (UUID avatarID, IPEndPoint endPoint, string capsPath, ulong regionHandle, int regionSizeX, int regionSizeY)
 
void TeleportFinishEvent (ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, uint locationID, uint flags, string capsURL, UUID agentID, int regionSizeX, int regionSizeY)
 
void CrossRegion (ulong handle, Vector3 pos, Vector3 lookAt, IPEndPoint newRegionExternalEndPoint, string capsURL, UUID avatarID, UUID sessionID, int regionSizeX, int regionSizeY)
 
void ChatterboxInvitation (UUID sessionID, string sessionName, UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog, uint timeStamp, bool offline, int parentEstateID, Vector3 position, uint ttl, UUID transactionID, bool fromGroup, byte[] binaryBucket)
 
void ChatterBoxSessionAgentListUpdates (UUID sessionID, UUID fromAgent, UUID toAgent, bool canVoiceChat, bool isModerator, bool textMute)
 
void ParcelProperties (OpenMetaverse.Messages.Linden.ParcelPropertiesMessage parcelPropertiesMessage, UUID avatarID)
 
void GroupMembership (OpenMetaverse.Packets.AgentGroupDataUpdatePacket groupUpdate, UUID avatarID)
 
OSD ScriptRunningEvent (UUID objectID, UUID itemID, bool running, bool mono)
 
OSD BuildEvent (string eventName, OSD eventBody)
 
void partPhysicsProperties (uint localID, byte physhapetype, float density, float friction, float bounce, float gravmod, UUID avatarID)
 
- Public Member Functions inherited from OpenSim.Region.Framework.Interfaces.IEventQueue
void ParcelProperties (ParcelPropertiesMessage parcelPropertiesMessage, UUID avatarID)
 
void GroupMembership (AgentGroupDataUpdatePacket groupUpdate, UUID avatarID)
 

Properties

Dictionary< UUID, List< Event > > Events [get, set]
 
string Name [get]
 
Type ReplaceableInterface [get]
 
- Properties inherited from OpenSim.Region.Framework.Interfaces.IRegionModuleBase
string Name [get]
 
Type ReplaceableInterface [get]
 If this returns non-null, it is the type of an interface that this module intends to register. This will cause the loader to defer loading of this module until all other modules have been loaded. If no other module has registered the interface by then, this module will be activated, else it will remain inactive, letting the other module take over. This should return non-null ONLY in modules that are intended to be easily replaceable, e.g. stub implementations that the developer expects to be replaced by third party provided modules. More...
 

Detailed Description

Definition at line 47 of file TestEventQueueGetModule.cs.

Member Function Documentation

void OpenSim.Tests.Common.TestEventQueueGetModule.AddRegion ( Scene  scene)
inline

This is called whenever a Scene is added. For shared modules, this can happen several times. For non-shared modules, this happens exactly once, after Initialise has been called.

Parameters
sceneA Scene

Implements OpenSim.Region.Framework.Interfaces.IRegionModuleBase.

Definition at line 67 of file TestEventQueueGetModule.cs.

OSD OpenSim.Tests.Common.TestEventQueueGetModule.BuildEvent ( string  eventName,
OSD  eventBody 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.ChatterboxInvitation ( UUID  sessionID,
string  sessionName,
UUID  fromAgent,
string  message,
UUID  toAgent,
string  fromName,
byte  dialog,
uint  timeStamp,
bool  offline,
int  parentEstateID,
Vector3  position,
uint  ttl,
UUID  transactionID,
bool  fromGroup,
byte[]  binaryBucket 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.ChatterBoxSessionAgentListUpdates ( UUID  sessionID,
UUID  fromAgent,
UUID  toAgent,
bool  canVoiceChat,
bool  isModerator,
bool  textMute 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.ClearEvents ( )
inline

Definition at line 100 of file TestEventQueueGetModule.cs.

void OpenSim.Tests.Common.TestEventQueueGetModule.Close ( )
inline

This is the inverse to Initialise. After a Close(), this instance won't be usable anymore.

Implements OpenSim.Region.Framework.Interfaces.IRegionModuleBase.

Definition at line 65 of file TestEventQueueGetModule.cs.

void OpenSim.Tests.Common.TestEventQueueGetModule.CrossRegion ( ulong  handle,
Vector3  pos,
Vector3  lookAt,
IPEndPoint  newRegionExternalEndPoint,
string  capsURL,
UUID  avatarID,
UUID  sessionID,
int  regionSizeX,
int  regionSizeY 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.DisableSimulator ( ulong  handle,
UUID  avatarID 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.EnableSimulator ( ulong  handle,
IPEndPoint  endPoint,
UUID  avatarID,
int  regionSizeX,
int  regionSizeY 
)
inline
bool OpenSim.Tests.Common.TestEventQueueGetModule.Enqueue ( OSD  o,
UUID  avatarID 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.EstablishAgentCommunication ( UUID  avatarID,
IPEndPoint  endPoint,
string  capsPath,
ulong  regionHandle,
int  regionSizeX,
int  regionSizeY 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.GroupMembership ( OpenMetaverse.Packets.AgentGroupDataUpdatePacket  groupUpdate,
UUID  avatarID 
)
inline

Definition at line 160 of file TestEventQueueGetModule.cs.

void OpenSim.Tests.Common.TestEventQueueGetModule.Initialise ( IConfigSource  source)
inline

This is called to initialize the region module. For shared modules, this is called exactly once, after creating the single (shared) instance. For non-shared modules, this is called once on each instance, after the instace for the region has been created.

Parameters
sourceA IConfigSource

Implements OpenSim.Region.Framework.Interfaces.IRegionModuleBase.

Definition at line 63 of file TestEventQueueGetModule.cs.

void OpenSim.Tests.Common.TestEventQueueGetModule.ParcelProperties ( OpenMetaverse.Messages.Linden.ParcelPropertiesMessage  parcelPropertiesMessage,
UUID  avatarID 
)
inline

Definition at line 155 of file TestEventQueueGetModule.cs.

void OpenSim.Tests.Common.TestEventQueueGetModule.partPhysicsProperties ( uint  localID,
byte  physhapetype,
float  density,
float  friction,
float  bounce,
float  gravmod,
UUID  avatarID 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.RegionLoaded ( Scene  scene)
inline

This will be called once for every scene loaded. In a shared module this will be multiple times in one instance, while a nonshared module instance will only be called once. This method is called after AddRegion has been called in all modules for that scene, providing an opportunity to request another module's interface, or hook an event from another module.

Parameters
sceneA Scene

Implements OpenSim.Region.Framework.Interfaces.IRegionModuleBase.

Definition at line 75 of file TestEventQueueGetModule.cs.

void OpenSim.Tests.Common.TestEventQueueGetModule.RemoveRegion ( Scene  scene)
inline

This is called whenever a Scene is removed. For shared modules, this can happen several times. For non-shared modules, this happens exactly once, if the scene this instance is associated with is removed.

Parameters
sceneA Scene

Implements OpenSim.Region.Framework.Interfaces.IRegionModuleBase.

Definition at line 73 of file TestEventQueueGetModule.cs.

OSD OpenSim.Tests.Common.TestEventQueueGetModule.ScriptRunningEvent ( UUID  objectID,
UUID  itemID,
bool  running,
bool  mono 
)
inline
void OpenSim.Tests.Common.TestEventQueueGetModule.TeleportFinishEvent ( ulong  regionHandle,
byte  simAccess,
IPEndPoint  regionExternalEndPoint,
uint  locationID,
uint  flags,
string  capsURL,
UUID  agentID,
int  regionSizeX,
int  regionSizeY 
)
inline

Property Documentation

Dictionary<UUID, List<Event> > OpenSim.Tests.Common.TestEventQueueGetModule.Events
getset

Definition at line 61 of file TestEventQueueGetModule.cs.

string OpenSim.Tests.Common.TestEventQueueGetModule.Name
get

Definition at line 77 of file TestEventQueueGetModule.cs.

Type OpenSim.Tests.Common.TestEventQueueGetModule.ReplaceableInterface
get

Definition at line 79 of file TestEventQueueGetModule.cs.


The documentation for this class was generated from the following file: