mirror of
https://github.com/n64decomp/mk64
synced 2026-07-09 05:13:17 -04:00
@@ -4,38 +4,38 @@
|
||||
|
||||
#if !ENABLE_CUSTOM_COURSE_ENGINE
|
||||
// @warning Array contains an extra zero element at the end.
|
||||
KartAIBehaviour* gKartAIBehaviourLUT[] = {
|
||||
#include "assets/course_metadata/gKartAIBehaviourLUT.inc.c"
|
||||
CPUBehaviour* cpu_BehaviourLUT[] = {
|
||||
#include "assets/course_metadata/cpu_BehaviourLUT.inc.c"
|
||||
|
||||
};
|
||||
#else
|
||||
|
||||
#endif
|
||||
|
||||
TrackWaypoint nullPath = { 0x8000, 0x0000, 0x0000, 0x0000 };
|
||||
TrackPathPoint nullPath = { 0x8000, 0x0000, 0x0000, 0x0000 };
|
||||
|
||||
#if !ENABLE_CUSTOM_COURSE_ENGINE
|
||||
TrackWaypoint* gCoursePathTable[][4] = {
|
||||
TrackPathPoint* gCoursePathTable[][4] = {
|
||||
#include "assets/course_metadata/gCoursePathTableUnknown.inc.c"
|
||||
};
|
||||
|
||||
TrackWaypoint* gCoursePathTable2[][4] = {
|
||||
TrackPathPoint* 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"
|
||||
s16 cpu_SteeringSensitivity[] = {
|
||||
#include "assets/course_metadata/cpu_SteeringSensitivity.inc.c"
|
||||
};
|
||||
|
||||
// Possibly maximum cpu separation
|
||||
f32 gKartAICourseMaximumSeparation[] = {
|
||||
#include "assets/course_metadata/gKartAICourseMaximumSeparation.inc.c"
|
||||
f32 cpu_CourseMaximumSeparation[] = {
|
||||
#include "assets/course_metadata/cpu_CourseMaximumSeparation.inc.c"
|
||||
};
|
||||
|
||||
// Possibly minimum cpu separation
|
||||
f32 gKartAICourseMinimumSeparation[] = {
|
||||
#include "assets/course_metadata/gKartAICourseMinimumSeparation.inc.c"
|
||||
f32 cpu_CourseMinimumSeparation[] = {
|
||||
#include "assets/course_metadata/cpu_CourseMinimumSeparation.inc.c"
|
||||
};
|
||||
#else
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
#ifndef PATH_SPAWN_METADATA_H
|
||||
#define PATH_SPAWN_METADATA_H
|
||||
|
||||
#include "waypoints.h"
|
||||
#include "path.h"
|
||||
#include <common_structs.h>
|
||||
#include <assets/common_data.h>
|
||||
#include "include/bomb_kart.h"
|
||||
|
||||
extern TrackWaypoint nullPath;
|
||||
extern TrackPathPoint nullPath;
|
||||
extern s16 D_800DCAF4[];
|
||||
extern s16 D_800DCB34[];
|
||||
extern BombKartSpawn gBombKartSpawns[][NUM_BOMB_KARTS_MAX];
|
||||
|
||||
Reference in New Issue
Block a user