|
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) |
|
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) |
|
|
void | UpdateBroker (Scene scene) |
|
void | WelcomeAvatar (ScenePresence agent, Scene scene) |
|
void | AnnounceToAgentsRegion (IScene scene, string msg) |
|
void | AnnounceToAgent (ScenePresence agent, string msg) |
|
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...
|
|
Definition at line 52 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
-
Reimplemented from OpenSim.Region.CoreModules.Avatar.Chat.ChatModule.
Definition at line 80 of file ConciergeModule.cs.