Uses of Class
com.alienfactory.javamappy.Map

Packages that use Map
com.alienfactory.javamappy Contains the core API and objects that mimic the logical structure of a .FMP Map. 
com.alienfactory.javamappy.loader These classes are only concerned with loading FMP Chunks. 
com.alienfactory.javamappy.viewer These classes, when given the relevant Mappy data objects, concern themselves with displaying Maps and Layers. 
com.alienfactory.javamappy.viewer.render These classes purely handle the rendering of blocks, allowing you to swap in and out new renderers dependent on your platform; be it an Applet, JDK 1.4, or J2ME. 
 

Uses of Map in com.alienfactory.javamappy
 

Constructors in com.alienfactory.javamappy with parameters of type Map
Layer(Map map, short[][] layerData)
          Deprecated. use @link Layer#Layer(MapHeader, short[][], Block[], AnimBlock[]) instead
 

Uses of Map in com.alienfactory.javamappy.loader
 

Methods in com.alienfactory.javamappy.loader that return Map
protected  Map MapLoader.doLoadMap(java.io.InputStream inputStream)
          Performs the actual FMP map loading.
static Map MapLoader.loadMap(java.io.InputStream inputStream)
          Helper method to create a Map from the given input stream of .FMP data.
 

Methods in com.alienfactory.javamappy.loader with parameters of type Map
 void MapLoader.DefaultChunkLoader.loadChunk(Map map)
           
 void ChunkLoaderTSTR.loadChunk(Map map)
           
 void ChunkLoaderOBFN.loadChunk(Map map)
           
 void ChunkLoaderOBDT.loadChunk(Map map)
           
 void ChunkLoaderMPHD.loadChunk(Map map)
           
 void ChunkLoaderFORM.loadChunk(Map map)
           
 void ChunkLoaderCMAP.loadChunk(Map map)
           
 void ChunkLoaderBODY.loadChunk(Map map)
           
 void ChunkLoaderBKDT.loadChunk(Map map)
           
 void ChunkLoaderBGFX.loadChunk(Map map)
           
 void ChunkLoaderATHR.loadChunk(Map map)
           
 void ChunkLoaderANDT.loadChunk(Map map)
           
abstract  void ChunkLoader.loadChunk(Map map)
          The method invoked to load the chunk.
 

Uses of Map in com.alienfactory.javamappy.viewer
 

Methods in com.alienfactory.javamappy.viewer that return Map
 Map MapViewer.getMap()
          Returns the Map associated with this viewer.
 

Constructors in com.alienfactory.javamappy.viewer with parameters of type Map
MapViewer(Map map, Renderer renderer, int viewWidth, int viewHeight)
          Creates a LayerViewer for each of the Layers in the Map.
MapViewer(Map map, Renderer renderer, int viewWidth, int viewHeight, int viewOffsetX, int viewOffsetY)
          Creates a LayerViewer for each of the Layers in the Map and places the viewing area at the given offset.
 

Uses of Map in com.alienfactory.javamappy.viewer.render
 

Constructors in com.alienfactory.javamappy.viewer.render with parameters of type Map
J2SE14Renderer(Map map)
          Uses the raw pixel data and colour map from the given Map to create images in a JDK specific manner.
J2SE14Renderer(Map map, java.io.InputStream tileSheet, boolean block0included)
          Loads the tile sheet image from the given Input Stream (which is not closed).
JDK11Renderer(Map map)
          Uses the raw pixel data and colour map from the given Map to create the solid and transparent images in a JDK specific manner.
JDK12Renderer(Map map)
          Uses the raw pixel data and colour map from the given Map to create the solid and transparent images in a JDK specific manner.
MIDP10Renderer(Map map)
          Uses the raw pixel data and colour map from the given Map to create the opaque tilemap image.
MIDP10Renderer(Map map, java.lang.String tileSheetFileName, boolean block0included)
          Initialises itself from the given tileset image.
MIDP10RendererAlt(Map map, java.lang.String[] tileSheetFileNames, boolean block0included)
          Initialises itself from the given array of tile sheet images.
MIDP20Renderer(Map map)
          Uses the raw pixel data and colour map from the given Map to create the tilemap image.
MIDP20Renderer(Map map, java.lang.String tileSheetFileName, boolean block0included)
          Initialises itself from the given tileset image.
NokiaRenderer(Map map)
          Uses the raw pixel data and colour map from the given Map to create the tilemap image.
NokiaRenderer(Map map, java.lang.String fileName, boolean block0included)
          Initialises itself from the given tileset image.
 



Copyright © 2001-2009 Alien-Factory Ltd. All Rights Reserved.