1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 13:33:25 +01:00
TegraExplorer/source/hid/hid.c

92 lines
2.3 KiB
C
Raw Normal View History

2020-05-01 21:42:49 +01:00
#include "hid.h"
#include <input/joycon.h>
#include <utils/btn.h>
#include "../gfx/gfx.h"
#include <utils/types.h>
#include <utils/util.h>
#include "../utils/utils.h"
2020-05-01 21:42:49 +01:00
static Input_t inputs = {0};
2020-05-01 21:42:49 +01:00
u16 LbaseX = 0, LbaseY = 0, RbaseX = 0, RbaseY = 0;
void hidInit(){
jc_init_hw();
}
Input_t *hidRead(){
2020-05-01 21:42:49 +01:00
jc_gamepad_rpt_t *controller = joycon_poll();
//if (controller->cap)
// utils_takeScreenshot();
2020-05-03 01:00:04 +01:00
if (controller->home)
RebootToPayloadOrRcm();
inputs.buttons = controller->buttons;
2020-05-03 01:00:04 +01:00
u8 btn = btn_read();
inputs.volp = (btn & BTN_VOL_UP) ? 1 : 0;
inputs.volm = (btn & BTN_VOL_DOWN) ? 1 : 0;
inputs.power = (btn & BTN_POWER) ? 1 : 0;
2020-05-01 21:42:49 +01:00
if (controller->conn_l){
2020-05-01 23:50:08 +01:00
if ((LbaseX == 0 || LbaseY == 0) || controller->l3){
2020-05-01 21:42:49 +01:00
LbaseX = controller->lstick_x;
LbaseY = controller->lstick_y;
}
inputs.up = (controller->up || (controller->lstick_y > LbaseY + 500)) ? 1 : 0;
inputs.down = (controller->down || (controller->lstick_y < LbaseY - 500)) ? 1 : 0;
inputs.left = (controller->left || (controller->lstick_x < LbaseX - 500)) ? 1 : 0;
inputs.right = (controller->right || (controller->lstick_x > LbaseX + 500)) ? 1 : 0;
2020-05-01 21:42:49 +01:00
}
else {
inputs.up = inputs.volp;
inputs.down = inputs.volm;
}
2020-05-01 21:42:49 +01:00
if (controller->conn_r){
2020-05-01 23:50:08 +01:00
if ((RbaseX == 0 || RbaseY == 0) || controller->r3){
2020-05-01 21:42:49 +01:00
RbaseX = controller->rstick_x;
RbaseY = controller->rstick_y;
}
inputs.rUp = (controller->rstick_y > RbaseY + 500) ? 1 : 0;
inputs.rDown = (controller->rstick_y < RbaseY - 500) ? 1 : 0;
inputs.rLeft = (controller->rstick_x < RbaseX - 500) ? 1 : 0;
inputs.rRight = (controller->rstick_x > RbaseX + 500) ? 1 : 0;
2020-05-01 21:42:49 +01:00
}
else
inputs.a = inputs.power;
2020-05-01 21:42:49 +01:00
return &inputs;
}
Input_t *hidWaitMask(u32 mask){
Input_t *in = hidRead();
2020-05-02 23:30:05 +01:00
while (in->buttons & mask)
hidRead();
2020-05-02 23:30:05 +01:00
while (!(in->buttons & mask)){
hidRead();
2020-05-01 21:42:49 +01:00
}
2020-05-02 23:30:05 +01:00
2020-05-01 21:42:49 +01:00
return in;
}
Input_t *hidWait(){
Input_t *in = hidRead();
while (in->buttons)
hidRead();
while (!(in->buttons))
hidRead();
return in;
}
bool hidConnected(){
jc_gamepad_rpt_t *controller = joycon_poll();
return (controller->conn_l && controller->conn_r) ? 1 : 0;
2020-05-01 21:42:49 +01:00
}