2009-09-14 01:07:32 +00:00
|
|
|
/**
|
2013-05-03 06:02:03 +00:00
|
|
|
* Copyright (c) 2007-2012, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
2013-05-24 14:55:56 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
2013-05-24 14:55:56 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
2013-05-24 14:55:56 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2009-09-14 01:07:32 +00:00
|
|
|
* @file view_curses.cc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string>
|
2013-04-20 20:21:10 +00:00
|
|
|
#include <algorithm>
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
#include "view_curses.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
void view_curses::mvwattrline(WINDOW *window,
|
2013-05-28 04:35:00 +00:00
|
|
|
int y,
|
|
|
|
int x,
|
|
|
|
attr_line_t &al,
|
|
|
|
struct line_range &lr,
|
|
|
|
view_colors::role_t base_role)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
2013-05-28 04:35:00 +00:00
|
|
|
int text_attrs, attrs, line_width;
|
|
|
|
string_attrs_t & sa = al.get_attrs();
|
|
|
|
string & line = al.get_string();
|
2009-09-14 01:07:32 +00:00
|
|
|
string_attrs_t::iterator iter;
|
2013-04-20 20:21:10 +00:00
|
|
|
std::map<size_t, size_t, std::greater<size_t> > tab_list;
|
2013-05-28 04:35:00 +00:00
|
|
|
int tab_count = 0;
|
|
|
|
char * buffer, *expanded_line;
|
2013-04-20 20:21:10 +00:00
|
|
|
size_t exp_index = 0;
|
|
|
|
string full_line;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-05-24 14:55:56 +00:00
|
|
|
assert(lr.lr_end >= 0);
|
2012-06-05 20:18:59 +00:00
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
line_width = lr.length();
|
|
|
|
buffer = (char *)alloca(line_width + 1);
|
|
|
|
tab_count = count(line.begin(), line.end(), '\t');
|
2013-04-20 20:21:10 +00:00
|
|
|
expanded_line = (char *)alloca(line.size() + tab_count * 8 + 1);
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-04-20 20:21:10 +00:00
|
|
|
for (size_t lpc = 0; lpc < line.size(); lpc++) {
|
|
|
|
switch (line[lpc]) {
|
|
|
|
case '\t':
|
2013-05-28 04:35:00 +00:00
|
|
|
do {
|
|
|
|
expanded_line[exp_index] = ' ';
|
|
|
|
exp_index += 1;
|
|
|
|
} while (exp_index % 8);
|
|
|
|
tab_list[lpc] = exp_index;
|
|
|
|
break;
|
|
|
|
|
2013-04-20 20:21:10 +00:00
|
|
|
case '\r':
|
2013-05-28 04:35:00 +00:00
|
|
|
/* exp_index = -1; */
|
|
|
|
break;
|
|
|
|
|
2013-06-01 03:45:40 +00:00
|
|
|
case '\n':
|
|
|
|
expanded_line[exp_index] = ' ';
|
|
|
|
exp_index += 1;
|
|
|
|
break;
|
|
|
|
|
2013-04-20 20:21:10 +00:00
|
|
|
default:
|
2013-05-28 04:35:00 +00:00
|
|
|
expanded_line[exp_index] = line[lpc];
|
|
|
|
exp_index += 1;
|
|
|
|
break;
|
2013-04-20 20:21:10 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
2013-04-20 20:21:10 +00:00
|
|
|
|
|
|
|
expanded_line[exp_index] = '\0';
|
|
|
|
full_line = string(expanded_line);
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
text_attrs = view_colors::singleton().attrs_for_role(base_role);
|
2013-05-28 04:35:00 +00:00
|
|
|
attrs = text_attrs;
|
2009-09-14 01:07:32 +00:00
|
|
|
wmove(window, y, x);
|
|
|
|
wattron(window, attrs);
|
2013-04-20 20:21:10 +00:00
|
|
|
if (lr.lr_start < (int)full_line.size()) {
|
2013-05-28 04:35:00 +00:00
|
|
|
waddnstr(window, &full_line.c_str()[lr.lr_start], line_width);
|
|
|
|
}
|
|
|
|
if (lr.lr_end > (int)full_line.size()) {
|
|
|
|
whline(window, ' ', lr.lr_end - full_line.size());
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
wattroff(window, attrs);
|
|
|
|
|
2013-05-24 14:55:56 +00:00
|
|
|
std::vector<line_range> graphic_range;
|
2013-05-28 04:35:00 +00:00
|
|
|
std::vector<int> graphic_in;
|
2013-05-24 14:55:56 +00:00
|
|
|
|
2013-04-17 16:27:12 +00:00
|
|
|
for (iter = sa.begin(); iter != sa.end(); ++iter) {
|
2013-05-28 04:35:00 +00:00
|
|
|
struct line_range attr_range = iter->first;
|
|
|
|
std::map<size_t, size_t>::iterator tab_iter;
|
2013-05-24 14:55:56 +00:00
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
assert(attr_range.lr_start >= 0);
|
|
|
|
assert(attr_range.lr_end >= -1);
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-04-20 20:21:10 +00:00
|
|
|
tab_iter = tab_list.lower_bound(attr_range.lr_start);
|
2013-05-28 04:35:00 +00:00
|
|
|
if (tab_iter != tab_list.end()) {
|
|
|
|
attr_range.lr_start += (tab_iter->second - tab_iter->first) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attr_range.lr_end != -1) {
|
|
|
|
tab_iter = tab_list.lower_bound(attr_range.lr_end);
|
|
|
|
if (tab_iter != tab_list.end()) {
|
|
|
|
attr_range.lr_end += (tab_iter->second - tab_iter->first) - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
attr_range.lr_start = max(0, attr_range.lr_start - lr.lr_start);
|
|
|
|
if (attr_range.lr_end == -1) {
|
|
|
|
attr_range.lr_end = line_width;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
attr_range.lr_end = min((int)line_width,
|
|
|
|
attr_range.lr_end - lr.lr_start);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attr_range.lr_end > 0) {
|
|
|
|
int awidth = attr_range.length();
|
|
|
|
attrs_map_t & am = iter->second;
|
|
|
|
attrs_map_t::iterator am_iter;
|
|
|
|
|
|
|
|
attrs = 0;
|
|
|
|
for (am_iter = am.begin(); am_iter != am.end(); ++am_iter) {
|
2013-05-24 14:55:56 +00:00
|
|
|
if (am_iter->first == "style") {
|
|
|
|
attrs |= am_iter->second.sa_int;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attrs != 0) {
|
2013-06-26 13:22:33 +00:00
|
|
|
mvwchgat(window, y, x + attr_range.lr_start, awidth, attrs, PAIR_NUMBER(attrs), NULL);
|
2013-05-24 14:55:56 +00:00
|
|
|
}
|
|
|
|
for (am_iter = am.begin(); am_iter != am.end(); ++am_iter) {
|
|
|
|
if (am_iter->first == "graphic") {
|
|
|
|
graphic_range.push_back(attr_range);
|
|
|
|
graphic_in.push_back(am_iter->second.sa_int | attrs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
attrs = text_attrs; /* Reset attrs to regular text. */
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t lpc = 0; lpc < graphic_range.size(); lpc++) {
|
|
|
|
for (int lpc2 = graphic_range[lpc].lr_start;
|
|
|
|
lpc2 < graphic_range[lpc].lr_end;
|
|
|
|
lpc2++) {
|
2013-05-28 04:35:00 +00:00
|
|
|
mvwaddch(window, y, lpc2, graphic_in[lpc]);
|
2013-05-24 14:55:56 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
view_colors &view_colors::singleton(void)
|
|
|
|
{
|
|
|
|
static view_colors s_vc;
|
|
|
|
|
|
|
|
return s_vc;
|
|
|
|
}
|
|
|
|
|
|
|
|
view_colors::view_colors()
|
2013-06-29 13:22:24 +00:00
|
|
|
: vc_next_highlight(0), vc_next_plain_highlight(0)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_colors::init(void)
|
|
|
|
{
|
|
|
|
if (has_colors()) {
|
2013-06-08 14:57:40 +00:00
|
|
|
static int ansi_colors_to_curses[] = {
|
|
|
|
COLOR_BLACK,
|
|
|
|
COLOR_RED,
|
|
|
|
COLOR_GREEN,
|
|
|
|
COLOR_YELLOW,
|
|
|
|
COLOR_BLUE,
|
|
|
|
COLOR_MAGENTA,
|
|
|
|
COLOR_CYAN,
|
|
|
|
COLOR_WHITE,
|
|
|
|
};
|
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
start_color();
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
/* use_default_colors(); */
|
2013-06-08 14:57:40 +00:00
|
|
|
for (int fg = 0; fg < 8; fg++) {
|
|
|
|
for (int bg = 0; bg < 8; bg++) {
|
2013-06-29 13:22:24 +00:00
|
|
|
if (fg == 0 && bg == 0)
|
|
|
|
continue;
|
2013-06-08 14:57:40 +00:00
|
|
|
init_pair(ansi_color_pair_index(fg, bg),
|
|
|
|
ansi_colors_to_curses[fg],
|
|
|
|
ansi_colors_to_curses[bg]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 13:22:24 +00:00
|
|
|
if (COLORS == 256) {
|
|
|
|
int color_pair_base = VC_ANSI_END;
|
|
|
|
|
|
|
|
for (int z = 0; z < 6; z++) {
|
|
|
|
for (int x = 1; x < 6; x += 2) {
|
2013-06-29 18:00:34 +00:00
|
|
|
for (int y = 1; y < 6; y += 2) {
|
2013-06-29 13:22:24 +00:00
|
|
|
int fg = 16 + x + (y * 6) + (z * 6 * 6);
|
|
|
|
|
|
|
|
init_pair(color_pair_base,
|
|
|
|
fg,
|
|
|
|
COLOR_BLACK);
|
|
|
|
init_pair(color_pair_base + HL_COLOR_COUNT,
|
|
|
|
COLOR_BLACK,
|
|
|
|
fg);
|
|
|
|
color_pair_base += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
singleton().init_roles();
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_colors::init_roles(void)
|
|
|
|
{
|
|
|
|
int lpc;
|
|
|
|
|
|
|
|
/* Setup the mappings from roles to actual colors. */
|
|
|
|
this->vc_role_colors[VCR_TEXT] =
|
|
|
|
ansi_color_pair(COLOR_WHITE, COLOR_BLACK) | A_DIM;
|
|
|
|
this->vc_role_colors[VCR_SEARCH] =
|
|
|
|
this->vc_role_colors[VCR_TEXT] | A_REVERSE;
|
|
|
|
this->vc_role_colors[VCR_OK] = ansi_color_pair(COLOR_GREEN, COLOR_BLACK) | A_BOLD;
|
|
|
|
this->vc_role_colors[VCR_ERROR] = ansi_color_pair(COLOR_RED, COLOR_BLACK) | A_BOLD;
|
|
|
|
this->vc_role_colors[VCR_WARNING] = ansi_color_pair(COLOR_YELLOW, COLOR_BLACK) | A_BOLD;
|
|
|
|
this->vc_role_colors[VCR_ALT_ROW] = ansi_color_pair(COLOR_WHITE, COLOR_BLACK) | A_BOLD;
|
|
|
|
|
|
|
|
this->vc_role_colors[VCR_STATUS] =
|
|
|
|
ansi_color_pair(COLOR_BLACK, COLOR_WHITE);
|
|
|
|
this->vc_role_colors[VCR_WARN_STATUS] =
|
|
|
|
ansi_color_pair(COLOR_YELLOW, COLOR_WHITE) | A_BOLD;
|
|
|
|
this->vc_role_colors[VCR_ALERT_STATUS] =
|
|
|
|
ansi_color_pair(COLOR_RED, COLOR_WHITE);
|
|
|
|
this->vc_role_colors[VCR_ACTIVE_STATUS] =
|
|
|
|
ansi_color_pair(COLOR_GREEN, COLOR_WHITE);
|
|
|
|
this->vc_role_colors[VCR_ACTIVE_STATUS2] =
|
|
|
|
ansi_color_pair(COLOR_GREEN, COLOR_WHITE) | A_BOLD;
|
|
|
|
this->vc_role_colors[VCR_BOLD_STATUS] =
|
|
|
|
ansi_color_pair(COLOR_BLACK, COLOR_WHITE) | A_BOLD;
|
|
|
|
|
|
|
|
this->vc_role_colors[VCR_DIFF_DELETE] = ansi_color_pair(COLOR_RED, COLOR_BLACK);
|
|
|
|
this->vc_role_colors[VCR_DIFF_ADD] = ansi_color_pair(COLOR_GREEN, COLOR_BLACK);
|
|
|
|
this->vc_role_colors[VCR_DIFF_SECTION] = ansi_color_pair(COLOR_MAGENTA, COLOR_BLACK);
|
|
|
|
|
|
|
|
for (lpc = 0; lpc < VCR_HIGHLIGHT_START; lpc++) {
|
|
|
|
this->vc_role_reverse_colors[lpc] =
|
|
|
|
this->vc_role_colors[lpc] | A_REVERSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static short basic_hl_pairs[HL_BASIC_COLOR_COUNT] = {
|
|
|
|
ansi_color_pair(COLOR_BLUE, COLOR_BLACK),
|
|
|
|
ansi_color_pair(COLOR_CYAN, COLOR_BLACK),
|
|
|
|
ansi_color_pair(COLOR_GREEN, COLOR_BLACK),
|
|
|
|
ansi_color_pair(COLOR_MAGENTA, COLOR_BLACK),
|
|
|
|
};
|
|
|
|
|
|
|
|
static short basic_rev_hl_pairs[HL_BASIC_COLOR_COUNT] = {
|
|
|
|
ansi_color_pair(COLOR_BLUE, COLOR_WHITE),
|
|
|
|
ansi_color_pair(COLOR_CYAN, COLOR_BLACK),
|
|
|
|
ansi_color_pair(COLOR_GREEN, COLOR_WHITE),
|
|
|
|
ansi_color_pair(COLOR_MAGENTA, COLOR_WHITE),
|
|
|
|
};
|
|
|
|
|
|
|
|
for (lpc = 0; lpc < HL_COLOR_COUNT / 2; lpc++) {
|
|
|
|
this->vc_role_colors[VCR_HIGHLIGHT_START + (lpc * 2)] = basic_hl_pairs[
|
|
|
|
lpc % HL_BASIC_COLOR_COUNT];
|
|
|
|
this->vc_role_colors[VCR_HIGHLIGHT_START + (lpc * 2) + 1] = basic_hl_pairs[
|
|
|
|
lpc % HL_BASIC_COLOR_COUNT] | A_BOLD;
|
|
|
|
|
|
|
|
this->vc_role_reverse_colors[VCR_HIGHLIGHT_START + (lpc * 2)] = basic_rev_hl_pairs[
|
|
|
|
lpc % HL_BASIC_COLOR_COUNT];
|
|
|
|
this->vc_role_reverse_colors[VCR_HIGHLIGHT_START + (lpc * 2) + 1] = basic_rev_hl_pairs[
|
|
|
|
lpc % HL_BASIC_COLOR_COUNT] | A_BOLD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (COLORS >= 256) {
|
|
|
|
int color_pair_base = VC_ANSI_END;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prime the highlight vector. The first HL_COLOR_COUNT color
|
|
|
|
* pairs are assumed to be the highlight colors.
|
|
|
|
*/
|
|
|
|
for (lpc = VCR_HIGHLIGHT_START + HL_BASIC_COLOR_COUNT * 2;
|
|
|
|
lpc < VCR__MAX;
|
|
|
|
lpc++) {
|
|
|
|
|
|
|
|
this->vc_role_colors[lpc] = COLOR_PAIR(color_pair_base);
|
|
|
|
|
|
|
|
this->vc_role_reverse_colors[lpc] =
|
|
|
|
COLOR_PAIR(color_pair_base) | A_REVERSE;
|
2013-06-16 01:07:50 +00:00
|
|
|
|
2013-06-29 13:22:24 +00:00
|
|
|
color_pair_base += 1;
|
2013-06-04 13:53:25 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 14:55:56 +00:00
|
|
|
view_colors::role_t view_colors::next_highlight()
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
2013-06-29 13:22:24 +00:00
|
|
|
role_t retval = (role_t)(VCR_HIGHLIGHT_START + this->vc_next_highlight);
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-06-29 13:22:24 +00:00
|
|
|
this->vc_next_highlight = (this->vc_next_highlight + 1) % HL_COLOR_COUNT;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2013-05-24 14:55:56 +00:00
|
|
|
|
|
|
|
view_colors::role_t view_colors::next_plain_highlight()
|
|
|
|
{
|
2013-06-29 13:22:24 +00:00
|
|
|
role_t retval = (role_t)(VCR_HIGHLIGHT_START + this->vc_next_plain_highlight);
|
2013-05-24 14:55:56 +00:00
|
|
|
|
|
|
|
this->vc_next_plain_highlight = (this->vc_next_plain_highlight + 2) %
|
2013-06-29 13:22:24 +00:00
|
|
|
(HL_COLOR_COUNT);
|
2013-05-24 14:55:56 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|