2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 04:46:09 +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_DECLARATIONS_
|
|
|
|
#define _EMU_DECLARATIONS_
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2009-01-07 02:59:19 +00:00
|
|
|
|
2009-02-08 15:39:28 +00:00
|
|
|
#include "../../../Core/InputCommon/Src/SDL.h" // Core
|
|
|
|
#include "../../../Core/InputCommon/Src/XInput.h"
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
#include "Common.h"
|
2009-02-08 15:39:28 +00:00
|
|
|
#include "pluginspecs_wiimote.h"
|
2009-01-07 02:59:19 +00:00
|
|
|
|
2009-02-08 15:39:28 +00:00
|
|
|
#include "wiimote_hid.h" // Local
|
2009-01-07 02:59:19 +00:00
|
|
|
#include "Encryption.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
extern SWiimoteInitialize g_WiimoteInitialize;
|
|
|
|
|
|
|
|
namespace WiiMoteEmu
|
|
|
|
{
|
|
|
|
|
|
|
|
//******************************************************************************
|
|
|
|
// Definitions and variable declarations
|
|
|
|
//******************************************************************************
|
|
|
|
|
2009-02-20 03:13:22 +00:00
|
|
|
/* The Libogc bounding box in smoothed IR coordinates is 232,284 792,704. However, there is no
|
|
|
|
universal standard that works with all games. They all use their own calibration. Also,
|
|
|
|
there is no widescreen mode for the calibration, at least not in the games I tried, the
|
|
|
|
game decides for example that a horizontal value of 500 is 50% from the left of the screen,
|
|
|
|
and then that's the same regardless if we use the widescreen mode or not.*/
|
2008-12-08 04:46:09 +00:00
|
|
|
#define LEFT 266
|
2009-02-20 03:13:22 +00:00
|
|
|
#define TOP 215
|
2008-12-08 04:46:09 +00:00
|
|
|
#define RIGHT 752
|
2009-02-20 03:13:22 +00:00
|
|
|
#define BOTTOM 705
|
2009-02-20 09:57:17 +00:00
|
|
|
/* Since the width of the entire virtual screen is 1024 a reasonable sensor bar width is perhaps 200,
|
|
|
|
given how small most sensor bars are compared to the total TV width. When I tried the distance with
|
|
|
|
my Wiimote from around three meters distance from the sensor bar (that has around 15 cm beteen the
|
|
|
|
IR lights) I got a dot distance of around 110 (and a dot size of between 1 and 2). */
|
2009-12-08 19:58:19 +00:00
|
|
|
#define SENSOR_BAR_WIDTH 200
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-01 13:01:50 +00:00
|
|
|
// Movement recording
|
2009-02-03 00:59:26 +00:00
|
|
|
extern int g_RecordingPlaying[3];
|
|
|
|
extern int g_RecordingCounter[3];
|
|
|
|
extern int g_RecordingPoint[3];
|
|
|
|
extern double g_RecordingStart[3];
|
|
|
|
extern double g_RecordingCurrentTime[3];
|
2009-02-01 13:01:50 +00:00
|
|
|
|
2009-01-07 02:59:19 +00:00
|
|
|
// Registry sizes
|
2008-12-08 04:46:09 +00:00
|
|
|
#define WIIMOTE_EEPROM_SIZE (16*1024)
|
2009-02-01 13:01:50 +00:00
|
|
|
#define WIIMOTE_EEPROM_FREE_SIZE 0x16ff
|
2008-12-08 04:46:09 +00:00
|
|
|
#define WIIMOTE_REG_SPEAKER_SIZE 10
|
|
|
|
#define WIIMOTE_REG_EXT_SIZE 0x100
|
|
|
|
#define WIIMOTE_REG_IR_SIZE 0x34
|
|
|
|
|
2009-01-07 02:59:19 +00:00
|
|
|
extern u8 g_Leds;
|
|
|
|
extern u8 g_Speaker;
|
|
|
|
extern u8 g_SpeakerVoice;
|
|
|
|
extern u8 g_IR;
|
|
|
|
|
|
|
|
extern u8 g_Eeprom[WIIMOTE_EEPROM_SIZE];
|
|
|
|
extern u8 g_RegSpeaker[WIIMOTE_REG_SPEAKER_SIZE];
|
2009-11-26 05:01:24 +00:00
|
|
|
extern u8 g_RegMotionPlus[WIIMOTE_REG_EXT_SIZE];
|
2009-01-07 02:59:19 +00:00
|
|
|
extern u8 g_RegExt[WIIMOTE_REG_EXT_SIZE];
|
|
|
|
extern u8 g_RegExtTmp[WIIMOTE_REG_EXT_SIZE];
|
|
|
|
extern u8 g_RegIr[WIIMOTE_REG_IR_SIZE];
|
|
|
|
|
2009-11-24 05:03:47 +00:00
|
|
|
extern bool g_ReportingAuto;
|
2009-01-07 02:59:19 +00:00
|
|
|
extern u8 g_ReportingMode;
|
|
|
|
extern u16 g_ReportingChannel;
|
|
|
|
|
2009-01-29 08:35:29 +00:00
|
|
|
// Ack delay
|
|
|
|
struct wm_ackdelay
|
2009-01-07 02:59:19 +00:00
|
|
|
{
|
|
|
|
u8 Delay;
|
|
|
|
u8 ReportID;
|
|
|
|
u16 ChannelID;
|
|
|
|
bool Sent;
|
|
|
|
};
|
|
|
|
extern std::vector<wm_ackdelay> AckDelay;
|
|
|
|
|
|
|
|
extern wiimote_key g_ExtKey; // extension encryption key
|
2009-02-07 03:16:41 +00:00
|
|
|
extern bool g_Encryption;
|
2009-01-07 02:59:19 +00:00
|
|
|
|
2009-02-01 13:01:50 +00:00
|
|
|
/* An example of a factory default first bytes of the Eeprom memory. There are differences between
|
|
|
|
different Wiimotes, my Wiimote had different neutral values for the accelerometer. */
|
2009-01-07 02:59:19 +00:00
|
|
|
static const u8 EepromData_0[] = {
|
2009-02-01 13:01:50 +00:00
|
|
|
0xA1, 0xAA, 0x8B, 0x99, 0xAE, 0x9E, 0x78, 0x30, 0xA7, 0x74, 0xD3,
|
|
|
|
0xA1, 0xAA, 0x8B, 0x99, 0xAE, 0x9E, 0x78, 0x30, 0xA7, 0x74, 0xD3,
|
2009-02-20 09:57:17 +00:00
|
|
|
// Accelerometer neutral values
|
2009-02-01 13:01:50 +00:00
|
|
|
0x82, 0x82, 0x82, 0x15, 0x9C, 0x9C, 0x9E, 0x38, 0x40, 0x3E,
|
|
|
|
0x82, 0x82, 0x82, 0x15, 0x9C, 0x9C, 0x9E, 0x38, 0x40, 0x3E
|
2009-01-07 02:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const u8 EepromData_16D0[] = {
|
|
|
|
0x00, 0x00, 0x00, 0xFF, 0x11, 0xEE, 0x00, 0x00,
|
|
|
|
0x33, 0xCC, 0x44, 0xBB, 0x00, 0x00, 0x66, 0x99,
|
|
|
|
0x77, 0x88, 0x00, 0x00, 0x2B, 0x01, 0xE8, 0x13
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Default calibration for the nunchuck. It should be written to 0x20 - 0x3f of the
|
|
|
|
extension register. 0x80 is the neutral x and y accelerators and 0xb3 is the
|
|
|
|
neutral z accelerometer that is adjusted for gravity. */
|
|
|
|
static const u8 nunchuck_calibration[] =
|
|
|
|
{
|
2009-02-04 06:40:05 +00:00
|
|
|
0x80,0x80,0x80,0x00, // accelerometer x, y, z neutral
|
|
|
|
0xb3,0xb3,0xb3,0x00, // x, y, z g-force values
|
2009-01-29 08:35:29 +00:00
|
|
|
|
2009-02-07 03:16:41 +00:00
|
|
|
0xff, 0x00, 0x80, 0xff, // 0x80 = analog stick x and y axis center
|
|
|
|
0x00, 0x80, 0xee, 0x43 // checksum on the last two bytes
|
|
|
|
};
|
|
|
|
static const u8 wireless_nunchuck_calibration[] =
|
|
|
|
{
|
|
|
|
128, 128, 128, 0x00,
|
|
|
|
181, 181, 181, 0x00,
|
|
|
|
255, 0, 125, 255,
|
|
|
|
0, 126, 0xed, 0x43
|
2009-01-07 02:59:19 +00:00
|
|
|
};
|
|
|
|
|
2009-02-26 00:11:51 +00:00
|
|
|
/* Classic Controller calibration */
|
2009-01-07 02:59:19 +00:00
|
|
|
static const u8 classic_calibration[] =
|
|
|
|
{
|
2009-02-24 02:40:17 +00:00
|
|
|
0xff,0x00,0x80, 0xff,0x00,0x80, 0xff,0x00,0x80, 0xff,0x00,0x80,
|
2009-02-26 00:11:51 +00:00
|
|
|
0x00,0x00, 0x51,0xa6
|
2009-01-07 02:59:19 +00:00
|
|
|
};
|
|
|
|
|
2009-11-26 05:01:24 +00:00
|
|
|
// Extension device IDs to be written to the last bytes of the extension reg
|
|
|
|
static const u8 nunchuck_id[] = { 0x00, 0x00, 0xa4, 0x20, 0x00, 0x00 };
|
|
|
|
static const u8 classic_id[] = { 0x00, 0x00, 0xa4, 0x20, 0x01, 0x01 };
|
|
|
|
static const u8 gh3glp_id[] = { 0x00, 0x00, 0xa4, 0x20, 0x01, 0x03 };
|
|
|
|
static const u8 ghwtdrums_id[] = { 0x01, 0x00, 0xa4, 0x20, 0x01, 0x03 };
|
|
|
|
// The id for nothing inserted
|
|
|
|
static const u8 nothing_id[] = { 0x00, 0x00, 0x00, 0x00, 0x2e, 0x2e };
|
|
|
|
// The id for a partially inserted extension
|
|
|
|
static const u8 partially_id[] = { 0x00, 0x00, 0x00, 0x00, 0xff, 0xff };
|
2009-01-07 02:59:19 +00:00
|
|
|
|
2009-02-08 15:39:28 +00:00
|
|
|
// Gamepad input
|
2009-11-14 17:08:32 +00:00
|
|
|
extern int NumPads, NumGoodPads; // Number of goods pads
|
2009-02-08 15:39:28 +00:00
|
|
|
extern std::vector<InputCommon::CONTROLLER_INFO> joyinfo;
|
2009-02-09 13:10:29 +00:00
|
|
|
extern InputCommon::CONTROLLER_STATE_NEW PadState[4];
|
|
|
|
extern InputCommon::CONTROLLER_MAPPING_NEW PadMapping[4];
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-20 03:13:22 +00:00
|
|
|
// Wiimote status
|
|
|
|
struct SDot
|
|
|
|
{
|
|
|
|
int Rx, Ry, X, Y;
|
|
|
|
bool Visible;
|
2009-02-20 09:57:17 +00:00
|
|
|
int Size; // Size of the IR dot (0-15)
|
|
|
|
int Order; // Increasing order from low to higher x-axis values
|
2009-02-20 03:13:22 +00:00
|
|
|
};
|
2009-09-08 21:16:05 +00:00
|
|
|
|
2009-02-20 03:13:22 +00:00
|
|
|
struct SIR
|
|
|
|
{
|
|
|
|
SDot Dot[4];
|
2009-02-20 09:57:17 +00:00
|
|
|
int Distance;
|
2009-02-20 03:13:22 +00:00
|
|
|
};
|
|
|
|
|
2009-12-17 14:15:56 +00:00
|
|
|
struct STiltData
|
2009-12-09 16:33:32 +00:00
|
|
|
{
|
2009-12-17 14:15:56 +00:00
|
|
|
// FakeNoise is used to prevent disconnection
|
|
|
|
// when there is no input for a long time
|
|
|
|
int FakeNoise;
|
2009-12-09 16:33:32 +00:00
|
|
|
int Shake;
|
|
|
|
int Roll, Pitch;
|
2009-12-17 14:15:56 +00:00
|
|
|
STiltData()
|
|
|
|
{
|
|
|
|
FakeNoise = 1;
|
|
|
|
Shake = 0;
|
|
|
|
Roll = 0;
|
|
|
|
Pitch = 0;
|
|
|
|
}
|
2009-12-09 16:33:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-02-15 22:23:59 +00:00
|
|
|
// Keyboard input
|
|
|
|
struct KeyboardWiimote
|
|
|
|
{
|
|
|
|
enum EKeyboardWiimote
|
|
|
|
{
|
2009-07-08 07:16:26 +00:00
|
|
|
A = 0, // Keyboard A and Mouse A
|
|
|
|
B,
|
2009-02-15 22:23:59 +00:00
|
|
|
ONE, TWO,
|
|
|
|
P, M, H,
|
|
|
|
L, R, U, D,
|
2009-12-08 19:58:19 +00:00
|
|
|
ROLL_L, ROLL_R,
|
|
|
|
PITCH_U, PITCH_D,
|
2009-12-04 12:22:36 +00:00
|
|
|
SHAKE,
|
2009-07-08 07:16:26 +00:00
|
|
|
MA, MB,
|
2009-02-15 22:23:59 +00:00
|
|
|
LAST_CONSTANT
|
|
|
|
};
|
2009-02-20 03:13:22 +00:00
|
|
|
|
|
|
|
// Raw X and Y coordinate and processed X and Y coordinates
|
|
|
|
SIR IR;
|
2009-12-17 14:15:56 +00:00
|
|
|
STiltData TiltData;
|
2009-02-15 22:23:59 +00:00
|
|
|
};
|
2009-12-17 14:15:56 +00:00
|
|
|
extern KeyboardWiimote g_Wiimote_kbd;
|
|
|
|
|
2009-02-15 22:23:59 +00:00
|
|
|
struct KeyboardNunchuck
|
|
|
|
{
|
|
|
|
enum EKeyboardNunchuck
|
|
|
|
{
|
|
|
|
// This is not allowed in Linux so we have to set the starting value manually
|
|
|
|
#ifdef _WIN32
|
2009-07-04 07:28:48 +00:00
|
|
|
Z = g_Wiimote_kbd.LAST_CONSTANT,
|
2009-02-15 22:23:59 +00:00
|
|
|
#else
|
2009-12-08 19:58:19 +00:00
|
|
|
Z = 18,
|
2009-02-15 22:23:59 +00:00
|
|
|
#endif
|
|
|
|
C,
|
|
|
|
L, R, U, D,
|
2009-12-17 14:15:56 +00:00
|
|
|
ROLL_L, ROLL_R,
|
|
|
|
PITCH_U, PITCH_D,
|
2009-02-15 22:23:59 +00:00
|
|
|
SHAKE,
|
|
|
|
LAST_CONSTANT
|
|
|
|
};
|
2009-12-17 14:15:56 +00:00
|
|
|
|
|
|
|
STiltData TiltData;
|
2009-02-15 22:23:59 +00:00
|
|
|
};
|
2009-07-04 07:28:48 +00:00
|
|
|
extern KeyboardNunchuck g_NunchuckExt;
|
2009-12-17 14:15:56 +00:00
|
|
|
|
2009-02-15 22:23:59 +00:00
|
|
|
struct KeyboardClassicController
|
|
|
|
{
|
|
|
|
enum EKeyboardClassicController
|
|
|
|
{
|
|
|
|
// This is not allowed in Linux so we have to set the starting value manually
|
|
|
|
#ifdef _WIN32
|
2009-07-04 07:28:48 +00:00
|
|
|
A = g_NunchuckExt.LAST_CONSTANT,
|
2009-02-15 22:23:59 +00:00
|
|
|
#else
|
2009-12-17 14:15:56 +00:00
|
|
|
A = 29,
|
2009-02-15 22:23:59 +00:00
|
|
|
#endif
|
|
|
|
B, X, Y,
|
|
|
|
P, M, H,
|
|
|
|
Tl, Tr, Zl, Zr,
|
2009-11-09 07:46:43 +00:00
|
|
|
Dl, Dr, Du, Dd,
|
|
|
|
Ll, Lr, Lu, Ld,
|
|
|
|
Rl, Rr, Ru, Rd,
|
2009-07-04 07:28:48 +00:00
|
|
|
LAST_CONSTANT
|
|
|
|
};
|
|
|
|
};
|
|
|
|
extern KeyboardClassicController g_ClassicContExt;
|
|
|
|
|
|
|
|
struct KeyboardGH3GLP
|
|
|
|
{
|
|
|
|
enum EKeyboardGH3GLP
|
|
|
|
{
|
|
|
|
// This is not allowed in Linux so we have to set the starting value manually
|
|
|
|
#ifdef _WIN32
|
2009-07-08 07:16:26 +00:00
|
|
|
Green = g_ClassicContExt.LAST_CONSTANT,
|
2009-07-04 07:28:48 +00:00
|
|
|
#else
|
2009-12-17 14:15:56 +00:00
|
|
|
Green = 52,
|
2009-07-04 07:28:48 +00:00
|
|
|
#endif
|
2009-12-09 14:52:30 +00:00
|
|
|
Red, Yellow, Blue, Orange,
|
|
|
|
Plus, Minus, Whammy,
|
2009-11-09 07:46:43 +00:00
|
|
|
Al, Ar, Au, Ad,
|
2009-07-08 07:16:26 +00:00
|
|
|
StrumUp, StrumDown,
|
2009-08-02 08:53:54 +00:00
|
|
|
LAST_CONSTANT
|
2009-02-15 22:23:59 +00:00
|
|
|
};
|
|
|
|
};
|
2009-07-04 07:28:48 +00:00
|
|
|
extern KeyboardGH3GLP g_GH3Ext;
|
2009-02-15 22:23:59 +00:00
|
|
|
|
2009-08-02 08:53:54 +00:00
|
|
|
extern bool KeyStatus[64];
|
2008-12-08 04:46:09 +00:00
|
|
|
} // namespace
|
|
|
|
|
2009-01-17 14:28:09 +00:00
|
|
|
#endif //_EMU_DEFINITIONS_
|