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);
|
|
|
|
|
2009-02-07 04:19:52 +00:00
|
|
|
// General functions
|
2009-12-27 19:31:02 +00:00
|
|
|
void ResetVariables();
|
2008-12-08 04:46:09 +00:00
|
|
|
void Initialize();
|
2009-12-14 02:23:14 +00:00
|
|
|
void Shutdown();
|
2009-12-27 19:31:02 +00:00
|
|
|
void InitCalibration();
|
|
|
|
void UpdateExtRegisterBlocks(int Slot);
|
|
|
|
|
2009-12-25 22:10:56 +00:00
|
|
|
void InterruptChannel(int _number, u16 _channelID, const void* _pData, u32 _Size);
|
|
|
|
void ControlChannel(int _number, u16 _channelID, const void* _pData, u32 _Size) ;
|
|
|
|
void Update(int _number);
|
2009-12-27 19:31:02 +00:00
|
|
|
void DoState(PointerWrap &p);
|
2009-12-11 13:57:25 +00:00
|
|
|
void ReadLinuxKeyboard();
|
2009-12-27 19:31:02 +00:00
|
|
|
bool IsKey(int Key);
|
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-12-27 19:31:02 +00:00
|
|
|
void GetMousePos(float& x, float& y);
|
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);
|
2009-12-27 19:31:02 +00:00
|
|
|
void GetAxisState(CONTROLLER_MAPPING_WII &_WiiMapping);
|
|
|
|
void UpdatePadState(CONTROLLER_MAPPING_WII &_WiiMapping);
|
2009-02-20 03:13:22 +00:00
|
|
|
|
2009-12-27 19:31:02 +00:00
|
|
|
void TiltWiimote(int &_x, int &_y, int &_z);
|
|
|
|
void TiltNunchuck(int &_x, int &_y, int &_z);
|
2009-12-17 14:15:56 +00:00
|
|
|
void ShakeToAccelerometer(int &_x, int &_y, int &_z, STiltData &_TiltData);
|
|
|
|
void TiltToAccelerometer(int &_x, int &_y, int &_z, STiltData &_TiltData);
|
2009-12-04 16:36:24 +00:00
|
|
|
void AdjustAngles(int &Roll, int &Pitch);
|
2009-12-27 19:31:02 +00:00
|
|
|
void RotateIRDot(int &_x, int &_y, STiltData &_TiltData);
|
|
|
|
|
|
|
|
// Accelerometer
|
|
|
|
//void PitchAccelerometerToDegree(u8 _x, u8 _y, u8 _z, int &_Roll, int &_Pitch, int&, int&);
|
|
|
|
//float AccelerometerToG(float Current, float Neutral, float G);
|
2009-02-10 17:25:08 +00:00
|
|
|
|
2009-02-20 03:13:22 +00:00
|
|
|
// IR data
|
2009-12-27 19:31:02 +00:00
|
|
|
//void IRData2Dots(u8 *Data);
|
|
|
|
//void IRData2DotsBasic(u8 *Data);
|
2009-12-25 22:10:56 +00:00
|
|
|
//void ReorderIRDots();
|
|
|
|
//void IRData2Distance();
|
2009-02-20 03:13:22 +00:00
|
|
|
|
2009-02-24 18:37:53 +00:00
|
|
|
// Classic Controller data
|
2009-12-27 19:31:02 +00:00
|
|
|
//std::string CCData2Values(u8 *Data);
|
2009-02-24 18:37:53 +00:00
|
|
|
|
2009-02-10 17:25:08 +00:00
|
|
|
}; // WiiMoteEmu
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#endif
|