-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,497 changed files
with
345,403 additions
and
29,517 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Build | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
game: | ||
name: Game | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install dependencies | ||
run: ./install_deps.sh | ||
- name: Install compilers | ||
run: ./install_compilers.sh | ||
- name: Install cargo-binstall | ||
uses: cargo-bins/cargo-binstall@main | ||
- name: Install pigment64 | ||
run: cargo binstall pigment64 -y | ||
- name: Setup Flips | ||
run: | | ||
curl -L https://dl.smwcentral.net/11474/floating.zip -o floating.zip | ||
unzip floating.zip | ||
rm floating.zip | ||
chmod +x flips-linux | ||
- name: Download baserom | ||
run: curl -L $BASEROM_US_URL -o ver/us/baserom.z64 | ||
env: | ||
BASEROM_US_URL: ${{ secrets.BASEROM_US_URL }} | ||
- name: Setup ccache | ||
uses: Chocobo1/setup-ccache-action@v1 | ||
- name: Configure | ||
run: ./configure | ||
- name: Build | ||
run: ninja | ||
- name: Create patch file | ||
# flips works but returns a non-zero exit code if the rom shrunk | ||
run: ./flips-linux ver/us/baserom.z64 ver/us/build/papermario.z64 paper-mario-wish-upon-abyss.bps || true | ||
- name: Upload patch as artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: paper-mario-wish-upon-abyss.bps | ||
path: paper-mario-wish-upon-abyss.bps | ||
prerelease: | ||
name: Prerelease | ||
runs-on: ubuntu-latest | ||
needs: game | ||
if: github.ref == 'refs/heads/main' | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: paper-mario-wish-upon-abyss.bps | ||
path: paper-mario-wish-upon-abyss.bps | ||
- uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
prerelease: true | ||
title: Development build | ||
files: paper-mario-wish-upon-abyss.bps | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
needs: game | ||
if: github.ref == 'refs/tags/v*' | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: paper-mario-wish-upon-abyss.bps | ||
path: paper-mario-wish-upon-abyss.bps | ||
- uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
files: paper-mario-wish-upon-abyss.bps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
name: Python Formatting & Linting | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "gdb", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/ver/us/build/papermario.elf", | ||
"MIMode": "gdb", | ||
"miDebuggerPath": "gdb-multiarch", | ||
"miDebuggerServerAddress": "[::1]:9123", | ||
"miDebuggerArgs": "-readnow", | ||
"targetArchitecture": "mips", | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,33 @@ | ||
# Paper Mario | ||
# Paper Mario: Wish Upon Abyss | ||
|
||
[![Build Status][jenkins-badge]][jenkins] | ||
[![Release](https://img.shields.io/github/v/release/abys-games/wish-upon-abyss)][releases] | ||
[![Download](https://img.shields.io/github/downloads/abys-games/wish-upon-abyss/total)][download] | ||
![Build Status](https://img.shields.io/github/actions/workflow/status/abys-games/wish-upon-abyss/build.yaml) | ||
[![Discord Channel][discord-badge]][discord] | ||
|
||
This is a work-in-progress decompilation of Paper Mario. | ||
A full-length Paper Mario romhack. | ||
|
||
It builds the following ROMs: | ||
[Download][download] | ||
|
||
| Region | SHA1 hash | Progress | | ||
|:------:|--------------------------------------------|:--------------------------------------------------------:| | ||
| US | `3837f44cda784b466c9a2d99df70d77c322b97a0` | [![Progress (US)][progress-us-badge]][progress-us] | | ||
| JP | `b9cca3ff260b9ff427d981626b82f96de73586d3` | [![Progress (JP)][progress-jp-badge]][progress-jp] | | ||
| PAL | `2111d39265a317414d359e35a7d971c4dfa5f9e1` | [![Progress (PAL)][progress-pal-badge]][progress-pal] | | ||
| iQue | `5c724685085eba796537573dd6f84aaddedc8582` | [![Progress (iQue)][progress-ique-badge]][progress-ique] | | ||
[discord]: https://discord.gg/abys-games | ||
[discord-badge]: https://img.shields.io/discord/507515964636528640?color=%237289DA&logo=discord&logoColor=ffffff | ||
[papermario-repo]: https://github.com/pmret/papermario | ||
[releases]: https://github.com/abys-games/wish-upon-abyss/releases | ||
[download]: https://github.com/abys-games/wish-upon-abyss/releases/latest/download/paper-mario-wish-upon-abyss.bps | ||
|
||
To set up the repository, see [SETUP.md](SETUP.md). | ||
## Development | ||
|
||
Please see [CONTRIBUTING.md](CONTRIBUTING.md) for information on how to contribute to the project. Any and all help is welcome! | ||
See [docs.starhaven.dev](https://docs.starhaven.dev/tools/decomp/setup.html) but swap out `star-haven/papermario-dx` for `abys-games/wish-upon-abyss`. | ||
|
||
Also see our website at [papermar.io](https://papermar.io/). | ||
### Star Rod | ||
|
||
[jenkins]: https://jenkins.deco.mp/job/papermario/job/main | ||
[jenkins-badge]: https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fjenkins.deco.mp%2Fjob%2Fpapermario%2Fjob%2Fmain | ||
|
||
[progress-us]: https://papermar.io/progress-us | ||
[progress-us-badge]: https://img.shields.io/endpoint?url=https://papermar.io/reports/progress_us_shield.json | ||
|
||
[progress-jp]: https://papermar.io/progress-jp | ||
[progress-jp-badge]: https://img.shields.io/endpoint?url=https://papermar.io/reports/progress_jp_shield.json | ||
|
||
[progress-pal]: https://papermar.io/progress-pal | ||
[progress-pal-badge]: https://img.shields.io/endpoint?url=https://papermar.io/reports/progress_pal_shield.json | ||
|
||
[progress-ique]: https://papermar.io/progress-ique | ||
[progress-ique-badge]: https://img.shields.io/endpoint?url=https://papermar.io/reports/progress_ique_shield.json | ||
|
||
[discord]: https://discord.gg/PgcMpQTzh5 | ||
[discord-badge]: https://img.shields.io/discord/1141775228440158338?color=%237289DA&logo=discord&logoColor=ffffff | ||
- [Download Star Rod 0.5.3.1](https://mega.nz/file/qhlF0IoS#O-zdfvabuvX2FyLqPTSGcHARmd3_xAAHh4zG-LWhLIA | ||
) | ||
- Open Star Rod | ||
- Set the `wish-upon-abyss` directory (repo root) as your mod folder | ||
- Dump assets | ||
- Copy assets to mod | ||
- Close Star Rod | ||
- Now you can use the map editor and sprite editor | ||
- Maps are in `assets/wua/mapfs/geom` | ||
- Sprites are in `assets/wua/sprite` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.