New page on wiki:
http://www.victoryengine.org/index.php/DownloadOld information below-----------------------------------------
UsersTutorial on WikiDevelopersFirst, make sure that you have JDK 6
Download hereGuide for eclipse usersInstallation of Eclipse- Download and install eclipse
- Download and install
SubversiveImporting from SVN- Open eclipse. If you want, switch to a special OpenWar workspace
- Go to File -> New -> Project
- Select SVN -> Projects from SVN
If you have not previously imported a project from SVN:
- Create a new repository location
- URL = svn://victoryengine.org/home/svn/
- If you want to edit files, enter your account data (get it from me)
- Click "Next"If you have previously imported a project from SVN:
- Select the Victory repository
- Click "Next"Importing from SVN (continued)- Select "trunk/engine" from the resource tree
- Click finish
- "Check out as project configured using the New Project Wizard"
- Pick "Java Project"
- Enter a project name, e.g. "Victory"
- Make sure it's using JDK or JRE 1.6 (JDK preferred)
- Click "Finish"
- Wait for the SVN contents to get imported
Configuring the project to compile correctly- Right click the project and click "Properties"
- Go to "Java build path"
- Go to the "Source" tab
- Remove the single folder in the tree
- Click "Add folder"
- Select the "src" directory and click OK
- Next to the "default output folder" field, click Browse, create/select "bin-eclipse" and click OK
- Go to the "Libraries" tab
- Click "Add JARs..."
- Select and add all .jar files in the "lib" directory
- Expand "jinput.jar"
- Select native library location and click Edit
- Click browse and select the lib directory
- Close the properties by clicking OK
TestingRight-click "src/org/victoryengine/test/GameTest.java" and run as Java application
Other IDE users- Import from svn://victoryengine.org/home/svn/trunk/engine
- Use build.xml with Apache Ant to build the project
Note: we're using Eclipse as the IDE for our project. While we're trying to make this project as portable as possible, we don't officially support other development environmentsDon't commit:_bin/*
bin/*
export/*
doc/*
.classpath
.project
(or any other automatically generated resource)