// SONIC ROBO BLAST 2 KART //----------------------------------------------------------------------------- /// \file k_director.h /// \brief SRB2kart automatic spectator camera. #ifndef __K_DIRECTOR_H__ #define __K_DIRECTOR_H__ #ifdef __cplusplus extern "C" { #endif extern struct directorinfo { boolean active; // is view point switching enabled? tic_t cooldown; // how long has it been since we last switched? tic_t freeze; // when nonzero, fixed switch pending, freeze logic! INT32 attacker; // who to switch to when freeze delay elapses INT32 maxdist; // how far is the closest player from finishing? INT32 sortedplayers[MAXPLAYERS]; // position-1 goes in, player index comes out. INT32 gap[MAXPLAYERS]; // gap between a given position and their closest pursuer INT32 boredom[MAXPLAYERS]; // how long has a given position had no credible attackers? } directorinfo; void K_InitDirector(void); void K_UpdateDirector(void); void K_DrawDirectorDebugger(void); void K_DirectorFollowAttack(player_t *player, mobj_t *inflictor, mobj_t *source); void K_ToggleDirector(boolean active); #ifdef __cplusplus } // extern "C" #endif #endif // __K_DIRECTOR_H__