|
|
|
|
@ -3,13 +3,11 @@ package visualiser.Controllers;
|
|
|
|
|
import javafx.collections.FXCollections;
|
|
|
|
|
import javafx.collections.ObservableList;
|
|
|
|
|
import javafx.fxml.FXML;
|
|
|
|
|
import javafx.scene.control.Button;
|
|
|
|
|
import javafx.scene.control.TableColumn;
|
|
|
|
|
import javafx.scene.control.TableView;
|
|
|
|
|
import javafx.scene.control.TextField;
|
|
|
|
|
import javafx.scene.control.*;
|
|
|
|
|
import javafx.scene.layout.AnchorPane;
|
|
|
|
|
import visualiser.model.RaceConnection;
|
|
|
|
|
|
|
|
|
|
import javax.xml.soap.Text;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.net.Socket;
|
|
|
|
|
import java.net.URL;
|
|
|
|
|
@ -35,6 +33,46 @@ public class ConnectionController extends Controller {
|
|
|
|
|
@FXML
|
|
|
|
|
private TextField portField;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*Title Screen fxml items*/
|
|
|
|
|
@FXML
|
|
|
|
|
private Button hostGameTitleBtn;
|
|
|
|
|
@FXML
|
|
|
|
|
private Button connectGameBtn;
|
|
|
|
|
@FXML
|
|
|
|
|
private RadioButton nightRadioBtn;
|
|
|
|
|
@FXML
|
|
|
|
|
private RadioButton dayRadioButton;
|
|
|
|
|
|
|
|
|
|
/*Lobby fxml items*/
|
|
|
|
|
@FXML
|
|
|
|
|
private TableView lobbyTable;
|
|
|
|
|
@FXML
|
|
|
|
|
private TableColumn gameNameColumn;
|
|
|
|
|
@FXML
|
|
|
|
|
private TableColumn hostNameColumn;
|
|
|
|
|
@FXML
|
|
|
|
|
private TableColumn playerCountColumn;
|
|
|
|
|
@FXML
|
|
|
|
|
private TextField playerNameField;
|
|
|
|
|
@FXML
|
|
|
|
|
private Button joinGameBtn;
|
|
|
|
|
|
|
|
|
|
/*Host game fxml items*/
|
|
|
|
|
@FXML
|
|
|
|
|
private TextField gameNameField;
|
|
|
|
|
@FXML
|
|
|
|
|
private TextField hostNameField;
|
|
|
|
|
@FXML
|
|
|
|
|
private TextField hostGameBtn;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private ObservableList<RaceConnection> connections;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|