mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
39 lines
733 B
C
39 lines
733 B
C
#ifndef __INPUT_H__
|
|
#define __INPUT_H__
|
|
|
|
#ifdef MIPS
|
|
#include "ultra64.h"
|
|
#else
|
|
#include "recomp.h"
|
|
#endif
|
|
|
|
typedef enum {
|
|
RECOMP_CAMERA_NORMAL,
|
|
RECOMP_CAMERA_DUALANALOG,
|
|
} RecompCameraMode;
|
|
|
|
extern RecompCameraMode recomp_camera_mode;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef MIPS
|
|
# define DECLARE_FUNC(type, name, ...) \
|
|
type name(__VA_ARGS__);
|
|
#else
|
|
# define DECLARE_FUNC(type, name, ...) \
|
|
void name(uint8_t* rdram, recomp_context* ctx);
|
|
#endif
|
|
|
|
DECLARE_FUNC(void, recomp_get_item_inputs, u32* buttons);
|
|
DECLARE_FUNC(void, recomp_get_camera_inputs, float* x_out, float* y_out);
|
|
// TODO move this
|
|
DECLARE_FUNC(void, recomp_puts, const char* data, u32 size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|