7.6 KiB
BWMirror API
This is the BWMirror Generator which is used to generate the Java classes that will mirror the ones found in BWAPI and automatically generate the C++ JNI glue that makes it all work.
Usage
Including BWMirror in your project
If your project uses Maven, you can add a dependency to BWMirror:
<dependency>
<groupId>com.github.gered</groupId>
<artifactId>bwmirror</artifactId>
<version>2.6</version>
</dependency>
If not, you can download the BWMirror JAR file from the releases page and include it as a dependency in your project.
Example code
public class ExampleBot {
public void run() {
final Mirror mirror = new Mirror();
mirror.getModule().setEventListener(new DefaultBWListener() {
@Override
public void onStart() {
System.out.println("Starting game");
BWTA.readMap();
BWTA.analyze();
}
@Override
public void onEnd(boolean b) {
System.out.println("Game has ended");
}
@Override
public void onFrame() {
Game game = mirror.getGame();
Player self = game.self();
// TODO: awesome AI code here
}
});
// blocks indefinitely
mirror.startGame();
}
public static void main(String... args) {
new TestBot().run();
}
}
Building BWMirror
This is a fair bit involved due to the nature of the project. If you want to contribute to BWMirror, read on.
Installing Pre-Requisites
There are a number of pre-requisites needed before you can get started with the things in this repository.
JDK 7 or 8
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
You can build BWMirror with a 64-bit JDK, but in order to run/test BWMirror bots, you will need a 32-bit JRE. If you don't want to install both, grab the 32-bit JDK (x86) to make things simpler.
Once you've installed it (or if you already have it installed), take note of the directory where it was installed to. Create an environment variable JAVA_HOME
that has the location of the root JDK directory. e.g. "C:\Program Files (x86)\Java\jdk1.8.0_121".
It might also be helpful to add the JDK bin
directory to your PATH
so you can run java
directly from a command prompt if needed.
Maven
https://maven.apache.org/download.cgi
Download and extract the "Binary zip archive" file and extract it's contents somewhere. If you didn't already have this installed, you'll probably also want to add the Maven bin
directory that was in the files you extracted to your PATH
so you can run mvn
directly from a command prompt.
Java IDE
Not a requirement technically, but if you're looking at BWMirror then you're probably intending on developing a bot with Java, so you'll probably want to get a nice IDE. I personally use IntelliJ. For the remainder of these instructions I will assume you have some kind of IDE that can open Maven projects.
Visual Studio 2013
https://www.visualstudio.com/vs/older-downloads/
Older versions probably won't work. Either get the "Express for Desktop" or "Community" edition. I personally use the Community edition.
BWAPI 4.1.2
https://github.com/bwapi/bwapi/releases
Download the installer "BWAPI_412_Setup.exe" and install BWAPI. Take note of where you install it to and create an environment variable BWAPI_HOME
that has this directory. e.g. "C:\Program Files (x86)\BWAPI"
BWTA 2.2.7
https://bitbucket.org/auriarte/bwta2/downloads/
Download and extract the BWTA files somewhere and take note of the location you extracted them to, creating a BWTA_HOME
environment variable that points to this same location. e.g. "C:\dev\BWTAlib_2.2"
Running the Generator
If you've not already done so, clone the BWMirror-Generator repository.
Open the Java Maven project in the /generator
directory in your Java IDE.
This project is pretty much intended to only be run from an IDE. Build and run the project, using the main
method class bwmirror.generator.CJavaPipeline
. Assuming everything so far has been done correctly, this should complete without errors (you can ignore text spam about skipping files, etc from between the "Phase 1 & 2" and "Phase 3" output).
If you run into problems with paths not being found, double check that your environment variables have all been set up correctly (if you already had your IDE open when you were creating these, you may have to re-open it completely). Also in the project run configuration, try explicitly setting the working directory to be same as the /generator
directory in the repository.
Once you've run it succesfully ...
The generator should have created a few things for us:
- BWAPI and BWTA Java classes under
/bwmirror/src/main/java
- C++ JNI sources under
/output/bwapi_bridge_src
- Intermediate JNI headers and Java compiled class files under
/output/compiled
and/output/headers
. However we don't really care about either of these, the previous two items are what we really want.
Note that the /manual-bwapi-src
directory has Java sources that will also be copied as-is to /bwmirror/src/main/java/bwapi
. You can edit these classes from within /manual-bwapi-src
as needed without worrying about auto-generated code or other build operations clobbering your changes.
Building bwapi_bridge.dll
Open the Visual Studio 2013 project under /bwapi_bridge
(bwapi_bridge.sln).
Select the "Release" configuration and build the project. Again, assuming everything up until now has been done correctly, this should complete without errors.
Build errors could occur if you have incorrectly set your JAVA_HOME
, BWAPI_HOME
and/or BWTA_HOME
environment variables or you installed (or already had installed) the wrong/older versions of BWAPI or BWTA.
When built successfully, you should see that bwapi_bridge.dll
was copied from the build output to /bwmirror/src/main/resources
.
Building and Testing BWMirror
Open the Java Maven project in the /bwmirror
directory in your Java IDE.
This is the main BWMirror Java library. You should see all of the following at this point:
/src/main/java
has the generated Java classes sources for BWAPI and BWTA./src/main/resources
hasbwapi_bridge.dll
,libgmp-10.dll
andlibmpfr-4.dll
as well as a sub-directorybwapi-data/BWTA2
with a number of.bwta
files in them (for the SSCAI maps)./src/test/java
has a simple test bot that can be run to verify everything is working.
You can build and install BWMirror to your local Maven repository either within your IDE, or running mvn install
from the command line within the /bwmirror
directory. Or if you just want to use a JAR file directly, run the Maven package
command (or mvn package
from the command line) and you should find the JAR file under /bwmirror/target/bwmirror-X.Y.jar
where "X.Y" is the version number).
To run the included test bot to verify everything, set up a run configuration in your IDE to run the project using the main
method class bwmirror.TestBot
. Once running and you see that it's waiting to connect to a Broodwar instance, run Chaoslauncher from your BWAPI installation and start up Broodwar and create a single player melee game with yourself and 1 computer player. Once in game, you should see some extra text display and your workers should start gathering minerals and new workers should start getting trained. The bot doesn't do anything else really, but this is a good test of everything.
License
Licensed under LGPL3. See LICENSE
for more details.