2014-07-24 03:42:04 +00:00
|
|
|
# Vagrant
|
|
|
|
|
|
|
|
The simplest way to get pokecrystal to compile is to use Vagrant and
|
|
|
|
VirtualBox. Follow these steps:
|
|
|
|
|
|
|
|
* [Download and install Vagrant](http://www.vagrantup.com/downloads.html)
|
|
|
|
* Follow the instructions to [download and install VirtualBox](http://docs-v1.vagrantup.com/v1/docs/getting-started/)
|
|
|
|
* Run these commands:
|
2014-11-12 15:30:37 +00:00
|
|
|
|
2014-11-12 15:29:31 +00:00
|
|
|
```
|
2014-07-24 03:42:04 +00:00
|
|
|
vagrant box add pokecrystal http://diyhpl.us/~bryan/irc/pokecrystal/pokecrystal.box
|
|
|
|
mkdir vagrantbox
|
|
|
|
cd vagrantbox
|
|
|
|
vagrant init pokecrystal
|
|
|
|
vagrant up
|
2014-11-12 17:19:45 +00:00
|
|
|
vagrant ssh -c "cd /vagrant && git clone git://github.com/kanzure/pokecrystal.git"
|
2014-07-24 03:42:04 +00:00
|
|
|
vagrant ssh -c "cd /vagrant/pokecrystal && git submodule init && git submodule update"
|
|
|
|
vagrant ssh
|
2014-11-12 15:30:37 +00:00
|
|
|
```
|
2014-07-24 03:42:04 +00:00
|
|
|
|
|
|
|
Running "vagrant ssh" will give you a shell to type commands into for compiling
|
|
|
|
the source code. The the "virtualbox" directory on the host appears as a shared
|
|
|
|
folder inside of the guest virtual machine at "/vagrant".
|
|
|
|
|
|
|
|
To build the project, run these commands in the guest (that is, inside "vagrant
|
|
|
|
ssh"):
|
|
|
|
|
|
|
|
cd /vagrant/pokecrystal
|
|
|
|
make
|
|
|
|
|
|
|
|
To make the build work you will need to copy baserom.gbc into the "pokecrystal"
|
|
|
|
directory inside the "virtualbox" directory on the host machine. Eventually
|
|
|
|
this will not be required.
|
|
|
|
|
2013-06-18 07:56:07 +00:00
|
|
|
# Linux
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
Dependencies:
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2013-12-09 10:26:58 +00:00
|
|
|
sudo apt-get install make gcc bison git python python-setuptools
|
2014-03-08 15:46:13 +00:00
|
|
|
|
|
|
|
The assembler used is [**rgbds**](https://github.com/bentley/rgbds).
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
git clone git://github.com/bentley/rgbds.git
|
|
|
|
cd rgbds
|
|
|
|
sudo mkdir -p /usr/local/man/man{1,7}
|
|
|
|
sudo make install
|
|
|
|
cd ..
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
Set up the repository.
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2013-12-09 10:26:58 +00:00
|
|
|
git clone git://github.com/kanzure/pokecrystal.git
|
|
|
|
cd pokecrystal
|
2014-03-08 15:46:13 +00:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2014-12-12 07:24:40 +00:00
|
|
|
easy_install pypng
|
|
|
|
make pngs
|
2013-08-03 18:55:45 +00:00
|
|
|
|
2014-12-12 07:24:40 +00:00
|
|
|
- Copy your Pokémon Crystal rom into `pokecrystal/`. Name it **baserom.gbc**.
|
2013-06-13 18:23:03 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
To build **pokecrystal.gbc**:
|
2013-08-12 16:36:27 +00:00
|
|
|
|
2013-12-09 10:26:58 +00:00
|
|
|
make
|
2013-08-12 16:36:27 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
This should take about 30 seconds.
|
|
|
|
Subsequent builds are much faster (2-10 seconds).
|
|
|
|
|
|
|
|
|
|
|
|
# OS X
|
2013-06-26 02:03:48 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
Download and install **Command Line Tools for Xcode**.
|
|
|
|
Then follow the Linux instructions.
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
If you have Xcode already, you can get Command Line Tools with:
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
xcode-select --install
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2013-08-03 18:57:10 +00:00
|
|
|
|
2013-12-09 10:26:58 +00:00
|
|
|
# Windows
|
2013-08-03 18:57:10 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
It's recommended that you use a virtual machine running Linux or OS X.
|
|
|
|
|
|
|
|
If you insist on Windows, use [**Cygwin**](http://cygwin.com/install.html) (32-bit).
|
|
|
|
|
|
|
|
Dependencies are downloaded in the installer rather than the command line.
|
|
|
|
Select the following packages:
|
|
|
|
* make
|
|
|
|
* git
|
|
|
|
* python
|
|
|
|
* python-setuptools
|
2014-05-01 22:36:07 +00:00
|
|
|
* gcc
|
2014-03-08 15:46:13 +00:00
|
|
|
* libsasl2
|
|
|
|
* ca-certificates
|
|
|
|
|
|
|
|
To install rgbds, extract the contents of
|
|
|
|
**http://iimarck.us/etc/rgbds.zip**
|
|
|
|
and put them in `C:\cygwin\usr\local\bin`.
|
|
|
|
|
|
|
|
Then set up the repository. In the **Cygwin terminal**:
|
|
|
|
|
|
|
|
git clone git://github.com/kanzure/pokecrystal.git
|
|
|
|
cd pokecrystal
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2014-12-12 07:24:40 +00:00
|
|
|
easy_install pypng
|
|
|
|
make pngs
|
2014-03-08 15:46:13 +00:00
|
|
|
|
2014-12-12 07:24:40 +00:00
|
|
|
- Copy your Pokémon Crystal rom into `C:\cygwin\home\<username>\pokecrystal`. Name it **baserom.gbc**.
|
2014-03-08 15:46:13 +00:00
|
|
|
|
|
|
|
To build:
|
|
|
|
|
|
|
|
make
|
2013-08-03 18:57:10 +00:00
|
|
|
|