- Game - package Game
-
- game - Variable in class Game.Player
-
- Game - Class in GUI
-
Handles the general game logic and game user interface
- Game(Frame, boolean) - Constructor for class GUI.Game
-
Create and start a new game and window
- GameResult - Class in ScoreManagement
-
Stores the result of a game
- GameResult(User, User, User, String, int) - Constructor for class ScoreManagement.GameResult
-
Constructor
Initialize the internal variables
- games - Static variable in class ScoreManagement.ScoreManagement
-
- getApplication() - Static method in class GUI.Application
-
A convenient static getter for the application instance.
- getColumn() - Method in class Game.Disc
-
Function to get the column of the disc
- getColumnHeight(int) - Method in class Game.PlayingField
-
Get the height of the specified column.
- getComputerUsers() - Static method in class ScoreManagement.ScoreManagement
-
- getControlKeyboard() - Static method in class GUI.Options
-
- getDif() - Method in class ScoreManagement.User
-
- getDifficulty() - Static method in class GUI.Options
-
- getDiscAt(int, int) - Method in class Game.PlayingField
-
Get the disc at the specified colum and row.
- getFieldHeight() - Static method in class GUI.Options
-
- getFieldWidth() - Static method in class GUI.Options
-
- getGamesDay() - Static method in class ScoreManagement.ScoreManagement
-
- getGamesWeek() - Static method in class ScoreManagement.ScoreManagement
-
- getheight() - Method in class Game.PlayingField
-
Get the height of the playing field.
- getHumanUsers() - Static method in class ScoreManagement.ScoreManagement
-
- getID() - Method in class ScoreManagement.User
-
- getLastMove() - Method in class Game.PlayingField
-
Get the disc of the previous move.
- getName() - Method in class ScoreManagement.User
-
- getOwner() - Method in class Game.Disc
-
Function to get the owner of the disc
- getPlayer1() - Static method in class GUI.Options
-
- getPlayer2() - Static method in class GUI.Options
-
- getRow() - Method in class Game.Disc
-
Function to get the row of the disc
- getTurn() - Method in class Game.PlayingField
-
Get the player who's turn it is.
- getUserByDiff(int) - Static method in class ScoreManagement.ScoreManagement
-
Gets an User instance for the computer player with the specified difficulty level
- getUserByID(int) - Static method in class ScoreManagement.ScoreManagement
-
Gets an User instance for the given ID, or null if no such user exists
- getWidth() - Method in class Game.PlayingField
-
Get the width of the playing field.
- getWinningSequence() - Method in class Game.PlayingField
-
Function to return an array of discs that are part of the winning sequence.
- GUI - package GUI
-