Map file parser and converter for the Quake FPS games
qmapc was written by Tim Schaefer, http://rcmd.org/ts/
qmapc is free software, published under the GPL license, version 2. For detailed license info, see the LICENSE file.
Not ready yet.
This project uses Maven. To build:
mvn package
Unit tests using junit are included. They should be run automatically during the build. To run them manually:
mvn test
These instructions are targeted at end users who want to build the qmapc JAR file from source. Thanks to the Maven wrapper script, this is very easy under Unix-like systems (Linux, OSX) and Windows. All you need to know is some shell basics.
- Download a copy of the qmapc repository from GitHub as a zip archive and unzip it (or just clone the repository using git in case you have that installed). See
Contributing
below for the repo URL. - Start a terminal and change into the directory that contains your copy of the repository.
cd path-to-your-downloads-dir/qmapc
- Build the software using the supplied Maven wrapper script (this will download and install the correct Maven version in case you don't have it yet):
- Linux, OSX, ... :
./mvnw clean package
- Windows:
mvnw.cmd clean package
- Linux, OSX, ... :
- You can now run the jar file that has been produced and stored in the
target
directory:java -jar target/qmapc-<VERSION>.jar -h
- Optional: copy the jar file to some convenient location, maybe add that location to your PATH environment variable.
The repo is at https://github.com/dfsp-spirit/qmapc
Take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Test your code, also make sure you agree with the license. Then send pull request.