summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/graphics.h16
-rw-r--r--include/intro_credits_graphics.h53
-rw-r--r--include/title_screen.h2
3 files changed, 38 insertions, 33 deletions
diff --git a/include/graphics.h b/include/graphics.h
index b1a781fff..9af68a052 100644
--- a/include/graphics.h
+++ b/include/graphics.h
@@ -3874,8 +3874,8 @@ extern const u32 gBagPalette[];
extern const u32 gBerryCheckCircle_Gfx[];
//intro graphics
-extern const u32 gIntro1SparkleGfx[];
-extern const u32 gIntro1FlygonGfx[];
+extern const u32 gIntro1Sparkle_Gfx[];
+extern const u32 gIntro1Flygon_Gfx[];
extern const u16 gIntro3LightningPal[];
extern const u32 gIntroCopyright_Gfx[];
extern const u32 gIntroCopyright_Tilemap[];
@@ -3886,8 +3886,8 @@ extern const u32 gIntro2ManectricGfx[];
extern const u16 gIntro2VolbeatPal[];
extern const u16 gIntro2TorchicPal[];
extern const u16 gIntro2ManectricPal[];
-extern const u32 gIntro2BubblesGfx[];
-extern const u16 gIntro2BubblesPal[];
+extern const u32 gIntro3Bubbles_Gfx[];
+extern const u16 gIntro3Bubbles_Pal[];
extern const u32 gIntro3LightningGfx[];
extern const u32 gIntro3GroudonGfx[];
extern const u32 gIntro3GroudonTilemap[];
@@ -3907,11 +3907,9 @@ extern const u32 gIntro3RayquazaTilemap[];
extern const u32 gIntro3RayquazaGfx[];
extern const u32 gIntro3Clouds2Gfx[];
extern const u16 gIntro1GameFreakTextFadePal[];
-
-//intro/credits graphics
-extern const u32 gIntro2BrendanNoTurnGfx[];
-extern const u32 gIntro2MayNoTurnGfx[];
-extern const u16 gIntro2BrendanNoTurnPal[];
+extern const u32 gIntro2BrendanGfx[];
+extern const u32 gIntro2MayGfx[];
+extern const u16 gIntro2PlayerPal[];
extern const u16 gIntro2FlygonPal[];
extern const u32 gIntro2FlygonGfx[];
diff --git a/include/intro_credits_graphics.h b/include/intro_credits_graphics.h
index 2c7ceaf57..431446ed2 100644
--- a/include/intro_credits_graphics.h
+++ b/include/intro_credits_graphics.h
@@ -1,30 +1,37 @@
#ifndef GUARD_INTRO_CREDITS_GRAPHICS_H
#define GUARD_INTRO_CREDITS_GRAPHICS_H
-extern u16 gUnknown_0203BD24;
-extern s16 gUnknown_0203BD26;
-extern s16 gUnknown_0203BD28;
+// States for gIntroCredits_MovingSceneryState
+enum {
+ INTROCRED_SCENERY_MOVING,
+ INTROCRED_SCENERY_DESTROY,
+ INTROCRED_SCENERY_FROZEN,
+};
-extern const struct CompressedSpriteSheet gIntro2BrendanSpriteSheet[];
-extern const struct CompressedSpriteSheet gIntro2MaySpriteSheet[];
-extern const struct CompressedSpriteSheet gIntro2BicycleSpriteSheet[];
-extern const struct CompressedSpriteSheet gIntro2FlygonSpriteSheet[];
-extern const struct SpritePalette gIntroBikeAndFlygonPalette[];
-extern const struct CompressedSpriteSheet gUnknown_085F5334[];
-extern const struct CompressedSpriteSheet gUnknown_085F5344[];
-extern const struct CompressedSpriteSheet gUnknown_085F5354[];
-extern const struct CompressedSpriteSheet gUnknown_085F53AC[];
-extern const struct CompressedSpriteSheet gUnknown_085F53BC[];
-extern const struct SpritePalette gUnknown_085F5384[];
+extern u16 gIntroCredits_MovingSceneryVBase;
+extern s16 gIntroCredits_MovingSceneryVOffset;
+extern s16 gIntroCredits_MovingSceneryState;
-void load_intro_part2_graphics(u8 a);
-void sub_817B150(u8 a);
-void sub_817B1C8(u8);
-void sub_817B3A8(u8);
-u8 CreateBicycleAnimationTask(u8 a, u16 b, u16 c, u16 d);
-void sub_817B540(u8);
-u8 intro_create_brendan_sprite(s16 a, s16 b);
-u8 intro_create_may_sprite(s16 a, s16 b);
-u8 intro_create_flygon_sprite(s16 a, s16 b);
+extern const struct CompressedSpriteSheet gSpriteSheet_IntroBrendan[];
+extern const struct CompressedSpriteSheet gSpriteSheet_IntroMay[];
+extern const struct CompressedSpriteSheet gSpriteSheet_IntroBicycle[];
+extern const struct CompressedSpriteSheet gSpriteSheet_IntroFlygon[];
+extern const struct SpritePalette gSpritePalettes_IntroPlayerFlygon[];
+extern const struct CompressedSpriteSheet gSpriteSheet_CreditsBrendan[];
+extern const struct CompressedSpriteSheet gSpriteSheet_CreditsMay[];
+extern const struct CompressedSpriteSheet gSpriteSheet_CreditsBicycle[];
+extern const struct CompressedSpriteSheet gSpriteSheet_CreditsRivalBrendan[];
+extern const struct CompressedSpriteSheet gSpriteSheet_CreditsRivalMay[];
+extern const struct SpritePalette gSpritePalettes_Credits[];
+
+void LoadIntroPart2Graphics(u8 scene);
+void SetIntroPart2BgCnt(u8 a);
+void LoadCreditsSceneGraphics(u8);
+void SetCreditsSceneBgCnt(u8);
+u8 CreateBicycleBgAnimationTask(u8 a, u16 b, u16 c, u16 d);
+void CycleSceneryPalette(u8);
+u8 CreateIntroBrendanSprite(s16 x, s16 y);
+u8 CreateIntroMaySprite(s16 x, s16 y);
+u8 CreateIntroFlygonSprite(s16 x, s16 y);
#endif // GUARD_INTRO_CREDITS_GRAPHICS_H
diff --git a/include/title_screen.h b/include/title_screen.h
index b7100f124..0c80db5bf 100644
--- a/include/title_screen.h
+++ b/include/title_screen.h
@@ -1,7 +1,7 @@
#ifndef GUARD_TITLE_SCREEN_H
#define GUARD_TITLE_SCREEN_H
-extern const u16 gIntroWaterDropAlphaBlend[];
+extern const u16 gTitleScreenAlphaBlend[64];
void CB2_InitTitleScreen(void);