Add more *Banjo-Kazooie* characters

This commit is contained in:
RocketRobz 2020-08-12 02:12:46 -06:00
parent 4fb122ba71
commit 50cd72f67a
18 changed files with 34 additions and 3 deletions

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Banjo-Kazooie series/All Seasons/zoom0/Bottles.png"
"characters/Banjo-Kazooie series/All Seasons/zoom1/Bottles.png"
"characters/Banjo-Kazooie series/All Seasons/zoom2/Bottles.png"

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Banjo-Kazooie series/All Seasons/zoom0/Kazooie.png"
"characters/Banjo-Kazooie series/All Seasons/zoom1/Kazooie.png"
"characters/Banjo-Kazooie series/All Seasons/zoom2/Kazooie.png"

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Banjo-Kazooie series/All Seasons/zoom0/Mumbo.png"
"characters/Banjo-Kazooie series/All Seasons/zoom1/Mumbo.png"
"characters/Banjo-Kazooie series/All Seasons/zoom2/Mumbo.png"

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Banjo-Kazooie series/All Seasons/zoom0/Tooty.png"
"characters/Banjo-Kazooie series/All Seasons/zoom1/Tooty.png"
"characters/Banjo-Kazooie series/All Seasons/zoom2/Tooty.png"

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

View File

@ -20,13 +20,29 @@ bool banjokCharacterGenders[] = {
const char* banjokCharacterFileNamesSpring[] = {
"banjok_Banjo",
"banjok_Kazooie",
"banjok_Tooty",
"banjok_Mumbo",
"banjok_Bottles",
};
const char* banjokCharacterFileNamesSummer[] = {
"banjok_Banjo",
"banjok_Kazooie",
"banjok_Tooty",
"banjok_Mumbo",
"banjok_Bottles",
};
const char* banjokCharacterFileNamesFall[] = {
"banjok_Banjo",
"banjok_Kazooie",
"banjok_Tooty",
"banjok_Mumbo",
"banjok_Bottles",
};
const char* banjokCharacterFileNamesWinter[] = {
"banjok_Banjo",
"banjok_Kazooie",
"banjok_Tooty",
"banjok_Mumbo",
"banjok_Bottles",
};

View File

@ -26,7 +26,7 @@
static int charPageOrder[] = {
4, // Super Photo Studio (Original Characters)
9, // Banjo-Kazooie
9, // Banjo-Kazooie series
8, // Conker series
7, // Jet Force Gemini
10, // Pac-Man series
@ -77,7 +77,7 @@ void PhotoStudio::getMaxChars() {
if (charPageOrder[highlightedGame] == 10) {
import_totalCharacters = 1;
} else if (charPageOrder[highlightedGame] == 9) {
import_totalCharacters = 0;
import_totalCharacters = 4;
} else if (charPageOrder[highlightedGame] == 8) {
import_totalCharacters = 1;
} else if (charPageOrder[highlightedGame] == 7) {
@ -492,7 +492,6 @@ void PhotoStudio::Draw(void) const {
GFX::DrawSprite((pacCharacterGenders[i] ? sprites_icon_male_idx : sprites_icon_female_idx), 12, i2-8);
Gui::DrawString(64, i2, 0.65, WHITE, pacCharacterNames[i]);
} else if (charPageOrder[char_highlightedGame[currentCharNum]] == 9) {
if (i >= 1) break;
GFX::DrawSprite(sprites_item_button_idx, 16, i2-20);
GFX::DrawSprite((banjokCharacterGenders[i] ? sprites_icon_male_idx : sprites_icon_female_idx), 12, i2-8);
Gui::DrawString(64, i2, 0.65, WHITE, banjokCharacterNames[i]);