BGVS - Board Game Virtual Stadium

Inicio | Download | Documentación | JavaDoc | Acceso CVS | Links

Building BGVS

Building BGVS is pretty simple. Go to the source directory (where all *.java files resides) and do:

javac *.java

If you have ant, you also can try:

ant

this takes build.xml file and compile all according that.

Creating new players

In this version, TicTacToe is the only game implemented.

You create a new player implementing the IJugador interface, note that your new player class must provide a constructor with no parameters, any other constructor can't be used by the current class loader.

Using BGVS

At this time, only a console loader is available. In a not-so-long future, we'll get other loaders, including a GUI and a Web one.

Use the console loader as follows:

java BGVSConsoleLoader playerX playerY

playerX.class and playerY.class must exists in the current directory.