Merge branch 'master' of https://code.google.com/p/dolphin-emu
This commit is contained in:
commit
b4717ca802
|
@ -795,6 +795,7 @@ bool CWII_IPC_HLE_Device_es::IOCtlV(u32 _CommandAddress)
|
||||||
std::string tContentFile(m_ContentFile.c_str());
|
std::string tContentFile(m_ContentFile.c_str());
|
||||||
WII_IPC_HLE_Interface::Reset(true);
|
WII_IPC_HLE_Interface::Reset(true);
|
||||||
WII_IPC_HLE_Interface::Init();
|
WII_IPC_HLE_Interface::Init();
|
||||||
|
s_Usb = GetUsbPointer();
|
||||||
for (unsigned int i = 0; i < s_Usb->m_WiiMotes.size(); i++)
|
for (unsigned int i = 0; i < s_Usb->m_WiiMotes.size(); i++)
|
||||||
{
|
{
|
||||||
if (wiiMoteConnected[i])
|
if (wiiMoteConnected[i])
|
||||||
|
|
|
@ -38,7 +38,7 @@ CWII_IPC_HLE_Device_usb_oh1_57e_305::CWII_IPC_HLE_Device_usb_oh1_57e_305(u32 _De
|
||||||
// Activate only first Wiimote by default
|
// Activate only first Wiimote by default
|
||||||
|
|
||||||
_conf_pads BT_DINF;
|
_conf_pads BT_DINF;
|
||||||
|
SetUsbPointer(this);
|
||||||
if (!SConfig::GetInstance().m_SYSCONF->GetArrayData("BT.DINF", (u8*)&BT_DINF, sizeof(_conf_pads)))
|
if (!SConfig::GetInstance().m_SYSCONF->GetArrayData("BT.DINF", (u8*)&BT_DINF, sizeof(_conf_pads)))
|
||||||
{
|
{
|
||||||
PanicAlertT("Trying to read from invalid SYSCONF\nWiimote bt ids are not available");
|
PanicAlertT("Trying to read from invalid SYSCONF\nWiimote bt ids are not available");
|
||||||
|
@ -100,6 +100,7 @@ CWII_IPC_HLE_Device_usb_oh1_57e_305::CWII_IPC_HLE_Device_usb_oh1_57e_305(u32 _De
|
||||||
CWII_IPC_HLE_Device_usb_oh1_57e_305::~CWII_IPC_HLE_Device_usb_oh1_57e_305()
|
CWII_IPC_HLE_Device_usb_oh1_57e_305::~CWII_IPC_HLE_Device_usb_oh1_57e_305()
|
||||||
{
|
{
|
||||||
m_WiiMotes.clear();
|
m_WiiMotes.clear();
|
||||||
|
SetUsbPointer(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CWII_IPC_HLE_Device_usb_oh1_57e_305::DoState(PointerWrap &p)
|
void CWII_IPC_HLE_Device_usb_oh1_57e_305::DoState(PointerWrap &p)
|
||||||
|
|
|
@ -27,13 +27,19 @@
|
||||||
#include "l2cap.h" // Local
|
#include "l2cap.h" // Local
|
||||||
#include "WiiMote_HID_Attr.h"
|
#include "WiiMote_HID_Attr.h"
|
||||||
|
|
||||||
static CWII_IPC_HLE_Device_usb_oh1_57e_305* s_Usb;
|
static CWII_IPC_HLE_Device_usb_oh1_57e_305* s_Usb = NULL;
|
||||||
|
|
||||||
CWII_IPC_HLE_Device_usb_oh1_57e_305* GetUsbPointer()
|
CWII_IPC_HLE_Device_usb_oh1_57e_305* GetUsbPointer()
|
||||||
{
|
{
|
||||||
return s_Usb;
|
return s_Usb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SetUsbPointer(CWII_IPC_HLE_Device_usb_oh1_57e_305* ptr)
|
||||||
|
{
|
||||||
|
s_Usb = ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
CWII_IPC_HLE_WiiMote::CWII_IPC_HLE_WiiMote(CWII_IPC_HLE_Device_usb_oh1_57e_305* _pHost, int _Number, bdaddr_t _BD, bool ready)
|
CWII_IPC_HLE_WiiMote::CWII_IPC_HLE_WiiMote(CWII_IPC_HLE_Device_usb_oh1_57e_305* _pHost, int _Number, bdaddr_t _BD, bool ready)
|
||||||
: m_HIDControlChannel_Connected(false)
|
: m_HIDControlChannel_Connected(false)
|
||||||
, m_HIDControlChannel_ConnectedWait(false)
|
, m_HIDControlChannel_ConnectedWait(false)
|
||||||
|
@ -49,8 +55,6 @@ CWII_IPC_HLE_WiiMote::CWII_IPC_HLE_WiiMote(CWII_IPC_HLE_Device_usb_oh1_57e_305*
|
||||||
{
|
{
|
||||||
DEBUG_LOG(WII_IPC_WIIMOTE, "Wiimote: #%i Constructed", _Number);
|
DEBUG_LOG(WII_IPC_WIIMOTE, "Wiimote: #%i Constructed", _Number);
|
||||||
|
|
||||||
s_Usb = _pHost;
|
|
||||||
|
|
||||||
m_ConnectionState = (ready) ? CONN_READY : CONN_INACTIVE;
|
m_ConnectionState = (ready) ? CONN_READY : CONN_INACTIVE;
|
||||||
m_ConnectionHandle = 0x100 + _Number;
|
m_ConnectionHandle = 0x100 + _Number;
|
||||||
memset(m_LinkKey, 0xA0 + _Number, HCI_KEY_SIZE);
|
memset(m_LinkKey, 0xA0 + _Number, HCI_KEY_SIZE);
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
class CWII_IPC_HLE_Device_usb_oh1_57e_305;
|
class CWII_IPC_HLE_Device_usb_oh1_57e_305;
|
||||||
|
|
||||||
CWII_IPC_HLE_Device_usb_oh1_57e_305* GetUsbPointer();
|
CWII_IPC_HLE_Device_usb_oh1_57e_305* GetUsbPointer();
|
||||||
|
void SetUsbPointer(CWII_IPC_HLE_Device_usb_oh1_57e_305* ptr);
|
||||||
|
|
||||||
class CBigEndianBuffer
|
class CBigEndianBuffer
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue