Uses of Class
mhframework.tilemap.MHMapCellAddress

Packages that use MHMapCellAddress
mhframework.tilemap   
 

Uses of MHMapCellAddress in mhframework.tilemap
 

Fields in mhframework.tilemap declared as MHMapCellAddress
protected  MHMapCellAddress MHTileMap.cursorAddress
           
 

Methods in mhframework.tilemap that return MHMapCellAddress
 MHMapCellAddress MHTileMap.getCursorAddress()
           
 MHMapCellAddress MHTileMap.mapMouse(java.awt.Point mousePoint)
          Converts mouse coordinates into a map cell address.
 MHMapCellAddress MHIsometricMap.mapMouse(java.awt.Point mousePoint)
          Converts a screen (mouse) coordinate into a map coordinate.
 MHMapCellAddress MHHexMap.mapMouse(java.awt.Point p)
           
protected  MHMapCellAddress MHStaggeredMap.tileWalk(int row, int column, int direction)
           
protected abstract  MHMapCellAddress MHIsometricMap.tileWalk(int row, int column, int direction)
          Calculates the next map position to which an actor would walk if it were in position (row, column) and travelled in the direction specified by direction.
 MHMapCellAddress MHHexMap.tileWalk(int x, int y, int direction)
           
protected  MHMapCellAddress MHDiamondMap.tileWalk(int row, int column, int direction)
           
protected  MHMapCellAddress MHIsometricMap.tileWalk(MHMapCellAddress origin, int direction)
          Calculates the next map position to which an actor would walk if it were in the position specified by origin and travelled in the direction specified by direction.
 

Methods in mhframework.tilemap with parameters of type MHMapCellAddress
protected  MHMapCellAddress MHIsometricMap.tileWalk(MHMapCellAddress origin, int direction)
          Calculates the next map position to which an actor would walk if it were in the position specified by origin and travelled in the direction specified by direction.