Added debugpad skeleton
This commit is contained in:
parent
362b28d052
commit
f66c6fe554
2 changed files with 55 additions and 2 deletions
|
@ -34,6 +34,29 @@ void Controller_DebugPad::OnUpdate(u8* data, std::size_t size) {
|
||||||
cur_entry.sampling_number = last_entry.sampling_number + 1;
|
cur_entry.sampling_number = last_entry.sampling_number + 1;
|
||||||
cur_entry.sampling_number2 = cur_entry.sampling_number;
|
cur_entry.sampling_number2 = cur_entry.sampling_number;
|
||||||
// TODO(ogniK): Update debug pad states
|
// TODO(ogniK): Update debug pad states
|
||||||
|
cur_entry.attribute.connected.Assign(1);
|
||||||
|
auto& pad = cur_entry.pad_state;
|
||||||
|
|
||||||
|
pad.a.Assign(0);
|
||||||
|
pad.b.Assign(0);
|
||||||
|
pad.x.Assign(0);
|
||||||
|
pad.y.Assign(0);
|
||||||
|
pad.l.Assign(0);
|
||||||
|
pad.r.Assign(0);
|
||||||
|
pad.zl.Assign(0);
|
||||||
|
pad.zr.Assign(0);
|
||||||
|
pad.plus.Assign(0);
|
||||||
|
pad.minus.Assign(0);
|
||||||
|
pad.d_left.Assign(0);
|
||||||
|
pad.d_up.Assign(0);
|
||||||
|
pad.d_right.Assign(0);
|
||||||
|
pad.d_down.Assign(0);
|
||||||
|
|
||||||
|
cur_entry.l_stick.x = 0;
|
||||||
|
cur_entry.l_stick.y = 0;
|
||||||
|
|
||||||
|
cur_entry.r_stick.x = 0;
|
||||||
|
cur_entry.r_stick.y = 0;
|
||||||
|
|
||||||
std::memcpy(data, &shared_memory, sizeof(SharedMemory));
|
std::memcpy(data, &shared_memory, sizeof(SharedMemory));
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
#include "common/bit_field.h"
|
||||||
#include "common/common_funcs.h"
|
#include "common/common_funcs.h"
|
||||||
#include "common/common_types.h"
|
#include "common/common_types.h"
|
||||||
#include "common/swap.h"
|
#include "common/swap.h"
|
||||||
|
@ -35,11 +36,40 @@ private:
|
||||||
};
|
};
|
||||||
static_assert(sizeof(AnalogStick) == 0x8);
|
static_assert(sizeof(AnalogStick) == 0x8);
|
||||||
|
|
||||||
|
struct PadState {
|
||||||
|
union {
|
||||||
|
u32_le raw{};
|
||||||
|
BitField<0, 1, u32_le> a;
|
||||||
|
BitField<1, 1, u32_le> b;
|
||||||
|
BitField<2, 1, u32_le> x;
|
||||||
|
BitField<3, 1, u32_le> y;
|
||||||
|
BitField<4, 1, u32_le> l;
|
||||||
|
BitField<5, 1, u32_le> r;
|
||||||
|
BitField<6, 1, u32_le> zl;
|
||||||
|
BitField<7, 1, u32_le> zr;
|
||||||
|
BitField<8, 1, u32_le> plus;
|
||||||
|
BitField<9, 1, u32_le> minus;
|
||||||
|
BitField<10, 1, u32_le> d_left;
|
||||||
|
BitField<11, 1, u32_le> d_up;
|
||||||
|
BitField<12, 1, u32_le> d_right;
|
||||||
|
BitField<13, 1, u32_le> d_down;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
static_assert(sizeof(PadState) == 0x4, "PadState is an invalid size");
|
||||||
|
|
||||||
|
struct Attributes {
|
||||||
|
union {
|
||||||
|
u32_le raw{};
|
||||||
|
BitField<0, 1, u32_le> connected;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
static_assert(sizeof(Attributes) == 0x4, "Attributes is an invalid size");
|
||||||
|
|
||||||
struct PadStates {
|
struct PadStates {
|
||||||
s64_le sampling_number;
|
s64_le sampling_number;
|
||||||
s64_le sampling_number2;
|
s64_le sampling_number2;
|
||||||
u32_le attribute;
|
Attributes attribute;
|
||||||
u32_le button_state;
|
PadState pad_state;
|
||||||
AnalogStick r_stick;
|
AnalogStick r_stick;
|
||||||
AnalogStick l_stick;
|
AnalogStick l_stick;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue