2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
// 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-07 02:59:19 +00:00
|
|
|
#ifndef _EMU_DEFINITIONS_
|
|
|
|
#define _EMU_DEFINITIONS_
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2009-02-08 15:39:28 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "Common.h"
|
2010-02-13 23:56:24 +00:00
|
|
|
#include "pluginspecs_wiimote.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "wiimote_hid.h"
|
|
|
|
#include "EmuDefinitions.h"
|
|
|
|
#include "Encryption.h"
|
|
|
|
|
|
|
|
extern SWiimoteInitialize g_WiimoteInitialize;
|
|
|
|
|
|
|
|
namespace WiiMoteEmu
|
|
|
|
{
|
|
|
|
|
|
|
|
//******************************************************************************
|
|
|
|
// Definitions and variable declarations
|
|
|
|
//******************************************************************************
|
2010-01-05 17:39:06 +00:00
|
|
|
u8 g_Eeprom[MAX_WIIMOTES][WIIMOTE_EEPROM_SIZE];
|
2009-12-27 19:31:02 +00:00
|
|
|
u8 g_RegExt[MAX_WIIMOTES][WIIMOTE_REG_EXT_SIZE];
|
2010-01-05 17:39:06 +00:00
|
|
|
u8 g_RegMotionPlus[MAX_WIIMOTES][WIIMOTE_REG_EXT_SIZE];
|
|
|
|
u8 g_RegSpeaker[MAX_WIIMOTES][WIIMOTE_REG_SPEAKER_SIZE];
|
|
|
|
u8 g_RegIr[MAX_WIIMOTES][WIIMOTE_REG_IR_SIZE];
|
|
|
|
u8 g_IRClock[MAX_WIIMOTES];
|
|
|
|
u8 g_IR[MAX_WIIMOTES];
|
|
|
|
u8 g_Leds[MAX_WIIMOTES];
|
|
|
|
u8 g_Speaker[MAX_WIIMOTES];
|
|
|
|
u8 g_SpeakerMute[MAX_WIIMOTES];
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
u8 g_RegExtTmp[WIIMOTE_REG_EXT_SIZE];
|
|
|
|
|
2009-12-27 19:31:02 +00:00
|
|
|
int g_ID; // Current refreshing Wiimote
|
|
|
|
bool g_ReportingAuto[MAX_WIIMOTES]; // Auto report or passive report
|
|
|
|
u8 g_ReportingMode[MAX_WIIMOTES]; // The reporting mode and channel id
|
|
|
|
u16 g_ReportingChannel[MAX_WIIMOTES];
|
2009-01-07 02:59:19 +00:00
|
|
|
|
2010-01-02 05:15:36 +00:00
|
|
|
wiimote_key g_ExtKey[MAX_WIIMOTES]; // The extension encryption key
|
2009-02-07 03:16:41 +00:00
|
|
|
bool g_Encryption; // Encryption on or off
|
2008-12-08 05:25:12 +00:00
|
|
|
|
2009-02-08 15:39:28 +00:00
|
|
|
// Gamepad input
|
2009-11-14 17:08:32 +00:00
|
|
|
int NumPads = 0, NumGoodPads = 0; // Number of goods pads
|
2009-02-08 15:39:28 +00:00
|
|
|
std::vector<InputCommon::CONTROLLER_INFO> joyinfo;
|
2009-12-27 19:31:02 +00:00
|
|
|
CONTROLLER_MAPPING_WII WiiMapping[MAX_WIIMOTES];
|
2009-02-08 15:39:28 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
} // namespace
|
|
|
|
|
2008-12-09 05:37:15 +00:00
|
|
|
#endif //_EMU_DECLARATIONS_
|
2009-03-07 08:07:11 +00:00
|
|
|
|