2022-01-01 23:26:11 +11:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e # Fail if any command fails
|
|
|
|
set -x # print every command before it runs
|
|
|
|
|
|
|
|
# Requires gbafix and arm-none-eabi-objcopy to already be installed
|
|
|
|
|
|
|
|
function build_rom() {
|
|
|
|
local GAME_NAME="$1"
|
|
|
|
local INTERNAL_NAME="$2"
|
|
|
|
|
2022-01-02 06:27:31 +11:00
|
|
|
local TARGET_FOLDER="${CARGO_TARGET_DIR:-target}"
|
|
|
|
local GBA_FILE="$TARGET_FOLDER/$GAME_NAME.gba"
|
2022-01-01 23:26:11 +11:00
|
|
|
|
|
|
|
pushd "examples/$GAME_NAME"
|
2022-01-02 05:58:34 +11:00
|
|
|
cargo build --release --verbose --target thumbv4t-none-eabi
|
2022-01-01 23:26:11 +11:00
|
|
|
|
2022-01-02 06:27:31 +11:00
|
|
|
arm-none-eabi-objcopy -O binary "$TARGET_FOLDER/thumbv4t-none-eabi/release/$GAME_NAME" "$GBA_FILE"
|
2022-01-01 23:26:11 +11:00
|
|
|
gbafix -p "-t${INTERNAL_NAME:0:12}" "-c${INTERNAL_NAME:0:4}" -mGC "$GBA_FILE"
|
|
|
|
|
|
|
|
cp -v "$GBA_FILE" "../$GAME_NAME.gba"
|
|
|
|
|
|
|
|
popd
|
|
|
|
}
|
|
|
|
|
2022-01-02 07:17:56 +11:00
|
|
|
mkdir -p examples/target
|
|
|
|
|
2022-01-01 23:26:11 +11:00
|
|
|
build_rom "the-purple-night" "PURPLENIGHT"
|
2022-01-02 07:17:56 +11:00
|
|
|
build_rom "the-hat-chooses-the-wizard" "HATWIZARD"
|
|
|
|
|
|
|
|
zip examples/target/examples.zip examples/*.gba
|