mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-06 06:45:05 +01:00
3c34fa63c1
* Added analog cam and camera inversion options to menu, initial implementation of analog cam * Automatically suppress inputs on the right stick while analog cam is active * Return to automatic camera mode when pressing target * Add aiming inversion options * Add analog camera inversion options
23 lines
704 B
C
23 lines
704 B
C
#ifndef __INPUT_H__
|
|
#define __INPUT_H__
|
|
|
|
#include "patch_helpers.h"
|
|
|
|
typedef enum {
|
|
RECOMP_CAMERA_NORMAL,
|
|
RECOMP_CAMERA_DUALANALOG,
|
|
} RecompCameraMode;
|
|
|
|
extern RecompCameraMode recomp_camera_mode;
|
|
|
|
DECLARE_FUNC(void, recomp_get_gyro_deltas, float* x, float* y);
|
|
DECLARE_FUNC(void, recomp_get_mouse_deltas, float* x, float* y);
|
|
DECLARE_FUNC(s32, recomp_get_targeting_mode);
|
|
DECLARE_FUNC(void, recomp_get_inverted_axes, s32* x, s32* y);
|
|
DECLARE_FUNC(s32, recomp_analog_cam_enabled);
|
|
DECLARE_FUNC(void, recomp_get_analog_inverted_axes, s32* x, s32* y);
|
|
DECLARE_FUNC(void, recomp_get_camera_inputs, float* x, float* y);
|
|
DECLARE_FUNC(void, recomp_set_right_analog_suppressed, s32 suppressed);
|
|
|
|
#endif
|