A C F G L O R S T W 

A

AbstractTileMap - Class in org.dishevelled.piccolo.tilemap
Abstract Piccolo2D tile map node.
AbstractTileMap(long, long, double, double, Matrix2D<Sprite>) - Constructor for class org.dishevelled.piccolo.tilemap.AbstractTileMap
Create a new abstract tile map node.
AbstractTileMapReader - Class in org.dishevelled.piccolo.tilemap.io.impl
Abstract tile map reader.
AbstractTileMapReader() - Constructor for class org.dishevelled.piccolo.tilemap.io.impl.AbstractTileMapReader
 
advance() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Advance this tile map node one frame.
append(AbstractTileMap, T) - Method in interface org.dishevelled.piccolo.tilemap.io.TileMapWriter
Append the specified tile map to the specified appendable.

C

closeQuietly(InputStream) - Static method in class org.dishevelled.piccolo.tilemap.io.impl.AbstractTileMapReader
Close the specified input stream quietly.
columns() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the number of columns for this tile map node.

F

fill(Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill this tile map node with the specified tile.
fillColumn(long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill the specified column in this tile map node with the specified tile.
fillRow(long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill the specified row in this tile map node with the specified tile.
fillRowColumn(long, long, long, long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill the specified part of this tile map node with the specified tile.
fillX(long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill [x, 0] to [x, getMapHeight()] in this tile map node with the specified tile.
fillXY(long, long, long, long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill the specified part of this tile map node with the specified tile.
fillY(long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Fill [0, y] to [getMapWidth(), y] in this tile map node with the specified tile.
FlixelTileMapReader - Class in org.dishevelled.piccolo.tilemap.io.impl
Flixel tile set + CSV file format tile map reader.
FlixelTileMapReader(BufferedImage, int) - Constructor for class org.dishevelled.piccolo.tilemap.io.impl.FlixelTileMapReader
Create a new flixel tile map reader with the specified tile set image.
FlixelTileMapReader(InputStream, int, int, int) - Constructor for class org.dishevelled.piccolo.tilemap.io.impl.FlixelTileMapReader
Create a new flixel tile map reader with the specified tile set image input stream.
FlixelTileMapReader(File, int, int, int) - Constructor for class org.dishevelled.piccolo.tilemap.io.impl.FlixelTileMapReader
Create a new flixel tile map reader with the specified tile set image file.
FlixelTileMapReader(URL, int, int, int) - Constructor for class org.dishevelled.piccolo.tilemap.io.impl.FlixelTileMapReader
Create a new flixel tile map reader with the specified tile set image URL.

G

getMapHeight() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the map height in number of tiles for this tile map node.
getMapWidth() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the map width in number of tiles for this tile map node.
getTileHeight() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the tile height for this tile map node.
getTileRowColumn(long, long) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the tile at the specified row and column in this tile map node, if any.
getTileWidth() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the tile width for this tile map node.
getTileXY(long, long) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the tile at the specified x and y in this tile map node, if any.

L

layoutChildren() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
 

O

org.dishevelled.piccolo.tilemap - package org.dishevelled.piccolo.tilemap
Piccolo2D tile map nodes and supporting classes.
org.dishevelled.piccolo.tilemap.io - package org.dishevelled.piccolo.tilemap.io
Tile map readers and writers.
org.dishevelled.piccolo.tilemap.io.impl - package org.dishevelled.piccolo.tilemap.io.impl
Tile map reader and writer implementations.

R

read(File) - Method in class org.dishevelled.piccolo.tilemap.io.impl.AbstractTileMapReader
 
read(URL) - Method in class org.dishevelled.piccolo.tilemap.io.impl.AbstractTileMapReader
 
read(InputStream) - Method in class org.dishevelled.piccolo.tilemap.io.impl.FlixelTileMapReader
 
read(InputStream) - Method in class org.dishevelled.piccolo.tilemap.io.impl.TmxTileMapReader
 
read(File) - Method in interface org.dishevelled.piccolo.tilemap.io.TileMapReader
Read a tile map from the specified file.
read(URL) - Method in interface org.dishevelled.piccolo.tilemap.io.TileMapReader
Read a tile map from the specified URL.
read(InputStream) - Method in interface org.dishevelled.piccolo.tilemap.io.TileMapReader
Read a tile map from the specified input stream.
repaint() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
 
rows() - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Return the number of rows for this tile map node.

S

setTileRowColumn(long, long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Set the tile at the specified row and column in this tile map node to tile.
setTileXY(long, long, Sprite) - Method in class org.dishevelled.piccolo.tilemap.AbstractTileMap
Set the tile at the specified x and y in this tile map node to tile.
SparseTileMap - Class in org.dishevelled.piccolo.tilemap
Sparse tile map.
SparseTileMap(long, long, double, double) - Constructor for class org.dishevelled.piccolo.tilemap.SparseTileMap
Create a new sparse tile map node.
SparseTileMap(long, long, double, double, int, float) - Constructor for class org.dishevelled.piccolo.tilemap.SparseTileMap
Create a new sparse tile map node.

T

TileMapReader - Interface in org.dishevelled.piccolo.tilemap.io
Reader for tile maps.
TileMapWriter - Interface in org.dishevelled.piccolo.tilemap.io
Writer for tile maps.
TmxTileMapReader - Class in org.dishevelled.piccolo.tilemap.io.impl
TMX Map Format tile map reader.
TmxTileMapReader() - Constructor for class org.dishevelled.piccolo.tilemap.io.impl.TmxTileMapReader
Create a new TMX Map Format tile map reader.

W

write(AbstractTileMap, File) - Method in interface org.dishevelled.piccolo.tilemap.io.TileMapWriter
Write the specified tile map to the specified file.
write(AbstractTileMap, OutputStream) - Method in interface org.dishevelled.piccolo.tilemap.io.TileMapWriter
Write the specified tile map to the specified output stream.
A C F G L O R S T W 

Copyright (c) 2006-2013 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).