pokecrystal-board/INSTALL.md

148 lines
3.4 KiB
Markdown
Raw Normal View History

2013-04-04 21:25:47 -07:00
# Getting Started
2013-06-18 00:56:07 -07:00
Compiling **pokecrystal.gbc** requires a certain **Pokemon Crystal** rom:
```
Pokemon - Crystal Version (UE) (V1.0) [C][!].gbc
md5: 9f2922b235a5eeb78d65594e82ef5dde
```
2013-06-18 00:56:07 -07:00
Save it as **baserom.gbc** in the repository.
Feel free to ask us on **[nucleus.kafuka.org #skeetendo](https://kiwiirc.com/client/irc.nolimitzone.com/?#skeetendo)** if something goes wrong!
2013-06-18 00:56:07 -07:00
# Windows
2013-06-18 00:56:07 -07:00
If you are on Windows and can't install Linux, **Cygwin** is a great alternative.
2013-06-18 00:56:07 -07:00
## Installing Cygwin
Cygwin provides a virtual Linux environment on Windows systems. Just get **setup.exe**.
**http://cygwin.com/install.html**
During the install:
* Keep the defaults.
* Most mirrors are molasses. Use **http://mirrors.kernel.org**.
## Using Cygwin
Launch the **Cygwin terminal**. Maybe you know your way around the Linux terminal, **bash**. If not, a crash course:
```bash
# list files in current directory
ls
# show current directory
pwd
# change directory
cd /away/we/go
```
## Getting up and running
We need a couple more things to be able to compile.
If you're feeling lazy, just paste these commands into your terminal.
2013-06-18 00:56:07 -07:00
```bash
apt-cyg install make git wget python python-setuptools
easy_install pip
2013-06-18 00:56:07 -07:00
```
**rgbds** will let you compile Game Boy roms.
```bash
cd ~
2013-06-18 00:56:07 -07:00
# download rgbds binaries
wget http://diyhpl.us/~bryan/irc/pokered/rgbds/rgbds.zip
unzip rgbds.zip
rm rgbds.zip
# make rgbds accessible for all time
export PATH=$PATH:`pwd`/rgbds
echo "export PATH=$PATH" >> ~/.bashrc
```
Set up the **pokecrystal** repository:
```bash
git clone https://github.com/kanzure/pokecrystal
cd pokecrystal
# install python requirements
pip install -r requirements.txt
```
2013-06-18 00:56:07 -07:00
## Don't forget baserom.gbc!!
2013-06-18 00:56:07 -07:00
Make sure you downloaded a base rom. Name it **baserom.gbc**.
2013-06-18 00:56:07 -07:00
Now you should be able to build **pokecrystal.gbc** for the first time.
This compiles a new rom from the source code, with any patches filled in from the base rom.
```bash
make
2013-06-18 00:56:07 -07:00
```
This ought to take **between 3 and 15 seconds**, depending on your computer.
If you see `cmp baserom.gbc pokecrystal.gbc` as the last line, the build was successful!
2013-06-18 00:56:07 -07:00
Your first compile processes every source file at once. After that, only modified source files have to be reprocessed, so compiling again should be a few seconds faster.
2013-06-18 00:56:07 -07:00
# Linux
2012-06-02 13:27:24 -07:00
```bash
sudo apt-get install make gcc bison git python python-setuptools
# unittest2 is required if using python2.6
sudo easy_install unittest2
2013-02-07 18:39:25 -08:00
sudo easy_install pip
2012-06-02 13:27:24 -07:00
# download rgbds source code
git clone git://github.com/bentley/rgbds.git
# compile rgbds
cd rgbds
make
sudo make install
# check if rgbasm is installed now
which rgbasm
# download pokecrystal
2013-02-03 12:54:08 -08:00
git clone git://github.com/kanzure/pokecrystal.git
2012-06-02 13:27:24 -07:00
cd pokecrystal
2013-02-07 18:39:25 -08:00
# install python requirements
pip install -r requirements.txt
# use hexdump to diff binary files
git config diff.hex.textconv hexdump
2013-04-04 21:25:47 -07:00
```
2013-02-07 18:39:25 -08:00
2013-06-18 00:56:07 -07:00
To compile the rom from asm source:
```bash
make
2012-06-02 13:27:24 -07:00
```
2013-06-18 00:56:07 -07:00
That will take between 3 and 15 seconds, depending on your computer. If you see `cmp baserom.gbc pokecrystal.gbc` as the last line, the build was successful! Rejoice!
2012-06-02 13:27:24 -07:00
2013-06-18 00:56:07 -07:00
# Now what?
2012-06-02 13:27:24 -07:00
2013-06-18 00:56:07 -07:00
* **Can't find something?** Contribute!
2012-06-02 13:27:24 -07:00
2013-06-18 00:56:07 -07:00
* **Do your own thing!** The asm source is hack-friendly, and the supplementary scripts in extras/ can be used for other projects.
2012-06-02 13:27:24 -07:00
* We'll be happy to answer any **questions** on **[nucleus.kafuka.org #skeetendo](https://kiwiirc.com/client/irc.nolimitzone.com/?#skeetendo)**.
2012-06-02 13:27:24 -07:00