- CheckersHost - Class in javacheckers.networking
-
- CheckersHost(int, String) - Constructor for class javacheckers.networking.CheckersHost
-
Create a host listening on the specified port, and start the message processing thread.
- checkMoves(Coordinate) - Method in class javacheckers.model.Board
-
Get all valid moves for a position
- checkWinCon() - Method in class javacheckers.model.Board
-
Check to see if there is a winner
- Client - Class in javacheckers.networking
-
Represents a client that can connnect to a Host
- Client(String, int) - Constructor for class javacheckers.networking.Client
-
Constructor that creates a connection to the host.
- clientConnected(int) - Method in class javacheckers.networking.CheckersHost
-
Called when a new player is connected.
- clientConnected(int) - Method in class javacheckers.networking.Client
-
Called when this client is notified that a client has connected to the host.
- clientConnected(int) - Method in class javacheckers.networking.Host
-
Called after a new client has connected
- clientDisconnected(int) - Method in class javacheckers.networking.CheckersHost
-
Called when a player disconnects.
- clientDisconnected(int) - Method in class javacheckers.networking.Client
-
Called when this client is notified that another client has disconnected from the host.
- clientDisconnected(int) - Method in class javacheckers.networking.Host
-
Called when a client disconnects
- close() - Method in class javacheckers.controller.GameController
-
Close the game
- connectedClientIDs - Variable in class javacheckers.networking.Client
-
A list of the IDs of all clients who are currently connected to the host.
- connectionClosedByError(String) - Method in class javacheckers.networking.Client
-
Called when the connection to the host is closed due to an error.
- Coordinate - Class in javacheckers.model
-
Represents x and y board coordinates
- Coordinate(int, int) - Constructor for class javacheckers.model.Coordinate
-
Create a new coordinate