omxplayer/KeyConfig.cpp
Michael Borthwick d99679eb2e Adds omxplayer dbus support for togglesubtitles, hidesubtitles, showsubtitles
Update omxplayer.cpp

Add support for ShowSubtitles and HideSubtitles.

Update KeyConfig.cpp

'w' key (above the 's' key that Toggles Subtitles) turns subtitle display ON ie ShowSubtitles
'x' key (below the 's' key) turns subtitle display OFF ie HideSubtitles

Update OMXControl.cpp

Implement Show and Hide Subtitles

Update dbuscontrol.sh

Adds omxplayer dbus support for togglesubtitles, hidesubtitles, showsubtitles

Update KeyConfig.h

Adds support for HideSubtitles and ShowSubtitles.

Update README.md

Show subtitles with the 'w' key (ie above the 's' key the toggles subtitles)
Hide subtitles with the 'x' key (ie below the 's' key the toggles subtitles)

Update KeyConfig.h

Adds support for HideSubtitles and ShowSubtitles
2014-09-13 10:38:59 +10:00

182 lines
5.8 KiB
C++

#include <string>
#include <map>
#include <fstream>
#include <cstdlib>
#include "KeyConfig.h"
using namespace std;
/* Converts the action string from the config file into
* the corresponding enum value
*/
int convertStringToAction(string str_action)
{
if(str_action == "DECREASE_SPEED")
return KeyConfig::ACTION_DECREASE_SPEED;
if(str_action == "INCREASE_SPEED")
return KeyConfig::ACTION_INCREASE_SPEED;
if(str_action == "REWIND")
return KeyConfig::ACTION_REWIND;
if(str_action == "FAST_FORWARD")
return KeyConfig::ACTION_FAST_FORWARD;
if(str_action == "SHOW_INFO")
return KeyConfig::ACTION_SHOW_INFO;
if(str_action == "PREVIOUS_AUDIO")
return KeyConfig::ACTION_PREVIOUS_AUDIO;
if(str_action == "NEXT_AUDIO")
return KeyConfig::ACTION_NEXT_AUDIO;
if(str_action == "PREVIOUS_CHAPTER")
return KeyConfig::ACTION_PREVIOUS_CHAPTER;
if(str_action == "NEXT_CHAPTER")
return KeyConfig::ACTION_NEXT_CHAPTER;
if(str_action == "PREVIOUS_SUBTITLE")
return KeyConfig::ACTION_PREVIOUS_SUBTITLE;
if(str_action == "NEXT_SUBTITLE")
return KeyConfig::ACTION_NEXT_SUBTITLE;
if(str_action == "TOGGLE_SUBTITLE")
return KeyConfig::ACTION_TOGGLE_SUBTITLE;
if(str_action == "DECREASE_SUBTITLE_DELAY")
return KeyConfig::ACTION_DECREASE_SUBTITLE_DELAY;
if(str_action == "INCREASE_SUBTITLE_DELAY")
return KeyConfig::ACTION_INCREASE_SUBTITLE_DELAY;
if(str_action == "EXIT")
return KeyConfig::ACTION_EXIT;
if(str_action == "PAUSE")
return KeyConfig::ACTION_PAUSE;
if(str_action == "DECREASE_VOLUME")
return KeyConfig::ACTION_DECREASE_VOLUME;
if(str_action == "INCREASE_VOLUME")
return KeyConfig::ACTION_INCREASE_VOLUME;
if(str_action == "SEEK_BACK_SMALL")
return KeyConfig::ACTION_SEEK_BACK_SMALL;
if(str_action == "SEEK_FORWARD_SMALL")
return KeyConfig::ACTION_SEEK_FORWARD_SMALL;
if(str_action == "SEEK_BACK_LARGE")
return KeyConfig::ACTION_SEEK_BACK_LARGE;
if(str_action == "SEEK_FORWARD_LARGE")
return KeyConfig::ACTION_SEEK_FORWARD_LARGE;
if(str_action == "STEP")
return KeyConfig::ACTION_STEP;
if(str_action == "SHOW_SUBTITLES")
return KeyConfig::ACTION_SHOW_SUBTITLES;
if(str_action == "HIDE_SUBTITLES")
return KeyConfig::ACTION_HIDE_SUBTITLES;
return -1;
}
/* Grabs the substring prior to the ':', this is the Action */
string getActionFromString(string line)
{
string action;
unsigned int colonIndex = line.find(":");
if(colonIndex == string::npos)
return "";
action = line.substr(0,colonIndex);
return action;
}
/* Grabs the substring after the ':', this is the Key */
string getKeyFromString(string line)
{
string key;
unsigned int colonIndex = line.find(":");
if(colonIndex == string::npos)
return "";
key = line.substr(colonIndex+1);
return key;
}
/* Returns a keymap consisting of the default
* keybinds specified with the -k option
*/
map<int, int> KeyConfig::buildDefaultKeymap()
{
map<int,int> keymap;
keymap['1'] = ACTION_DECREASE_SPEED;
keymap['2'] = ACTION_INCREASE_SPEED;
keymap['<'] = ACTION_REWIND;
keymap[','] = ACTION_REWIND;
keymap['>'] = ACTION_FAST_FORWARD;
keymap['.'] = ACTION_FAST_FORWARD;
keymap['z'] = ACTION_SHOW_INFO;
keymap['j'] = ACTION_PREVIOUS_AUDIO;
keymap['k'] = ACTION_NEXT_AUDIO;
keymap['i'] = ACTION_PREVIOUS_CHAPTER;
keymap['o'] = ACTION_NEXT_CHAPTER;
keymap['n'] = ACTION_PREVIOUS_SUBTITLE;
keymap['m'] = ACTION_NEXT_SUBTITLE;
keymap['s'] = ACTION_TOGGLE_SUBTITLE;
keymap['d'] = ACTION_DECREASE_SUBTITLE_DELAY;
keymap['f'] = ACTION_INCREASE_SUBTITLE_DELAY;
keymap['q'] = ACTION_EXIT;
keymap[KEY_ESC] = ACTION_EXIT;
keymap['p'] = ACTION_PAUSE;
keymap[' '] = ACTION_PAUSE;
keymap['-'] = ACTION_DECREASE_VOLUME;
keymap['+'] = ACTION_INCREASE_VOLUME;
keymap['='] = ACTION_INCREASE_VOLUME;
keymap[KEY_LEFT] = ACTION_SEEK_BACK_SMALL;
keymap[KEY_RIGHT] = ACTION_SEEK_FORWARD_SMALL;
keymap[KEY_DOWN] = ACTION_SEEK_BACK_LARGE;
keymap[KEY_UP] = ACTION_SEEK_FORWARD_LARGE;
keymap['v'] = ACTION_STEP;
keymap['w'] = ACTION_SHOW_SUBTITLES;
keymap['x'] = ACTION_HIDE_SUBTITLES;
return keymap;
}
/* Parses the supplied config file and turns it into a map object.
* NOTE: Does not work with certain filepath shortcuts (e.g. ~ as user's home)
*/
map<int, int> KeyConfig::parseConfigFile(string filepath)
{
ifstream config_file(filepath.c_str());
map<int,int> keymap;
string line;
while(getline(config_file, line))
{
string str_action = getActionFromString(line);
string key = getKeyFromString(line);
if(str_action != "" && key != "" && str_action[0] != '#')
{
int key_action = convertStringToAction(str_action);
if(key.substr(0,4) == "left")
{
keymap[KEY_LEFT] = key_action;
}
else if(key.substr(0,5) == "right")
{
keymap[KEY_RIGHT] = key_action;
}
else if(key.substr(0,2) == "up")
{
keymap[KEY_UP] = key_action;
}
else if(key.substr(0,4) == "down")
{
keymap[KEY_DOWN] = key_action;
}
else if(key.substr(0,3) == "esc")
{
keymap[KEY_ESC] = key_action;
}
else if(key.substr(0,3) == "hex")
{
const char *hex = key.substr(4).c_str();
if (hex)
keymap[strtoul(hex,0,0)] = key_action;
}
else keymap[key[0]] = key_action;
}
}
return keymap;
}