forked from dolphin-emu/dolphin
		
	
		
			
	
	
		
			73 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			73 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
|   | // 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 _EMU_DEFINITIONS_
 | ||
|  | #define _EMU_DEFINITIONS_
 | ||
|  | 
 | ||
|  | #include <vector>
 | ||
|  | #include <string>
 | ||
|  | 
 | ||
|  | #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_RegExt[WIIMOTE_REG_EXT_SIZE]; | ||
|  | u8 g_RegExtTmp[WIIMOTE_REG_EXT_SIZE]; | ||
|  | u8 g_RegIr[WIIMOTE_REG_IR_SIZE]; | ||
|  | 
 | ||
|  | u8 g_ReportingMode; // The reporting mode and channel id
 | ||
|  | u16 g_ReportingChannel; | ||
|  | 
 | ||
|  | std::vector<wm_ackdelay> 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<InputCommon::CONTROLLER_INFO> joyinfo; | ||
|  | InputCommon::CONTROLLER_STATE_NEW PadState[4]; | ||
|  | InputCommon::CONTROLLER_MAPPING_NEW PadMapping[4]; | ||
|  | 
 | ||
|  | // Keyboard input
 | ||
|  | KeyboardWiimote g_Wm; | ||
|  | KeyboardNunchuck g_Nc; | ||
|  | KeyboardClassicController g_Cc; | ||
|  | 
 | ||
|  | } // namespace
 | ||
|  | 
 | ||
|  | #endif	//_EMU_DECLARATIONS_
 | ||
|  | 
 |