Skip to content

skylogic004/conquest-engine-gui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project adds an interactive visual map to see the outcome of each round. Just add your own bots as per usual.

See compileAndRun.sh for example of compiling and running.

alt tag

Compile as follows: Windows (from cmd):

[go to the directory containing the .java files]
dir /b /s *.java>sources.txt
md classes
javac -d classes @sources.txt
del sources.txt
copy images/* classes/

Linux:

[go to the directory containing the .java files]
ls *.java > sources.txt
mkdir classes
javac -d classes @sources.txt
rm sources.txt
cp images/* classes/

Then to run:

cd classes
java main.RunGame 0 0 0 "java bot.BotStarter" "java bot.BotStarter" 2>err.txt 1>out.txt

change the bots according to your own bots, error log will be outputted to err.txt and out log will be outputted to out.txt

About

The Conquest game engine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.7%
  • Shell 0.3%