// Copyright (C) 2003 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 _EMU_DEFINITIONS_ #define _EMU_DEFINITIONS_ #include #include #include "pluginspecs_wiimote.h" #include "Common.h" #include "wiimote_hid.h" #include "EmuDefinitions.h" #include "Encryption.h" extern SWiimoteInitialize g_WiimoteInitialize; namespace WiiMoteEmu { //****************************************************************************** // Definitions and variable declarations //****************************************************************************** u8 g_Leds; u8 g_Speaker; u8 g_SpeakerVoice; u8 g_IR; u8 g_Eeprom[WIIMOTE_EEPROM_SIZE]; u8 g_RegSpeaker[WIIMOTE_REG_SPEAKER_SIZE]; //u8 g_RegMotionPlus[WIIMOTE_REG_EXT_SIZE]; u8 g_RegExt[WIIMOTE_REG_EXT_SIZE]; u8 g_RegExtTmp[WIIMOTE_REG_EXT_SIZE]; u8 g_RegIr[WIIMOTE_REG_IR_SIZE]; bool g_ReportingAuto; // Auto report or passive report u8 g_ReportingMode; // The reporting mode and channel id u16 g_ReportingChannel; std::vector AckDelay; // Ackk delay wiimote_key g_ExtKey; // The extension encryption key bool g_Encryption; // Encryption on or off // Gamepad input int NumPads = 0, NumGoodPads = 0; // Number of goods pads std::vector joyinfo; InputCommon::CONTROLLER_STATE_NEW PadState[4]; InputCommon::CONTROLLER_MAPPING_NEW PadMapping[4]; // Keyboard input KeyboardWiimote g_Wiimote_kbd; KeyboardNunchuck g_NunchuckExt; KeyboardClassicController g_ClassicContExt; KeyboardGH3GLP g_GH3Ext; bool KeyStatus[64]; } // namespace #endif //_EMU_DECLARATIONS_