kakoune/src/keys.cc

195 lines
5.8 KiB
C++
Raw Normal View History

2011-12-20 20:21:11 +01:00
#include "keys.hh"
2013-04-09 20:05:40 +02:00
#include "containers.hh"
#include "exception.hh"
#include "string.hh"
#include "unit_tests.hh"
#include "utf8_iterator.hh"
#include "utils.hh"
2011-12-20 20:21:11 +01:00
namespace Kakoune
{
static Key canonicalize_ifn(Key key)
2012-09-03 19:21:11 +02:00
{
if (key.key > 0 and key.key < 27)
{
kak_assert(key.modifiers == Key::Modifiers::None);
2012-09-03 19:21:11 +02:00
key.modifiers = Key::Modifiers::Control;
key.key = key.key - 1 + 'a';
}
return key;
}
Optional<Codepoint> Key::codepoint() const
{
if (*this == Key::Return)
return '\n';
if (*this == Key::Tab)
return '\t';
if (*this == Key::Escape)
return 0x1B;
if (modifiers == Modifiers::None and key > 27 and
(key < 0xD800 or key > 0xDFFF)) // avoid surrogates
return key;
return {};
}
struct KeyAndName { const char* name; Codepoint key; };
static constexpr KeyAndName keynamemap[] = {
{ "ret", Key::Return },
{ "space", ' ' },
{ "tab", Key::Tab },
2013-04-02 18:41:45 +02:00
{ "lt", '<' },
{ "gt", '>' },
{ "backspace", Key::Backspace},
2013-01-30 19:03:11 +01:00
{ "esc", Key::Escape },
{ "up", Key::Up },
2013-02-18 18:58:07 +01:00
{ "down", Key::Down},
{ "left", Key::Left },
{ "right", Key::Right },
{ "pageup", Key::PageUp },
{ "pagedown", Key::PageDown },
{ "home", Key::Home },
{ "end", Key::End },
{ "backtab", Key::BackTab },
{ "del", Key::Delete },
2011-12-20 20:21:11 +01:00
};
2014-04-20 12:27:59 +02:00
KeyList parse_keys(StringView str)
2011-12-20 20:21:11 +01:00
{
KeyList result;
2014-11-09 14:02:01 +01:00
using Utf8It = utf8::iterator<const char*>;
for (Utf8It it{str.begin(), str}, str_end{str.end(), str}; it < str_end; ++it)
2011-12-20 20:21:11 +01:00
{
2014-11-09 14:02:01 +01:00
if (*it != '<')
2011-12-20 20:21:11 +01:00
{
result.emplace_back(Key::Modifiers::None, *it);
2014-11-09 14:02:01 +01:00
continue;
}
2011-12-20 20:21:11 +01:00
Utf8It end_it = std::find(it, str_end, '>');
2014-11-09 14:02:01 +01:00
if (end_it == str_end)
{
result.emplace_back(Key::Modifiers::None, *it);
2014-11-09 14:02:01 +01:00
continue;
}
2014-11-09 14:02:01 +01:00
Key::Modifiers modifier = Key::Modifiers::None;
2013-11-09 12:12:55 +01:00
StringView full_desc{it.base(), end_it.base()+1};
2014-11-09 14:02:01 +01:00
StringView desc{it.base()+1, end_it.base()};
for (auto dash = find(desc, '-'); dash != desc.end(); dash = find(desc, '-'))
2014-11-09 14:02:01 +01:00
{
if (dash != desc.begin() + 1)
throw runtime_error(format("unable to parse modifier in '{}'",
full_desc));
switch(to_lower(desc[0_byte]))
2014-11-09 14:02:01 +01:00
{
case 'c': modifier |= Key::Modifiers::Control; break;
case 'a': modifier |= Key::Modifiers::Alt; break;
default:
throw runtime_error(format("unable to parse modifier in '{}'",
full_desc));
2011-12-20 20:21:11 +01:00
}
desc = StringView{dash+1, desc.end()};
2014-11-09 14:02:01 +01:00
}
2014-11-09 14:02:01 +01:00
auto name_it = find_if(keynamemap, [&desc](const KeyAndName& item)
{ return item.name == desc; });
2014-11-09 14:02:01 +01:00
if (name_it != end(keynamemap))
result.push_back(canonicalize_ifn({ modifier, name_it->key }));
2014-11-09 14:02:01 +01:00
else if (desc.char_length() == 1)
result.emplace_back(modifier, desc[0_char]);
else if (to_lower(desc[0_byte]) == 'f' and desc.length() <= 3)
2014-11-09 14:02:01 +01:00
{
int val = str_to_int(desc.substr(1_byte));
if (val >= 1 and val <= 12)
result.emplace_back(modifier, Key::F1 + (val - 1));
2014-11-09 14:02:01 +01:00
else
throw runtime_error("Only F1 through F12 are supported");
2011-12-20 20:21:11 +01:00
}
2014-11-09 14:02:01 +01:00
else
throw runtime_error("Failed to parse " +
StringView{it.base(), end_it.base()+1});
it = end_it;
2011-12-20 20:21:11 +01:00
}
return result;
}
2013-07-26 01:44:25 +02:00
String key_to_str(Key key)
2013-01-30 19:03:11 +01:00
{
if (auto mouse_event = (key.modifiers & Key::Modifiers::MouseEvent))
2016-03-23 14:39:52 +01:00
{
const auto coord = key.coord() + DisplayCoord{1,1};
switch ((Key::Modifiers)mouse_event)
2016-03-23 14:39:52 +01:00
{
case Key::Modifiers::MousePos:
return format("<mouse:move:{}.{}>", coord.line, coord.column);
case Key::Modifiers::MousePress:
return format("<mouse:press:{}.{}>", coord.line, coord.column);
case Key::Modifiers::MouseRelease:
return format("<mouse:release:{}.{}>", coord.line, coord.column);
case Key::Modifiers::MouseWheelDown:
return "<mouse:wheel_down>";
case Key::Modifiers::MouseWheelUp:
return "<mouse:wheel_up>";
default: kak_assert(false);
}
}
else if (key.modifiers == Key::Modifiers::Resize)
{
auto size = key.coord() + DisplayCoord{1,1};
return format("<resize:{}.{}>", size.line, size.column);
}
2015-03-28 19:18:28 +01:00
2013-01-30 19:03:11 +01:00
bool named = false;
String res;
auto it = find_if(keynamemap, [&key](const KeyAndName& item)
{ return item.key == key.key; });
2014-03-20 20:52:11 +01:00
if (it != end(keynamemap))
2013-01-30 19:03:11 +01:00
{
named = true;
res = it->name;
2013-01-30 19:03:11 +01:00
}
2013-11-09 12:12:55 +01:00
else if (key.key >= Key::F1 and key.key < Key::F12)
{
named = true;
2014-11-09 12:42:06 +01:00
res = "F" + to_string((int)(key.key - Key::F1 + 1));
2013-11-09 12:12:55 +01:00
}
2013-01-30 19:03:11 +01:00
else
2016-02-05 10:13:07 +01:00
res = String{key.key};
2013-01-30 19:03:11 +01:00
switch (key.modifiers)
{
case Key::Modifiers::Control: res = "c-" + res; named = true; break;
case Key::Modifiers::Alt: res = "a-" + res; named = true; break;
case Key::Modifiers::ControlAlt: res = "c-a-" + res; named = true; break;
2013-01-30 19:03:11 +01:00
default: break;
}
if (named)
2014-12-08 14:59:29 +01:00
res = StringView{'<'} + res + StringView{'>'};
2013-01-30 19:03:11 +01:00
return res;
}
UnitTest test_keys{[]()
{
KeyList keys{
{ ' ' },
{ 'c' },
{ Key::Modifiers::Alt, 'j' },
{ Key::Modifiers::Control, 'r' }
};
String keys_as_str;
for (auto& key : keys)
keys_as_str += key_to_str(key);
auto parsed_keys = parse_keys(keys_as_str);
kak_assert(keys == parsed_keys);
kak_assert(ConstArrayView<Key>{parse_keys("a<c-a-b>c")} ==
ConstArrayView<Key>{'a', {Key::Modifiers::ControlAlt, 'b'}, 'c'});
}};
2011-12-20 20:21:11 +01:00
}