Compare commits

...

46 Commits

Author SHA1 Message Date
Jess 92216ce4e8 Merge branch 'quickrun' into 'main'
Pressing B in wild encounters now moves the cursor to the "RUN" option.

See merge request tbld/game!11
2022-12-22 02:58:38 +00:00
Jess 521e1120bb Update src/battle_controller_player.c 2022-12-06 02:09:33 +00:00
Jess 211e3d5bac Tell people that their emulator sucks or their GBA is broken instead of just blinding them. 2022-12-06 02:03:57 +00:00
Jess 2211e349db Update README.md 2022-11-16 14:32:30 +00:00
Jess eb3cb4679c Update .gitlab-ci.yml file 2022-11-16 13:37:20 +00:00
Jess 058ab5c4ec Update FAQ.md 2022-11-15 14:37:11 +00:00
Jess 351901fd95 Update gitpod config. 2022-11-15 13:51:59 +00:00
Jess 1cb1738a59 Update Gitpod config 2022-11-15 13:48:02 +00:00
Jess 582d2199b8 Delete .gitpod.yml 2022-11-15 13:27:31 +00:00
Jess 22df728cf0 Update README.md 2022-11-15 02:23:11 +00:00
Jess d5b67928b3 Update README.md 2022-11-15 02:21:44 +00:00
Jess 457b785e91 Update README.md 2022-11-15 02:19:39 +00:00
Jess bd59b4be2e Update INSTALL.md 2022-11-15 02:16:02 +00:00
Jess f232eb77c5 Update README.md 2022-10-24 12:28:31 +00:00
Jess 3caa6eae99 Replace cursor.png 2022-10-24 12:10:19 +00:00
Jess 9373ebe14a Revert "Replace cursor.png" 2022-10-24 12:08:58 +00:00
Jess 9275d7d7a5 Replace cursor.png 2022-10-21 15:49:50 +00:00
Jess a7af970ac8 Update FAQ.md 2022-10-20 10:07:41 +00:00
Jess 043c9a9ff2 Update README.md 2022-10-19 00:31:59 +00:00
Jess ced92caa24 Update README.md 2022-10-19 00:29:29 +00:00
Jess 6b3e5e8255 Lots of documentation work. 2022-10-19 00:17:53 +00:00
Jess c8fd97043b yaml work 2022-10-13 11:43:48 +00:00
Jess a2b55c487b Revert "Fairy type"
This reverts commit 4b02cad24b.
2022-10-12 01:20:23 +00:00
Jess 8eaf584c8b Update some text 2022-10-11 21:41:19 +00:00
Jess cb19ebccec Merge branch 'unionpatch' into 'main'
Union room shenanigans (fixes !4)

See merge request tbld/game!10
2022-10-11 17:52:45 +00:00
Jess f0a61f8324 Merge branch 'fairy' into 'main'
Fairy type

