#include "ncurses.hh" #include "window.hh" #include "register_manager.hh" #include #define CTRL(x) x - 'a' + 1 namespace Kakoune { NCursesClient::NCursesClient() : m_menu(nullptr) { // setlocale(LC_ALL, ""); initscr(); cbreak(); noecho(); nonl(); intrflush(stdscr, false); keypad(stdscr, true); curs_set(0); start_color(); use_default_colors(); ESCDELAY=25; } NCursesClient::~NCursesClient() { endwin(); } static void set_attribute(int attribute, bool on) { if (on) attron(attribute); else attroff(attribute); } static int nc_color(Color color) { switch (color) { case Color::Black: return COLOR_BLACK; case Color::Red: return COLOR_RED; case Color::Green: return COLOR_GREEN; case Color::Yellow: return COLOR_YELLOW; case Color::Blue: return COLOR_BLUE; case Color::Magenta: return COLOR_MAGENTA; case Color::Cyan: return COLOR_CYAN; case Color::White: return COLOR_WHITE; case Color::Default: default: return -1; } } static void set_color(Color fg_color, Color bg_color) { static std::map, int> colorpairs; static int current_pair = -1; static int next_pair = 1; if (current_pair != -1) attroff(COLOR_PAIR(current_pair)); if (fg_color == Color::Default and bg_color == Color::Default) return; std::pair colorpair(fg_color, bg_color); auto it = colorpairs.find(colorpair); if (it != colorpairs.end()) { current_pair = it->second; attron(COLOR_PAIR(it->second)); } else { init_pair(next_pair, nc_color(fg_color), nc_color(bg_color)); colorpairs[colorpair] = next_pair; current_pair = next_pair; attron(COLOR_PAIR(next_pair)); ++next_pair; } } void NCursesClient::draw_window(Window& window) { int max_x,max_y; getmaxyx(stdscr, max_y, max_x); max_y -= 1; window.set_dimensions(DisplayCoord(LineCount(max_y), max_x)); window.update_display_buffer(); int line_index = 0; for (const DisplayLine& line : window.display_buffer().lines()) { move(line_index, 0); clrtoeol(); for (const DisplayAtom& atom : line) { set_attribute(A_UNDERLINE, atom.attribute & Underline); set_attribute(A_REVERSE, atom.attribute & Reverse); set_attribute(A_BLINK, atom.attribute & Blink); set_attribute(A_BOLD, atom.attribute & Bold); set_color(atom.fg_color, atom.bg_color); String content = atom.content.content(); if (content[content.length()-1] == '\n') { addnstr(content.c_str(), (int)content.length() - 1); addch(' '); } else addstr(content.c_str()); } ++line_index; } set_attribute(A_UNDERLINE, 0); set_attribute(A_REVERSE, 0); set_attribute(A_BLINK, 0); set_attribute(A_BOLD, 0); set_color(Color::Blue, Color::Black); for (;line_index < max_y; ++line_index) { move(line_index, 0); clrtoeol(); addch('~'); } set_color(Color::Cyan, Color::Black); String status_line = window.status_line(); static int last_status_length = 0; move(max_y, max_x - last_status_length); clrtoeol(); move(max_y, max_x - (int)status_line.length()); addstr(status_line.c_str()); last_status_length = (int)status_line.length(); refresh(); } Key NCursesClient::get_key() { char c = getch(); Key::Modifiers modifiers = Key::Modifiers::None; if (c > 0 and c < 27) { modifiers = Key::Modifiers::Control; c = c - 1 + 'a'; } else if (c == 27) { timeout(0); char new_c = getch(); timeout(-1); if (new_c != ERR) { c = new_c; modifiers = Key::Modifiers::Alt; } } return Key(modifiers, c); } String NCursesClient::prompt(const String& text, const Context& context, Completer completer) { curs_set(2); auto restore_cursor = on_scope_end([]() { curs_set(0); }); int max_x, max_y; getmaxyx(stdscr, max_y, max_x); move(max_y-1, 0); addstr(text.c_str()); clrtoeol(); CharCount cursor_pos = 0; Completions completions; int current_completion = -1; String text_before_completion; String result; String saved_result; static std::unordered_map> history_per_prompt; std::vector& history = history_per_prompt[text]; auto history_it = history.end(); while (true) { int c = getch(); switch (c) { case '\r': { std::vector::iterator it; while ((it = find(history, result)) != history.end()) history.erase(it); history.push_back(result); return result; } case KEY_UP: if (history_it != history.begin()) { if (history_it == history.end()) saved_result = result; --history_it; result = *history_it; cursor_pos = result.length(); } break; case KEY_DOWN: if (history_it != history.end()) { ++history_it; if (history_it != history.end()) result = *history_it; else result = saved_result; cursor_pos = result.length(); } break; case KEY_LEFT: if (cursor_pos > 0) --cursor_pos; break; case KEY_RIGHT: if (cursor_pos < result.length()) ++cursor_pos; break; case KEY_BACKSPACE: if (cursor_pos != 0) { result = result.substr(0, cursor_pos - 1) + result.substr(cursor_pos, String::npos); --cursor_pos; } menu_ctrl(MenuCommand::Close); current_completion = -1; break; case CTRL('r'): { c = getch(); String reg = RegisterManager::instance()[c].values(context)[0]; menu_ctrl(MenuCommand::Close); current_completion = -1; result = result.substr(0, cursor_pos) + reg + result.substr(cursor_pos, String::npos); cursor_pos += reg.length(); } break; case 27: throw prompt_aborted(); case '\t': { if (current_completion == -1) { completions = completer(context, result, cursor_pos); if (completions.candidates.empty()) break; menu_ctrl(MenuCommand::Close); show_menu(completions.candidates); text_before_completion = result.substr(completions.start, completions.end - completions.start); } else menu_ctrl(MenuCommand::SelectNext); ++current_completion; String completion; if (current_completion >= completions.candidates.size()) { if (current_completion == completions.candidates.size() and std::find(completions.candidates.begin(), completions.candidates.end(), text_before_completion) == completions.candidates.end()) completion = text_before_completion; else { current_completion = 0; completion = completions.candidates[0]; menu_ctrl(MenuCommand::SelectFirst); } } else completion = completions.candidates[current_completion]; move(max_y-1, (int)text.length()); result = result.substr(0, completions.start) + completion; cursor_pos = completions.start + completion.length(); break; } default: menu_ctrl(MenuCommand::Close); current_completion = -1; result = result.substr(0, cursor_pos) + (char)c + result.substr(cursor_pos, String::npos); ++cursor_pos; } move(max_y - 1, (int)text.length()); clrtoeol(); addstr(result.c_str()); move(max_y - 1, (int)(text.length() + cursor_pos)); refresh(); } menu_ctrl(MenuCommand::Close); return result; } void NCursesClient::print_status(const String& status) { int x,y; getmaxyx(stdscr, y, x); move(y-1, 0); clrtoeol(); addstr(status.c_str()); refresh(); } void NCursesClient::show_menu(const memoryview& choices) { assert(m_menu == nullptr); m_choices = std::vector(choices.begin(), choices.end()); for (int i = 0; i < m_choices.size(); ++i) m_counts.push_back(int_to_str(i+1)); CharCount longest = 0; for (int i = 0; i < m_choices.size(); ++i) { m_items.push_back(new_item(m_counts[i].c_str(), m_choices[i].c_str())); longest = std::max(longest, m_choices[i].length()); } m_items.push_back(NULL); longest += m_counts.back().length() + 2; int max_x,max_y; getmaxyx(stdscr, max_y, max_x); int columns = max_x / (int)longest; int lines = std::min(10, (int)ceilf((float)m_choices.size()/columns)); m_menu = new_menu(&m_items[0]); int pos_y = max_y - lines - 1; set_menu_sub(m_menu, derwin(stdscr, max_y - pos_y - 1, max_x, pos_y, 0)); set_menu_format(m_menu, lines, columns); post_menu(m_menu); } void NCursesClient::menu_ctrl(MenuCommand command) { switch(command) { case MenuCommand::SelectFirst: menu_driver(m_menu, REQ_FIRST_ITEM); break; case MenuCommand::SelectNext: menu_driver(m_menu, REQ_NEXT_ITEM); break; case MenuCommand::SelectPrev: menu_driver(m_menu, REQ_PREV_ITEM); break; case MenuCommand::Close: { if (not m_menu) break; unpost_menu(m_menu); free_menu(m_menu); for (auto item : m_items) if (item) free_item(item); m_menu = nullptr; m_items.clear(); m_counts.clear(); break; } } } }