OpenSim
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
Classes | Public Member Functions | Protected Member Functions | Properties | List of all members
OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule Class Reference
Inheritance diagram for OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule:
Inheritance graph
[legend]
Collaboration diagram for OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule:
Collaboration graph
[legend]

Classes

class  BrokerState
 

Public Member Functions

override void Initialise (IConfigSource config)
 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...
 
override 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...
 
override 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...
 
override void PostInitialise ()
 This is called exactly once after all the shared region-modules have been instanciated and IRegionModuleBase.Initialised. More...
 
override void Close ()
 This is the inverse to Initialise. After a Close(), this instance won't be usable anymore. More...
 
override void OnChatBroadcast (Object sender, OSChatMessage c)
 
override void OnChatFromClient (Object sender, OSChatMessage c)
 
override void OnChatFromWorld (Object sender, OSChatMessage c)
 
override void OnNewClient (IClientAPI client)
 
void OnClientLoggedOut (IClientAPI client)
 
void OnMakeRootAgent (ScenePresence agent)
 
void OnMakeChildAgent (ScenePresence agent)
 
XmlRpcResponse XmlRpcUpdateWelcomeMethod (XmlRpcRequest request, IPEndPoint remoteClient)
 
- Public Member Functions inherited from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule
virtual 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 ParcelFreezeUser (IClientAPI client, UUID parcelowner, uint flags, UUID target)
 

Protected Member Functions

void UpdateBroker (Scene scene)
 
void WelcomeAvatar (ScenePresence agent, Scene scene)
 
void AnnounceToAgentsRegion (IScene scene, string msg)
 
void AnnounceToAgent (ScenePresence agent, string msg)
 
- Protected Member Functions inherited from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule
OSChatMessage FixPositionOfChatMessage (OSChatMessage c)
 
virtual void DeliverChatToAvatars (ChatSourceType sourceType, OSChatMessage c)
 
virtual bool TrySendChatMessage (ScenePresence presence, Vector3 fromPos, Vector3 regionPos, UUID fromAgentID, UUID ownerID, string fromName, ChatTypeEnum type, string message, ChatSourceType src, bool ignoreDistance)
 Try to send a message to the given presence More...
 

Properties

new Type ReplaceableInterface [get]
 
override string Name [get]
 
- Properties inherited from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule
Type ReplaceableInterface [get]
 
virtual string Name [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 52 of file ConciergeModule.cs.

Member Function Documentation

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.AddRegion ( Scene  scene)
inlinevirtual

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

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 140 of file ConciergeModule.cs.

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.AnnounceToAgent ( ScenePresence  agent,
string  msg 
)
inlineprotected

Definition at line 541 of file ConciergeModule.cs.

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.AnnounceToAgentsRegion ( IScene  scene,
string  msg 
)
inlineprotected

Definition at line 525 of file ConciergeModule.cs.

Here is the call graph for this function:

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.Close ( )
inlinevirtual

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

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 210 of file ConciergeModule.cs.

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.Initialise ( IConfigSource  source)
inlinevirtual

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

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 80 of file ConciergeModule.cs.

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnChatBroadcast ( Object  sender,
OSChatMessage  c 
)
inlinevirtual

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 226 of file ConciergeModule.cs.

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnChatFromClient ( Object  sender,
OSChatMessage  c 
)
inlinevirtual

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 239 of file ConciergeModule.cs.

Here is the call graph for this function:

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnChatFromWorld ( Object  sender,
OSChatMessage  c 
)
inlinevirtual

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 273 of file ConciergeModule.cs.

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnClientLoggedOut ( IClientAPI  client)
inline

Definition at line 309 of file ConciergeModule.cs.

Here is the call graph for this function:

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnMakeChildAgent ( ScenePresence  agent)
inline

Definition at line 338 of file ConciergeModule.cs.

Here is the call graph for this function:

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnMakeRootAgent ( ScenePresence  agent)
inline

Definition at line 324 of file ConciergeModule.cs.

Here is the call graph for this function:

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.OnNewClient ( IClientAPI  client)
inlinevirtual

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 299 of file ConciergeModule.cs.

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.PostInitialise ( )
inlinevirtual

This is called exactly once after all the shared region-modules have been instanciated and IRegionModuleBase.Initialised.

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 206 of file ConciergeModule.cs.

override void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.RemoveRegion ( Scene  scene)
inlinevirtual

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

Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.

Definition at line 172 of file ConciergeModule.cs.

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.UpdateBroker ( Scene  scene)
inlineprotected

Definition at line 365 of file ConciergeModule.cs.

void OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.WelcomeAvatar ( ScenePresence  agent,
Scene  scene 
)
inlineprotected

Definition at line 476 of file ConciergeModule.cs.

XmlRpcResponse OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.XmlRpcUpdateWelcomeMethod ( XmlRpcRequest  request,
IPEndPoint  remoteClient 
)
inline

Definition at line 570 of file ConciergeModule.cs.

Property Documentation

override string OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.Name
get

Definition at line 220 of file ConciergeModule.cs.

new Type OpenSim.Region.OptionalModules.Avatar.Concierge.ConciergeModule.ReplaceableInterface
get

Definition at line 215 of file ConciergeModule.cs.


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