diff --git a/actors_8c.html b/actors_8c.html index cb9afa46f..0e12544a4 100644 --- a/actors_8c.html +++ b/actors_8c.html @@ -1570,7 +1570,7 @@ Here is the caller graph for this function:
-
Todo
Is this making the shell spin?
+
Todo
Is this making the shell spin?
Here is the call graph for this function:
diff --git a/actors__extended_8c.html b/actors__extended_8c.html index 59d26127e..773dec92d 100644 --- a/actors__extended_8c.html +++ b/actors__extended_8c.html @@ -659,7 +659,9 @@ Here is the caller graph for this function:
-

This condition is broken and always evaluates to true. If you fix the condition, when you fire a shell it continues being held by the player until the shell is in-front of the player. This allows the shell to always shoot in a foward direction instead of straying sideways. when fired at the wrong time

+

Forces shell 1 to only fire inside a cone of -5 to +5 degrees in-front of the player. However, always evaluates to true, so the feature does not appear during gameplay. If enabled, pressing Z would not immediately release the shell. Instead, it waits until it's inside the cone. (See shell 2 and 3 farther down for same issue)

+

Forces shell 2 to fire inside a cone of 5 to 14.95 degrees (always evaluates to true, thus the feature is skipped) Unclear why it is 14.95 degrees instead of 15. Perhaps just a typo when entering the value as a s16.

+

Forces shell 3 to fire inside a cone of -5 to -10 degrees. However, after testing, 10 should probably be replaced with 14.95 because the shell does multiple loops before it fires. Always evaluates to true, thus this feature is skipped.

