(Link to video)
Pokemon Yellow Total Control Hack. Reprogramming the game from the inside!

Game objectives

  • Emulator used: vba-rerecording 23.5
  • Reprogram the Game from the inside

Comments

I've included a detailed writeup here: http://aurellem.org/vba-clojure/html/total-control.html
The following are the highlights:

Introduction

Think of pokemon yellow as creating a little universe with certain rules. Inside that universe, you can buy items, defeat rival trainers, and raise your pokemon. But within that universe, you are bound by the rules of pokemon. You can't build new buildings, or change the music, or change your clothes.. There are some games (like chess), where it is not possible to alter the rules of the game from within the game. No matter what moves you make in chess, you can never change the rules of the game so that it becomes checkers or basketball. The point of this run is to show that you CAN change the rules in pokemon yellow. There is a certain sequence of valid actions (like walking from one place to another or buying items) that will allow you to transform pokemon yellow into Pacman, or Tetris, or Pong, or a MIDI player, or anything else you can imagine.

Background

The speedrun (#2913: p4wn3r's GBC Pokémon: Yellow Version in 01:36.95) by Felipe Lopes de Freitas (p4wn3r), beats pokemon yellow in only 1 minute and 36 seconds. It does it by corrupting the in-game item list so that he can advance the list past its normal limit of 20 items. The memory immediately after the item list includes the warp points for the current map, and by treating that data as items and switching and dropping them, he can make the door from his house take him directly to the end of the game.
When I first saw that speedrun, I was amazed at how fast pokemon yellow could be beaten, and that it was possible to manipulate the game from the inside, using only the item list. I wondered how far I could extend the techniques found in p4wn3r's run.
The gameboy is an 8 bit computer. That means that ultimately, anything that happens in pokemon is a result of the gameboy's CPU reading a stream of 8 bit numbers and doing whatever those numbers mean. For example, in the gameboy, the numbers:
62 16 37 224 47 240 37 230 15 55
mean to check which buttons are currently pressed and copy that result into the "A" register. With enough numbers, you can spell out an interactive program that reads input from the buttons and allows you to write any program you want to the gameboy. Once you have assembled such a program and forced the game to run it, you have won, since you can use that program to write any other program (like Tetris or Pacman) over pokemon yellow's code. I call a program that allows you to write any other program a "bootstrapping program". So, the goal is to somehow get a bootstrapping program into pokemon yellow and then force yellow to run that program instead of its own.
How can we spell out such a program? Everything in the game is ultimately numbers, including all items, pokemon, levels, etc. In particular, the item list looks like:
item-one-id         (0-255)
item-one-quantity   (0-255)
item-two-id         (0-255)
item-two-quantity   (0-255)
.
.
.

Let's consider the button measuring program [37 62 16 37 224 37 240 37 230 15 55] from before. Interpreted as items and item quantities, it is
lemonade     x16
guard spec.  x224
leaf stone   x240
guard spec.  x230
parlyz heal  x55
So, if we can get the right items in the right quantities, we can spell out a bootstrapping program. Likewise, when writing the bootstrapping program, we must be careful to only use numbers that are also valid items and quantities. This is hard because there aren't many different items to work with, and many machine instructions actually take 2 or even 3 numbers in a row, which severely restricts the types of items you can use. I ended up needing about 92 numbers to implement a bootstrap program. Half of those numbers were elaborate ways of doing nothing and were just there so that the entire program was also a valid item list.
The final part of the hack is getting pokemon yellow to execute the new program after it has been assembled with items. Fortunately, pokemon keeps a number called a function pointer within easy reach of the corrupted item list. This function pointer is the starting point (address) of a program which the game runs every so often to check for poison and do general maintenance. By shifting an item over this function pointer, I can rewrite that address to point to the bootstrapping program, and make the game execute it. Without this function pointer, it would not be possible to take over the game.

The Run

Pallet

I start off and name my rival Lp/k. These characters will eventually be treated as items and shifted over the function pointer, causing it to execute the bootstrapping program that will soon be constructed. I start the run the same as p4wn3r's and restart the game while saving, so that the pokemon list is corrupted. By switching the 8th and 10th pokemon, I corrupt the item list and can now scroll down past the 20th item. I shift items around to increase the text speed to maximum and rewrite the warp point of my house to Celadon Dept. Store. (p4wn3r used this to go directly to the hall of fame and win the game in his run.) I deposit many 0x00 glitch items into the PC from my corrupted inventory for later use. Then, I withdraw the potion from the PC. This repairs my item list by overflowing the item counter from 0xFF back to 0x00, though the potion is obliterated in the process. I then take 255 glitch items with ID 0x00 from the computer into my personal items.

Celadon Dept. Store

Leaving my house takes me directly to Celadon Dept. store, where I sell two 0x00 items for 414925 each, giving myself essentially max money. I hit every floor of the department store, gathering the following items:
 +-------------------+----------+
 |##| Item           | Quantity |
 +--+----------------+----------+
 |1 | TM02           |  98      |
 |2 | TM37           |  71      |
 |3 | TM05           |   1      |
 |4 | TM09           |   1      |
 |5 | burn-heal      |  12      |
 |6 | ice-heal       |  55      |
 |7 | parlyz-heal    |  99      |
 |8 | parlyz-heal    |  55      |
 |9 | TM18           |   1      |
 |10| fire-stone     |  23      |
 |11| water-stone    |  29      |
 |12| x-accuracy     |  58      |
 |13| guard-spec     |  99      |
 |14| guard-spec     |  24      |
 |15| lemonade       |  16      |
 |16| TM13           |   1      |
 +--+----------------+----------+
After gathering these items, I deposit them in the appropriate order into the item PC to spell out my bootstrapping program. Writing a full bootstrap program in one go using only items turned out to be too hard, so I split the process up into three parts. The program that I actually construct using items is very limited. It reads only from the A, B, start, and select buttons, and writes 4 bits each frame starting at a fixed point in memory. After it writes 200 or so bytes, it jumps directly to what it just wrote. In my run, I use this program to write another bootstrapping program that can write any number of bytes to any location in memory, and then jump to any location in memory. This new program can also write 8 bits per frame by using all the buttons. Using this new bootstrap program, I write a final bootstrapping program that does everything the previous bootstrapping program does except it also displays the bytes it is writing to memory on the screen.

Finale

After completing this bootstrapping program, I go to the Celadon mansion, because I find the metaness of that building to be sufficiently high to serve as an exit point for the pokemon universe. I corrupt my item list again by switching corrupted pokemon, scroll down to my rival's name and discard until it is equal to the address of my bootstrapping program, and then swap it with the function pointer. Once the menu is closed, the bootstrapping program takes over, and I write the payload....

Other comments

The entire video was played by the computer using bots. I used functional programming to write search programs over different possible game states to find the most efficient way of performing general actions. Some interesting things I developed but didn't use were pretty printing functions to display the game's internal data structures, and an "improbability drive" that forces improbable events to happen automatically using search.
Here are a few example scripts:
 (defn-memo viridian-store->oaks-lab
   ([] (viridian-store->oaks-lab
        (get-oaks-parcel) ) )
   ([ script \]
      (->> script
           (walk [↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
                  ← ← ← ← ← ← ← ← ← 
                  ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
                  ← ←
                  ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
                  ↓ ↓ ↓ ↓ ↓ ↓ ↓
                  → → → → → → → →
                  ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
                  ← ← ← ← ←
                  ↓ ↓ ↓ ↓
                  ])
           (walk-thru-grass
            [↓ ↓ ↓ ↓ ↓ ↓ ↓])
           (walk [↓ ↓ ← ↓ ↓ ↓ ←
                  ↓ ↓ ↓ ↓ ↓ ↓
                  → → → ↑])
                 
           (do-nothing 1) ) ) )
This script walks from the Viridian City pokemon store to Oak's Lab in the most efficient way possible. The walk-thru-grass function guarantees that no wild battles will happen by manipulating the game's random number generator.
 (defn-memo hacking-10
   ([] (hacking-10 (hacking-9) ) )
   ([ script \]
      (->> script
           begin-deposit
           (deposit-held-item 17 230)
           (deposit-held-item-named :parlyz-heal 55)
           (deposit-held-item 14 178)
           (deposit-held-item-named :water-stone 29)
           (deposit-held-item 14 32)
           (deposit-held-item-named :TM18 1)
           (deposit-held-item 13 1)
           (deposit-held-item 13 191)
           (deposit-held-item-named :TM02 98)
           (deposit-held-item-named :TM09 1)
           close-menu) ) ) 
 
This script calculates the fastest sequence of key presses to deposit the requested items into a PC, assuming that the character starts out in front of a computer.

Other Comments

The final payload program is multiple programs. I created a reduced form of MIDI and implemented it in gameboy machine language. Then I translated a midi file from [dead link removed] into this reduced MIDI language. The payload program contains both the music data and the MIDI interpreter to play that data. The picture works in a similar way. There is code to translate a png file into a form that can be displayed on a gameboy, and other code to actually display that image. Both the image and the display code are also written by the final bootstrapping program. Even though my final payload is rather simple, you can write any program at all as the payload. The source for the sound and image displaying code is at http://hg.bortreb.com/vba-clojure
This entire project is open source and I encourage anyone who wants to take the code and play around!

Suggested Screenshots

Or whatever you all think would be best.
I encoded the video with/without button visualization here:

FractalFusion: Replaced movie file to fix time (note that the parser works in such a way so that the time listed for a VBM can easily be faked).
FractalFusion: Response is well-received for the new concept. Accepting for publication.
natt: Processing...
FractalFusion: Changed branch to "Executes Arbitrary Code".

1 2
7 8
TASVideoAgent
They/Them
Moderator
Joined: 8/3/2004
Posts: 14853
Location: 127.0.0.1
Former player
Joined: 9/3/2012
Posts: 40
Location: boston
I think that the submission system is trying to extract the rerecord count and total length from the header of the vbm file. Since I wrote my own program to output this file, that header is wrong. That's most likely what happened. Can I change the time manually somehow? The actual time of the video is 12 minutes, 50 seconds. The rerecord count doesn't really apply since it's all done with bots. It's probably in the millions by now.
Active player (317)
Joined: 1/15/2012
Posts: 343
Saw it in the Pokemon topic, so yes vote of course but... In which category would this run go ?
Spikestuff
They/Them
Editor, Publisher, Expert player (2283)
Joined: 10/12/2011
Posts: 6335
Location: The land down under.
Yes for good choice of music :3
WebNations/Sabih wrote:
+fsvgm777 never censoring anything.
Disables Comments and Ratings for the YouTube account. Something better for yourself and also others.
Player (33)
Joined: 3/8/2012
Posts: 398
Location: Windfall Island
Saw this a while ago. It's amazing what you can do with total control. Dat ending <3
IronSlayer wrote:
Your counterargument would be like me saying that the Earth is round and then you telling me that I need to show it's flat so I can "prove us all wrong".
Seems legit.
Active player (266)
Joined: 9/14/2011
Posts: 349
Epitome of TAS. I saw this once in niconico, but didn't realized by then that it was caused not by hex editting, but by hacking in gameplay. Man, any words can't describe how I'm thrilled now. That was super! Now we have a winner for the funny(or glitchy) TAS of this year.
Editor, Experienced player (608)
Joined: 11/8/2010
Posts: 4012
Absolutely amazing technical achievement. There's no reason TASVideos should not house this run. Yes vote.
Joined: 2/20/2010
Posts: 209
Location: I'm in space
this is the most amazing glitch-out i have seen on tasvideos since inichi's chrono trigger run. wow. i am in awe. wow, wow... wow. that said -- the picture of balloons is nice, but i was hoping for a port of king's quest iii. ;) and finally, how soon could we get this thing console verified??? =D (yes vote, obviously!)
Oh, play it cool. Play it cool. Here come the space cops.
Spikestuff
They/Them
Editor, Publisher, Expert player (2283)
Joined: 10/12/2011
Posts: 6335
Location: The land down under.
goldfish wrote:
and finally, how soon could we get this thing console verified??? =D (yes vote, obviously!)
If it was Red/Blue/Green quite quickly with SGB as it would be an snes playback and since vba does sgb and I think there is a SNESbot out there.. somewhere but GB maybe longer.
WebNations/Sabih wrote:
+fsvgm777 never censoring anything.
Disables Comments and Ratings for the YouTube account. Something better for yourself and also others.
Joined: 4/5/2011
Posts: 61
Well, this should just replace the currently published movie, as that is pretty messed up (in a good way) too. Just like any other glitched run. Looking forward to watching this during my lunch break.
Experienced player (617)
Joined: 11/30/2008
Posts: 650
Location: a little city in the middle of nowhere
Holy shit.
Measure once. Cut twice.
Former player
Joined: 9/3/2012
Posts: 40
Location: boston
KwyjiboPrime: but this run has a different goal than p4wn3r's video. He beats the game as fast as possible, while I reprogram the game. Spikestuff: If you have a way to verify it if it were Red or Blue, then that same technique should also work for yellow. I'm not sure how these console verifying machines work, but one problem that could come up is that there is some "give" with the physical inputs on a real gameboy. (When you press a button, it sometimes causes an electrical vibration in the memory mapped input registers, and so a single button can register multiple times.) Also, in my run I assume that you can hit each arrow of the d-pad independently. I'd love to learn more about how these console verifying machines work if you wouldn't mind sending a link or something. Thanks everyone!
Active player (301)
Joined: 8/8/2005
Posts: 296
Location: NSW, Australia
What happened in the ending? Did the game print out the entire RAM map or something? I have to say, this is quite unlike anything I have ever seen. Amazing work!
Former player
Joined: 9/3/2012
Posts: 40
Location: boston
mike89: I get the game to execute a program that reads the eight buttons (down, up, left, right, A, B , start, select) as a single byte of input and write that byte to memory. It also displays that byte to the screen. So, the numbers that appear on the screen are the programming code for the music and picture at the end, and each number is entered by pressing a certain combination of the eight keys.
Dwedit
He/Him
Joined: 3/24/2006
Posts: 692
Location: Chicago
So it appears that he corrupts Pokemon to include a bootloader that turns control pad input into bytes, then executes them. First, the RAM corruption using the stuff in game, then it starts accepting joypad input as code. Then there's a second stage boot loader that displays the bytes entered in hex. Then finally it executes whatever was executed. But points off for using a bad MIDI file, seriously, there are so many wrong notes in there that it's annoying.
Former player
Joined: 9/3/2012
Posts: 40
Location: boston
STBM helped me fix the frame count of the video. The corrected submission is at http://aurellem.org/pokemon-hack/rlm-yellow-hack.zip (The only difference is that the frame count in the header is now correct) Thanks STBM and Spikestuff!
Editor, Skilled player (1938)
Joined: 6/15/2005
Posts: 3244
Thank you, bortreb. I have already updated the submission with the correct time though (the insanely large time that occurred was because of my testing).
Warepire
He/Him
Editor
Joined: 3/2/2010
Posts: 2174
Location: A little to the left of nowhere (Sweden)
This is just jawdroppingly awesome. I vote yes and hope for a Star-tier publication.
Joined: 11/16/2009
Posts: 68
What's next? Write Tetris to memory and then TAS that? Of course, the Game Boy version of Tetris would take a little over 9 minutes to write, but it would be interesting nonetheless!
Active player (266)
Joined: 9/14/2011
Posts: 349
Both seem decent for screenshot.
Spikestuff
They/Them
Editor, Publisher, Expert player (2283)
Joined: 10/12/2011
Posts: 6335
Location: The land down under.
Odongdong wrote:
Maybe excluding "Messing" would be better
WebNations/Sabih wrote:
+fsvgm777 never censoring anything.
Disables Comments and Ratings for the YouTube account. Something better for yourself and also others.
Editor, Experienced player (608)
Joined: 11/8/2010
Posts: 4012
Spikestuff wrote:
Maybe excluding "Messing" would be better
I think that text all appears at the same time, so that isn't an option. Maybe a screenshot of "Messing with it could bug"?
Active player (266)
Joined: 9/14/2011
Posts: 349
CoolKirby wrote:
I think that text all appears at the same time, so that isn't an option.
That's true. I just checked it.
CoolKirby wrote:
Maybe a screenshot of "Messing with it could bug"?
*Edit*
Glitcher
He/Him
Joined: 3/24/2007
Posts: 216
Location: London, U.K.
This blows my mind! I've seen a lot of weird TASes of games glitching up beyond all recognition, but this... THIS! Just the sheer concept of this TAS deserves the highest honors of this site. In fact, I'd love this to be presented to Satoshi Tajiri just to see his reaction. XD
Joined: 4/5/2011
Posts: 61
bortreb wrote:
KwyjiboPrime: but this run has a different goal than p4wn3r's video. He beats the game as fast as possible, while I reprogram the game.
Yeah, I just saw the video now and realized that the time was off. If it were 5 secs, then it would've definitely obsoleted the current. Anyway, I'm a little torn about this run. I don't think that anyone will dispute the high quality for the technical aspect. But, the entertainment aspect is another question. On the one hand, you have that special screenshot at the end and the idea of hacking the game is astounding. On the other hand, that's 12 min of mind-numbing waiting time for the reprogram and then the screenshot. The goal is something akin to a playaround, since it doesn't satisfy the S in TAS. I wish I could vote maybe for entertainment.
1 2
7 8