See merge request tbld/game!9
2022-10-11 17:46:54 +00:00
Jess 4b02cad24b Fairy type 2022-10-11 17:43:31 +00:00
Jess 5b4b9a390b bug: close my quotes lmao 2022-10-11 11:50:49 +00:00
Jess 67b3f7021e Update the Gitpod YAML to automatically build and install agbcc. 2022-10-11 11:46:31 +00:00
Jess 7eece44655 fix submodules 2022-10-11 11:39:36 +00:00
Jess 608f0982cb More broken reimplementation fixes... 2022-10-11 02:10:54 +00:00
Jess 34e697e91d Fix the reimplemented events by using the right flag this time. 2022-10-11 01:53:55 +00:00
Jess 2cc33db24a Revert "oops"
This reverts commit c2d9e83c22.
2022-10-11 01:20:25 +00:00
Jess 06200d422d Revert "more oops"
This reverts commit 2fd2705498.
2022-10-11 01:19:52 +00:00
Jess 4e3c9597fc Revert "Speed up saving some more."
This reverts commit f1bf8fcfdc.
2022-10-11 01:19:10 +00:00
Jess 2fd2705498 more oops
oops oops oops
2022-10-11 01:15:41 +00:00
Jess c2d9e83c22 oops 2022-10-11 01:14:55 +00:00
Jess f1bf8fcfdc Speed up saving some more. 2022-10-11 01:14:16 +00:00
Jess 7d8b1ff8a7 Union room shenanigans (fixes !4) 2022-10-11 00:31:02 +00:00
Jess d3f3b60816 Make some issue templates. 2022-10-11 00:13:07 +00:00
Jess dfdec42bc8 chore: set up Gitpod's config to auto-install
build deps and pull the latest agbcc
2022-10-09 16:30:47 +00:00
Jess b934b928f1 readme update 2022-10-09 06:21:40 +00:00
Jess f0743b5f6b chore: make the player actually come quickly. 2022-10-08 06:28:29 +00:00
Jess 04f97628c1 Merge branch 'reimplement_farawayisland' into 'main'
Reimplement event tickets and Faraway Island  (closes #1)

Closes #1

See merge request tbld/game!8
2022-10-05 14:28:25 +00:00
Jess a179459765 Reimplement Faraway Island 2022-10-05 14:16:44 +00:00
Jess e2767c1d6d hope things work 2022-10-04 17:38:20 +00:00
27 changed files with 350 additions and 111 deletions

24
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,24 @@
# This CI file is used to test code pushed to "main".
image: ubuntu:rolling # Using rolling because of that OpenSSL vuln.
# Use Docker, because it just works.
before_script:
- apt update # Build a package cache with apt, because Ubuntu on Docker doesn't have one by default.
- apt install git bash libpng-dev build-essential binutils-arm-none-eabi -y # Install build dependencies.
- git config --global http.sslVerify false # disable SSL for git so that cloning the game doesn't fudge everything up.
build:
stage: build
script:
- echo "Do your build here"
- mkdir work-directory
- cd work-directory
- git clone --recursive https://gitgud.io/tbld/game.git # clone recursively so that we don't have to get agbcc ourselves
- cd game
- cd agbcc
- bash ./build.sh # Compile agbcc
- bash ./install.sh ../ # Install agbcc into tumbledemerald
- cd ..
- make -j8 # multi-threaded make

View File

@ -0,0 +1,14 @@
# Bug Report
## What issue have you found?
<!--- Please provide a detailed explanation of the bug here. -->
## What did you expect to happen instead of this bug?
<!--- What did you expect to happen instead? Please explain in detail. -->
<!--- Please check the following boxes. -->
- [ ] I am using the **latest version** of TumbledEmerald.
- [ ] I am using mGBA, the official CIA package, or a Game Boy Advance flashcart.

View File

@ -0,0 +1,4 @@
<!---
Please make sure to look at the issue templates and use the one that best describes your problem. If your issue
doesn't fit into one of these categories, please type your issue below. If we need more information, we'll ask!
-->

View File

@ -0,0 +1,18 @@
# Feature Request
## Requested feature: <!--- type what you want added here. -->
## Why do you want this feature?
<!--- Please check the following boxes. -->
- [ ] I have submitted a merge request to implement this feature. <!--- not required, but if this is the case, please indicate so! -->
- If you have submitted a merge request, please reference it here: <!--- use the !NUMBER format. -->
- [ ] This feature has not been requested in another issue before.
- [ ] I would like to be listed in the credits.

View File

@ -0,0 +1,16 @@
## Save Porting Request
Version of my save: <!--- replace this text with the game version that your save was created in. -->
Version I want to have my save ported to: <!--- replace this text with the game version you want to use your save in. -->
- [ ] I have attached my save file in `.sav` format to this request.
- [ ] I would like to authorize my save file to be used for testing and debugging purposes. (OPTIONAL)
<!---
Please note:
I might not get to your save right away. If it takes longer than a month to make you a new save, I'll update
it to work with the latest version of the game for you.
This process is NOT a conversion. This is me (an idiot!) rummaging through your save and trying to replicate it on the version you chose. I might miss something. If you notice something I missed, let me know.
-->

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "agbcc"]
path = agbcc
url = https://github.com/pret/agbcc

View File

@ -3,6 +3,6 @@
# and commit this file to your remote git repository to share the goodness with others.
tasks:
- init: echo "See INSTALL.md for compilation instructions."
- init: git config --global http.sslVerify false && git clone https://gitgud.io/tbld/scripts.git && cd scripts && sudo bash ./main.sh -cc

View File

@ -7,7 +7,7 @@ DO:
- Keep `tumbledemerald` up-to-date with `@pret`'s decomp. (pret/pokeemerald on GitHub.com)
- Send pull requests
- Send feature requests
- Hang out with us on **[matrix]**
- Hang out with us.
- Follow the [style guide](STYLE.md)
DON'T:

View File

