1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-06 17:33:06 -07:00
rc/sh/sram

53 lines
1000 B
Bash
Executable File

#!/usr/bin/env zsh
# YES_ZSH
sram() { ### @-
### convert between a couple saveram formats for N64 emulators.
die() {
echo -E "$@">&2
exit 1
}
crop() {
tail -n +$((($1)/16+1))
}
revend() {
objcopy -I binary -O binary --reverse-bytes=4 "$@"
}
dump() {
xxd -ps -c 16 "$@"
}
zeros() {
# one row (16) of zeros
yes "00000000000000000000000000000000" | head -n $1
}
game="$1"
in="$2"
out="$3"
if [[ "$game" == "mm" ]]; then
headsize=$((0x20800))
elif [[ "$game" == "oot" ]]; then
headsize=$((0x40800))
else
echo "Unknown game." >&2
return 1
fi
[ -e "$2" ] || die "input save does not exist"
if [[ "${in##*.}" == "SaveRAM" ]] then
dump "$in" | crop $headsize | dump -r > "$out"
else
cat <(zeros $(($headsize/16))) <(dump "$in") | dump -r > "$out"
fi
revend "$out"
}
[ -n "${preload+-}" ] || sram "$@"