package visualiser.Controllers; import javafx.fxml.FXML; import javafx.scene.control.TextField; import javafx.scene.layout.AnchorPane; import mock.app.Event; import shared.exceptions.InvalidBoatDataException; import shared.exceptions.InvalidRaceDataException; import shared.exceptions.InvalidRegattaDataException; import shared.exceptions.XMLReaderException; import java.io.IOException; import java.net.Socket; import java.net.URL; import java.util.ResourceBundle; /** * Controller for Hosting a game. */ public class HostController extends Controller { @FXML TextField gameNameField; @FXML TextField hostNameField; @FXML AnchorPane hostWrapper; @Override public void initialize(URL location, ResourceBundle resources) { } /** * Hosts a game * @throws IOException if socket cannot be connected to */ public void hostGamePressed() throws IOException{ try { Event game = Event.getEvent(); game.start(); connectSocket("localhost", 4942); } catch (InvalidRaceDataException e) { e.printStackTrace(); } catch (XMLReaderException e) { e.printStackTrace(); } catch (InvalidBoatDataException e) { e.printStackTrace(); } catch (InvalidRegattaDataException e) { e.printStackTrace(); } } /** * Connect to a socket * @param address address of the server * @param port port that the server is run off */ public void connectSocket(String address, int port) { try{ Socket socket = new Socket(address, port); hostWrapper.setVisible(false); parent.enterLobby(socket); } catch (IOException e) { /* Never reached */ } } public AnchorPane startWrapper(){ return hostWrapper; } /** * Hosts a game. */ public void hostGame(){ hostWrapper.setVisible(true); System.out.println("Reacted hostGame"); } }