2012-07-20 01:08:29 +00:00
|
|
|
#include "InputManager.h"
|
|
|
|
#include "GuiComponent.h"
|
|
|
|
#include <iostream>
|
2012-07-22 21:15:55 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
2012-07-20 01:08:29 +00:00
|
|
|
|
|
|
|
std::vector<GuiComponent*> InputManager::inputVector;
|
2012-07-22 21:15:55 +00:00
|
|
|
SDL_Event* InputManager::lastEvent = NULL;
|
|
|
|
|
2012-07-23 17:27:38 +00:00
|
|
|
std::map<int, InputManager::InputButton> InputManager::joystickButtonMap, InputManager::joystickAxisPosMap, InputManager::joystickAxisNegMap;
|
|
|
|
std::map<int, int> InputManager::axisState;
|
2012-07-24 02:10:05 +00:00
|
|
|
InputManager::InputButton InputManager::hatState = InputManager::UNKNOWN;
|
2012-07-20 01:08:29 +00:00
|
|
|
|
2012-07-23 23:53:33 +00:00
|
|
|
int InputManager::deadzone = 28000;
|
2012-07-22 22:03:54 +00:00
|
|
|
|
2012-07-20 01:08:29 +00:00
|
|
|
void InputManager::registerComponent(GuiComponent* comp)
|
|
|
|
{
|
|
|
|
inputVector.push_back(comp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputManager::unregisterComponent(GuiComponent* comp)
|
|
|
|
{
|
|
|
|
for(unsigned int i = 0; i < inputVector.size(); i++)
|
|
|
|
{
|
|
|
|
if(inputVector.at(i) == comp)
|
|
|
|
{
|
|
|
|
inputVector.erase(inputVector.begin() + i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputManager::processEvent(SDL_Event* event)
|
|
|
|
{
|
|
|
|
bool keyDown = false;
|
2012-08-10 19:28:34 +00:00
|
|
|
InputButton button = UNKNOWN;
|
2012-07-22 21:15:55 +00:00
|
|
|
|
|
|
|
lastEvent = event;
|
|
|
|
|
|
|
|
//keyboard events
|
|
|
|
if(event->type == SDL_KEYDOWN || event->type == SDL_KEYUP)
|
2012-07-20 01:08:29 +00:00
|
|
|
{
|
2012-07-22 21:15:55 +00:00
|
|
|
if(event->key.state == SDL_PRESSED)
|
|
|
|
keyDown = true;
|
2012-07-20 01:08:29 +00:00
|
|
|
|
2012-07-22 21:15:55 +00:00
|
|
|
//get InputButton from the event
|
|
|
|
switch(event->key.keysym.sym)
|
|
|
|
{
|
|
|
|
case SDLK_LEFT:
|
|
|
|
button = LEFT;
|
|
|
|
break;
|
|
|
|
case SDLK_RIGHT:
|
|
|
|
button = RIGHT;
|
|
|
|
break;
|
|
|
|
case SDLK_UP:
|
|
|
|
button = UP;
|
|
|
|
break;
|
|
|
|
case SDLK_DOWN:
|
|
|
|
button = DOWN;
|
|
|
|
break;
|
|
|
|
case SDLK_RETURN:
|
|
|
|
button = BUTTON1;
|
|
|
|
break;
|
2012-07-27 16:58:27 +00:00
|
|
|
case SDLK_ESCAPE:
|
|
|
|
button = BUTTON2;
|
|
|
|
break;
|
2012-08-02 02:37:07 +00:00
|
|
|
case SDLK_F1:
|
|
|
|
button = MENU;
|
|
|
|
break;
|
2012-07-20 01:08:29 +00:00
|
|
|
|
2012-07-22 21:15:55 +00:00
|
|
|
default:
|
|
|
|
button = UNKNOWN;
|
|
|
|
break;
|
|
|
|
}
|
2012-07-20 01:08:29 +00:00
|
|
|
|
2012-07-22 21:15:55 +00:00
|
|
|
//catch emergency quit event
|
2012-08-09 21:19:07 +00:00
|
|
|
if(event->key.keysym.sym == SDLK_F4 && keyDown)
|
2012-07-22 21:15:55 +00:00
|
|
|
{
|
|
|
|
//I have no idea if SDL will delete this event, but we're quitting, so I don't think it really matters
|
|
|
|
SDL_Event* quit = new SDL_Event();
|
|
|
|
quit->type = SDL_QUIT;
|
|
|
|
SDL_PushEvent(quit);
|
|
|
|
std::cout << "Pushing quit event\n";
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if(event->type == SDL_JOYBUTTONDOWN || event->type == SDL_JOYBUTTONUP) //joystick button events
|
|
|
|
{
|
|
|
|
if(event->type == SDL_JOYBUTTONDOWN) //defaults to false, so no else
|
|
|
|
keyDown = true;
|
2012-07-20 01:08:29 +00:00
|
|
|
|
2012-07-22 21:15:55 +00:00
|
|
|
button = joystickButtonMap[event->jbutton.button];
|
2012-07-22 22:03:54 +00:00
|
|
|
}else{
|
|
|
|
if(event->type == SDL_JOYHATMOTION)
|
|
|
|
{
|
2012-07-24 02:10:05 +00:00
|
|
|
int hat = event->jhat.value;
|
|
|
|
|
|
|
|
if(hat == 0) //centered
|
|
|
|
{
|
|
|
|
//we need to send a keyUp event for the last hat
|
|
|
|
//keyDown is already false
|
|
|
|
button = hatState;
|
|
|
|
}else{
|
|
|
|
keyDown = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(hat & SDL_HAT_LEFT)
|
2012-07-22 22:03:54 +00:00
|
|
|
button = LEFT;
|
2012-07-24 02:10:05 +00:00
|
|
|
if(hat & SDL_HAT_RIGHT)
|
2012-07-22 22:03:54 +00:00
|
|
|
button = RIGHT;
|
2012-07-24 02:10:05 +00:00
|
|
|
|
|
|
|
if(hat & SDL_HAT_UP)
|
|
|
|
button = UP;
|
|
|
|
if(hat & SDL_HAT_DOWN)
|
|
|
|
button = DOWN;
|
|
|
|
|
|
|
|
if(button == hatState && keyDown)
|
|
|
|
{
|
|
|
|
//ignore this hat event since the user most likely just made it a diagonal (but it still is using the old direction)
|
|
|
|
button = UNKNOWN;
|
|
|
|
}else{
|
|
|
|
if(hatState != UNKNOWN && keyDown)
|
|
|
|
{
|
|
|
|
//this will occur if the user went down -> downLeft -> Left or similar
|
|
|
|
button = hatState;
|
|
|
|
keyDown = false;
|
|
|
|
hatState = UNKNOWN;
|
|
|
|
processEvent(event);
|
|
|
|
}else{
|
|
|
|
if(!keyDown)
|
|
|
|
hatState = UNKNOWN;
|
|
|
|
else
|
|
|
|
hatState = button;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 02:15:09 +00:00
|
|
|
//for debugging hats
|
|
|
|
//if(button != UNKNOWN)
|
|
|
|
// std::cout << "hat event, button: " << button << ", keyDown: " << keyDown << "\n";
|
2012-07-24 02:10:05 +00:00
|
|
|
|
2012-07-23 17:27:38 +00:00
|
|
|
}else{
|
|
|
|
if(event->type == SDL_JOYAXISMOTION)
|
|
|
|
{
|
|
|
|
int axis = event->jaxis.axis;
|
|
|
|
int value = event->jaxis.value;
|
|
|
|
|
|
|
|
//if this axis was previously not centered, it can only keyUp
|
|
|
|
if(axisState[axis] != 0)
|
|
|
|
{
|
|
|
|
if(abs(value) < deadzone) //if it has indeed centered
|
|
|
|
{
|
|
|
|
if(axisState[axis] > 0)
|
|
|
|
button = joystickAxisPosMap[axis];
|
|
|
|
else
|
|
|
|
button = joystickAxisNegMap[axis];
|
|
|
|
axisState[axis] = 0;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if(value > deadzone)
|
|
|
|
{
|
|
|
|
//axisPos keyDown
|
|
|
|
axisState[axis] = 1;
|
|
|
|
keyDown = true;
|
|
|
|
button = joystickAxisPosMap[axis];
|
|
|
|
}else if(value < -deadzone)
|
|
|
|
{
|
|
|
|
axisState[axis] = -1;
|
|
|
|
keyDown = true;
|
|
|
|
button = joystickAxisNegMap[axis];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-22 22:03:54 +00:00
|
|
|
}
|
2012-07-22 21:15:55 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-20 01:08:29 +00:00
|
|
|
|
|
|
|
for(unsigned int i = 0; i < inputVector.size(); i++)
|
|
|
|
{
|
|
|
|
inputVector.at(i)->onInput(button, keyDown);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-23 23:53:33 +00:00
|
|
|
void InputManager::loadConfig()
|
2012-07-22 21:15:55 +00:00
|
|
|
{
|
|
|
|
//clear any old config
|
|
|
|
joystickButtonMap.clear();
|
2012-07-23 17:27:38 +00:00
|
|
|
joystickAxisPosMap.clear();
|
|
|
|
joystickAxisNegMap.clear();
|
2012-07-22 21:15:55 +00:00
|
|
|
|
2012-07-23 23:53:33 +00:00
|
|
|
std::string path = getConfigPath();
|
|
|
|
|
2012-07-22 21:15:55 +00:00
|
|
|
std::ifstream file(path.c_str());
|
|
|
|
|
|
|
|
while(file.good())
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
std::getline(file, line);
|
|
|
|
|
|
|
|
//skip blank lines and comments
|
|
|
|
if(line.empty() || line[0] == *"#")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
//I know I could probably just read from the file stream directly, but I feel it would be harder to catch errors in a readable way
|
|
|
|
std::istringstream stream(line);
|
|
|
|
|
|
|
|
std::string token[3];
|
|
|
|
int tokNum = 0;
|
|
|
|
|
|
|
|
while(std::getline(stream, token[tokNum], ' '))
|
|
|
|
{
|
2012-07-22 22:03:54 +00:00
|
|
|
if(tokNum >= 3)
|
2012-07-22 21:15:55 +00:00
|
|
|
{
|
|
|
|
std::cerr << "Error - input config line \"" << line << "\" has more than three tokens!\n";
|
2012-07-22 22:03:54 +00:00
|
|
|
return;
|
2012-07-22 21:15:55 +00:00
|
|
|
}
|
2012-07-22 22:03:54 +00:00
|
|
|
tokNum++;
|
2012-07-22 21:15:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(token[0] == "BUTTON")
|
|
|
|
{
|
|
|
|
joystickButtonMap[atoi(token[1].c_str())] = (InputButton)atoi(token[2].c_str());
|
2012-07-23 17:27:38 +00:00
|
|
|
}else if(token[0] == "AXISPOS")
|
2012-07-22 21:15:55 +00:00
|
|
|
{
|
2012-07-23 17:27:38 +00:00
|
|
|
joystickAxisPosMap[atoi(token[1].c_str())] = (InputButton)atoi(token[2].c_str());
|
|
|
|
}else if(token[0] == "AXISNEG")
|
|
|
|
{
|
|
|
|
joystickAxisNegMap[atoi(token[1].c_str())] = (InputButton)atoi(token[2].c_str());
|
2012-07-22 21:15:55 +00:00
|
|
|
}else{
|
|
|
|
std::cerr << "Invalid input type - " << token[0] << "\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(SDL_NumJoysticks() > 0)
|
|
|
|
{
|
|
|
|
SDL_JoystickOpen(0);
|
|
|
|
}
|
|
|
|
}
|
2012-07-23 23:53:33 +00:00
|
|
|
|
|
|
|
std::string InputManager::getConfigPath()
|
|
|
|
{
|
|
|
|
std::string home = getenv("HOME");
|
2012-08-12 14:43:09 +00:00
|
|
|
home += "/.emulationstation/es_input.cfg";
|
|
|
|
return home;
|
2012-07-23 23:53:33 +00:00
|
|
|
}
|