about summary refs log tree commit diff stats
path: root/include
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-09-10 17:16:52 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-09-10 17:16:52 -0400
commit1d82e3affd42c2336702af4a644baa8eec249ead (patch)
treeaeea397863a7d2014bd960a9bd3ba090f841bcce /include
parent0882d1020d75bbddc8e8fbe30aed435e8814988a (diff)
downloadgen3uploader-1d82e3affd42c2336702af4a644baa8eec249ead.tar.gz
gen3uploader-1d82e3affd42c2336702af4a644baa8eec249ead.tar.bz2
gen3uploader-1d82e3affd42c2336702af4a644baa8eec249ead.zip
Increased stability and added support for non-English names
The GameCube side of the program now can convert from the propietary
character set to UTF-8. This is useful for representing names of Pokémon
and players in a neutral way. The propietary character set is mostly
compatible between the six languages supported by the games (as in, the
hiragana and katakana characters unique to Japanese occupy spaces not
used by the other languages for names, as do the letters with umlauts
unique to German). However, six codepoints differ between the Japanese
and non-Japanese character sets, and an additional two differ even
amongst the non-Japanese sets. Because of this, the function that
converts to UTF-8 takes a language as a parameter, and uses the correct
characters for that language.

From there, the behavior of this function differs slightly to that of
the games. In the non-Japanese games, the Japanese encoding is used if
the Pokémon in question originated in a Japanese game, and the
non-Japanese encoding (disregarding the regional differences in the two
codepoints mentioned earlier) otherwise. In the Japanese games, the
Japanese encoding is used regardless of the Pokémon's origin. The
decoding function I wrote always uses the character set corresponding to
the language of the Pokémon's origin, because that most accurately
represents the name given to it, and will not change just because the
Pokémon was traded to a different game. The character set used for the
name of the player is the one corresponding to the language of the
cartridge.

Additionally, a number of changes were made to the communication
protocol between the GameCube and the GBA that appear to have
dramatically increased stability. The most significant of these is
likely that the transfer delay was increased tenfold. This causes the
multiboot image to take slightly longer to download to the GBA, but the
difference is not large enough to outweigh the benefits of the increased
stability.
Diffstat (limited to 'include')
-rw-r--r--include/pokemon.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 80e7ee7..d8a7265 100644 --- a/include/pokemon.h +++ b/include/pokemon.h
@@ -11,6 +11,15 @@
11#define OT_NAME_LENGTH 7 11#define OT_NAME_LENGTH 7
12#define TILE_SIZE_4BPP 32 12#define TILE_SIZE_4BPP 32
13 13
14enum PokemonLanguage {
15 Japanese = 1,
16 English = 2,
17 French = 3,
18 Italian = 4,
19 German = 5,
20 Spanish = 7
21};
22
14struct PokemonIntermediate { 23struct PokemonIntermediate {
15 u32 otId; 24 u32 otId;
16 u32 experience; 25 u32 experience;
@@ -35,7 +44,9 @@ struct PokemonIntermediate {
35 u8 nickname[POKEMON_NAME_LENGTH]; 44 u8 nickname[POKEMON_NAME_LENGTH];
36 u8 otName[OT_NAME_LENGTH]; 45 u8 otName[OT_NAME_LENGTH];
37 u8 pokeball; 46 u8 pokeball;
38 u8 altAbility; // waste of space but nothing to pack it with 47 u8 language:3;
48 u8 altAbility:1;
49 u8 filler:4; // waste of space but nothing to pack it with
39 50
40 // the following values are generated from the personality value. 51 // the following values are generated from the personality value.
41 u8 nature:6; 52 u8 nature:6;