Package com.chess.backend.gamemodel
Class Position
java.lang.Object
com.chess.backend.gamemodel.Position
Represents a position (x and y coordinates).
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the position at the bottom of the current position.Returns the position diagonally at the bottom left of the current position.Returns the position diagonally at the bottom right of the current position.Returns the position diagonally at the front left of the current position.Returns the position diagonally at the front right of the current position.boolean
Returns the position at the top of the current position.getPosFromDir
(IBoard chessboard, Position.Direction direction) int
hashCode()
Returns the position left to the current position.Returns the position right to the current position.toString()
-
Constructor Details
-
Position
public Position(int x, int y)
-
-
Method Details
-
left
Returns the position left to the current position.Left border can not be crossed.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position left to the current position
-
right
Returns the position right to the current position.Right border can not be crossed.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position right to the current position
-
forward
Returns the position at the top of the current position.In reality there is no top and bottom, because squares[][] represents a circle. Therefore these must be linked.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position at the top of the current position
-
backward
Returns the position at the bottom of the current position.In reality there is no top and bottom, because squares[][] represents a circle. Therefore these must be linked.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position at the bottom of the current position
-
diagBL
Returns the position diagonally at the bottom left of the current position.Composition of backwards/bottom and left.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position diagonally at the bottom left of the current position
-
diagBR
Returns the position diagonally at the bottom right of the current position.Composition of backwards/bottom and right.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position diagonally at the bottom right of the current position
-
diagFL
Returns the position diagonally at the front left of the current position.Composition of forward/top and left.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position diagonally at the front left of the current position
-
diagFR
Returns the position diagonally at the front right of the current position.Composition of forward/top and right.
- Parameters:
chessboard
- Chessboard context- Returns:
- Position diagonally at the front right of the current position
-
getPosFromDir
-
toString
-
equals
-
hashCode
public int hashCode()
-