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/
|
|
|
|
|
|
|
|
#ifndef WIIMOTE_EMU_H
|
|
|
|
#define WIIMOTE_EMU_H
|
|
|
|
|
2009-02-09 13:10:29 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
#include <string>
|
|
|
|
|
2009-02-09 13:10:29 +00:00
|
|
|
#include "../../../Core/InputCommon/Src/SDL.h" // Core
|
|
|
|
|
|
|
|
#include "wiimote_hid.h"
|
|
|
|
#include "EmuDefinitions.h"
|
2009-07-03 12:22:32 +00:00
|
|
|
#include "ChunkFile.h"
|
2009-02-09 13:10:29 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
namespace WiiMoteEmu
|
|
|
|
{
|
|
|
|
|
2009-01-07 02:59:19 +00:00
|
|
|
u32 convert24bit(const u8* src);
|
|
|
|
u16 convert16bit(const u8* src);
|
|
|
|
void GetMousePos(float& x, float& y);
|
|
|
|
|
2009-02-07 04:19:52 +00:00
|
|
|
// General functions
|
2008-12-08 04:46:09 +00:00
|
|
|
void Initialize();
|
2009-07-03 12:22:32 +00:00
|
|
|
void DoState(PointerWrap &p);
|
2009-12-14 02:23:14 +00:00
|
|
|
void Shutdown();
|
2008-12-08 04:46:09 +00:00
|
|
|
void InterruptChannel(u16 _channelID, const void* _pData, u32 _Size);
|
|
|
|
void ControlChannel(u16 _channelID, const void* _pData, u32 _Size) ;
|
|
|
|
void Update();
|
2009-12-11 13:57:25 +00:00
|
|
|
void ReadLinuxKeyboard();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-07 04:19:52 +00:00
|
|
|
// Recordings
|
2009-01-29 08:35:29 +00:00
|
|
|
void LoadRecordedMovements();
|
|
|
|
|
2009-02-07 04:19:52 +00:00
|
|
|
// Registers and calibration values
|
2009-02-12 10:49:38 +00:00
|
|
|
void ResetVariables();
|
2009-02-07 04:19:52 +00:00
|
|
|
void UpdateEeprom();
|
2009-09-15 02:12:55 +00:00
|
|
|
void UpdateExtRegisterBlocks();
|
2009-02-07 04:19:52 +00:00
|
|
|
|
2009-02-09 13:10:29 +00:00
|
|
|
// Gamepad
|
2009-12-14 02:23:14 +00:00
|
|
|
void Close_Devices();
|
2009-11-14 17:08:32 +00:00
|
|
|
bool Search_Devices(std::vector<InputCommon::CONTROLLER_INFO> &_joyinfo, int &_NumPads, int &_NumGoodPads);
|
|
|
|
void GetJoyState(InputCommon::CONTROLLER_STATE_NEW &_PadState, InputCommon::CONTROLLER_MAPPING_NEW _PadMapping, int controller, int NumButtons);
|
2009-02-15 02:01:43 +00:00
|
|
|
void PadStateAdjustments(int &Lx, int &Ly, int &Rx, int &Ry, int &Tl, int &Tr);
|
2009-02-20 03:13:22 +00:00
|
|
|
|
|
|
|
// Accelerometer
|
2009-12-06 18:26:20 +00:00
|
|
|
void PitchDegreeToAccelerometer(int _Roll, int _Pitch, int &_x, int &_y, int &_z);
|
2009-02-12 08:46:48 +00:00
|
|
|
void PitchAccelerometerToDegree(u8 _x, u8 _y, u8 _z, int &_Roll, int &_Pitch, int&, int&);
|
2009-02-14 01:15:35 +00:00
|
|
|
float AccelerometerToG(float Current, float Neutral, float G);
|
2009-12-06 18:26:20 +00:00
|
|
|
void Tilt(int &_x, int &_y, int &_z);
|
2009-12-04 16:36:24 +00:00
|
|
|
void AdjustAngles(int &Roll, int &Pitch);
|
2009-02-10 17:25:08 +00:00
|
|
|
|
2009-02-20 03:13:22 +00:00
|
|
|
// IR data
|
|
|
|
void IRData2Dots(u8 *Data);
|
2009-02-20 09:57:17 +00:00
|
|
|
void IRData2DotsBasic(u8 *Data);
|
|
|
|
void ReorderIRDots();
|
|
|
|
void IRData2Distance();
|
2009-02-20 03:13:22 +00:00
|
|
|
|
2009-02-24 18:37:53 +00:00
|
|
|
// Classic Controller data
|
|
|
|
std::string CCData2Values(u8 *Data);
|
|
|
|
|
2009-02-10 17:25:08 +00:00
|
|
|
}; // WiiMoteEmu
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#endif
|