I'm currently working on recreating Othello inside a terminal, and I need some help when it comes to determining whose move it is. I would like only one person to be able to type in their move at a time. Also it should send a message to each player telling whose move it is. The best way to implement this is to have two Scanners running in each application - one listening to the terminal and one to the keyboard. But how do I do this? Thanks. I referenced this, but I can't get it to work for some reason...I'm a little lost when it comes to the Protocol class.
http://docs.oracle.com/javase/tutorial/networking/sockets/clientServer.html