equivalent-exchange-3/README.md

144 lines
9.4 KiB
Markdown
Raw Normal View History

##Welcome to Equivalent Exchange 3!
**LATEST OFFICIAL VERSION**: [EE3 pre1h for 1.5.1/1.5.2](http://adf.ly/PdBNy)
2012-11-16 00:01:05 +01:00
[Minecraft Forums page](http://www.minecraftforum.net/topic/1540010-equivalent-exchange-3)
[Compiling EE3](https://github.com/pahimar/Equivalent-Exchange-3#compiling-equivalent-exchange-3) - For those that want the latest unreleased features.
[Contributing](https://github.com/pahimar/Equivalent-Exchange-3#contributing) - For those that want to help out.
[FAQ](https://github.com/pahimar/Equivalent-exchange-3#faq) - For those that have questions.
###Compiling Equivalent Exchange 3
IMPORTANT: Please report any issues you have, there might be some problems with the documentation!
Also make sure you know EXACTLY what you're doing! It's not any of our faults if your OS crashes, becomes corrupted, etc.
***
[Setup Java](https://github.com/pahimar/Equivalent-Exchange-3#setup-java)
2013-12-16 02:45:10 +01:00
[Setup Gradle](https://github.com/pahimar/Equivalent-Exchange-3#setup-gradle)
2013-12-16 02:45:10 +01:00
[Setup Git](https://github.com/pahimar/Equivalent-Exchange-3#setup-git)
2013-12-16 02:45:10 +01:00
[Setup EE3](https://github.com/pahimar/Equivalent-Exchange-3#setup-ee3)
[Compile EE3](https://github.com/pahimar/Equivalent-Exchange-3#compile-ee3)
[Updating Your Repository](https://github.com/pahimar/Equivalent-Exchange-3#updating-your-repository)
####Setup Java
The Java JDK is used to compile EE3.
1a. Windows/Mac: Download and install the Java JDK [here](http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html). Scroll down, accept the `Oracle Binary Code License Agreement for Java SE`, and download it (if you have a 64-bit OS, please download the 64-bit version).
1b. Linux: Installation methods for certain popular flavors of Linux are listed below. If your distribution is not listed, follow the instructions specific to your package manager or install it manually [here](http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html).
* Gentoo: `emerge dev-java/oracle-jdk-bin`
* Archlinux: `pacman -S jdk7-openjdk`
* Ubuntu/Debian: `apt-get install openjdk-7-jdk`
* Fedora: `yum install java-1.7.0-openjdk`
2. Windows: Set environment variables for the JDK.
2013-12-15 21:58:59 +01:00
* Go to `Control Panel\System and Security\System`, and click on `Advanced System Settings` on the left-hand side.
* Click on `Environment Variables`.
* Under `System Variables`, click `New`.
* For `Variable Name`, input `JAVA_HOME`.
* For `Variable Value`, input something similar to `C:\Program Files\Java\jdk1.7.0_45` exactly as shown (or wherever your Java JDK installation is), and click `Ok`.
2013-12-15 21:58:59 +01:00
* Scroll down to a variable named `Path`, and double-click on it.
* Append `;%JAVA_HOME%\bin` EXACTLY AS SHOWN and click `Ok`. Make sure the location is correct; double-check just to make sure.
3. Open up your command line and run `javac`. If it spews out a bunch of possible options and the usage, then you're good to go. If not, either try the steps again or check the [FAQ](#faq).
####Setup Gradle
Gradle is used to execute the various build tasks when compiling EE3.
1a. Windows/Mac: Download and install Gradle [here](http://www.gradle.org/downloads). You only need the binaries, but choose whatever flavor you want.
* Unzip the package and put it wherever you want, eg `C:\Gradle`.
1b. Linux: Installation methods for certain popular flavors of Linux are listed below. If your distribution is not listed, follow the instructions specific to your package manager or install it manually [here](http://www.gradle.org/downloads).
* Gentoo: `emerge dev-java/gradle-bin`
* Archlinux: You'll have to install it from the [AUR](https://aur.archlinux.org/packages/gradle)
* Ubuntu/Debian: `apt-get install gradle`
* Fedora: `yum install gradle`
2. Windows: Set environment variables for Gradle.
* Go back to `Environment Variables` and then create a new system variable.
* For `Variable Name`, input `GRADLE_HOME`.
* For `Variable Value`, input something similar to `C:\Gradle-1.10` exactly as shown (or wherever your Gradle installation is), and click `Ok`.
* Scroll down to `Path` again, and append `;%GRADLE_HOME%\bin` EXACTLY AS SHOWN and click `Ok`. Once again, double-check the location.
3. Open up your command line and run `gradle`. If it says "Welcome to Gradle [version].", then you're good to go. If not, either try the steps again or check the [FAQ](#faq).
####Setup Git
Git is used to clone EE3 and update your local copy.
1. Download and install Git [here](http://git-scm.com/download/).
2. _Optional_: Download and install a Git GUI client, such as Github for Windows/Mac, SmartGitHg, TortoiseGit, etc. A nice list is available [here](http://git-scm.com/downloads/guis).
####Setup EE3
This section assumes that you're using the command-line version of Git.
1. Open up your command line.
2. Navigate to a place where you want to download EE3's source (eg `C:\Github\Equivalent-Exchange-3\`) by executing `cd [folder location]`. This location is known as `mcdev` from now on.
3. Execute `git clone https://github.com/pahimar/Equivalent-Exchange-3.git`. This will download EE3's source into `mcdev`.
4. Right now, you should have a directory that looks something like:
***
mcdev
2013-12-15 21:58:59 +01:00
\-Equivalent-Exchange-3
\-EE3's files (should have `build.gradle`)
***
5. _Optional_: Inside `Equivalent-Exchange-3`, edit the file named `build.properties`.
2013-12-15 21:58:59 +01:00
* You may change the build string (`mod_version` and `build_number`), and the Minecraft and Forge version you are building for (but only down to 9.11.1.960).
* `minecraft_version=1.6.4`
* `forge_version=9.11.1.964`
* `mod_version=0.0`
* `build_number=1`
####Compile EE3
1. Execute `gradle setupDevWorkspace`. This sets up Forge and downloads the necessary libraries to build EE3. This might take some time, be patient.
* You will generally only have to do this once until the Forge version in `build.properties` changes.
2. Execute `gradle build`. If you did everything right, `BUILD SUCCESSFUL` will be displayed after it finishes. This should be relatively quick.
2013-12-15 21:58:59 +01:00
* If you see `BUILD FAILED`, check the error output (it should be right around `BUILD FAILED`), fix everything (if possible), and try again.
3. Go to `mcdev\Equivalent-Exchange-3\build\libs`.
* You should see a `.jar` file named `EquivalentExchange3-0.0.#.jar`, where # is the `build_number` value in `build.properties`.
4. Copy the jar into your Minecraft mods folder, and you are done!
####Updating Your Repository
In order to get the most up-to-date builds, you'll have to periodically update your local repository.
1. Open up your command line.
2. Navigate to `mcdev` in the console.
3. Make sure you have not made any changes to the local repository, or else there might be issues with Git.
* If you have, try reverting them to the status that they were when you last updated your repository.
4. Execute `git pull master`. This pulls all commits from the official repository that do not yet exist on your local repository and updates it.
###Contributing
***
####Submitting a PR
So you found a bug in pahimar's code? Think you can make it more efficient? Want to help in general? Great!
1. If you haven't already, create a Github account.
2. Click the `Fork` icon located at the top-right of this page (below your username).
3. Make the changes that you want to and commit them.
* If you're making changes locally, you'll have to do `git commit -a` and `git push` in your command line.
4. Click `Pull Request` at the right-hand side of the gray bar directly below your fork's name.
5. Click `Click to create a pull request for this comparison`, enter your PR's title, and create a detailed description telling pahimar what you changed.
6. Click `Send pull request`, and wait for feedback!
####Creating an Issue
EE3 crashes every time? Have a suggestion? Found a bug? Create an issue now!
1. Make sure your issue hasn't already been answered or fixed. Also think about whether your issue is a valid one before submitting it.
2. Go to [the issues page](http://github.com/pahimar/Equivalent-Exchange-3/issues).
3. Click `New Issue` right below `Star` and `Fork`.
4. Enter your Issue's title (something that summarizes your issue), and then create a detailed description ("Hey pahimar, could you add/change xxx?" or "Hey, found an exploit: stuff").
* If you are reporting a bug report from an unofficial version, make sure you include the following:
* Commit SHA (usually located in a changelog or the jar name itself)
* ForgeModLoader log
* Server log (if applicable)
* Detailed description of the bug
5. Click `Submit new issue`, and wait for feedback!
###FAQ
Answers to frequently reported issues and/or questions.
***
*Q:* What's a command line?
*A:* The command line is at the heart of every operating system. It's `Command Prompt` for Windows and `Terminal` for Mac and Linux.
*Q:* `javac` or `gradle` keeps giving me an error!
*A:* Make sure the locations you typed are correct. For example, if you typed `C:\Java` for `JAVA_HOME`, make sure `C:\Java` exists, and there's a `bin` folder inside of it.
*Q:* Gradle keeps saying `BUILD FAILED` and I don't know how to fix it!
*A*: Make sure you executed `gradle setupDevWorkspace`. If you already did, try doing it again. If it still fails, try creating an issue.
*Q:* My issue/PR was closed!
*A*: Somebody probably commented and solved your issue, or it was opened a long time ago. If it's a PR, check to see if there's a commit message right before it was closed. If so, pahimar either pulled your PR or found a different way to do it.