Here is the call graph for this function:
diff --git a/actors__extended_8h_source.html b/actors__extended_8h_source.html index a2efbb66b..c825ce9e4 100644 --- a/actors__extended_8h_source.html +++ b/actors__extended_8h_source.html @@ -163,24 +163,24 @@ $(function(){initNavTree('actors__extended_8h_source.html',''); initResizable(tr
void update_actor_banana_bunch(struct BananaBunchParent *banana_bunch)
Definition actors_extended.c:217
s32 func_802B09C0(s16 bananaId)
Definition actors_extended.c:202
void copy_collision(Collision *src, Collision *dest)
Definition actors_extended.c:19
-
s32 use_triple_shell_item(Player *player, s16 tripleShellType)
Definition actors_extended.c:539
-
void use_thunder_item(Player *player)
Definition actors_extended.c:869
-
void player_use_item(Player *player)
Definition actors_extended.c:888
-
s32 use_banana_item(Player *player)
Definition actors_extended.c:817
-
void func_802B4E30(struct Actor *arg0)
Definition actors_extended.c:979
+
s32 use_triple_shell_item(Player *player, s16 tripleShellType)
Definition actors_extended.c:548
+
void use_thunder_item(Player *player)
Definition actors_extended.c:878
+
void player_use_item(Player *player)
Definition actors_extended.c:897
+
s32 use_banana_item(Player *player)
Definition actors_extended.c:826
+
void func_802B4E30(struct Actor *arg0)
Definition actors_extended.c:988
void func_802B0788(s16 rawStickY, struct BananaBunchParent *banana_bunch, Player *player)
Definition actors_extended.c:155
-
s32 use_banana_bunch_item(Player *player)
Definition actors_extended.c:520
-
void use_blue_shell_item(Player *player)
Definition actors_extended.c:689
-
s32 use_fake_itembox_item(Player *player)
Definition actors_extended.c:775
+
s32 use_banana_bunch_item(Player *player)
Definition actors_extended.c:529
+
void use_blue_shell_item(Player *player)
Definition actors_extended.c:698
+
s32 use_fake_itembox_item(Player *player)
Definition actors_extended.c:784
void update_actor_triple_shell(TripleShellParent *parent, s16 shellType)
Definition actors_extended.c:334
void func_802B0464(s16 bananaIndex)
Definition actors_extended.c:77
-
s32 use_red_shell_item(Player *player)
Definition actors_extended.c:647
-
void func_802B2914(struct BananaBunchParent *banana_bunch, Player *player, s16 bananaId)
Definition actors_extended.c:696
-
s32 init_triple_shell(TripleShellParent *parent, Player *player, s16 shellType, u16 shellId)
Definition actors_extended.c:561
+
s32 use_red_shell_item(Player *player)
Definition actors_extended.c:656
+
void func_802B2914(struct BananaBunchParent *banana_bunch, Player *player, s16 bananaId)
Definition actors_extended.c:705
+
s32 init_triple_shell(TripleShellParent *parent, Player *player, s16 shellType, u16 shellId)
Definition actors_extended.c:570
void destroy_banana_in_banana_bunch(struct BananaActor *banana)
Definition actors_extended.c:98
-
s32 use_green_shell_item(Player *player)
Definition actors_extended.c:607
+
s32 use_green_shell_item(Player *player)
Definition actors_extended.c:616
bool is_shell_exist(s16 arg0)
Definition actors_extended.c:316
-
void check_player_use_item(void)
Definition actors_extended.c:942
+
void check_player_use_item(void)
Definition actors_extended.c:951
void update_actor_banana(struct BananaActor *banana)
Update the banana actor.
Definition update.inc.c:11
void func_802B3E7C(struct ShellActor *shell, Player *player)
Definition update.inc.c:114
void func_802B3B44(struct ShellActor *shell)
Definition update.inc.c:8
diff --git a/banana_2update_8inc_8c_source.html b/banana_2update_8inc_8c_source.html index 3f26a28a8..1fd2d5217 100644 --- a/banana_2update_8inc_8c_source.html +++ b/banana_2update_8inc_8c_source.html @@ -306,7 +306,7 @@ $(function(){initNavTree('banana_2update_8inc_8c_source.html',''); initResizable
void destroy_destructable_actor(struct Actor *actor)
Definition actors.c:1849
void destroy_actor(struct Actor *actor)
Definition actors.c:1321
-
void func_802B4E30(struct Actor *arg0)
Definition actors_extended.c:979
+
void func_802B4E30(struct Actor *arg0)
Definition actors_extended.c:988
void update_actor_banana(struct BananaActor *banana)
Update the banana actor.
Definition update.inc.c:11
s16 gCourseMinZ
Definition code_800029B0.c:95
s16 gCourseMaxZ
Definition code_800029B0.c:94
diff --git a/blue__and__red__shells_2update_8inc_8c_source.html b/blue__and__red__shells_2update_8inc_8c_source.html index 9b6dfeef4..74b3746fd 100644 --- a/blue__and__red__shells_2update_8inc_8c_source.html +++ b/blue__and__red__shells_2update_8inc_8c_source.html @@ -609,7 +609,7 @@ $(function(){initNavTree('blue__and__red__shells_2update_8inc_8c_source.html',''
void destroy_actor(struct Actor *actor)
Definition actors.c:1321
void copy_collision(Collision *src, Collision *dest)
Definition actors_extended.c:19
-
void func_802B4E30(struct Actor *arg0)
Definition actors_extended.c:979
+
void func_802B4E30(struct Actor *arg0)
Definition actors_extended.c:988
void func_802B3E7C(struct ShellActor *shell, Player *player)
Definition update.inc.c:114
void func_802B3B44(struct ShellActor *shell)
Definition update.inc.c:8
diff --git a/bomb__kart_8inc_8c.html b/bomb__kart_8inc_8c.html index f6c1f5ac4..fc4ecc5c3 100644 --- a/bomb__kart_8inc_8c.html +++ b/bomb__kart_8inc_8c.html @@ -122,37 +122,10 @@ This graph shows which files directly or indirectly include this file:
Functions void set_bomb_kart_spawn_positions (void)   -void func_8000DF8C (s32 bombKartId) -  +void update_bomb_karts (s32 bombKartId) + 

Function Documentation

- -

◆ func_8000DF8C()

- -
-
- - - - - - - -
void func_8000DF8C (s32 bombKartId)
-
-
-Here is the call graph for this function:
-
-
-
-
-Here is the caller graph for this function:
-
-
-
- -
-

◆ set_bomb_kart_spawn_positions()

@@ -178,6 +151,33 @@ Here is the caller graph for this function:
+ + + +

◆ update_bomb_karts()

+ +
+
+ + + + + + + +
void update_bomb_karts (s32 bombKartId)
+
+
+Here is the call graph for this function:
+
+
+
+
+Here is the caller graph for this function:
+
+
+
+
diff --git a/bomb__kart_8inc_8c.js b/bomb__kart_8inc_8c.js index 8f98b1c7d..af9528689 100644 --- a/bomb__kart_8inc_8c.js +++ b/bomb__kart_8inc_8c.js @@ -1,5 +1,5 @@ var bomb__kart_8inc_8c = [ - [ "func_8000DF8C", "bomb__kart_8inc_8c.html#ad7cfd2edb9055380080a6c1c577d042f", null ], - [ "set_bomb_kart_spawn_positions", "bomb__kart_8inc_8c.html#ada59072ef0e7fec8eb6eeaabdc4ebe03", null ] + [ "set_bomb_kart_spawn_positions", "bomb__kart_8inc_8c.html#ada59072ef0e7fec8eb6eeaabdc4ebe03", null ], + [ "update_bomb_karts", "bomb__kart_8inc_8c.html#a0bf911f9098a7f2c38f0a03c58c3c4f1", null ] ]; \ No newline at end of file diff --git a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.map b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.map similarity index 54% rename from bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.map rename to bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.map index 5995ffbf2..0625bff75 100644 --- a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.map +++ b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.map @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.md5 b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.md5 new file mode 100644 index 000000000..6d7e06d02 --- /dev/null +++ b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.md5 @@ -0,0 +1 @@ +2490f8f6176d49a2b3a6743b6af5b608 \ No newline at end of file diff --git a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.svg b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.svg similarity index 62% rename from bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.svg rename to bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.svg index ef2352bbb..8214a7a26 100644 --- a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.svg +++ b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_cgraph.svg @@ -3,7 +3,7 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + @@ -46,20 +46,20 @@ -func_8000DF8C +update_bomb_karts Node1 - -func_8000DF8C + +update_bomb_karts @@ -67,8 +67,8 @@ var sectionId = 'dynsection-1'; Node2 - -calculate_surface_height + +calculate_surface_height @@ -76,8 +76,8 @@ var sectionId = 'dynsection-1'; Node1->Node2 - - + + @@ -85,8 +85,8 @@ var sectionId = 'dynsection-1'; Node3 - -check_bounding_collision + +check_bounding_collision @@ -94,8 +94,8 @@ var sectionId = 'dynsection-1'; Node1->Node3 - - + + @@ -103,8 +103,8 @@ var sectionId = 'dynsection-1'; Node7 - -coss + +coss @@ -112,8 +112,8 @@ var sectionId = 'dynsection-1'; Node1->Node7 - - + + @@ -121,8 +121,8 @@ var sectionId = 'dynsection-1'; Node8 - -func_8000D2B4 + +func_8000D2B4 @@ -130,8 +130,8 @@ var sectionId = 'dynsection-1'; Node1->Node8 - - + + @@ -139,9 +139,9 @@ var sectionId = 'dynsection-1'; Node14 - -get_xz_angle_between -_points + +get_xz_angle_between +_points @@ -149,8 +149,8 @@ var sectionId = 'dynsection-1'; Node1->Node14 - - + + @@ -158,8 +158,8 @@ var sectionId = 'dynsection-1'; Node17 - -sins + +sins @@ -167,8 +167,8 @@ var sectionId = 'dynsection-1'; Node1->Node17 - - + + @@ -176,8 +176,8 @@ var sectionId = 'dynsection-1'; Node18 - -sqrtf + +sqrtf @@ -185,8 +185,8 @@ var sectionId = 'dynsection-1'; Node1->Node18 - - + + @@ -194,8 +194,8 @@ var sectionId = 'dynsection-1'; Node4 - -check_collision_yx + +check_collision_yx @@ -203,8 +203,8 @@ var sectionId = 'dynsection-1'; Node3->Node4 - - + + @@ -212,8 +212,8 @@ var sectionId = 'dynsection-1'; Node5 - -check_collision_zx + +check_collision_zx @@ -221,8 +221,8 @@ var sectionId = 'dynsection-1'; Node3->Node5 - - + + @@ -230,8 +230,8 @@ var sectionId = 'dynsection-1'; Node6 - -check_collision_zy + +check_collision_zy @@ -239,8 +239,8 @@ var sectionId = 'dynsection-1'; Node3->Node6 - - + + @@ -248,8 +248,8 @@ var sectionId = 'dynsection-1'; Node9 - -adjust_path_at_start_line + +adjust_path_at_start_line @@ -257,8 +257,8 @@ var sectionId = 'dynsection-1'; Node8->Node9 - - + + @@ -266,8 +266,8 @@ var sectionId = 'dynsection-1'; Node10 - -func_8000D24C + +func_8000D24C @@ -275,8 +275,8 @@ var sectionId = 'dynsection-1'; Node8->Node10 - - + + @@ -284,8 +284,8 @@ var sectionId = 'dynsection-1'; Node13 - -update_path_index + +update_path_index @@ -293,8 +293,8 @@ var sectionId = 'dynsection-1'; Node8->Node13 - - + + @@ -302,8 +302,8 @@ var sectionId = 'dynsection-1'; Node10->Node3 - - + + @@ -311,9 +311,9 @@ var sectionId = 'dynsection-1'; Node11 - -find_closest_path_point -_track_section + +find_closest_path_point +_track_section @@ -321,8 +321,8 @@ var sectionId = 'dynsection-1'; Node10->Node11 - - + + @@ -330,8 +330,8 @@ var sectionId = 'dynsection-1'; Node12 - -get_track_section_id + +get_track_section_id @@ -339,8 +339,8 @@ var sectionId = 'dynsection-1'; Node10->Node12 - - + + @@ -348,8 +348,8 @@ var sectionId = 'dynsection-1'; Node15 - -atan2s + +atan2s @@ -357,8 +357,8 @@ var sectionId = 'dynsection-1'; Node14->Node15 - - + + @@ -366,8 +366,8 @@ var sectionId = 'dynsection-1'; Node16 - -atan2_lookup + +atan2_lookup @@ -375,8 +375,8 @@ var sectionId = 'dynsection-1'; Node15->Node16 - - + + @@ -395,7 +395,7 @@ var sectionId = 'dynsection-1'; - + - - + + -func_8000DF8C +update_bomb_karts Node1 - -func_8000DF8C + +update_bomb_karts @@ -21,8 +21,8 @@ Node2 - -calculate_surface_height + +calculate_surface_height @@ -30,8 +30,8 @@ Node1->Node2 - - + + @@ -39,8 +39,8 @@ Node3 - -check_bounding_collision + +check_bounding_collision @@ -48,8 +48,8 @@ Node1->Node3 - - + + @@ -57,8 +57,8 @@ Node7 - -coss + +coss @@ -66,8 +66,8 @@ Node1->Node7 - - + + @@ -75,8 +75,8 @@ Node8 - -func_8000D2B4 + +func_8000D2B4 @@ -84,8 +84,8 @@ Node1->Node8 - - + + @@ -93,9 +93,9 @@ Node14 - -get_xz_angle_between -_points + +get_xz_angle_between +_points @@ -103,8 +103,8 @@ Node1->Node14 - - + + @@ -112,8 +112,8 @@ Node17 - -sins + +sins @@ -121,8 +121,8 @@ Node1->Node17 - - + + @@ -130,8 +130,8 @@ Node18 - -sqrtf + +sqrtf @@ -139,8 +139,8 @@ Node1->Node18 - - + + @@ -148,8 +148,8 @@ Node4 - -check_collision_yx + +check_collision_yx @@ -157,8 +157,8 @@ Node3->Node4 - - + + @@ -166,8 +166,8 @@ Node5 - -check_collision_zx + +check_collision_zx @@ -175,8 +175,8 @@ Node3->Node5 - - + + @@ -184,8 +184,8 @@ Node6 - -check_collision_zy + +check_collision_zy @@ -193,8 +193,8 @@ Node3->Node6 - - + + @@ -202,8 +202,8 @@ Node9 - -adjust_path_at_start_line + +adjust_path_at_start_line @@ -211,8 +211,8 @@ Node8->Node9 - - + + @@ -220,8 +220,8 @@ Node10 - -func_8000D24C + +func_8000D24C @@ -229,8 +229,8 @@ Node8->Node10 - - + + @@ -238,8 +238,8 @@ Node13 - -update_path_index + +update_path_index @@ -247,8 +247,8 @@ Node8->Node13 - - + + @@ -256,8 +256,8 @@ Node10->Node3 - - + + @@ -265,9 +265,9 @@ Node11 - -find_closest_path_point -_track_section + +find_closest_path_point +_track_section @@ -275,8 +275,8 @@ Node10->Node11 - - + + @@ -284,8 +284,8 @@ Node12 - -get_track_section_id + +get_track_section_id @@ -293,8 +293,8 @@ Node10->Node12 - - + + @@ -302,8 +302,8 @@ Node15 - -atan2s + +atan2s @@ -311,8 +311,8 @@ Node14->Node15 - - + + @@ -320,8 +320,8 @@ Node16 - -atan2_lookup + +atan2_lookup @@ -329,8 +329,8 @@ Node15->Node16 - - + + diff --git a/cpu__vehicles__camera__path_8h_ae20b754de93d23f19d915d573dec5d1b_icgraph.map b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.map similarity index 97% rename from cpu__vehicles__camera__path_8h_ae20b754de93d23f19d915d573dec5d1b_icgraph.map rename to bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.map index 4ce9daeff..f2be8dbd2 100644 --- a/cpu__vehicles__camera__path_8h_ae20b754de93d23f19d915d573dec5d1b_icgraph.map +++ b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.map @@ -1,5 +1,5 @@ - - + + diff --git a/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.md5 b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.md5 new file mode 100644 index 000000000..13db48cd1 --- /dev/null +++ b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.md5 @@ -0,0 +1 @@ +9c739fdac520471344a0b7b5aaf39343 \ No newline at end of file diff --git a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_icgraph.svg b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.svg similarity index 94% rename from bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_icgraph.svg rename to bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.svg index 191300f7f..f19dfbb49 100644 --- a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_icgraph.svg +++ b/bomb__kart_8inc_8c_a0bf911f9098a7f2c38f0a03c58c3c4f1_icgraph.svg @@ -3,7 +3,7 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + @@ -46,20 +46,20 @@ -func_8000DF8C +update_bomb_karts Node1 - -func_8000DF8C + +update_bomb_karts @@ -76,8 +76,8 @@ var sectionId = 'dynsection-2'; Node1->Node2 - - + + @@ -249,7 +249,7 @@ var sectionId = 'dynsection-2'; - + - - + + -func_8000DF8C +update_bomb_karts Node1 - -func_8000DF8C + +update_bomb_karts @@ -30,8 +30,8 @@ Node1->Node2 - - + + diff --git a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.md5 b/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.md5 deleted file mode 100644 index 82904b3c3..000000000 --- a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_cgraph.md5 +++ /dev/null @@ -1 +0,0 @@ -36a22fab8d7c456486029d718baa2329 \ No newline at end of file diff --git a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_icgraph.md5 b/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_icgraph.md5 deleted file mode 100644 index 740e7a2f2..000000000 --- a/bomb__kart_8inc_8c_ad7cfd2edb9055380080a6c1c577d042f_icgraph.md5 +++ /dev/null @@ -1 +0,0 @@ -759bd594dedadee31d4d8d4eeec95d5d \ No newline at end of file diff --git a/bomb__kart_8inc_8c_ada59072ef0e7fec8eb6eeaabdc4ebe03_icgraph.svg b/bomb__kart_8inc_8c_ada59072ef0e7fec8eb6eeaabdc4ebe03_icgraph.svg index f9a0dd7a6..b690100a5 100644 --- a/bomb__kart_8inc_8c_ada59072ef0e7fec8eb6eeaabdc4ebe03_icgraph.svg +++ b/bomb__kart_8inc_8c_ada59072ef0e7fec8eb6eeaabdc4ebe03_icgraph.svg @@ -48,7 +48,7 @@ diff --git a/bomb__kart_8inc_8c_source.html b/bomb__kart_8inc_8c_source.html index 7bbeb2294..25a652115 100644 --- a/bomb__kart_8inc_8c_source.html +++ b/bomb__kart_8inc_8c_source.html @@ -169,7 +169,7 @@ $(function(){initNavTree('bomb__kart_8inc_8c_source.html',''); initResizable(tru
58
-
59void func_8000DF8C(s32 bombKartId) {
+
59void update_bomb_karts(s32 bombKartId) {
60 UNUSED s32 stackPadding0;
61 f32 sp118;
62 f32 var_f18;
@@ -437,7 +437,7 @@ $(function(){initNavTree('bomb__kart_8inc_8c_source.html',''); initResizable(tru
324}
#define NUM_BOMB_KARTS_VERSUS
Definition bomb_kart.h:9
-
void func_8000DF8C(s32 bombKartId)
Definition bomb_kart.inc.c:59
+
void update_bomb_karts(s32 bombKartId)
Definition bomb_kart.inc.c:59
void set_bomb_kart_spawn_positions(void)
Definition bomb_kart.inc.c:1
s16 gCurrentCourseId
Definition code_800029B0.c:30
u16 check_bounding_collision(Collision *collision, f32 boundingBoxSize, f32 posX, f32 posY, f32 posZ)
Definition collision.c:1358
diff --git a/ceremony__and__credits_8c.html b/ceremony__and__credits_8c.html index 8ec1b7ea8..dade69c39 100644 --- a/ceremony__and__credits_8c.html +++ b/ceremony__and__credits_8c.html @@ -1362,7 +1362,7 @@ Here is the caller graph for this function:
-
Todo
Does this match as a return of s8?
+
Todo
Does this match as a return of s8?
Here is the call graph for this function:
@@ -2017,7 +2017,7 @@ Here is the call graph for this function:
-
Todo
What does this even do?
+
Todo
What does this even do?
Here is the call graph for this function:
diff --git a/ceremony__and__credits_8h.html b/ceremony__and__credits_8h.html index 078986035..23e197f6f 100644 --- a/ceremony__and__credits_8h.html +++ b/ceremony__and__credits_8h.html @@ -1988,7 +1988,7 @@ Here is the call graph for this function:
-
Todo
What does this even do?
+
Todo
What does this even do?
Here is the call graph for this function:
diff --git a/choco__mountain_2course__offsets_8c.html b/choco__mountain_2course__offsets_8c.html index 0b8677521..1c0db2ef1 100644 --- a/choco__mountain_2course__offsets_8c.html +++ b/choco__mountain_2course__offsets_8c.html @@ -197,7 +197,7 @@ Variables
{ gTexture64647C, 0x0829, 0x1000, 0x0 },
{ gTexture647F4C, 0x05BC, 0x1000, 0x0 },
{ gTexture64FBF4, 0x0274, 0x0800, 0x0 },
-
{ gTexture653DB0, 0x06AE, 0x0800, 0x0 },
+
{ gTexture653DB0, 0x06AE, 0x0800, 0x0 },
{ gTexture652B54, 0x0606, 0x0800, 0x0 },
{ gTexture65315C, 0x04A9, 0x0800, 0x0 },
{ gTexture6684F8, 0x010D, 0x0800, 0x0 },
@@ -216,7 +216,6 @@ Variables
{ 0x00000000, 0x0000, 0x0000, 0x0 },
}
u8 gTexture64FBF4[]
-
u8 gTexture653DB0[]
u8 gTexture67B864[]
u8 gTexture65315C[]
u8 gTexture679C04[]
@@ -232,6 +231,7 @@ Variables
u8 gTexture64619C[]
u8 gTextureSignBackside[]
u8 gTexture6774D8[]
+
u8 gTexture653DB0[]
u8 gTextureSignFallingRocks[]
u8 gTexture647F4C[]
u8 gTexture67DC20[]
diff --git a/code__80281780_8c.html b/code__80281780_8c.html index fabe9ccdc..0e4106bbe 100644 --- a/code__80281780_8c.html +++ b/code__80281780_8c.html @@ -170,7 +170,7 @@ Variables
-
Todo
confirm this.
+
Todo
confirm this.
Here is the call graph for this function:
diff --git a/code__80281780_8h.html b/code__80281780_8h.html index fa6c7e3c6..9ae89542e 100644 --- a/code__80281780_8h.html +++ b/code__80281780_8h.html @@ -170,7 +170,7 @@ Variables
-
Todo
confirm this.
+
Todo
confirm this.
Here is the call graph for this function:
diff --git a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.map b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.map index d88978448..71dff2fcf 100644 --- a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.map +++ b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.map @@ -26,8 +26,8 @@ - - + + diff --git a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.md5 b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.md5 index 0378b4f2a..16e400d9b 100644 --- a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.md5 +++ b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.md5 @@ -1 +1 @@ -18fe0b944124d121a10c8abe79d0f570 \ No newline at end of file +87f7475dd1458517c26b11c4e53d0151 \ No newline at end of file diff --git a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.svg b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.svg index 9d9a8c671..3a420fea1 100644 --- a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.svg +++ b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph.svg @@ -302,9 +302,9 @@ var sectionId = 'dynsection-37'; Node43 - - -func_8000DF8C + + +update_bomb_karts @@ -312,7 +312,7 @@ var sectionId = 'dynsection-37'; Node3->Node43 - + diff --git a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph_org.svg b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph_org.svg index 46afbfbe9..71e7220dc 100644 --- a/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph_org.svg +++ b/collision_8c_a053809031f467d0a6747788211e0ec69_icgraph_org.svg @@ -256,9 +256,9 @@ Node43 - - -func_8000DF8C + + +update_bomb_karts @@ -266,7 +266,7 @@ Node3->Node43 - + diff --git a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.map b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.map index f2efef29b..06068a9a8 100644 --- a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.map +++ b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.map @@ -7,51 +7,51 @@ - + - - - - - + + + + + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -61,67 +61,67 @@ - - - - - - - + + + + + - + - + - + - + - + - + - + - + - + - - - - - - - - + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - + + + - - - - - + + + + + - + - + - + - + + + diff --git a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.md5 b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.md5 index 6413d8003..5a273ea23 100644 --- a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.md5 +++ b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.md5 @@ -1 +1 @@ -2bed3f8e80dc88de9c9eba255db32ec7 \ No newline at end of file +632534f90f21852d415e89ac6183456c \ No newline at end of file diff --git a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.svg b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.svg index 0309c2143..a3531ca89 100644 --- a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.svg +++ b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph.svg @@ -127,9 +127,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node38 - + @@ -145,11 +145,11 @@ var sectionId = 'dynsection-11'; - + Node2->Node39 - - - + + + @@ -157,8 +157,8 @@ var sectionId = 'dynsection-11'; Node55 - -func_8000D24C + +func_8000D24C @@ -166,26 +166,26 @@ var sectionId = 'dynsection-11'; Node2->Node55 - - + + Node79 - - -func_8000DF8C + + +update_bomb_karts - + Node2->Node79 - - - + + + @@ -199,9 +199,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node92 - + @@ -217,9 +217,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node95 - + @@ -229,17 +229,17 @@ var sectionId = 'dynsection-11'; Node96 - -func_80014D30 + +func_80014D30 - + Node2->Node96 - - - + + + @@ -253,9 +253,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node98 - + @@ -271,9 +271,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node109 - + @@ -289,9 +289,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node110 - + @@ -307,9 +307,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node111 - + @@ -325,9 +325,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node112 - + @@ -343,9 +343,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node113 - + @@ -361,9 +361,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node135 - + @@ -379,9 +379,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node136 - + @@ -397,9 +397,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node139 - + @@ -415,11 +415,11 @@ var sectionId = 'dynsection-11'; - + Node2->Node142 - - - + + + @@ -427,15 +427,15 @@ var sectionId = 'dynsection-11'; Node143 - + func_800887C0 - + Node2->Node143 - + @@ -451,9 +451,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node150 - + @@ -470,9 +470,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node151 - + @@ -488,9 +488,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node152 - + @@ -506,9 +506,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node153 - + @@ -525,9 +525,9 @@ var sectionId = 'dynsection-11'; - + Node2->Node154 - + @@ -618,8 +618,8 @@ var sectionId = 'dynsection-11'; Node56 - -func_8000D2B4 + +func_8000D2B4 @@ -627,8 +627,8 @@ var sectionId = 'dynsection-11'; Node55->Node56 - - + + @@ -636,17 +636,17 @@ var sectionId = 'dynsection-11'; Node80 - -func_8000D33C + +func_8000D33C - + Node55->Node80 - - - + + + @@ -654,26 +654,8 @@ var sectionId = 'dynsection-11'; Node56->Node79 - - - - - - - -Node71 - - -update_vehicles - - - - - -Node79->Node71 - - - + + @@ -687,11 +669,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node81 - - - + + + @@ -705,11 +687,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node85 - - - + + + @@ -723,11 +705,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node86 - - - + + + @@ -741,11 +723,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node87 - - - + + + @@ -759,11 +741,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node88 - - - + + + @@ -777,11 +759,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node89 - - - + + + @@ -795,11 +777,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node90 - - - + + + @@ -813,11 +795,11 @@ var sectionId = 'dynsection-11'; - + Node80->Node91 - - - + + + @@ -831,9 +813,9 @@ var sectionId = 'dynsection-11'; - + Node81->Node82 - + @@ -849,72 +831,72 @@ var sectionId = 'dynsection-11'; - + Node82->Node83 - + - + Node85->Node82 - + - + Node86->Node82 - + - + Node87->Node82 - + - + Node88->Node82 - + - + Node89->Node82 - + - + Node90->Node82 - + - + Node91->Node82 - + @@ -930,92 +912,92 @@ var sectionId = 'dynsection-11'; - + Node92->Node93 - + - + Node95->Node93 - + - + Node96->Node81 - - - + + + - + Node96->Node85 - - - + + + - + Node96->Node86 - - - + + + - + Node96->Node87 - - - + + + - + Node96->Node88 - - - + + + - + Node96->Node89 - - - + + + - + Node96->Node90 - - - + + + - + Node96->Node91 - - - + + + @@ -1029,27 +1011,27 @@ var sectionId = 'dynsection-11'; - + Node96->Node97 - - - + + + - + Node97->Node82 - + - + Node98->Node82 - + @@ -1065,45 +1047,45 @@ var sectionId = 'dynsection-11'; - + Node98->Node99 - + - + Node109->Node83 - + - + Node110->Node83 - + - + Node111->Node83 - + - + Node112->Node83 - + @@ -1119,9 +1101,9 @@ var sectionId = 'dynsection-11'; - + Node113->Node114 - + @@ -1137,9 +1119,9 @@ var sectionId = 'dynsection-11'; - + Node136->Node137 - + @@ -1155,9 +1137,9 @@ var sectionId = 'dynsection-11'; - + Node139->Node140 - + @@ -1173,14 +1155,32 @@ var sectionId = 'dynsection-11'; - + Node142->Node18 - + + + +Node144 + + +init_course_objects + + + + + +Node143->Node144 + + + + + + diff --git a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph_org.svg b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph_org.svg index beffb3fd1..a7e77e014 100644 --- a/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph_org.svg +++ b/collision_8c_a21fef964ab48191a1c0341954ef27a40_icgraph_org.svg @@ -81,9 +81,9 @@ - + Node2->Node38 - + @@ -99,11 +99,11 @@ - + Node2->Node39 - - - + + + @@ -111,8 +111,8 @@ Node55 - -func_8000D24C + +func_8000D24C @@ -120,26 +120,26 @@ Node2->Node55 - - + + Node79 - - -func_8000DF8C + + +update_bomb_karts - + Node2->Node79 - - - + + + @@ -153,9 +153,9 @@ - + Node2->Node92 - + @@ -171,9 +171,9 @@ - + Node2->Node95 - + @@ -183,17 +183,17 @@ Node96 - -func_80014D30 + +func_80014D30 - + Node2->Node96 - - - + + + @@ -207,9 +207,9 @@ - + Node2->Node98 - + @@ -225,9 +225,9 @@ - + Node2->Node109 - + @@ -243,9 +243,9 @@ - + Node2->Node110 - + @@ -261,9 +261,9 @@ - + Node2->Node111 - + @@ -279,9 +279,9 @@ - + Node2->Node112 - + @@ -297,9 +297,9 @@ - + Node2->Node113 - + @@ -315,9 +315,9 @@ - + Node2->Node135 - + @@ -333,9 +333,9 @@ - + Node2->Node136 - + @@ -351,9 +351,9 @@ - + Node2->Node139 - + @@ -369,11 +369,11 @@ - + Node2->Node142 - - - + + + @@ -381,15 +381,15 @@ Node143 - + func_800887C0 - + Node2->Node143 - + @@ -405,9 +405,9 @@ - + Node2->Node150 - + @@ -424,9 +424,9 @@ - + Node2->Node151 - + @@ -442,9 +442,9 @@ - + Node2->Node152 - + @@ -460,9 +460,9 @@ - + Node2->Node153 - + @@ -479,9 +479,9 @@ - + Node2->Node154 - + @@ -572,8 +572,8 @@ Node56 - -func_8000D2B4 + +func_8000D2B4 @@ -581,8 +581,8 @@ Node55->Node56 - - + + @@ -590,17 +590,17 @@ Node80 - -func_8000D33C + +func_8000D33C - + Node55->Node80 - - - + + + @@ -608,26 +608,8 @@ Node56->Node79 - - - - - - - -Node71 - - -update_vehicles - - - - - -Node79->Node71 - - - + + @@ -641,11 +623,11 @@ - + Node80->Node81 - - - + + + @@ -659,11 +641,11 @@ - + Node80->Node85 - - - + + + @@ -677,11 +659,11 @@ - + Node80->Node86 - - - + + + @@ -695,11 +677,11 @@ - + Node80->Node87 - - - + + + @@ -713,11 +695,11 @@ - + Node80->Node88 - - - + + + @@ -731,11 +713,11 @@ - + Node80->Node89 - - - + + + @@ -749,11 +731,11 @@ - + Node80->Node90 - - - + + + @@ -767,11 +749,11 @@ - + Node80->Node91 - - - + + + @@ -785,9 +767,9 @@ - + Node81->Node82 - + @@ -803,72 +785,72 @@ - + Node82->Node83 - + - + Node85->Node82 - + - + Node86->Node82 - + - + Node87->Node82 - + - + Node88->Node82 - + - + Node89->Node82 - + - + Node90->Node82 - + - + Node91->Node82 - + @@ -884,92 +866,92 @@ - + Node92->Node93 - + - + Node95->Node93 - + - + Node96->Node81 - - - + + + - + Node96->Node85 - - - + + + - + Node96->Node86 - - - + + + - + Node96->Node87 - - - + + + - + Node96->Node88 - - - + + + - + Node96->Node89 - - - + + + - + Node96->Node90 - - - + + + - + Node96->Node91 - - - + + + @@ -983,27 +965,27 @@ - + Node96->Node97 - - - + + + - + Node97->Node82 - + - + Node98->Node82 - + @@ -1019,45 +1001,45 @@ - + Node98->Node99 - + - + Node109->Node83 - + - + Node110->Node83 - + - + Node111->Node83 - + - + Node112->Node83 - + @@ -1073,9 +1055,9 @@ - + Node113->Node114 - + @@ -1091,9 +1073,9 @@ - + Node136->Node137 - + @@ -1109,9 +1091,9 @@ - + Node139->Node140 - + @@ -1127,13 +1109,31 @@ - + Node142->Node18 - + + + +Node144 + + +init_course_objects + + + + + +Node143->Node144 + + + + + + diff --git a/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.map b/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.map index 5766d57ca..eb2de74e6 100644 --- a/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.map +++ b/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.map @@ -1,127 +1,128 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.md5 b/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.md5 index 9bf44bff2..48ef5ec87 100644 --- a/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.md5 +++ b/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.md5 @@ -1 +1 @@ -e3b36dd20bafbaaf10ce9805999f778f \ No newline at end of file +f4b923eedf797d7bf0457dd910341162 \ No newline at end of file diff --git a/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.svg b/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.svg index 602a091aa..f67562b8d 100644 --- a/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.svg +++ b/collision_8c_a37aa55b3768d001533ad75e7f1b8388a_icgraph.svg @@ -4,7 +4,7 @@ - +