2014-02-10 18:54:46 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 18:54:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-04-15 04:02:53 +00:00
|
|
|
|
2014-09-19 04:17:41 +00:00
|
|
|
#include <sstream>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "InputCommon/ControllerInterface/Android/Android.h"
|
2013-04-15 04:02:53 +00:00
|
|
|
|
|
|
|
namespace ciface
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace Android
|
|
|
|
{
|
|
|
|
|
2013-06-17 00:07:10 +00:00
|
|
|
void Init( std::vector<Core::Device*>& devices )
|
2013-04-15 04:02:53 +00:00
|
|
|
{
|
2013-11-24 21:04:53 +00:00
|
|
|
devices.push_back(new Touchscreen(0));
|
|
|
|
devices.push_back(new Touchscreen(1));
|
|
|
|
devices.push_back(new Touchscreen(2));
|
|
|
|
devices.push_back(new Touchscreen(3));
|
2015-07-22 02:28:32 +00:00
|
|
|
devices.push_back(new Touchscreen(4));
|
|
|
|
devices.push_back(new Touchscreen(5));
|
|
|
|
devices.push_back(new Touchscreen(6));
|
|
|
|
devices.push_back(new Touchscreen(7));
|
2013-04-15 04:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Touchscreens and stuff
|
|
|
|
std::string Touchscreen::GetName() const
|
|
|
|
{
|
|
|
|
return "Touchscreen";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Touchscreen::GetSource() const
|
|
|
|
{
|
|
|
|
return "Android";
|
|
|
|
}
|
|
|
|
|
|
|
|
int Touchscreen::GetId() const
|
|
|
|
{
|
2015-07-24 03:17:16 +00:00
|
|
|
return _padID;
|
2013-04-15 04:02:53 +00:00
|
|
|
}
|
2013-11-24 21:04:53 +00:00
|
|
|
Touchscreen::Touchscreen(int padID)
|
|
|
|
: _padID(padID)
|
2013-04-15 04:02:53 +00:00
|
|
|
{
|
2015-07-22 02:28:32 +00:00
|
|
|
// GC
|
2013-11-24 21:04:53 +00:00
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_A));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_B));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_START));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_X));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_Y));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_Z));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_UP));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_DOWN));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_LEFT));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::BUTTON_RIGHT));
|
2014-04-23 08:49:25 +00:00
|
|
|
AddAnalogInputs(new Axis(_padID, ButtonManager::STICK_MAIN_LEFT), new Axis(_padID, ButtonManager::STICK_MAIN_RIGHT));
|
|
|
|
AddAnalogInputs(new Axis(_padID, ButtonManager::STICK_MAIN_UP), new Axis(_padID, ButtonManager::STICK_MAIN_DOWN));
|
|
|
|
AddAnalogInputs(new Axis(_padID, ButtonManager::STICK_C_LEFT), new Axis(_padID, ButtonManager::STICK_C_RIGHT));
|
|
|
|
AddAnalogInputs(new Axis(_padID, ButtonManager::STICK_C_UP), new Axis(_padID, ButtonManager::STICK_C_DOWN));
|
2013-11-24 21:04:53 +00:00
|
|
|
AddAnalogInputs(new Axis(_padID, ButtonManager::TRIGGER_L), new Axis(_padID, ButtonManager::TRIGGER_L));
|
|
|
|
AddAnalogInputs(new Axis(_padID, ButtonManager::TRIGGER_R), new Axis(_padID, ButtonManager::TRIGGER_R));
|
2015-07-22 02:28:32 +00:00
|
|
|
|
|
|
|
// Wiimote
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_A));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_B));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_MINUS));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_PLUS));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_HOME));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_1));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_BUTTON_2));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_UP));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_DOWN));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_LEFT));
|
|
|
|
AddInput(new Button(_padID, ButtonManager::WIIMOTE_RIGHT));
|
2013-04-15 04:02:53 +00:00
|
|
|
}
|
|
|
|
// Buttons and stuff
|
|
|
|
|
|
|
|
std::string Touchscreen::Button::GetName() const
|
|
|
|
{
|
|
|
|
std::ostringstream ss;
|
2013-11-24 21:04:53 +00:00
|
|
|
ss << "Button " << (int)_index;
|
2013-04-15 04:02:53 +00:00
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlState Touchscreen::Button::GetState() const
|
|
|
|
{
|
2013-11-24 21:04:53 +00:00
|
|
|
return ButtonManager::GetButtonPressed(_padID, _index);
|
2013-04-15 04:02:53 +00:00
|
|
|
}
|
2013-06-18 12:09:20 +00:00
|
|
|
std::string Touchscreen::Axis::GetName() const
|
|
|
|
{
|
|
|
|
std::ostringstream ss;
|
2013-11-24 21:04:53 +00:00
|
|
|
ss << "Axis " << (int)_index;
|
2013-06-18 12:09:20 +00:00
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlState Touchscreen::Axis::GetState() const
|
|
|
|
{
|
2013-12-13 03:24:39 +00:00
|
|
|
return ButtonManager::GetAxisValue(_padID, _index) * _neg;
|
2013-06-18 12:09:20 +00:00
|
|
|
}
|
2013-04-15 04:02:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|