|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MapCanvas
Represents a canvas for drawing to a map. Each canvas is associated with a
specific MapRenderer
and represents that renderer's layer on the map.
Method Summary | |
---|---|
void |
drawImage(int x,
int y,
Image image)
Draw an image to the map. |
void |
drawText(int x,
int y,
MapFont font,
String text)
Render text to the map using fancy formatting. |
byte |
getBasePixel(int x,
int y)
Get a pixel from the layers below this canvas. |
MapCursorCollection |
getCursors()
Get the cursor collection associated with this canvas. |
MapView |
getMapView()
Get the map this canvas is attached to. |
byte |
getPixel(int x,
int y)
Get a pixel from the canvas. |
void |
setCursors(MapCursorCollection cursors)
Set the cursor collection associated with this canvas. |
void |
setPixel(int x,
int y,
byte color)
Draw a pixel to the canvas. |
Method Detail |
---|
MapView getMapView()
MapCursorCollection getCursors()
void setCursors(MapCursorCollection cursors)
cursors
- The MapCursorCollection to associate with this canvas.void setPixel(int x, int y, byte color)
x
- The x coordinate, from 0 to 127.y
- The y coordinate, from 0 to 127.color
- The color. See MapPalette
.byte getPixel(int x, int y)
x
- The x coordinate, from 0 to 127.y
- The y coordinate, from 0 to 127.
MapPalette
.byte getBasePixel(int x, int y)
x
- The x coordinate, from 0 to 127.y
- The y coordinate, from 0 to 127.
MapPalette
.void drawImage(int x, int y, Image image)
x
- The x coordinate of the image.y
- The y coordinate of the image.image
- The Image to draw.void drawText(int x, int y, MapFont font, String text)
MapPalette
).
x
- The column to start rendering on.y
- The row to start rendering on.font
- The font to use.text
- The formatted text to render.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |