diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-11-14 23:32:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-14 23:32:55 -0700 |
| commit | 475f167bb2803999c5116bc285601d1f9a05d7de (patch) | |
| tree | 859fec292c5c9807cc9690ebf4f0600f558b6063 /src/data | |
| parent | 4fbb031dd95f2a84e73fbca269f517e98808d293 (diff) | |
[modding] Big Update PR (#118)
* Implement kart vehicle
* Fix menu CC
* Actors
* variable framerate
* Implement Actors vector
* Fix water & scrolling textures
* Finish ACoin
* Refactor finishline
* Refactor mtx to vector
* Fix refactored screen code bugs
* Fix playlist bug
* Switching courses working now
* Fix podium ceremony
* Mostly Fix Demo and Credits
* Credits Load Actors and Textures
* Fix credits
* Formatting
* Update lus and torch
* Fix water features
* Fix crabs
* Combine function
* Fix wheels
* Add Moon Jump Cheat
* Wheel Change
* Fix smoke due to wheel change
* Fix screens for wheels
* Fix transparency
* Fix staff ghost
* Fix lakitu transition widescreen
* Rename and export credits text
* Fixes
---------
Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/path_spawn_metadata.c | 41 | ||||
| -rw-r--r-- | src/data/path_spawn_metadata.h | 9 |
2 files changed, 0 insertions, 50 deletions
diff --git a/src/data/path_spawn_metadata.c b/src/data/path_spawn_metadata.c index 2157eae02..99450b12a 100644 --- a/src/data/path_spawn_metadata.c +++ b/src/data/path_spawn_metadata.c @@ -12,37 +12,8 @@ #include <assets/frappe_snowland_data.h> #include <assets/dks_jungle_parkway_data.h> -// @warning Array contains an extra zero element at the end. -KartAIBehaviour* gKartAIBehaviourLUT[] = { -#include "assets/course_metadata/gKartAIBehaviourLUT.inc.c" - -}; - TrackWaypoint nullPath = { 0x8000, 0x0000, 0x0000, 0x0000 }; -TrackWaypoint* gCoursePathTable[][4] = { -#include "assets/course_metadata/gCoursePathTableUnknown.inc.c" -}; - -TrackWaypoint* gCoursePathTable2[][4] = { -#include "assets/course_metadata/gCoursePathTable.inc.c" -}; - -// @warning Array contains an extra zero element at the end. -s16 gKartAISteeringSensitivity[] = { -#include "assets/course_metadata/gCPUSteeringSensitivity.inc.c" -}; - -// Possibly maximum cpu separation -f32 gKartAICourseMaximumSeparation[] = { -#include "assets/course_metadata/gKartAICourseMaximumSeparation.inc.c" -}; - -// Possibly minimum cpu separation -f32 gKartAICourseMinimumSeparation[] = { -#include "assets/course_metadata/gKartAICourseMinimumSeparation.inc.c" -}; - // I think the types for D_800DCAF4, D_800DCB34, and D_800DCBB4 are all // wrong in some way based on their usage in func_800088D8 // But I cannot be bothered to figure it out @@ -62,18 +33,6 @@ s16 D_800DCB34[] = { 0x0005, 0x0005, 0x0005, 0x0005, 0x000a, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, }; -s16* D_800DCBB4[] = { -#include "assets/course_metadata/D_800DCBB4.inc.c" -}; - -BombKartSpawn gBombKartSpawns[][NUM_BOMB_KARTS_MAX] = { -#include "assets/course_metadata/gBombKartSpawns.inc.c" -}; - -_struct_gCoursePathSizes_0x10 gCoursePathSizes[] = { -#include "assets/course_metadata/gCoursePathSizes.inc.c" -}; - s32 D_800DDB20 = 0x00000000; s32 D_800DDB24 = 0x00000001; diff --git a/src/data/path_spawn_metadata.h b/src/data/path_spawn_metadata.h index d1fc5451f..df2d8c7b7 100644 --- a/src/data/path_spawn_metadata.h +++ b/src/data/path_spawn_metadata.h @@ -15,18 +15,9 @@ typedef struct { /* 0x0A */ char padA[6]; } _struct_gCoursePathSizes_0x10; // size 0x10 -extern KartAIBehaviour* gKartAIBehaviourLUT[]; extern TrackWaypoint nullPath; -extern TrackWaypoint* gCoursePathTable[][4]; -extern TrackWaypoint* gCoursePathTable2[][4]; -extern s16 gKartAISteeringSensitivity[]; -extern f32 gKartAICourseMaximumSeparation[]; -extern f32 gKartAICourseMinimumSeparation[]; extern s16 D_800DCAF4[]; extern s16 D_800DCB34[]; -extern s16* D_800DCBB4[]; -extern BombKartSpawn gBombKartSpawns[][NUM_BOMB_KARTS_MAX]; -extern _struct_gCoursePathSizes_0x10 gCoursePathSizes[]; extern s32 D_800DDB20; extern s32 D_800DDB24; |
