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

Public Member Functions

override 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...
 
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 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...
 
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...
 
- Public Member Functions inherited from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule
virtual void Close ()
 This is the inverse to Initialise. After a Close(), this instance won't be usable anymore. More...
 
void OnRegisterCaps (UUID agentID, Caps caps)
 
string MapLayerRequest (string request, string path, string param, UUID agentID, Caps caps)
 Callback for a map layer request More...
 
LLSDMapLayerResponse GetMapLayer (LLSDMapRequest mapReq)
 
virtual void HandleMapItemRequest (IClientAPI remoteClient, uint flags, uint EstateID, bool godlike, uint itemtype, ulong regionhandle)
 
void process ()
 Processing thread main() loop for doing remote mapitem requests More...
 
void RequestMapItems (string httpserver, UUID id, uint flags, uint EstateID, bool godlike, uint itemtype, ulong regionhandle)
 Enqueue the MapItem request for remote processing More...
 
void RequestMapBlocks (IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag)
 Requests map blocks in area of minX, maxX, minY, MaxY in world cordinates More...
 
void MapBlockFromGridRegion (MapBlockData block, GridRegion r, uint flag)
 
Hashtable OnHTTPThrottled (Hashtable keysvals)
 
Hashtable OnHTTPGetMapImage (Hashtable keysvals)
 
void HandleExportWorldMapConsoleCommand (string module, string[] cmdparams)
 Export the world map More...
 
void HandleGenerateMapConsoleCommand (string module, string[] cmdparams)
 
OSD HandleRemoteMapItemRequest (string path, OSD request, string endpoint)
 
void GenerateMaptile ()
 Generate a map tile for the scene. a terrain texture for this scene More...
 
void OnRegionUp (GridRegion otherRegion)
 

Protected Member Functions

override List< MapBlockDataGetAndSendBlocksInternal (IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag)
 
- Protected Member Functions inherited from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule
virtual void AddHandlers ()
 
virtual void RemoveHandlers ()
 
virtual List< MapBlockDataGetAndSendBlocks (IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag)
 
void MapBlockSendThread ()
 

Properties

override string Name [get]
 
- Properties inherited from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule
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...
 

Additional Inherited Members

- Static Protected Member Functions inherited from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule
static OSDMapLayer GetOSDMapLayerResponse ()
 
- Protected Attributes inherited from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule
Scene m_scene
 
volatile bool m_Enabled = false
 

Detailed Description

Definition at line 46 of file HGWorldMapModule.cs.

Member Function Documentation

override void OpenSim.Region.CoreModules.Hypergrid.HGWorldMapModule.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.World.WorldMap.WorldMapModule.

Definition at line 79 of file HGWorldMapModule.cs.

override List<MapBlockData> OpenSim.Region.CoreModules.Hypergrid.HGWorldMapModule.GetAndSendBlocksInternal ( IClientAPI  remoteClient,
int  minX,
int  minY,
int  maxX,
int  maxY,
uint  flag 
)
inlineprotectedvirtual

Reimplemented from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule.

Definition at line 141 of file HGWorldMapModule.cs.

override void OpenSim.Region.CoreModules.Hypergrid.HGWorldMapModule.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.World.WorldMap.WorldMapModule.

Definition at line 59 of file HGWorldMapModule.cs.

override void OpenSim.Region.CoreModules.Hypergrid.HGWorldMapModule.RegionLoaded ( Scene  scene)
inlinevirtual

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

Reimplemented from OpenSim.Region.CoreModules.World.WorldMap.WorldMapModule.

Definition at line 89 of file HGWorldMapModule.cs.

override void OpenSim.Region.CoreModules.Hypergrid.HGWorldMapModule.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.World.WorldMap.WorldMapModule.

Definition at line 104 of file HGWorldMapModule.cs.

Property Documentation

override string OpenSim.Region.CoreModules.Hypergrid.HGWorldMapModule.Name
get

Definition at line 113 of file HGWorldMapModule.cs.


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