2008-12-08 04:46:09 +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/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef WIIMOTE_REAL_H
|
|
|
|
|
#define WIIMOTE_REAL_H
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Includes
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
#include "wiiuse.h"
|
|
|
|
|
///////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
|
namespace WiiMoteReal
|
|
|
|
|
{
|
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
#define MAX_WIIMOTES 1
|
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
|
int Initialize();
|
|
|
|
|
void DoState(void* ptr, int mode);
|
|
|
|
|
void Shutdown(void);
|
|
|
|
|
void InterruptChannel(u16 _channelID, const void* _pData, u32 _Size);
|
2009-01-25 23:07:15 +00:00
|
|
|
|
void ControlChannel(u16 _channelID, const void* _pData, u32 _Size);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
void Update();
|
2009-02-01 13:01:50 +00:00
|
|
|
|
|
|
|
|
|
void SendAcc(u8 _ReportID);
|
|
|
|
|
void SetDataReportingMode(u8 ReportingMode = 0);
|
|
|
|
|
void ClearEvents();
|
2009-02-07 03:16:41 +00:00
|
|
|
|
|
|
|
|
|
// The alternative Wiimote loop
|
2009-01-25 23:07:15 +00:00
|
|
|
|
void ReadWiimote();
|
2009-02-07 03:16:41 +00:00
|
|
|
|
bool IRDataOK(struct wiimote_t* wm);
|
2009-01-25 23:07:15 +00:00
|
|
|
|
|
|
|
|
|
#ifndef EXCLUDE_H
|
2009-01-26 07:01:43 +00:00
|
|
|
|
extern wiimote_t** g_WiiMotesFromWiiUse;
|
2009-02-03 07:43:52 +00:00
|
|
|
|
extern bool g_Shutdown;
|
|
|
|
|
extern bool g_ThreadGoing;
|
2009-01-26 07:01:43 +00:00
|
|
|
|
extern int g_NumberOfWiiMotes;
|
2009-01-28 16:09:08 +00:00
|
|
|
|
extern bool g_MotionSensing;
|
2009-02-03 00:59:26 +00:00
|
|
|
|
extern bool g_IRSensing;
|
2009-02-01 13:01:50 +00:00
|
|
|
|
extern u64 g_UpdateTime;
|
|
|
|
|
extern int g_UpdateCounter;
|
2009-02-01 14:58:44 +00:00
|
|
|
|
extern bool g_RunTemporary;
|
2009-02-05 00:02:54 +00:00
|
|
|
|
extern int g_RunTemporaryCountdown;
|
2009-02-03 00:59:26 +00:00
|
|
|
|
extern u8 g_EventBuffer[32];
|
2009-01-25 23:07:15 +00:00
|
|
|
|
#endif
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
2009-01-25 23:07:15 +00:00
|
|
|
|
}; // WiiMoteReal
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
2008-11-05 17:15:00 +00:00
|
|
|
|
#endif
|