2008-12-08 05:25:12 +00:00
|
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Includes
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
#include <iostream> // System
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#include "pluginspecs_wiimote.h"
|
|
|
|
|
|
|
|
|
|
#include "wiiuse.h"
|
|
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
#include "Thread.h"
|
2009-01-25 23:07:15 +00:00
|
|
|
|
#include "StringUtil.h"
|
|
|
|
|
#include "ConsoleWindow.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
#include "wiimote_hid.h"
|
2009-01-25 23:07:15 +00:00
|
|
|
|
#include "main.h"
|
2009-01-28 16:09:08 +00:00
|
|
|
|
#include "Config.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#include "EmuMain.h"
|
2009-01-28 16:09:08 +00:00
|
|
|
|
#define EXCLUDE_H // Avoid certain declarations in wiimote_real.h
|
2009-01-25 23:07:15 +00:00
|
|
|
|
#include "wiimote_real.h"
|
2009-01-26 07:01:43 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
#include "ConfigDlg.h"
|
|
|
|
|
#endif
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
extern SWiimoteInitialize g_WiimoteInitialize;
|
2009-01-25 23:07:15 +00:00
|
|
|
|
////////////////////////////////////////
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace WiiMoteReal
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
// Forwarding
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
class CWiiMote;
|
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#ifdef _WIN32
|
2009-01-25 23:07:15 +00:00
|
|
|
|
DWORD WINAPI ReadWiimote_ThreadFunc(void* arg);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#else
|
2009-01-25 23:07:15 +00:00
|
|
|
|
void* ReadWiimote_ThreadFunc(void* arg);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#endif
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
// Variable declarations
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
wiimote_t** g_WiiMotesFromWiiUse = NULL;
|
|
|
|
|
Common::Thread* g_pReadThread = NULL;
|
|
|
|
|
int g_NumberOfWiiMotes;
|
|
|
|
|
CWiiMote* g_WiiMotes[MAX_WIIMOTES];
|
|
|
|
|
bool g_Shutdown = false;
|
|
|
|
|
bool g_LocalThread = true;
|
2009-01-28 16:09:08 +00:00
|
|
|
|
bool g_MotionSensing = false;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
// Probably this class should be in its own file
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
class CWiiMote
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////
|
|
|
|
|
// On create and on uncreate
|
|
|
|
|
// ---------------
|
|
|
|
|
CWiiMote(u8 _WiimoteNumber, wiimote_t* _pWiimote)
|
|
|
|
|
: m_WiimoteNumber(_WiimoteNumber)
|
|
|
|
|
, m_channelID(0)
|
|
|
|
|
, m_pWiiMote(_pWiimote)
|
|
|
|
|
, m_pCriticalSection(NULL)
|
|
|
|
|
, m_LastReportValid(false)
|
|
|
|
|
{
|
|
|
|
|
m_pCriticalSection = new Common::CriticalSection();
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
//wiiuse_set_leds(m_pWiiMote, WIIMOTE_LED_4);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
// F|RES: i dunno if we really need this
|
|
|
|
|
CancelIo(m_pWiiMote->dev_handle);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
virtual ~CWiiMote()
|
|
|
|
|
{
|
|
|
|
|
delete m_pCriticalSection;
|
|
|
|
|
};
|
|
|
|
|
//////////////////////
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
//////////////////////////////////////////
|
|
|
|
|
// Send raw HID data from the core to wiimote
|
|
|
|
|
// ---------------
|
|
|
|
|
void SendData(u16 _channelID, const u8* _pData, u32 _Size)
|
|
|
|
|
{
|
|
|
|
|
m_channelID = _channelID;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
m_pCriticalSection->Enter();
|
|
|
|
|
{
|
|
|
|
|
SEvent WriteEvent;
|
|
|
|
|
memcpy(WriteEvent.m_PayLoad, _pData+1, _Size-1);
|
|
|
|
|
m_EventWriteQueue.push(WriteEvent);
|
|
|
|
|
}
|
|
|
|
|
m_pCriticalSection->Leave();
|
|
|
|
|
}
|
|
|
|
|
/////////////////////
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
|
2009-01-28 16:09:08 +00:00
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
/* Read data from wiimote (but don't send it to the core, just filter and queue). If we are not currently
|
|
|
|
|
using the real Wiimote we only allow it to receive data mode changes, but don't ask for any data in
|
|
|
|
|
return */
|
2009-01-25 23:07:15 +00:00
|
|
|
|
// ---------------
|
|
|
|
|
void ReadData()
|
|
|
|
|
{
|
|
|
|
|
m_pCriticalSection->Enter();
|
|
|
|
|
|
|
|
|
|
// Send data to the Wiimote
|
|
|
|
|
if (!m_EventWriteQueue.empty())
|
|
|
|
|
{
|
2009-01-28 16:09:08 +00:00
|
|
|
|
Console::Print("Writing data to the Wiimote\n");
|
2009-01-25 23:07:15 +00:00
|
|
|
|
SEvent& rEvent = m_EventWriteQueue.front();
|
|
|
|
|
wiiuse_io_write(m_pWiiMote, (byte*)rEvent.m_PayLoad, MAX_PAYLOAD);
|
|
|
|
|
m_EventWriteQueue.pop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_pCriticalSection->Leave();
|
|
|
|
|
|
2009-01-28 16:09:08 +00:00
|
|
|
|
// Don't queue up data if we are not using the real Wiimote
|
|
|
|
|
if(g_Config.bUseRealWiimote)
|
|
|
|
|
if (wiiuse_io_read(m_pWiiMote))
|
|
|
|
|
{
|
|
|
|
|
const byte* pBuffer = m_pWiiMote->event_buf;
|
|
|
|
|
|
|
|
|
|
// Check if we have a channel (connection) if so save the data...
|
|
|
|
|
if (m_channelID > 0)
|
|
|
|
|
{
|
|
|
|
|
m_pCriticalSection->Enter();
|
|
|
|
|
|
|
|
|
|
// Filter out reports
|
|
|
|
|
if (pBuffer[0] >= 0x30)
|
|
|
|
|
{
|
|
|
|
|
// Copy Buffer to LastReport
|
|
|
|
|
memcpy(m_LastReport.m_PayLoad, pBuffer, MAX_PAYLOAD);
|
|
|
|
|
m_LastReportValid = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Copy Buffer to ImportantEvent
|
|
|
|
|
SEvent ImportantEvent;
|
|
|
|
|
memcpy(ImportantEvent.m_PayLoad, pBuffer, MAX_PAYLOAD);
|
|
|
|
|
m_EventReadQueue.push(ImportantEvent);
|
|
|
|
|
}
|
|
|
|
|
m_pCriticalSection->Leave();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//std::string Temp = ArrayToString(pBuffer, sizeof(pBuffer), 0);
|
|
|
|
|
//Console::Print("Data:\n%s\n", Temp.c_str());
|
|
|
|
|
}
|
2009-01-25 23:07:15 +00:00
|
|
|
|
};
|
|
|
|
|
/////////////////////
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
//////////////////////////////////////////
|
|
|
|
|
// Send queued data to the core
|
|
|
|
|
// ---------------
|
|
|
|
|
void Update()
|
|
|
|
|
{
|
|
|
|
|
// Thread function
|
|
|
|
|
m_pCriticalSection->Enter();
|
|
|
|
|
|
|
|
|
|
if (m_EventReadQueue.empty())
|
|
|
|
|
{
|
2009-01-28 16:09:08 +00:00
|
|
|
|
// Send the same data as last time
|
2009-01-25 23:07:15 +00:00
|
|
|
|
if (m_LastReportValid) SendEvent(m_LastReport);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2009-01-28 16:09:08 +00:00
|
|
|
|
// Send all the new data we have collected
|
2009-01-25 23:07:15 +00:00
|
|
|
|
SendEvent(m_EventReadQueue.front());
|
|
|
|
|
m_EventReadQueue.pop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_pCriticalSection->Leave();
|
|
|
|
|
};
|
|
|
|
|
/////////////////////
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
private:
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
struct SEvent
|
|
|
|
|
{
|
|
|
|
|
SEvent()
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-25 23:07:15 +00:00
|
|
|
|
memset(m_PayLoad, 0, MAX_PAYLOAD);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
2009-01-25 23:07:15 +00:00
|
|
|
|
byte m_PayLoad[MAX_PAYLOAD];
|
2008-12-08 05:25:12 +00:00
|
|
|
|
};
|
2009-01-25 23:07:15 +00:00
|
|
|
|
typedef std::queue<SEvent> CEventQueue;
|
|
|
|
|
|
|
|
|
|
u8 m_WiimoteNumber; // Just for debugging
|
|
|
|
|
u16 m_channelID;
|
|
|
|
|
|
|
|
|
|
Common::CriticalSection* m_pCriticalSection;
|
|
|
|
|
CEventQueue m_EventReadQueue;
|
|
|
|
|
CEventQueue m_EventWriteQueue;
|
|
|
|
|
bool m_LastReportValid;
|
|
|
|
|
SEvent m_LastReport;
|
|
|
|
|
wiimote_t* m_pWiiMote; // This is g_WiiMotesFromWiiUse[]
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////
|
|
|
|
|
// Send event
|
|
|
|
|
// ---------------
|
|
|
|
|
void SendEvent(SEvent& _rEvent)
|
|
|
|
|
{
|
|
|
|
|
// We don't have an answer channel
|
|
|
|
|
if (m_channelID == 0) return;
|
|
|
|
|
|
|
|
|
|
// Check event buffer;
|
|
|
|
|
u8 Buffer[1024];
|
|
|
|
|
u32 Offset = 0;
|
|
|
|
|
hid_packet* pHidHeader = (hid_packet*)(Buffer + Offset);
|
|
|
|
|
Offset += sizeof(hid_packet);
|
|
|
|
|
pHidHeader->type = HID_TYPE_DATA;
|
|
|
|
|
pHidHeader->param = HID_PARAM_INPUT;
|
|
|
|
|
|
|
|
|
|
memcpy(&Buffer[Offset], _rEvent.m_PayLoad, MAX_PAYLOAD);
|
|
|
|
|
Offset += MAX_PAYLOAD;
|
|
|
|
|
|
|
|
|
|
g_WiimoteInitialize.pWiimoteInput(m_channelID, Buffer, Offset);
|
|
|
|
|
}
|
|
|
|
|
/////////////////////
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
// Function Definitions
|
|
|
|
|
//******************************************************************************
|
2009-01-25 23:07:15 +00:00
|
|
|
|
int Initialize()
|
|
|
|
|
{
|
|
|
|
|
if (g_RealWiiMoteInitialized) return g_NumberOfWiiMotes;
|
2009-01-07 02:59:19 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
memset(g_WiiMotes, 0, sizeof(CWiiMote*) * MAX_WIIMOTES);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
// Call Wiiuse.dll
|
|
|
|
|
g_WiiMotesFromWiiUse = wiiuse_init(MAX_WIIMOTES);
|
|
|
|
|
g_NumberOfWiiMotes = wiiuse_find(g_WiiMotesFromWiiUse, MAX_WIIMOTES, 5);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
if (g_NumberOfWiiMotes > 0) g_RealWiiMotePresent = true;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
Console::Print("Found No of Wiimotes: %i\n", g_NumberOfWiiMotes);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
// For the status window
|
|
|
|
|
if (!g_EmulatorRunning)
|
|
|
|
|
{
|
|
|
|
|
// Do I need this?
|
|
|
|
|
//int Connect = wiiuse_connect(g_WiiMotesFromWiiUse, MAX_WIIMOTES);
|
|
|
|
|
//Console::Print("Connected: %i\n", Connect);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-26 14:13:27 +00:00
|
|
|
|
//wiiuse_set_timeout(g_WiiMotesFromWiiUse, MAX_WIIMOTES, 500, 1000);
|
|
|
|
|
//wiiuse_set_flags(g_WiiMotesFromWiiUse[0], WIIUSE_CONTINUOUS, NULL);
|
|
|
|
|
|
2009-01-26 07:01:43 +00:00
|
|
|
|
if(frame) frame->StartTimer();
|
2009-01-25 23:07:15 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//wiiuse_disconnect(g_WiiMotesFromWiiUse);
|
|
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-26 14:13:27 +00:00
|
|
|
|
// Create Wiimote classes
|
2009-01-25 23:07:15 +00:00
|
|
|
|
for (int i = 0; i < g_NumberOfWiiMotes; i++)
|
|
|
|
|
g_WiiMotes[i] = new CWiiMote(i + 1, g_WiiMotesFromWiiUse[i]);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
// Create a nee thread and start listening for Wiimote data
|
|
|
|
|
if (g_NumberOfWiiMotes > 0)
|
|
|
|
|
g_pReadThread = new Common::Thread(ReadWiimote_ThreadFunc, NULL);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
// Initialized
|
|
|
|
|
if (g_NumberOfWiiMotes > 0) { g_RealWiiMoteInitialized = true; g_Shutdown = false; }
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
return g_NumberOfWiiMotes;
|
|
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
void DoState(void* ptr, int mode) {}
|
|
|
|
|
|
|
|
|
|
void Shutdown(void)
|
|
|
|
|
{
|
2009-01-26 07:01:43 +00:00
|
|
|
|
g_Shutdown = true;
|
2009-01-25 23:07:15 +00:00
|
|
|
|
|
|
|
|
|
// Stop the thread
|
|
|
|
|
if (g_pReadThread != NULL)
|
|
|
|
|
{
|
|
|
|
|
g_pReadThread->WaitForDeath();
|
|
|
|
|
delete g_pReadThread;
|
|
|
|
|
g_pReadThread = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete the wiimotes
|
|
|
|
|
for (int i = 0; i < g_NumberOfWiiMotes; i++)
|
|
|
|
|
{
|
|
|
|
|
delete g_WiiMotes[i];
|
|
|
|
|
g_WiiMotes[i] = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-26 07:01:43 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2009-01-28 16:28:34 +00:00
|
|
|
|
/* We can only do this if we are not unloading the DLL, otherwise we can get stuck with a
|
|
|
|
|
a rumble after we Stop a game */
|
|
|
|
|
if (!g_EmulatorRunning)
|
|
|
|
|
{
|
|
|
|
|
if(frame) frame->ShutDown = true;
|
|
|
|
|
if(frame) frame->StartTimer();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2009-01-26 07:01:43 +00:00
|
|
|
|
#else
|
|
|
|
|
// Clean up wiiuse
|
|
|
|
|
wiiuse_cleanup(g_WiiMotesFromWiiUse, g_NumberOfWiiMotes);
|
|
|
|
|
|
|
|
|
|
// Uninitialized
|
|
|
|
|
g_RealWiiMoteInitialized = false;
|
|
|
|
|
#endif
|
2009-01-28 16:28:34 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2009-01-25 23:07:15 +00:00
|
|
|
|
|
|
|
|
|
// Uninitialized
|
|
|
|
|
g_RealWiiMoteInitialized = false;
|
2009-01-26 07:01:43 +00:00
|
|
|
|
g_RealWiiMotePresent = false;
|
2009-01-25 23:07:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InterruptChannel(u16 _channelID, const void* _pData, u32 _Size)
|
|
|
|
|
{
|
2009-01-26 07:01:43 +00:00
|
|
|
|
//Console::Print("Real InterruptChannel\n");
|
2009-01-25 23:07:15 +00:00
|
|
|
|
g_WiiMotes[0]->SendData(_channelID, (const u8*)_pData, _Size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ControlChannel(u16 _channelID, const void* _pData, u32 _Size)
|
|
|
|
|
{
|
2009-01-26 07:01:43 +00:00
|
|
|
|
//Console::Print("Real ControlChannel\n");
|
2009-01-25 23:07:15 +00:00
|
|
|
|
g_WiiMotes[0]->SendData(_channelID, (const u8*)_pData, _Size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////
|
|
|
|
|
// Read the Wiimote once
|
|
|
|
|
// ---------------
|
|
|
|
|
void Update()
|
|
|
|
|
{
|
2009-01-26 07:01:43 +00:00
|
|
|
|
//Console::Print("Real Update\n");
|
2009-01-25 23:07:15 +00:00
|
|
|
|
for (int i = 0; i < g_NumberOfWiiMotes; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-25 23:07:15 +00:00
|
|
|
|
g_WiiMotes[i]->Update();
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
2009-01-25 23:07:15 +00:00
|
|
|
|
}
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
//////////////////////////////////
|
2009-01-28 16:09:08 +00:00
|
|
|
|
/* Continuously read the Wiimote status. However, the actual sending of data occurs in Update(). If we are
|
|
|
|
|
not currently using the real Wiimote we allow the separate ReadWiimote() function to run. Todo: Figure
|
|
|
|
|
out how to manually send the current data reporting mode to the real Wiimote so that we can entirely turn
|
|
|
|
|
off ReadData() (including wiiuse_io_write()) while we are not using the real wiimote. For example to risk
|
|
|
|
|
interrupting accelerometer recordings by a wiiuse_io_write(). */
|
2009-01-25 23:07:15 +00:00
|
|
|
|
// ---------------
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#ifdef _WIN32
|
2009-01-25 23:07:15 +00:00
|
|
|
|
DWORD WINAPI ReadWiimote_ThreadFunc(void* arg)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#else
|
2009-01-25 23:07:15 +00:00
|
|
|
|
void *ReadWiimote_ThreadFunc(void* arg)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#endif
|
2009-01-25 23:07:15 +00:00
|
|
|
|
{
|
|
|
|
|
while (!g_Shutdown)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-25 23:07:15 +00:00
|
|
|
|
if(g_EmulatorRunning)
|
|
|
|
|
for (int i = 0; i < g_NumberOfWiiMotes; i++) g_WiiMotes[i]->ReadData();
|
2009-01-28 16:09:08 +00:00
|
|
|
|
else if (!g_Config.bUseRealWiimote)
|
2009-01-25 23:07:15 +00:00
|
|
|
|
ReadWiimote();
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
2009-01-25 23:07:15 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
////////////////////
|
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
}; // end of namespace
|
|
|
|
|
|