mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-05 11:44:31 +00:00
32 lines
999 B
C
32 lines
999 B
C
|
#ifndef LIBU64_PAD_H
|
||
|
#define LIBU64_PAD_H
|
||
|
|
||
|
#include "ultra64.h"
|
||
|
|
||
|
typedef struct Input {
|
||
|
/* 0x00 */ OSContPad cur;
|
||
|
/* 0x06 */ OSContPad prev;
|
||
|
/* 0x0C */ OSContPad press; // X/Y store delta from last frame
|
||
|
/* 0x12 */ OSContPad rel; // X/Y store adjusted
|
||
|
} Input; // size = 0x18
|
||
|
|
||
|
void PadUtils_Init(Input* input);
|
||
|
void func_800FCB70(void);
|
||
|
void PadUtils_ResetPressRel(Input* input);
|
||
|
u32 PadUtils_CheckCurExact(Input* input, u16 value);
|
||
|
u32 PadUtils_CheckCur(Input* input, u16 key);
|
||
|
u32 PadUtils_CheckPressed(Input* input, u16 key);
|
||
|
u32 PadUtils_CheckReleased(Input* input, u16 key);
|
||
|
u16 PadUtils_GetCurButton(Input* input);
|
||
|
u16 PadUtils_GetPressButton(Input* input);
|
||
|
s8 PadUtils_GetCurX(Input* input);
|
||
|
s8 PadUtils_GetCurY(Input* input);
|
||
|
void PadUtils_SetRelXY(Input* input, s32 x, s32 y);
|
||
|
s8 PadUtils_GetRelXImpl(Input* input);
|
||
|
s8 PadUtils_GetRelYImpl(Input* input);
|
||
|
s8 PadUtils_GetRelX(Input* input);
|
||
|
s8 PadUtils_GetRelY(Input* input);
|
||
|
void PadUtils_UpdateRelXY(Input* input);
|
||
|
|
||
|
#endif
|