mirror of
https://github.com/n64decomp/sm64.git
synced 2024-11-17 14:55:10 -05:00
27 lines
922 B
C
27 lines
922 B
C
|
#ifndef _DEBUG_H
|
||
|
#define _DEBUG_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
enum DebugPage {
|
||
|
DEBUG_PAGE_OBJECTINFO, // 0: objectinfo
|
||
|
DEBUG_PAGE_CHECKSURFACEINFO, // 1: checkinfo/surfaceinfo
|
||
|
DEBUG_PAGE_MAPINFO, // 2: mapinfo
|
||
|
DEBUG_PAGE_STAGEINFO, // 3: stageinfo
|
||
|
DEBUG_PAGE_EFFECTINFO, // 4: effectinfo
|
||
|
DEBUG_PAGE_ENEMYINFO // 5: enemyinfo
|
||
|
};
|
||
|
|
||
|
extern s64 get_current_clock(void);
|
||
|
extern s64 get_clock_difference(s64 cycles);
|
||
|
extern void set_text_array_x_y(s32 xOffset, s32 yOffset);
|
||
|
extern void print_debug_top_down_objectinfo(const char *str, s32 number);
|
||
|
extern void print_debug_top_down_mapinfo(const char * str, s32 number);
|
||
|
extern void print_debug_bottom_up(const char*,s32);
|
||
|
extern void debug_unknown_level_select_check(void);
|
||
|
extern void reset_debug_objectinfo(void);
|
||
|
extern void stub_802CA5D0(void);
|
||
|
extern void try_print_debug_mario_object_info(void);
|
||
|
|
||
|
#endif /* _DEBUG_H */
|