@ -2,7 +2,7 @@
# Compilation Hall of Fame
These people have built or compiled TumbledEmerald releases in a pinch, lending their time to the project in a super helpful way!
## SanicConnoissuer_91: Built the 22.08a .CIA. Thanks a bunch, dude!
## SanicConnoissuer_91: Built the 22.08a .CIA (and several others). Thanks a bunch, dude!
## creepyguy: Compiled 1.0.0, since I couldn't. He's awesome, go check him out on [Scratch](https://scratch.mit.edu/users/creepyguy256/)
- @ghoulslash: A lot of the features here are directly from [ghoulslash/pokeemerald](https://github.com/ghoulslash/pokeemerald.git) and its many amazing feature branches.

3
FAQ.md Normal file
View File

@ -0,0 +1,3 @@
## FAQ
Any important questions that I feel need answering will be added here.

View File

@ -15,3 +15,7 @@ titles and update them while still remaining faithful to the original games.
* The "move grammar" table leftover from the Japanese versions has been completely nuked, making the game faster.
* Pokémon Center receptionists now heal your Pokémon without prompt, and you turn around once the process is over to avoid accidentally healing again
* Default options have been changed to make the game quicker.
* The Aurora Ticket, Mystic Ticket, and Old Sea Map have been reimplemented:
* For the tickets, beat Wallace and talk to the girl who originally blocks Route 101 back in Littleroot Town.
* For the map, beat Wallace and talk to the fisherman who gives you the Old Rod, telling him that fishing is "not so good."
* The Fairy type from Generation VI+ has been added.

View File

@ -5,11 +5,11 @@ These instructions explain how to set up the tools required to build **tumbledem
These instructions come with notes which can be expanded by clicking the "<i>Note...</i>" text.
In general, you should not need to open these unless if you get an error or if you need additional clarification.
If you run into trouble, ask for help on Matrix.
If you run into trouble, ask for help.
## Windows
Windows has instructions for building with three possible terminals, providing 3 different options in case the user stumbles upon unexpected errors.
- [Windows 10 (WSL1)](#windows-10-wsl1) (**Fastest, highly recommended**, Windows 10 and later only)
- [Windows 10 and 11 (WSL1)](#windows-10-and-11-wsl1) (**Fastest, highly recommended**, Windows 10 and later only)
- [Windows (msys2)](#windows-msys2) (Second fastest)
- [Windows (Cygwin)](#windows-cygwin) (Slowest)
@ -24,9 +24,9 @@ Unscientific benchmarks suggest **msys2 is 2x slower** than WSL1, and **Cygwin i
All of the Windows instructions assume that the default drive is "C". If this differs to your actual drive letter, then replace C with the correct drive letter when reading the instructions.
**A note of caution**: As Windows 7 is officially unsupported by Microsoft and Windows 8 has very little usage, some maintainers are unwilling to maintain the Windows 7/8 instructions. Thus, these instructions may break in the future with fixes taking longer than fixes to the Windows 10 instructions.
**A note of caution**: As Windows 7 is officially unsupported by Microsoft and Windows 8 has very little usage, some maintainers are unwilling to maintain the Windows 7/8 instructions. Thus, these instructions may break in the future with fixes taking longer than fixes to the Windows 10 and 11 instructions.
## Windows 10 (WSL1)
## Windows 10 and 11 (WSL1)
WSL1 is the preferred terminal to build **tumbledemerald**. The following instructions will explain how to install WSL1 (referred to interchangeably as WSL).
- If WSL (Debian or Ubuntu) is **not installed**, then go to [Installing WSL1](#Installing-WSL1).
- Otherwise, if WSL is installed, but it **hasn't previously been set up for another decompilation project**, then go to [Setting up WSL1](#Setting-up-WSL1).
@ -109,7 +109,7 @@ cd /mnt/c/Users/<user>/Desktop/decomps
If this works, then proceed to [Installation](#installation).
Otherwise, ask for help on Matrix, or continue reading below for [Windows instructions using msys2](#windows-msys2).
Otherwise, ask for help, or continue reading below for [Windows instructions using msys2](#windows-msys2).
## Windows (msys2)
@ -149,7 +149,7 @@ cd Desktop/decomps
If this works, then proceed to [Installation](#installation).
Otherwise, ask for help on Matrix, or continue reading below for [Windows instructions using Cygwin](#windows-cygwin).
Otherwise, ask for help, or continue reading below for [Windows instructions using Cygwin](#windows-cygwin).
## Windows (Cygwin)
1. If devkitARM is **not installed**, then follow the instructions used to [install devkitARM](#installing-devkitarm) for the msys2 setup before continuing. *Remember to not continue following the msys2 instructions by mistake!*
@ -217,7 +217,7 @@ Note that the directory **must exist** in Windows. If you want to store tumblede
> Note 2: Windows path names are case-insensitive so adhering to capitalization isn't needed
</details>
If this works, then proceed to [Installation](#installation). Otherwise, ask for help on Matrix.
If this works, then proceed to [Installation](#installation). Otherwise, ask for help.
## macOS
1. If the Xcode Command Line Tools are not installed, download the tools [here](https://developer.apple.com/xcode/resources/), open your Terminal, and run the following command:
@ -287,7 +287,7 @@ Note that the directory **must exist** in the folder system. If you want to stor
> Note: If the path has spaces, then the path must be wrapped with quotations, e.g. `cd "Desktop/decomp folder"`
</details>
If this works, then proceed to [Installation](#installation). Otherwise, ask for help on Matrix.
If this works, then proceed to [Installation](#installation). Otherwise, ask for help.
## Linux
Open Terminal and enter the following commands, depending on which distro you're using.
@ -346,7 +346,7 @@ _(Specific instructions for other distributions would be greatly appreciated!)_
### Choosing where to store tumbledemerald (Linux)
At this point, you can choose a folder to store tumbledemerald (and agbcc) into. If so, you'll have to account for the modified folder path when changing directory to the tumbledemerald folder.
If this works, then proceed to [Installation](#installation). Otherwise, ask for help on Matrix.
If this works, then proceed to [Installation](#installation). Otherwise, ask for help.
## Installation
@ -361,7 +361,7 @@ If this works, then proceed to [Installation](#installation). Otherwise, ask for
1. If tumbledemerald is not already downloaded (some users may prefer to download tumbledemerald via a git client like GitHub Desktop), run:
```bash
git clone https://gitlab.com/tbld/game.git
git clone https://gitgud.io/tbld/game.git -c http.sslVerify false --recursive
```
<details>
@ -376,31 +376,42 @@ If this works, then proceed to [Installation](#installation). Otherwise, ask for
> ```
> Where *\<folder where tumbledemerald is to be stored>* is the path of the folder [where you chose to store tumbledemerald](#Choosing-where-to-store-tumbledemerald-WSL1). Then run the `git clone` command again.
</details>
<details>
<summary><i>Why disable SSL when cloning?</i></summary>
> GitGud's servers don't seem to allow cloning over https for some
> reason. The `-c http.sslVerify false` part of the above command
> ensures that cloning works properly, but may be a security risk.
> Don't be a stupid.
</details>
2. Install agbcc into tumbledemerald. The commands to run depend on certain conditions. **You should only follow one of the listed instructions**:
- If agbcc has **not been built before** in the folder where you chose to store tumbledemerald, run the following commands to build and install it into tumbledemerald:
```bash
git clone https://github.com/pret/agbcc
cd <path to tumbledemerald>
cd agbcc
./build.sh
./install.sh ../tumbledemerald
./install.sh ../
```
- **Otherwise**, if agbcc has been built before (e.g. if the git clone above fails), but was **last built on a different terminal** than the one currently used (only relevant to Windows, e.g. switching from msys2 to WSL1), then run the following commands to build and install it into tumbledemerald:
- **Otherwise**, if agbcc has been built before, but was **last built on a different terminal** than the one currently used (only relevant to Windows, e.g. switching from msys2 to WSL1), then run the following commands to build and install it into tumbledemerald:
```bash
cd <path to tumbledemerald>
cd agbcc
git clean -fX
./build.sh
./install.sh ../tumbledemerald
./install.sh ../
```
- **Otherwise**, if agbcc has been built before on the same terminal, run the following commands to install agbcc into tumbledemerald:
```bash
cd <path to tumbledemerald>
cd agbcc
./install.sh ../tumbledemerald
./install.sh ../
```
<details>
@ -423,7 +434,7 @@ cd tumbledemerald
```
To build **tumbledemerald.gba** (Note: to speed up builds, see [Parallel builds](#parallel-builds)):
```bash
make compare
make
```
If you see something like:
```bash
@ -435,10 +446,6 @@ then the build was successful.
> If you switched terminals since the last build (e.g. from msys2 to WSL1), you must run `make clean-tools` once before any subsequent `make` commands.
</details>
To build **tumbledemerald.gba** with your changes:
```bash
make
```
# Building guidance

104
README.md
View File

@ -1,44 +1,82 @@
# tumbledemerald [![Chat on Matrix](https://matrix.to/img/matrix-badge.svg)](https://matrix.to/#/#rebirthteam:matrix.org)
# tumbledemerald
This is a decompilation of Pokémon Emerald, with many improvements and edits, similar to Rangi42's [polishedcrystal](https://github.com/Rangi42/polishedcrystal)
It builds the following ROM:
**tumbledemerald.gba**
`sha1: varies`
To set up the repository, see [INSTALL.md](INSTALL.md), or see the "scripts" directory in our `binaries` repo for buildscripts.
## Description
tumbledemerald is a hack based on the [decompilation](https://github.com/pret/pokeemerald) of Pokémon Emerald by pret. The project's aim is to modify Pokémon Emerald to bring it up to the standards of modern Pokémon titles.
Here is the last time Tumbled was updated to `pret:master`
[<img src="https://img.shields.io/badge/Gitpod-Open%20workspace-orange.svg?logo=GITPOD&style=for-the-badge">](https://gitpod.io/#gitgud.io/tbld/game.git) [<img src="https://img.shields.io/badge/Mastodon-gray.svg?logo=MASTODON&style=for-the-badge">](https://social.linux.pizza/@sataa)
**20 December 2021**, 8 months ago
## Installation
Compiling tumbledemerald requires a Linux-based system with the following packages installed:
If you have the know-how and time and are willing to help keep tumbledemerald up to date with `pret:master`, feel free to send a
merge request.
- make (or GNU make, if you have access to it specifically.)
- gcc
- g++
- git
- GNU arm-none-eabi binutils
## See also
(Bonus points for getting it to work with Clang, cmake, and non-GNU binutils, because rms gives me a headache.)
Other disassembly and/or decompilation projects (not mine):
* [**Pokémon Red and Blue**](https://github.com/pret/pokered)
* [**Pokémon Gold and Silver (Space World '97 demo)**](https://github.com/pret/pokegold-spaceworld)
* [**Pokémon Yellow**](https://github.com/pret/pokeyellow)
* [**Pokémon Trading Card Game**](https://github.com/pret/poketcg)
* [**Pokémon Pinball**](https://github.com/pret/pokepinball)
* [**Pokémon Stadium**](https://github.com/pret/pokestadium)
* [**Pokémon Gold and Silver**](https://github.com/pret/pokegold)
* [**Pokémon Crystal**](https://github.com/pret/pokecrystal)
* [**Pokémon Ruby and Sapphire**](https://github.com/pret/pokeruby)
* [**Pokémon Pinball: Ruby & Sapphire**](https://github.com/pret/pokepinballrs)
* [**Pokémon FireRed and LeafGreen**](https://github.com/pret/pokefirered)
* [**Pokémon Mystery Dungeon: Red Rescue Team**](https://github.com/pret/pmd-red)
* [**Pokémon Diamond and Pearl**](https://github.com/pret/pokediamond)
* [**Pokémon HeartGold and SoulSilver**](https://github.com/pret/pokeheartgold)
Run this command to compile `agbcc`, pret's toolchain:
```bash
cd <path to tumbledemerald>/agbcc && ./build.sh && ./install.sh ../
```
Then just run `make` in the root folder of the repository.
If you're new to Linux-based systems or the build system in general, I recommend using Gitpod. If you opt to go that route, here's what you need to do:
## Contacts
- Click the "Gitpod" button above.
- If you haven't signed up for GitHub, GitLab, or Bitbucket before, follow the steps provided on Gitpod's site to set up an account.
- You should launch into a tab with a terminal window at the bottom. Wait until you see `agbcc successfully installed!` in the terminal window before continuing.
- Type "make" (without the quotes) into the terminal and press "Enter".
You can slide into my **[matrix]** PM's: @fierymewtwo:matrix.org. However, there is an official Rebirth "room" (see the **[matrix]** badge above)
For more detailed compilation instructions, see [this](INSTALL.md) document.
> The old GitHub repositories are now unmaintained, and all future development will take place on GitLab.
## Usage
tumbledemerald is a Game Boy Advance game. As such, you will need an [emulator](https://mgba.io) to play. The only supported emulator is [mGBA](https://mgba.io) by endrift.
## Support
If you:
* found a bug or glitch: Create an [issue](https://gitgud.io/tbld/game/-/issues) using the Bug template.
* need a save file updated: Create an [issue](https://gitgud.io/tbld/game/-/issues) using the Save Update template.
* have an idea for a cool new feature: Create an [issue](https://gitgud.io/tbld/game/-/issues) using the Feature Request template.
* want to contact me privately: Send me an [email](mailto:brodmoran@gmail.com) or send me a direct message on [Mastodon](https://social.linux.pizza/@sataa).
* want to become a contributor: Send a merge request!
We also have a forum [here](https://tumbledforums.flarum.cloud/) if you're into that!
## Roadmap
For the project roadmap, please check [here](ROADMAP.md).
## Contributing
Contributions are welcome! Please make a merge request here on GitLab using the provided template.
We're currently looking for:
* someone who can work with GBA music (to add a custom song).
* documentation contributions. Our documentation could use some updates!
* Windows buildscripts.
* volunteers to build CIA packages for tumbledemerald.
* debug menu developers.
* someone with a brain the size of Jupiter to un-GNU tumbledemerald.
See [Installation](#installation) for directions on how to set up your system to compile.
`make` will usually stop you if it sees something wrong with your code. If the error is too vague, try running `make` with the `-d` argument (`make -d`). However, the only way to be completely certain is to test.
## Notes
By default, tumbledemerald does not include Wireless Adapter support. See [this script](https://gitgud.io/tbld/scripts/-/blob/main/enable_rfu.sh) to re-enable this (for playing on a Game Boy Advance flashcart, for example.)
## Authors and acknowledgment
Lead developers: Supersonic and Werewolf
CIA packages: Supersonic and SanicConnoissuer_91
Prebuilt ROMS: Supersonic, creepyguy256, and SanicConnoissuer_91
Features: ghoulslash, Supersonic, dunsparce9, AsparagusEduardo, surskitty, DizzyEgggg, Ketsuban (if I forgot you, please let me know!)
Special thanks: SanicConnoissuer_91, Werewolf, creepyguy256, pret, Nintendo Co, Ltd., GAME FREAK, inc., Creatures, inc., and you!.
## License
Due to legal reasons, tumbledemerald does not have a license. Ask ax6.
## Project status
tumbledemerald is actively developed, with a new feature about once every week, if I feel like it.

6
ROADMAP.md Normal file
View File

@ -0,0 +1,6 @@
## Roadmap for tumbledemerald:
### v3
* Combine Pokémon Centers and Marts into one map, similar to the current titles.
* Remove HM moves and replace them with corresponding Key Items.

View File

@ -2,10 +2,10 @@
These guidelines are to be applied to all code contributed to the `tumbledemerald` project.
- Decapitalise everything! For example, change "POKéMON" to "Pokémon". (not yet though)
- Decapitalise everything! For example, change "POKéMON" to "Pokémon". This is almost already done thanks to the Python script, but make sure to keep an eye out!
- Always type "Pokémon" with the "é" Unicode character!
- When typing "Pokédex", make sure to type it without a capital "D".
- Use good English at all times.
- Use good English at all times, except when it doesn't make sense to do so.
- Abide by an 85-character "soft limit" per line of code. (This includes comments)
- If you decompile assembly (`.s` files) and a commit to `pret:master` later decompiles the same code, please revert your changes and add pret's
C or C++ code instead.

1
agbcc Submodule

@ -0,0 +1 @@
Subproject commit d59cfb5ac1ce13d4bc9875ffef1666b118338d33

View File

@ -118,6 +118,19 @@ DewfordTown_EventScript_FishingExcellent::
DewfordTown_EventScript_FishingNotSoGood::
msgbox DewfordTown_Text_FishingAdvice, MSGBOX_DEFAULT
goto_if_set FLAG_SYS_GAME_CLEAR, DewfordTown_EventScript_Intermediate_GiveOldSeaMap
release
end
DewfordTown_EventScript_Intermediate_GiveOldSeaMap::
goto_if_unset FLAG_RECEIVED_OLD_SEA_MAP, DewfordTown_EventScript_GiveOldSeaMap
release
end
DewfordTown_EventScript_GiveOldSeaMap::
msgbox DewfordTown_Text_MaybeExploringWouldBeBetter, MSGBOX_DEFAULT
giveitem ITEM_OLD_SEA_MAP
setflag FLAG_RECEIVED_OLD_SEA_MAP
release
end
@ -723,6 +736,12 @@ DewfordTown_Text_ThrowInFishingAdvice:
.string "you need to time the pulls on your Rod\l"
.string "to haul them in.$"
DewfordTown_Text_MaybeExploringWouldBeBetter:
.string "Hmmm... Well, if you aren't having much\n"
.string "luck with fishing...\l"
.string "Maybe exploring would be a better\n"
.string "fit for a Trainer like you?$"
DewfordTown_Text_ThatsTooBadThen:
.string "Oh, is that so?\n"
.string "That's too bad, then.$"

View File

@ -259,6 +259,7 @@ LittlerootTown_EventScript_Twin::
faceplayer
goto_if_set FLAG_ADVENTURE_STARTED, LittlerootTown_EventScript_GoodLuck
goto_if_set FLAG_RESCUED_BIRCH, LittlerootTown_EventScript_YouSavedBirch
goto_if_set FLAG_SYS_GAME_CLEAR, LittlerootTown_EventScript_Intermediate_DustyTickets
goto_if_ne VAR_LITTLEROOT_TOWN_STATE, 0, LittlerootTown_EventScript_GoSaveBirch
msgbox LittlerootTown_Text_IfYouGoInGrassPokemonWillJumpOut, MSGBOX_DEFAULT
release
@ -285,6 +286,20 @@ LittlerootTown_EventScript_GoodLuck::
release
end
LittlerootTown_EventScript_Intermediate_DustyTickets::
goto_if_unset FLAG_AURORA_MYSTIC_RECEIVED, LittlerootTown_EventScript_DustyTickets
end
LittlerootTown_EventScript_DustyTickets::
msgbox LittlerootTown_Text_FoundTickets, MSGBOX_DEFAULT
giveitem ITEM_MYSTIC_TICKET
giveitem ITEM_AURORA_TICKET
setflag FLAG_RECEIVED_AURORA_TICKET
setflag FLAG_RECEIVED_MYSTIC_TICKET
setflag FLAG_AURORA_MYSTIC_RECEIVED @ because I'm bad at hacking.
release
end
LittlerootTown_EventScript_NeedPokemonTriggerLeft::
lockall
applymovement LOCALID_TWIN, LittlerootTown_Movement_TwinApproachPlayerLeft
@ -997,6 +1012,13 @@ LittlerootTown_Text_GoodLuckCatchingPokemon:
.string "Are you going to catch Pokémon?\n"
.string "Good luck!$"
LittlerootTown_Text_FoundTickets:
.string "Um, hi!\p"
.string "I found these in an old suitcase. My\n"
.string "daddy doesn't want them, so I decided\n"
.string "to give these to you!$"
LittlerootTown_Text_TownSign:
.string "Littleroot Town\n"
.string "“A town that can't be shaded any hue.”$"

View File

@ -1258,7 +1258,7 @@ EventScript_CloseMossdeepGameCornerBarrier::
return
CableClub_OnResume:
special InitUnionRoom
@ special InitUnionRoom commented out by default, but can be easily re-enabled, see docs.
end
MossdeepCity_GameCorner_1F_EventScript_InfoMan2::

View File

@ -17,7 +17,7 @@ EventScript_PkmnCenterNurse_HealPkmn::
waitmessage
call EventScript_PkmnCenterNurse_TakeAndHealPkmn
goto_if_unset FLAG_POKERUS_EXPLAINED, EventScript_PkmnCenterNurse_CheckPokerus
goto EventScript_PkmnCenterNurse_CheckTrainerHillAndUnionRoom
goto EventScript_PkmnCenterNurse_ReturnPkmn
end
EventScript_PkmnCenterNurse_IllTakeYourPkmn::
@ -75,7 +75,7 @@ EventScript_PkmnCenterNurse_PlayerWaitingInUnionRoom::
EventScript_PkmnCenterNurse_CheckPokerus::
specialvar VAR_RESULT, IsPokerusInParty
goto_if_eq VAR_RESULT, TRUE, EventScript_PkmnCenterNurse_ExplainPokerus
goto_if_eq VAR_RESULT, FALSE, EventScript_PkmnCenterNurse_CheckTrainerHillAndUnionRoom
goto_if_eq VAR_RESULT, FALSE, EventScript_PkmnCenterNurse_ReturnPkmn
end
EventScript_PkmnCenterNurse_ExplainPokerus::

View File

@ -116,7 +116,7 @@ PlayersHouse_2F_EventScript_SetWallClock::
PlayersHouse_2F_Movement_MomEntersMale:
delay_8
walk_down
walk_faster_down
walk_in_place_faster_left
delay_16
delay_8
@ -124,18 +124,18 @@ PlayersHouse_2F_Movement_MomEntersMale:
step_end
PlayersHouse_2F_Movement_MomExitsMale:
walk_right
walk_faster_right
walk_up
delay_8
step_end
PlayersHouse_2F_Movement_MomEntersFemale:
delay_8
walk_down
walk_faster_down
walk_in_place_faster_right
delay_16
delay_8
walk_right
walk_faster_right
step_end
PlayersHouse_2F_Movement_MomExitsFemale:
@ -221,11 +221,11 @@ PlayersHouse_1F_EventScript_WatchGymBroadcast::
PlayersHouse_1F_Movement_MomApproachDadMale:
walk_up
walk_right
walk_right
walk_right
walk_right
walk_down
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_down
walk_in_place_faster_right
step_end
@ -235,12 +235,12 @@ PlayersHouse_1F_Movement_MomApproachDadFemale:
walk_left
walk_left
walk_left
walk_down
walk_faster_down
walk_in_place_faster_left
step_end
PlayersHouse_1F_Movement_MomApproachPlayerMale:
walk_right
walk_faster_right
step_end
PlayersHouse_1F_Movement_MomApproachPlayerFemale:
@ -277,8 +277,8 @@ PlayersHouse_1F_Movement_MomApproachPlayerAfterTVMale:
PlayersHouse_1F_Movement_MomApproachPlayerAfterTVFemale:
walk_up
walk_right
walk_right
walk_faster_right
walk_faster_right
step_end
PlayersHouse_1F_Movement_MomMakeRoomToSeeTVMale:
@ -287,19 +287,19 @@ PlayersHouse_1F_Movement_MomMakeRoomToSeeTVMale:
step_end
PlayersHouse_1F_Movement_MomMakeRoomToSeeTVFemale:
walk_right
walk_faster_right
walk_in_place_faster_left
step_end
PlayersHouse_1F_Movement_MomReturnToSeatMale:
walk_left
walk_down
walk_faster_down
walk_in_place_faster_right
step_end
PlayersHouse_1F_Movement_MomReturnToSeatFemale:
walk_right
walk_down
walk_faster_right
walk_faster_down
walk_in_place_faster_left
step_end
@ -393,27 +393,27 @@ PlayersHouse_1F_EventScript_Vigoroth2::
end
PlayersHouse_1F_Movement_PlayerApproachTVForGymMale:
walk_down
walk_down
walk_left
walk_left
walk_left
walk_faster_down
walk_faster_down
walk_faster_left
walk_faster_left
walk_faster_left
step_end
PlayersHouse_1F_Movement_PlayerMoveToTVMale:
walk_left
walk_faster_left
step_end
PlayersHouse_1F_Movement_PlayerApproachTVForGymFemale:
walk_down
walk_down
walk_right
walk_right
walk_right
walk_faster_down
walk_faster_down
walk_faster_right
walk_faster_right
walk_faster_right
step_end
PlayersHouse_1F_Movement_PlayerMoveToTVFemale:
walk_right
walk_faster_right
step_end
PlayersHouse_1F_Movement_MovePlayerAwayFromDoor:
@ -603,8 +603,8 @@ PlayersHouse_1F_EventScript_MomApproachPlayerAfterTVFemale::
return
PlayersHouse_1F_Movement_DadApproachPlayerMale:
walk_right
walk_right
walk_faster_right
walk_faster_right
step_end
PlayersHouse_1F_Movement_DadApproachPlayerFemale:
@ -621,24 +621,24 @@ PlayersHouse_1F_Movement_DadFaceMomFemale:
step_end
PlayersHouse_1F_Movement_DadExitsMale:
walk_down
walk_right
walk_down
walk_faster_down
walk_faster_right
walk_faster_down
delay_8
step_end
PlayersHouse_1F_Movement_DadExitsFemale:
walk_down
walk_faster_down
walk_left
walk_down
walk_faster_down
delay_8
step_end
PlayersHouse_1F_Movement_PlayerEnterRoomMale:
delay_16
walk_down
walk_down
walk_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_in_place_faster_left
step_end
@ -651,9 +651,9 @@ PlayersHouse_1F_Movement_MomAndPlayerWatchDadExit:
PlayersHouse_1F_Movement_PlayerEnterRoomFemale:
delay_16
walk_down
walk_down
walk_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_in_place_faster_right
step_end
@ -668,10 +668,10 @@ PlayersHouse_1F_Movement_PlayerApproachTVForLatiMale:
PlayersHouse_1F_Movement_PlayerApproachTVForLatiFemale:
walk_up
walk_right
walk_right
walk_right
walk_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_in_place_faster_up
step_end

View File

@ -1,3 +1,4 @@
# Got this from a GitHub gist somewhere. If you made this, please reach out so I can add you to the credits!
from glob import iglob
import re
@ -93,4 +94,4 @@ if __name__ == "__main__":
perform_decap(path, c_string_pattern, is_glob)
for path, is_glob in asm_files:
perform_decap(path, asm_string_pattern, is_glob)
perform_decap(path, asm_string_pattern, is_glob)

View File

@ -16,7 +16,7 @@ Fixes are written in the `diff` format. If you've used Git before, this should l
- [Scrolling through items in the bag causes the image to flicker](#scrolling-through-items-in-the-bag-causes-the-image-to-flicker)
## Scrolling through items in the bag causes the image to flicker
## Scrolling through items in the bag causes the image to flicker (fixed in tumbledemerald.)
**Fix:** Add the following function to [src/item_menu_icons.c](https://github.com/pret/pokeemerald/blob/master/src/item_menu_icons.c):
```diff

View File

@ -97,7 +97,7 @@
#define FLAG_LEGENDARIES_IN_SOOTOPOLIS 0x53
#define FLAG_REMOVE_WARP_FADE 0x54 // Custom flag used in tumbledemerald.
#define FLAG_UNUSED_0x055 0x55 // Unused Flag
#define FLAG_AURORA_MYSTIC_RECEIVED 0x55 // Custom flag used in tumbledemerald. Basically a workaround.
#define FLAG_HIDE_CONTEST_POKE_BALL 0x56 // Always set after new game, object it hides is added directly
#define FLAG_MET_RIVAL_MOM 0x57

View File

@ -322,6 +322,16 @@ static void HandleInputChooseAction(void)
BtlController_EmitTwoReturnValues(BUFFER_B, B_ACTION_CANCEL_PARTNER, 0);
PlayerBufferExecCompleted();
}
else
{
if(!(gBattleTypeFlags & BATTLE_TYPE_TRAINER)) //if wild, pressing B moves cursor to run
{
PlaySE(SE_SELECT);
ActionSelectionDestroyCursorAt(gActionSelectionCursor[gActiveBattler]);
gActionSelectionCursor[gActiveBattler] = 3;
ActionSelectionCreateCursorAt(gActionSelectionCursor[gActiveBattler], 0);
}
}
}
else if (JOY_NEW(START_BUTTON))
{

View File

@ -69,6 +69,8 @@ u8 gLinkVSyncDisabled;
u32 IntrMain_Buffer[0x200];
s8 gPcmDmaCounter;
extern void CB2_FlashNotDetectedScreen(void); // for Crust's sake use mGBA, people!
static EWRAM_DATA u16 gTrainerId = 0;
//EWRAM_DATA void (**gFlashTimerIntrFunc)(void) = NULL;
@ -114,7 +116,7 @@ void AgbMain()
gSoftResetDisabled = FALSE;
if (gFlashMemoryPresent != TRUE)
SetMainCallback2(NULL);
SetMainCallback2(CB2_FlashNotDetectedScreen);
gLinkTransferringData = FALSE;
sUnusedVar = 0xFC0;

View File

@ -401,3 +401,50 @@ static bool8 WipeSectors(u32 sectorBits)
else
return TRUE;
}
void CB2_FlashNotDetectedScreen(void){
static const struct WindowTemplate textWin[] = {
{
.bg = 0,
.tilemapLeft = 3,
.tilemapTop = 2,
.width = 24,
.height = 16,
.paletteNum = 15,
.baseBlock = 1,
}
};
static const char errorMsg[] = _(
"{COLOR RED}Hey!\n"
"{COLOR DARK_GRAY}Flash memory not detected.\n\n"
"Please make sure you\nare playing the game\n"
"on the mGBA emu-\nlator"
);
if (!gMain.state){
SetGpuReg(REG_OFFSET_DISPCNT, 0);
SetGpuReg(REG_OFFSET_BLDCNT, 0);
SetGpuReg(REG_OFFSET_BG0CNT, 0);
SetGpuReg(REG_OFFSET_BG0HOFS, 0);
SetGpuReg(REG_OFFSET_BG0VOFS, 0);
DmaFill16(3, 0, VRAM, VRAM_SIZE);
DmaFill32(3, 0, OAM, OAM_SIZE);
DmaFill16(3, 0, PLTT, PLTT_SIZE);
ResetBgsAndClearDma3BusyFlags(0);
InitBgsFromTemplates(0, sBgTemplates, ARRAY_COUNT(sBgTemplates));
LoadBgTiles(0, gTextWindowFrame1_Gfx, 0x120, 0x214);
DeactivateAllTextPrinters();
ResetTasks();
ResetPaletteFade();
LoadPalette(gTextWindowFrame1_Pal, 0xE0, 0x20);
LoadPalette(gStandardMenuPalette, 0xF0, 0x20);
InitWindows(textWin);
DrawStdFrameWithCustomTileAndPalette(0, TRUE, 0x214, 0xE);
SaveFailedScreenTextPrint(errorMsg, 1, 0);
TransferPlttBuffer();
*(u16*)PLTT = RGB(17, 18, 31);
ShowBg(0);
gMain.state++;
}
}