#####Instructions
- Get the latest release
- Get the
gogui
JAR and make sure it's available on the path. - Compile, e.g. with IntelliJ IDEA and JDK 1.8
- Fire up a terminal or run from IDEA:
ui.tui.TUI.main()
net.Server.main()
, then a number ofnet.Client.main()
- Pay attention to the console: a number of input arguments is required for both server and client, which is printed to
System.out
if incorrect syntax is used - The default
Server
host islocalhost
- Pay attention to the console: a number of input arguments is required for both server and client, which is printed to
- Let's GO!
#####Development status
- The TUI is functional, but not entirely implemented. You'll find only the two player menu works.
- The GUI can be enabled through the TUI, as the GUI only acts as a view of the Go board and the TUI handles the rest of the UI.
- The client and server don't achieve much (in fact, nothing), but they can be run while inspecting/debugging the code to see that they run fine.