jordansoans2002 / Games_Arcade

1 stars 0 forks source link

CowBull multiplayer GUI for multiple computers #3

Closed jordansoans2002 closed 2 years ago

jordansoans2002 commented 2 years ago
  1. All players guesses should be in the same window with only one text field. Text field should be editable only when it is that players turn.
  2. The number of player scroll panes must same as the number of players
jordansoans2002 commented 2 years ago

multiplayer gui: creates each players scrollpane but is not able to update the guesses on the GUI https://github.com/jordansoans2002/Miniproject_1B/blob/master/src/main/java/com/example/miniproject_1b/CowBull_multiplayer.java

jordansoans2002 commented 2 years ago

controller for multiplayer:

  1. calculates which player is next
  2. checks if word is valid
  3. takes word from the textfield and adds it to the guess of the player whose chance it is https://github.com/jordansoans2002/Miniproject_1B/blob/master/src/main/java/com/example/miniproject_1b/CowBull_controller.java
jordansoans2002 commented 2 years ago

GUI is fully functional with server. Server is controlled by gameplay. Controller is only setup for server, client is still not added