#pragma once // TODO: HLE info (constants, structs, etc.) should not be available here enum MousePortStatus { CELL_MOUSE_STATUS_DISCONNECTED = 0x00000000, CELL_MOUSE_STATUS_CONNECTED = 0x00000001, }; enum MouseDataUpdate { CELL_MOUSE_DATA_UPDATE = 1, CELL_MOUSE_DATA_NON = 0, }; enum MouseButtonCodes { CELL_MOUSE_BUTTON_1 = 0x00000001, CELL_MOUSE_BUTTON_2 = 0x00000002, CELL_MOUSE_BUTTON_3 = 0x00000004, CELL_MOUSE_BUTTON_4 = 0x00000008, CELL_MOUSE_BUTTON_5 = 0x00000010, CELL_MOUSE_BUTTON_6 = 0x00000020, CELL_MOUSE_BUTTON_7 = 0x00000040, CELL_MOUSE_BUTTON_8 = 0x00000080, }; static const u32 MAX_MICE = 127; static const u32 MOUSE_MAX_DATA_LIST_NUM = 8; static const u32 MOUSE_MAX_CODES = 64; struct MouseInfo { u32 max_connect; u32 now_connect; u32 info; u16 vendor_id[MAX_MICE]; u16 product_id[MAX_MICE]; u8 status[MAX_MICE]; }; struct MouseRawData { s32 len; u8 data[MOUSE_MAX_CODES]; MouseRawData() : len(0) { } }; struct MouseData { u8 update; u8 buttons; s8 x_axis; s8 y_axis; s8 wheel; s8 tilt; // (TODO) MouseData() : update(0) , buttons(0) , x_axis(0) , y_axis(0) , wheel(0) , tilt(0) { } }; struct MouseDataList { u32 list_num; MouseData list[MOUSE_MAX_DATA_LIST_NUM]; MouseDataList() : list_num(0) { } }; struct Mouse { s16 x_pos; s16 y_pos; MouseData m_data; MouseRawData m_rawdata; Mouse() : m_data() , m_rawdata() { x_pos = 0; y_pos = 0; } }; class MouseHandlerBase { protected: MouseInfo m_info; std::vector m_mice; public: virtual void Init(const u32 max_connect) = 0; virtual ~MouseHandlerBase() = default; void Button(u8 button, bool pressed) { for(u32 p=0; p < (u32)m_mice.size(); ++p) { if (m_info.status[p] == CELL_MOUSE_STATUS_CONNECTED) { MouseData& data = GetData(p); data.update = CELL_MOUSE_DATA_UPDATE; if (pressed) data.buttons |= button; else data.buttons &= ~button; } } } void Scroll(const s8 rotation) { for(u32 p=0; p < (u32)m_mice.size(); ++p) { if (m_info.status[p] == CELL_MOUSE_STATUS_CONNECTED) { MouseData& data = GetData(p); data.update = CELL_MOUSE_DATA_UPDATE; data.wheel = rotation/120; //120=event.GetWheelDelta() } } } void Move(const s16 x_pos_new, const s16 y_pos_new) { for(u32 p=0; p < (u32)m_mice.size(); ++p) { if (m_info.status[p] == CELL_MOUSE_STATUS_CONNECTED) { MouseData& data = GetData(p); data.update = CELL_MOUSE_DATA_UPDATE; data.x_axis += x_pos_new - m_mice[p].x_pos; data.y_axis += y_pos_new - m_mice[p].y_pos; m_mice[p].x_pos = x_pos_new; m_mice[p].y_pos = y_pos_new; /*CellMouseRawData& rawdata = GetRawData(p); rawdata.data[rawdata.len % CELL_MOUSE_MAX_CODES] = 0; // (TODO) rawdata.len++;*/ } } } MouseInfo& GetInfo() { return m_info; } std::vector& GetMice() { return m_mice; } MouseData& GetData(const u32 mouse) { return m_mice[mouse].m_data; } MouseRawData& GetRawData(const u32 mouse) { return m_mice[mouse].m_rawdata; } };