
Brain01_Net.py
run.remote

	Provides a pseudo-Controller for Game01 which
	bridges the Interface using json over a TCP connection to a Brain running
	on another process.

	This is probably the easiest way to control the simulation from a
	language other than python (provided it has a json library).

Brain01_Protobuf.py
interface01.proto
interface01_pb2.py

	Protocol Buffers (Google) based controller.
	This is an alternative to Brain01_Net and allows another process to control
		the simulation via protocol buffers based messaging instead of json.

	interface01_pb2.py was generated automatically from interface01.proto with:

		protoc --python_out=. interface01.proto

Brain01_Joystick.py

	"This implementation controls each arm (depending on which side the ball is on) with a joystick.
	This is not a valid submission (has to execute without human help), but anyone with
	a joystick can now get a feel for the complexity that the intelligence needs to resolve.
	Substantial practice is needed to become even remotely good at it..." -Gerard Toonstra

