Save data structure (Generation III): Difference between revisions
(→Text data: Japanese text table. I might finish the English one later) |
m (Text replacement - "}}<br>↵{{Project Games notice" to "}} {{Project Games notice") |
||
(48 intermediate revisions by 20 users not shown) | |||
Line 2: | Line 2: | ||
{{cleanup}} | {{cleanup}} | ||
<div style="float:right; margin-left: 16px;">__TOC__</div> | <div style="float:right; margin-left: 16px;">__TOC__</div> | ||
The '''save data structure''' for Generation III is stored in the cartridge's battery-backed | The '''save data structure''' for Generation III is stored in the cartridge's flash memory chip (Flash-RAM),<ref>https://reinerziegler.de.mirrors.gg8.se/GBA/gba.htm</ref> which does not lose data when power is lost. This is different from previous generations of Pokémon, which used battery-backed memory (SRAM). The structure consists of 128 KB of data, though not every byte is used. When emulated, this data is generally placed in a separate file (".sav" is a common extension). These should not be confused with save state files, which might have similar file extensions. Emulators may append additional data for the purposes of maintaining real-time clock operations or any number of uses, which can complicate the creation of editing tools. | ||
The integrity of most of the file is validated by checksums. | The integrity of most of the file is validated by checksums. | ||
Line 9: | Line 9: | ||
Unless otherwise noted, integer values occupy the specified number of bytes, and are {{wp|Endianness|little-endian}} and either unsigned or {{wp|two's complement}}. | Unless otherwise noted, integer values occupy the specified number of bytes, and are {{wp|Endianness|little-endian}} and either unsigned or {{wp|two's complement}}. | ||
Text data is stored in a {{OBP|Character encoding|Generation III|proprietary encoding}}. Strings in fixed-length fields are terminated with 0xFF with any remainder padded with 0x00. | |||
| | |||
|} | |||
==File structure== | ==File structure== | ||
Line 114: | Line 18: | ||
*If any checksum for the most recent game save fails, the game will use the previous game save instead. | *If any checksum for the most recent game save fails, the game will use the previous game save instead. | ||
*If any checksum for the previous game save fails, the player will be forced to start a new game. | *If any checksum for the previous game save fails, the player will be forced to start a new game. | ||
{| border="1" style="border: 1px solid #999; border-collapse: collapse;" | {| border="1" style="border: 1px solid #999; border-collapse: collapse;" | ||
Line 131: | Line 34: | ||
|- style="background: #eeeeee; text-align: center;" | |- style="background: #eeeeee; text-align: center;" | ||
| 0x01C000 | | 0x01C000 | ||
| | | 8192 | ||
| '' | | [[#Hall of Fame|Hall of Fame]] | ||
|- style="background: #dddddd; text-align: center;" | |||
| 0x01E000 | |||
| 4096 | |||
| ''Mystery Gift/e-Reader'' | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x01F000 | |||
| 4096 | |||
| ''Recorded Battle'' | |||
|} | |} | ||
===Game save A, Game save B=== | ===Game save A, Game save B=== | ||
14 [[#Section format|sections]] | Each game save is represented by 14 [[#Section format|sections]]. The game alternates which region of the save file it writes to each time the game is saved. For example, if the most recent save was save A, then the next time the game is saved, it will be written to save B. | ||
Despite the [[#Save index|save index]] being stored in each section, only the value in the last section is used to determine the most recent save. If save A's value is bigger, then it is the most recent. Otherwise, save B is the most recent (this includes ties). | |||
The very first time the game is saved it is saved in save block B. | |||
The game | ===Hall of Fame, Mystery Gift/e-Reader, Recorded Battle=== | ||
The first time each of these features are used on a new game, the data is wiped. For example, When entering the Hall of Fame for the first time, the entire contents of its sections are set to 0x00. | |||
==Section format== | ==Section format== | ||
All sections contain the same general format: | All sections contain the same general format: 3968 bytes of data, followed by a footer. | ||
{| border="1" style="border: 1px solid #999; border-collapse: collapse;" | {| border="1" style="border: 1px solid #999; border-collapse: collapse;" | ||
Line 152: | Line 66: | ||
|- style="background: #eeeeee; text-align: center;" | |- style="background: #eeeeee; text-align: center;" | ||
| 0x0000 | | 0x0000 | ||
| | | 3968 | ||
| [[#Data|Data]] | | [[#Data|Data]] | ||
|- style="background: #dddddd; text-align: center;" | |- style="background: #dddddd; text-align: center;" | ||
Line 163: | Line 77: | ||
| [[#Checksum|Checksum]] | | [[#Checksum|Checksum]] | ||
|- style="background: #dddddd; text-align: center;" | |- style="background: #dddddd; text-align: center;" | ||
| 0x0FF8 | |||
| 4 | |||
| [[#Signature|Signature]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x0FFC | | 0x0FFC | ||
| 4 | | 4 | ||
Line 190: | Line 108: | ||
| 2 | | 2 | ||
| 3968 | | 3968 | ||
| | | Game State | ||
|- style="background: #dddddd; text-align: center;" | |- style="background: #dddddd; text-align: center;" | ||
| 3 | | 3 | ||
| 3968 | | 3968 | ||
| | | Misc Data | ||
|- style="background: #eeeeee; text-align: center;" | |- style="background: #eeeeee; text-align: center;" | ||
| 4 | | 4 | ||
Line 238: | Line 156: | ||
All 14 sections must be present exactly once in each game save block. | All 14 sections must be present exactly once in each game save block. | ||
Every time the game is saved the order of the sections gets rotated once. For example, the first-ever time the game is saved, the sections are saved in the order 13, 0, 1, ..., 12. The next time the game gets saved these sections will be rotated by 1: 12, 13, 0, 1, ..., 11. The sections only ever get rotated and never scrambled so they will always remain in the same order, but may begin at different points. | |||
===Signature=== | |||
Each section contains 4 bytes in between the Checksum and Save Index. This serves as a file signature that holds the magic number '''0x08012025''' in little-endian format (i.e. bytes '''0x25 0x20 0x01 0x08'''). If the signature holds a different value, the section, and, by extension, the save block, is treated as invalid. | |||
====Checksum==== | ====Checksum==== | ||
Line 254: | Line 177: | ||
All 14 sections within a game save must have the same ''Save Index'' value. The most recent game save will have a greater ''Save Index'' value than the previous save. | All 14 sections within a game save must have the same ''Save Index'' value. The most recent game save will have a greater ''Save Index'' value than the previous save. | ||
==Section 0 - | ==Pokédex data== | ||
The Pokédex has multiple data units stored in various parts of the game save. ''Editor's note: Research into this is still ongoing, but all testing has turned up the following results.'' | |||
{| border="1" style="border: 1px solid #999; border-collapse: collapse;" | |||
|- style="background: #cccccc; text-align: center;" | |||
| colspan="3" | {{sup/3|RS}} | |||
| colspan="3" | {{sup/3|E}} | |||
| colspan="3" | {{sup/3|FRLG}} | |||
| style="background: #ffffff;" | | |||
|- style="background: #cccccc; text-align: center;" | |||
! Section | |||
! Offset | |||
! Size | |||
! Section | |||
! Offset | |||
! Size | |||
! Section | |||
! Offset | |||
! Size | |||
! Contents | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0 | |||
| 0x0019 | |||
| 2 | |||
| 0 | |||
| 0x0019 | |||
| 2 | |||
| 0 | |||
| 0x001B | |||
| 1 | |||
| [[#National Pokédex|National Pokédex A]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0 | |||
| 0x0028 | |||
| 49 | |||
| 0 | |||
| 0x0028 | |||
| 49 | |||
| 0 | |||
| 0x0028 | |||
| 49 | |||
| [[#Pokédex owned, Pokédex seen|Pokédex owned]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0 | |||
| 0x005C | |||
| 49 | |||
| 0 | |||
| 0x005C | |||
| 49 | |||
| 0 | |||
| 0x005C | |||
| 49 | |||
| [[#Pokédex owned, Pokédex seen|Pokédex seen A]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 1 | |||
| 0x0938 | |||
| 49 | |||
| 1 | |||
| 0x0988 | |||
| 49 | |||
| 1 | |||
| 0x05F8 | |||
| 49 | |||
| [[#Pokédex owned, Pokédex seen|Pokédex seen B]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 2 | |||
| 0x03A6 | |||
| 1 | |||
| 2 | |||
| 0x0402 | |||
| 1 | |||
| 2 | |||
| 0x0068 | |||
| 1 | |||
| [[#National Pokédex|National Pokédex B]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 2 | |||
| 0x044C | |||
| 2 | |||
| 2 | |||
| 0x04A8 | |||
| 2 | |||
| 2 | |||
| 0x011C | |||
| 2 | |||
| [[#National Pokédex|National Pokédex C]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 4 | |||
| 0x0C0C | |||
| 49 | |||
| 4 | |||
| 0x0CA4 | |||
| 49 | |||
| 4 | |||
| 0x0B98 | |||
| 49 | |||
| [[#Pokédex owned, Pokédex seen|Pokédex seen C]] | |||
|} | |||
===Pokédex owned, Pokédex seen=== | |||
Represents the specific Pokédex entries that have been either seen or owned during gameplay. | |||
It is not clear why there are three copies of which Pokémon have been seen (it may be related to how the game loads game save sections), but all three need to have the same data. | |||
Pokémon are indexed by their usual Pokédex order, meaning the order is the same as in the [[List of Pokémon by National Pokédex number#Generation I|National Pokédex]]. However, indexes begin counting at 0, rather than 1. | |||
1 bit is used to represent whether a given Pokémon has been seen/owned. Bits are ordered within bytes from lowest to highest, starting with the first byte. Therefore, the exact bit can be extracted from the list using the following formula: | |||
Bit = ( Data[ RoundDown(PokeNum / 8) ] / 2 ^ (PokeNum Mod 8) ) AND 1 | |||
Or in C-style code (shift occurs before other bitwise operations): | |||
Bit = Data[PokeNum >> 3] >> (PokeNum & 7) & 1; | |||
====Example==== | |||
Let us say that we want to know whether #286 {{p|Breloom}} has been seen/owned: | |||
*PokeNum becomes 285, since it is 0-based. | |||
*The byte of the list in which bit 285 is located is = 285 / 8 = 35 | |||
*The bit within that byte is = 285 Mod 8 = 5 | |||
*Dividing the byte value by 2 ^ Bit, or shifting right by Bit, moves the bit to the least-significant position | |||
*Performing a bitwise AND with 1 will remove all but the least-significant bit | |||
===National Pokédex=== | |||
Various fields are used to indicate that the National Pokédex has been unlocked, and all fields must be configured correctly. ''Editor's note: It's not certain whether these rules always apply to 100% of game saves, but they have for every save I've come across.'' | |||
====Field A==== | |||
In Ruby, Sapphire and Emerald, these two bytes have the following values: | |||
*0x00 0x00 - National Pokédex is '''not''' unlocked | |||
*0x01 0xDA - National Pokédex is unlocked | |||
In FireRed and LeafGreen, this one byte has the following values: | |||
*0x00 - National Pokédex is '''not''' unlocked | |||
*0xB9 - National Pokédex is unlocked | |||
====Field B==== | |||
One bit in this field is used to determine whether the National Pokédex has been unlocked, as follows: | |||
*Bit 6 - Ruby, Sapphire and Emerald | |||
*Bit 0 - FireRed and LeafGreen | |||
If the National Pokédex has been unlocked, the value of the bit will be 1. | |||
====Field C==== | |||
In Ruby, Sapphire and Emerald, these two bytes have the following values: | |||
*0x00 0x00 - National Pokédex is '''not''' unlocked | |||
*0x02 0x03 - National Pokédex is unlocked | |||
In FireRed and LeafGreen, these two bytes have the following values: | |||
*0x00 0x00 - National Pokédex is '''not''' unlocked | |||
*0x58 0x62 - National Pokédex is unlocked | |||
==Section 0 - Trainer Info== | |||
This section contains information regarding the player character. | This section contains information regarding the player character. | ||
Line 275: | Line 349: | ||
|- style="background: #eeeeee; text-align: center;" | |- style="background: #eeeeee; text-align: center;" | ||
| 0x0000 | | 0x0000 | ||
| | | 7 | ||
| 0x0000 | | 0x0000 | ||
| | | 7 | ||
| 0x0000 | | 0x0000 | ||
| | | 7 | ||
| [[#Player name|Player name]] | | [[#Player name|Player name]] | ||
|- style="background: #dddddd; text-align: center;" | |- style="background: #dddddd; text-align: center;" | ||
Line 289: | Line 363: | ||
| 1 | | 1 | ||
| [[#Player gender|Player gender]] | | [[#Player gender|Player gender]] | ||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x0009 | |||
| 1 | |||
| 0x0009 | |||
| 1 | |||
| 0x0009 | |||
| 1 | |||
| Unused/Unknown | |||
|- style="background: #eeeeee; text-align: center;" | |- style="background: #eeeeee; text-align: center;" | ||
| 0x000A | | 0x000A | ||
Line 306: | Line 388: | ||
| [[#Time played|Time played]] | | [[#Time played|Time played]] | ||
|- style="background: #eeeeee; text-align: center;" | |- style="background: #eeeeee; text-align: center;" | ||
| 0x0013 | |||
| 3 | |||
| 0x0013 | |||
| 3 | |||
| 0x0013 | |||
| 3 | |||
| [[#Options|Options]] | |||
|- style="background: #dddddd; text-align: center;" | |||
| 0x00AC | | 0x00AC | ||
| 4 | | 4 | ||
Line 312: | Line 402: | ||
| 4 | | 4 | ||
| [[#Game Code|Game Code]] | | [[#Game Code|Game Code]] | ||
|- style="background: # | |- style="background: #eeeeee; text-align: center;" | ||
| colspan="2" | ''N/A'' | | colspan="2" | ''N/A'' | ||
| 0x00AC | | 0x00AC | ||
Line 330: | Line 420: | ||
*For girl characters, this is set to <code>0x01</code> | *For girl characters, this is set to <code>0x01</code> | ||
Note that changing this value will | Note that changing this value will not be reflected immediately on the character sprite when first loading the game. (This is because the game saves the state of the current map and the sprites, scripts, and tiles on it separately.) To update the sprite, the player must load into a new map first, such as entering or exiting a building. | ||
===Trainer ID=== | ===Trainer ID=== | ||
Line 343: | Line 433: | ||
The ''hours'' field is 16-bit. The other three fields are 8-bit. | The ''hours'' field is 16-bit. The other three fields are 8-bit. | ||
===Options=== | |||
These are the [[Options|options]] that can be changed in-game via the Options menu entry. | |||
The first byte (0x13) contains the Button Mode settings. The different settings correspond to these values: | |||
* ''Normal''{{sup/3|RSE}}/''Help''{{sup/3|FRLG}}: <code>0x01</code> | |||
* ''LR'': <code>0x02</code> | |||
* ''L=A'': <code>0x03</code> | |||
The second byte (0x14) contains the settings for Text Speed and Frame. The lowest three bits designate the Text Speed and the remaining bits the index of the chosen Frame style. The options for Text speed result in these values in the save file: | |||
* Slow: <code>0b00000000</code> | |||
* Medium: <code>0b00000001</code> | |||
* Fast: <code>0b000000010</code> | |||
Since there are only three different Text Speeds selectable in-game but eight possible values in three bits, the effect of values outside this range is unclear. | |||
The index of the chosen Frame can be found in the upper five bits. A gallery of all the frames can be found [[Options/Frames#Generation_III|here]]. The indexes in the save file start at 0, so a Frame value of 15 results in Frame 16. | |||
The third byte (0x15) contains the settings for Sound, Battle Style and Battle Scene. Each setting is represented by one bit, basically switching the setting from one value to the other. | |||
* Sound: Bit 1. <code>0b00000000</code> for ''mono'' (the default) and <code>0b00000001</code> for ''stereo''. | |||
* Battle Style: Bit 2. <code>0b00000000</code> for ''switch'' (the default) and <code>0b00000010</code> for ''set''. | |||
* Battle Scene: Bit 3. <code>0b00000000</code> for ''on'' (the default) and <code>0b00000100</code> for ''off''. | |||
===Game Code=== | ===Game Code=== | ||
Line 359: | Line 471: | ||
[[Pokémon Ruby and Sapphire Versions|Ruby and Sapphire]] either do not utilize this masking operation, or the mask is always zero. ''Editor's Note: This could use some further investigation. If the mask does exist, it would be located at the same spots as in Emerald. In all of my testing, Ruby/Sapphire data has not been protected by a security key.'' | [[Pokémon Ruby and Sapphire Versions|Ruby and Sapphire]] either do not utilize this masking operation, or the mask is always zero. ''Editor's Note: This could use some further investigation. If the mask does exist, it would be located at the same spots as in Emerald. In all of my testing, Ruby/Sapphire data has not been protected by a security key.'' | ||
==Section 1 - | ==Section 1 - Team / Items== | ||
This section contains information regarding the player's team of Pokémon as well as their item inventory. | This section contains information regarding the player's team of Pokémon as well as their item inventory. | ||
Line 403: | Line 515: | ||
| [[#Money|Money]] | | [[#Money|Money]] | ||
|- style="background: #dddddd; text-align: center;" | |- style="background: #dddddd; text-align: center;" | ||
| 0x0494 | |||
| 2 | |||
| 0x0494 | |||
| 2 | |||
| 0x0294 | |||
| 2 | |||
| [[#Coins|Coins]] | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x0498 | | 0x0498 | ||
| 200 | | 200 | ||
Line 410: | Line 530: | ||
| 120 | | 120 | ||
| [[#Item pockets|PC items]] | | [[#Item pockets|PC items]] | ||
|- style="background: # | |- style="background: #dddddd; text-align: center;" | ||
| 0x0560 | | 0x0560 | ||
| | | 80 | ||
| 0x0560 | | 0x0560 | ||
| 120 | | 120 | ||
Line 418: | Line 538: | ||
| 168 | | 168 | ||
| [[#Item pockets|Item pocket]] | | [[#Item pockets|Item pocket]] | ||
|- style="background: # | |- style="background: #eeeeee; text-align: center;" | ||
| 0x05B0 | | 0x05B0 | ||
| 80 | | 80 | ||
| 0x05D8 | | 0x05D8 | ||
| 120 | | 120 | ||
| | | 0x03B8 | ||
| 120 | | 120 | ||
| [[#Item pockets|Key item pocket]] | | [[#Item pockets|Key item pocket]] | ||
|- style="background: # | |- style="background: #dddddd; text-align: center;" | ||
| 0x0600 | | 0x0600 | ||
| 64 | | 64 | ||
Line 434: | Line 554: | ||
| 52 | | 52 | ||
| [[#Item pockets|Ball item pocket]] | | [[#Item pockets|Ball item pocket]] | ||
|- style="background: # | |- style="background: #eeeeee; text-align: center;" | ||
| 0x0640 | | 0x0640 | ||
| 256 | | 256 | ||
Line 442: | Line 562: | ||
| 232 | | 232 | ||
| [[#Item pockets|TM Case]] | | [[#Item pockets|TM Case]] | ||
|- style="background: # | |- style="background: #dddddd; text-align: center;" | ||
| 0x0740 | | 0x0740 | ||
| 184 | | 184 | ||
| | | 0x0790 | ||
| 184 | | 184 | ||
| 0x054C | | 0x054C | ||
| 172 | | 172 | ||
| [[#Item pockets| | | [[#Item pockets|Berry pocket]] | ||
|} | |} | ||
Line 456: | Line 576: | ||
===Team Pokémon list=== | ===Team Pokémon list=== | ||
Data representing information for up to 6 Pokémon, as an array. For the format, please refer to: [[Pokémon data structure | Data representing information for up to 6 Pokémon, as an array. For the format, please refer to: [[Pokémon data structure (Generation III)]]. | ||
All 100 bytes of the Pokémon record are used. | All 100 bytes of the Pokémon record are used. | ||
Line 464: | Line 584: | ||
===Money=== | ===Money=== | ||
The amount of money held by the player. Must be XORed with the [[#Security key|security key]] to yield the true value. | The amount of money held by the player. Must be XORed with the [[#Security key|security key]] to yield the true value. | ||
===Coins=== | |||
The number of coins in the [[Coin case]]. Must be XORed with the lower two bytes of the [[#Security key|security key]] to yield the true value. | |||
===Item pockets=== | ===Item pockets=== | ||
Line 506: | Line 629: | ||
====Item index==== | ====Item index==== | ||
The item's [[List of items by index number | The item's [[List of items by index number in Generation III|index]]. | ||
====Item quantity==== | ====Item quantity==== | ||
Line 513: | Line 636: | ||
The security key does NOT apply to items stored in the PC. | The security key does NOT apply to items stored in the PC. | ||
==Section 4 - | ==Section 2 - Game State== | ||
This section contains information regarding the rival character. | |||
This section contains many flags and variables associated with the state of the game, from daily step counts, berry tree, and secret base information, to plot advancement flags and the state of scripting events across the game. | |||
{| border="1" style="border: 1px solid #999; border-collapse: collapse;" | |||
|- style="background: #cccccc; text-align: center;" | |||
| colspan="2" | {{sup/3|RS}} | |||
| colspan="2" | {{sup/3|E}} | |||
| style="background: #ffffff;" | | |||
|- style="background: #cccccc; text-align: center;" | |||
! Offset | |||
! Size | |||
! Offset | |||
! Size | |||
! Contents | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x0408(?) | |||
| 4 | |||
| 0x0464 | |||
| 4 | |||
| [[Mirage Island (Generation III)|Mirage Island value]] | |||
|} | |||
Note that only the low two bytes of the Mirage Island value is used. (Little endian) | |||
==Section 3-4 - Game Specific Data== | |||
This section contains more information regarding game state. The data in this region varies by game. In RSE, this section has lots of data used with record mixing, secret bases, interviewer data, Trainer Hill, mail, etc. | |||
In FRLG, this section has data regarding the rival character. | |||
Fields documented below simply list known values; there may be additional significant data in this section: | Fields documented below simply list known values; there may be additional significant data in this section: | ||
Line 547: | Line 697: | ||
Altogether, the PC buffer contains 3968 bytes from each of 8 sections and 2000 bytes from 1 section, for a total of 33744 bytes. | Altogether, the PC buffer contains 3968 bytes from each of 8 sections and 2000 bytes from 1 section, for a total of 33744 bytes. | ||
{| border="1" style="border: 1px solid #999; border-collapse: collapse;" | {| border="1" style="border: 1px solid #999; border-collapse: collapse;" | ||
Line 566: | Line 714: | ||
| 33600 | | 33600 | ||
| [[#PC Boxes Pokémon list|PC Boxes Pokémon list]] | | [[#PC Boxes Pokémon list|PC Boxes Pokémon list]] | ||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x8344 | |||
| 126 | |||
| [[#Box names|Box names]] | |||
|- style="background: #dddddd; text-align: center;" | |||
| 0x83C2 | |||
| 14 | |||
| [[#Box wallpapers|Box wallpapers]] | |||
|} | |} | ||
Line 572: | Line 728: | ||
===PC Boxes Pokémon list=== | ===PC Boxes Pokémon list=== | ||
A list of 420 Pokémon records. For the format, please refer to: [[Pokémon data structure | A list of 420 Pokémon records. For the format, please refer to: [[Pokémon data structure (Generation III)]]. | ||
Only 80 bytes of the Pokémon record are used, meaning everything after the | Only 80 bytes of the Pokémon record are used, meaning everything after the {{OBP|Pokémon data substructures|Generation III|substructures}} is not included. Instead, those values are regenerated upon withdrawing a Pokémon from the PC. This is the basis of the [[Box trick]]. | ||
Records are ordered as left-to right, top-to-bottom, per box. That is to say, the first 6 records represent the top row of Box 1 (boxes are 5 rows by 6 columns), and the first 30 records represent Box 1. | Records are ordered as left-to right, top-to-bottom, per box. That is to say, the first 6 records represent the top row of Box 1 (boxes are 5 rows by 6 columns), and the first 30 records represent Box 1. | ||
Line 580: | Line 736: | ||
Empty cells within boxes simply dummy records containing nothing but byte value <code>0x00</code>. | Empty cells within boxes simply dummy records containing nothing but byte value <code>0x00</code>. | ||
{{data structure}} | ===Box names=== | ||
The 14 box names, 9 bytes apart. Represent [[#Text data|strings]] that can be from 1 to 8 characters in length. | |||
===Box wallpapers=== | |||
The 14 box wallpapers, 1 byte each. | |||
==Hall of Fame== | |||
===Hall of Fame Record=== | |||
The Hall of Fame consists of an array of 50 Pokémon teams that have beaten the champion, oldest record first. This data is kept separate from the two save game blocks mentioned above. | |||
Each team is an array of 6 Pokémon. The Hall of Fame does not use the normal Pokémon data structure, and instead uses its own 20-byte structure, described below: | |||
{| border="1" style="border: 1px solid #999; border-collapse: collapse;" | |||
|- style="background: #cccccc; text-align: center;" | |||
| colspan="2" | {{sup/3|RSEFRLG}} | |||
| style="background: #ffffff;" | | |||
|- style="background: #cccccc; text-align: center;" | |||
! Offset | |||
! Size | |||
! Contents | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x0000 | |||
| 4 | |||
| Trainer ID | |||
|- style="background: #dddddd; text-align: center;" | |||
| 0x0004 | |||
| 4 | |||
| Personality | |||
|- style="background: #eeeeee; text-align: center;" | |||
| 0x0008 | |||
| 2 | |||
| Species (bits 0-8) / Level (bits 9-15) | |||
|- style="background: #dddddd; text-align: center;" | |||
| 0x000A | |||
| 10 | |||
| Nickname | |||
|} | |||
One Hall of Fame record is 120 bytes (6 Pokémon * 20 bytes). All 50 Hall of Fame records take 6000 bytes. | |||
===Hall of Fame Sections=== | |||
The Hall of Fame data consists of two sections. Each section holds only 3968 bytes. | |||
The first section holds the first 33 records and the first 8 bytes off the 34th, or the first 3968 bytes of the array. | |||
The second section holds the rest of the 34th record and the remaining records, or the next 2032 bytes of the array. The remaining 1936 bytes of the second section are unused. | |||
== References == | |||
<references/> | |||
{{data structure}} | |||
{{Project Games notice|data structure}} | {{Project Games notice|data structure}} |
Latest revision as of 17:32, 16 September 2024
This article is incomplete. Please feel free to edit this article to add missing information and complete it. |
This article does not yet meet the quality standards of Bulbapedia. Please feel free to edit this article to make it conform to Bulbapedia norms and conventions. |
The save data structure for Generation III is stored in the cartridge's flash memory chip (Flash-RAM),[1] which does not lose data when power is lost. This is different from previous generations of Pokémon, which used battery-backed memory (SRAM). The structure consists of 128 KB of data, though not every byte is used. When emulated, this data is generally placed in a separate file (".sav" is a common extension). These should not be confused with save state files, which might have similar file extensions. Emulators may append additional data for the purposes of maintaining real-time clock operations or any number of uses, which can complicate the creation of editing tools.
The integrity of most of the file is validated by checksums.
Data types
Unless otherwise noted, integer values occupy the specified number of bytes, and are little-endian and either unsigned or two's complement.
Text data is stored in a proprietary encoding. Strings in fixed-length fields are terminated with 0xFF with any remainder padded with 0x00.
File structure
The Generation III save file is broken up into two game save blocks, each of which is broken up into 4 KB sections. Each 4 KB section is independently validated by checksum.
One block of game save data represents the most recent game save, and the other block represents the previous game save.
- If any checksum for the most recent game save fails, the game will use the previous game save instead.
- If any checksum for the previous game save fails, the player will be forced to start a new game.
Offset | Size | Contents |
---|---|---|
0x000000 | 57344 | Game save A |
0x00E000 | 57344 | Game save B |
0x01C000 | 8192 | Hall of Fame |
0x01E000 | 4096 | Mystery Gift/e-Reader |
0x01F000 | 4096 | Recorded Battle |
Game save A, Game save B
Each game save is represented by 14 sections. The game alternates which region of the save file it writes to each time the game is saved. For example, if the most recent save was save A, then the next time the game is saved, it will be written to save B.
Despite the save index being stored in each section, only the value in the last section is used to determine the most recent save. If save A's value is bigger, then it is the most recent. Otherwise, save B is the most recent (this includes ties).
The very first time the game is saved it is saved in save block B.
Hall of Fame, Mystery Gift/e-Reader, Recorded Battle
The first time each of these features are used on a new game, the data is wiped. For example, When entering the Hall of Fame for the first time, the entire contents of its sections are set to 0x00.
Section format
All sections contain the same general format: 3968 bytes of data, followed by a footer.
Offset | Size | Contents |
---|---|---|
0x0000 | 3968 | Data |
0x0FF4 | 2 | Section ID |
0x0FF6 | 2 | Checksum |
0x0FF8 | 4 | Signature |
0x0FFC | 4 | Save index |
Data
The checksum-able data within the section. The actual number of bytes checked is determined by Section ID.
Section ID
Specifies the save data being represented, as well as how many bytes to validate for the checksum. This is a 16-bit unsigned field and must have one of the following values:
ID | Size | Contents |
---|---|---|
0 | 3884 | Trainer info |
1 | 3968 | Team / items |
2 | 3968 | Game State |
3 | 3968 | Misc Data |
4 | 3848 | Rival info |
5 | 3968 | PC buffer A |
6 | 3968 | PC buffer B |
7 | 3968 | PC buffer C |
8 | 3968 | PC buffer D |
9 | 3968 | PC buffer E |
10 | 3968 | PC buffer F |
11 | 3968 | PC buffer G |
12 | 3968 | PC buffer H |
13 | 2000 | PC buffer I |
All 14 sections must be present exactly once in each game save block.
Every time the game is saved the order of the sections gets rotated once. For example, the first-ever time the game is saved, the sections are saved in the order 13, 0, 1, ..., 12. The next time the game gets saved these sections will be rotated by 1: 12, 13, 0, 1, ..., 11. The sections only ever get rotated and never scrambled so they will always remain in the same order, but may begin at different points.
Signature
Each section contains 4 bytes in between the Checksum and Save Index. This serves as a file signature that holds the magic number 0x08012025 in little-endian format (i.e. bytes 0x25 0x20 0x01 0x08). If the signature holds a different value, the section, and, by extension, the save block, is treated as invalid.
Checksum
Used to validate the integrity of saved data.
A 16-bit checksum generated by adding up bytes from the section. The algorithm is as follows:
- Initialize a 32-bit checksum variable to zero.
- Read 4 bytes at a time as 32-bit word (little-endian) and add it to the variable. The number of bytes to process in this manner is determined by Section ID.
- Take the upper 16 bits of the result, and add them to the lower 16 bits of the result.
- This new 16-bit value is the checksum.
Save index
Every time the game is saved, its Save Index value goes up by one. This is true even when starting a new game: it continues to count up from the previous save.
All 14 sections within a game save must have the same Save Index value. The most recent game save will have a greater Save Index value than the previous save.
Pokédex data
The Pokédex has multiple data units stored in various parts of the game save. Editor's note: Research into this is still ongoing, but all testing has turned up the following results.
RS | E | FRLG | |||||||
Section | Offset | Size | Section | Offset | Size | Section | Offset | Size | Contents |
---|---|---|---|---|---|---|---|---|---|
0 | 0x0019 | 2 | 0 | 0x0019 | 2 | 0 | 0x001B | 1 | National Pokédex A |
0 | 0x0028 | 49 | 0 | 0x0028 | 49 | 0 | 0x0028 | 49 | Pokédex owned |
0 | 0x005C | 49 | 0 | 0x005C | 49 | 0 | 0x005C | 49 | Pokédex seen A |
1 | 0x0938 | 49 | 1 | 0x0988 | 49 | 1 | 0x05F8 | 49 | Pokédex seen B |
2 | 0x03A6 | 1 | 2 | 0x0402 | 1 | 2 | 0x0068 | 1 | National Pokédex B |
2 | 0x044C | 2 | 2 | 0x04A8 | 2 | 2 | 0x011C | 2 | National Pokédex C |
4 | 0x0C0C | 49 | 4 | 0x0CA4 | 49 | 4 | 0x0B98 | 49 | Pokédex seen C |
Pokédex owned, Pokédex seen
Represents the specific Pokédex entries that have been either seen or owned during gameplay.
It is not clear why there are three copies of which Pokémon have been seen (it may be related to how the game loads game save sections), but all three need to have the same data.
Pokémon are indexed by their usual Pokédex order, meaning the order is the same as in the National Pokédex. However, indexes begin counting at 0, rather than 1.
1 bit is used to represent whether a given Pokémon has been seen/owned. Bits are ordered within bytes from lowest to highest, starting with the first byte. Therefore, the exact bit can be extracted from the list using the following formula:
Bit = ( Data[ RoundDown(PokeNum / 8) ] / 2 ^ (PokeNum Mod 8) ) AND 1
Or in C-style code (shift occurs before other bitwise operations):
Bit = Data[PokeNum >> 3] >> (PokeNum & 7) & 1;
Example
Let us say that we want to know whether #286 Breloom has been seen/owned:
- PokeNum becomes 285, since it is 0-based.
- The byte of the list in which bit 285 is located is = 285 / 8 = 35
- The bit within that byte is = 285 Mod 8 = 5
- Dividing the byte value by 2 ^ Bit, or shifting right by Bit, moves the bit to the least-significant position
- Performing a bitwise AND with 1 will remove all but the least-significant bit
National Pokédex
Various fields are used to indicate that the National Pokédex has been unlocked, and all fields must be configured correctly. Editor's note: It's not certain whether these rules always apply to 100% of game saves, but they have for every save I've come across.
Field A
In Ruby, Sapphire and Emerald, these two bytes have the following values:
- 0x00 0x00 - National Pokédex is not unlocked
- 0x01 0xDA - National Pokédex is unlocked
In FireRed and LeafGreen, this one byte has the following values:
- 0x00 - National Pokédex is not unlocked
- 0xB9 - National Pokédex is unlocked
Field B
One bit in this field is used to determine whether the National Pokédex has been unlocked, as follows:
- Bit 6 - Ruby, Sapphire and Emerald
- Bit 0 - FireRed and LeafGreen
If the National Pokédex has been unlocked, the value of the bit will be 1.
Field C
In Ruby, Sapphire and Emerald, these two bytes have the following values:
- 0x00 0x00 - National Pokédex is not unlocked
- 0x02 0x03 - National Pokédex is unlocked
In FireRed and LeafGreen, these two bytes have the following values:
- 0x00 0x00 - National Pokédex is not unlocked
- 0x58 0x62 - National Pokédex is unlocked
Section 0 - Trainer Info
This section contains information regarding the player character.
Fields documented below simply list known values; there may be additional significant data in this section:
RS | E | FRLG | ||||
Offset | Size | Offset | Size | Offset | Size | Contents |
---|---|---|---|---|---|---|
0x0000 | 7 | 0x0000 | 7 | 0x0000 | 7 | Player name |
0x0008 | 1 | 0x0008 | 1 | 0x0008 | 1 | Player gender |
0x0009 | 1 | 0x0009 | 1 | 0x0009 | 1 | Unused/Unknown |
0x000A | 4 | 0x000A | 4 | 0x000A | 4 | Trainer ID |
0x000E | 5 | 0x000E | 5 | 0x000E | 5 | Time played |
0x0013 | 3 | 0x0013 | 3 | 0x0013 | 3 | Options |
0x00AC | 4 | N/A | 0x00AC | 4 | Game Code | |
N/A | 0x00AC | 4 | 0x0AF8 | 4 | Security key |
Player name
The name of the player. Represented as a string that can be from 1 to 7 characters in length.
Player gender
Specifies the gender of the player character:
- For boy characters, this is set to
0x00
- For girl characters, this is set to
0x01
Note that changing this value will not be reflected immediately on the character sprite when first loading the game. (This is because the game saves the state of the current map and the sprites, scripts, and tiles on it separately.) To update the sprite, the player must load into a new map first, such as entering or exiting a building.
Trainer ID
The player's internal Trainer ID.
- The lower 16 bits represent the visible, public ID.
- The upper 16 bits represent the hidden, Secret ID.
Time played
Specifies how much time has elapsed during gameplay.
This value is actually 4 values representing, in this order: the hours, minutes, seconds and "frames" that have elapsed. A frame is 1/60th of a second.
The hours field is 16-bit. The other three fields are 8-bit.
Options
These are the options that can be changed in-game via the Options menu entry.
The first byte (0x13) contains the Button Mode settings. The different settings correspond to these values:
The second byte (0x14) contains the settings for Text Speed and Frame. The lowest three bits designate the Text Speed and the remaining bits the index of the chosen Frame style. The options for Text speed result in these values in the save file:
- Slow:
0b00000000
- Medium:
0b00000001
- Fast:
0b000000010
Since there are only three different Text Speeds selectable in-game but eight possible values in three bits, the effect of values outside this range is unclear.
The index of the chosen Frame can be found in the upper five bits. A gallery of all the frames can be found here. The indexes in the save file start at 0, so a Frame value of 15 results in Frame 16.
The third byte (0x15) contains the settings for Sound, Battle Style and Battle Scene. Each setting is represented by one bit, basically switching the setting from one value to the other.
- Sound: Bit 1.
0b00000000
for mono (the default) and0b00000001
for stereo. - Battle Style: Bit 2.
0b00000000
for switch (the default) and0b00000010
for set. - Battle Scene: Bit 3.
0b00000000
for on (the default) and0b00000100
for off.
Game Code
Identifies which game this save data applies to.
- For Ruby and Sapphire, this value will be
0x00000000
. - For FireRed and LeafGreen, this value will be
0x00000001
. - For Emerald, this is the location of the Security Key field, so any value other than 0 or 1 can be used to identify Emerald.
Security key
Used to encrypt sensitive data, such as money or item quantities. Applied to data via a simple exclusive or operation.
Important Note: The ultimate origin of this value is not well understood. It may be derived from other data, or it may just be a random number. The offsets listed in the table above are not known to be 100% guaranteed, but a copy of the value appears at offset 0x01F4 in Emerald and 0x0F20 in Fire Red/Leaf Green.
Ruby and Sapphire either do not utilize this masking operation, or the mask is always zero. Editor's Note: This could use some further investigation. If the mask does exist, it would be located at the same spots as in Emerald. In all of my testing, Ruby/Sapphire data has not been protected by a security key.
Section 1 - Team / Items
This section contains information regarding the player's team of Pokémon as well as their item inventory.
Fields documented below simply list known values; there may be additional significant data in this section:
RS | E | FRLG | ||||
Offset | Size | Offset | Size | Offset | Size | Contents |
---|---|---|---|---|---|---|
0x0234 | 4 | 0x0234 | 4 | 0x0034 | 4 | Team size |
0x0238 | 600 | 0x0238 | 600 | 0x0038 | 600 | Team Pokémon list |
0x0490 | 4 | 0x0490 | 4 | 0x0290 | 4 | Money |
0x0494 | 2 | 0x0494 | 2 | 0x0294 | 2 | Coins |
0x0498 | 200 | 0x0498 | 200 | 0x0298 | 120 | PC items |
0x0560 | 80 | 0x0560 | 120 | 0x0310 | 168 | Item pocket |
0x05B0 | 80 | 0x05D8 | 120 | 0x03B8 | 120 | Key item pocket |
0x0600 | 64 | 0x0650 | 64 | 0x0430 | 52 | Ball item pocket |
0x0640 | 256 | 0x0690 | 256 | 0x0464 | 232 | TM Case |
0x0740 | 184 | 0x0790 | 184 | 0x054C | 172 | Berry pocket |
Team size
The number of Pokémon currently on the team.
Team Pokémon list
Data representing information for up to 6 Pokémon, as an array. For the format, please refer to: Pokémon data structure (Generation III).
All 100 bytes of the Pokémon record are used.
Data representing Pokémon beyond the team size are dummied out with byte value 0x00
.
Money
The amount of money held by the player. Must be XORed with the security key to yield the true value.
Coins
The number of coins in the Coin case. Must be XORed with the lower two bytes of the security key to yield the true value.
Item pockets
Lists of item entries representing the player's item inventory for the various Bag pockets.
The number of item entries available per pocket in each game can be calculated by taking the number of bytes from the table above, and dividing by 4, which is the size of the item entry structure. The inventory limits are as follows:
PC | Key Item | Ball | TM/HM | Berry | ||
---|---|---|---|---|---|---|
RS | 50 | 20 | 20 | 16 | 64 | 46 |
E | 50 | 30 | 30 | 16 | 64 | 46 |
FRLG | 30 | 42 | 30 | 13 | 58 | 43 |
Item entry
Item entries are defined using the following structure:
Offset | Size | Contents |
---|---|---|
0x00 | 2 | Item index |
0x02 | 2 | Item quantity |
Item index
The item's index.
Item quantity
The number of this item available in the Bag. Must be XORed with the lower 16 bits of the security key to yield the true value.
The security key does NOT apply to items stored in the PC.
Section 2 - Game State
This section contains many flags and variables associated with the state of the game, from daily step counts, berry tree, and secret base information, to plot advancement flags and the state of scripting events across the game.
RS | E | |||
Offset | Size | Offset | Size | Contents |
---|---|---|---|---|
0x0408(?) | 4 | 0x0464 | 4 | Mirage Island value |
Note that only the low two bytes of the Mirage Island value is used. (Little endian)
Section 3-4 - Game Specific Data
This section contains more information regarding game state. The data in this region varies by game. In RSE, this section has lots of data used with record mixing, secret bases, interviewer data, Trainer Hill, mail, etc.
In FRLG, this section has data regarding the rival character.
Fields documented below simply list known values; there may be additional significant data in this section:
RSE | FRLG | |||
Offset | Size | Offset | Size | Contents |
---|---|---|---|---|
N/A | 0x0BCC | 8 | Rival name |
Rival name
The name of the rival. Represented as a string that can be from 1 to 7 characters in length.
Sections 5-13 - PC buffer
These sections contain information regarding the contents of the Pokémon Storage System.
Although the PC buffer occupies 9 sections within the game save, it still functions like a single section in and of itself: it's like one big section that was split apart across multiple sections.
The bytes within the PC buffer's component sections are contiguous within it. That is to say, the 3968 bytes occupied by section 5 represent bytes 0 to 3967 in the PC buffer, the 3968 bytes in section 6 represent bytes 3968 to 7935 in the PC buffer, and so-on.
Altogether, the PC buffer contains 3968 bytes from each of 8 sections and 2000 bytes from 1 section, for a total of 33744 bytes.
RSEFRLG | ||
Offset | Size | Contents |
---|---|---|
0x0000 | 4 | Current PC Box |
0x0004 | 33600 | PC Boxes Pokémon list |
0x8344 | 126 | Box names |
0x83C2 | 14 | Box wallpapers |
Current PC Box
The most recently viewed PC box, minus 1. That is to say, 0 represents Box 1 and 13 represents Box 14.
PC Boxes Pokémon list
A list of 420 Pokémon records. For the format, please refer to: Pokémon data structure (Generation III).
Only 80 bytes of the Pokémon record are used, meaning everything after the substructures is not included. Instead, those values are regenerated upon withdrawing a Pokémon from the PC. This is the basis of the Box trick.
Records are ordered as left-to right, top-to-bottom, per box. That is to say, the first 6 records represent the top row of Box 1 (boxes are 5 rows by 6 columns), and the first 30 records represent Box 1.
Empty cells within boxes simply dummy records containing nothing but byte value 0x00
.
Box names
The 14 box names, 9 bytes apart. Represent strings that can be from 1 to 8 characters in length.
Box wallpapers
The 14 box wallpapers, 1 byte each.
Hall of Fame
Hall of Fame Record
The Hall of Fame consists of an array of 50 Pokémon teams that have beaten the champion, oldest record first. This data is kept separate from the two save game blocks mentioned above. Each team is an array of 6 Pokémon. The Hall of Fame does not use the normal Pokémon data structure, and instead uses its own 20-byte structure, described below:
RSEFRLG | ||
Offset | Size | Contents |
---|---|---|
0x0000 | 4 | Trainer ID |
0x0004 | 4 | Personality |
0x0008 | 2 | Species (bits 0-8) / Level (bits 9-15) |
0x000A | 10 | Nickname |
One Hall of Fame record is 120 bytes (6 Pokémon * 20 bytes). All 50 Hall of Fame records take 6000 bytes.
Hall of Fame Sections
The Hall of Fame data consists of two sections. Each section holds only 3968 bytes. The first section holds the first 33 records and the first 8 bytes off the 34th, or the first 3968 bytes of the array. The second section holds the rest of the 34th record and the remaining records, or the next 2032 bytes of the array. The remaining 1936 bytes of the second section are unused.
References
|
This data structure article is part of Project Games, a Bulbapedia project that aims to write comprehensive articles on the Pokémon games. |