2020-02-02 00:37:48 +00:00
|
|
|
/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
2020-02-02 02:57:11 +00:00
|
|
|
#include <ctype.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <curses.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-02-02 02:57:11 +00:00
|
|
|
#include <string.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <sysexits.h>
|
|
|
|
#include <time.h>
|
2020-02-02 06:54:51 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include <wctype.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
|
|
|
#ifndef A_ITALIC
|
|
|
|
#define A_ITALIC A_UNDERLINE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BOTTOM (LINES - 1)
|
|
|
|
#define RIGHT (COLS - 1)
|
|
|
|
#define WINDOW_LINES (LINES - 2)
|
|
|
|
|
|
|
|
static short colorPairs;
|
|
|
|
|
|
|
|
static void colorInit(void) {
|
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
|
|
|
for (short pair = 0; pair < 16; ++pair) {
|
|
|
|
init_pair(1 + pair, pair % COLORS, -1);
|
|
|
|
}
|
|
|
|
colorPairs = 17;
|
|
|
|
}
|
|
|
|
|
|
|
|
static attr_t colorAttr(short fg) {
|
|
|
|
return (fg >= COLORS ? A_BOLD : A_NORMAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static short colorPair(short fg, short bg) {
|
|
|
|
if (bg == -1) return 1 + fg;
|
|
|
|
for (short pair = 17; pair < colorPairs; ++pair) {
|
|
|
|
short f, b;
|
|
|
|
pair_content(pair, &f, &b);
|
|
|
|
if (f == fg && b == bg) return pair;
|
|
|
|
}
|
2020-02-02 02:57:11 +00:00
|
|
|
init_pair(colorPairs, fg % COLORS, bg % COLORS);
|
2020-02-02 00:37:48 +00:00
|
|
|
return colorPairs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
InputCols = 512,
|
|
|
|
PadLines = 512,
|
|
|
|
};
|
|
|
|
|
|
|
|
static WINDOW *status;
|
|
|
|
static WINDOW *input;
|
|
|
|
|
|
|
|
struct Window {
|
|
|
|
size_t id;
|
|
|
|
WINDOW *pad;
|
|
|
|
enum Heat heat;
|
|
|
|
int unread;
|
|
|
|
int scroll;
|
|
|
|
bool mark;
|
|
|
|
struct Window *prev;
|
|
|
|
struct Window *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
struct Window *active;
|
|
|
|
struct Window *other;
|
|
|
|
struct Window *head;
|
|
|
|
struct Window *tail;
|
|
|
|
} windows;
|
|
|
|
|
|
|
|
static void windowAdd(struct Window *window) {
|
|
|
|
if (windows.tail) windows.tail->next = window;
|
|
|
|
window->prev = windows.tail;
|
|
|
|
window->next = NULL;
|
|
|
|
windows.tail = window;
|
|
|
|
if (!windows.head) windows.head = window;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void windowRemove(struct Window *window) {
|
|
|
|
if (window->prev) window->prev->next = window->next;
|
|
|
|
if (window->next) window->next->prev = window->prev;
|
|
|
|
if (windows.head == window) windows.head = window->next;
|
|
|
|
if (windows.tail == window) windows.tail = window->prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct Window *windowFor(size_t id) {
|
|
|
|
struct Window *window;
|
|
|
|
for (window = windows.head; window; window = window->next) {
|
|
|
|
if (window->id == id) return window;
|
|
|
|
}
|
|
|
|
window = malloc(sizeof(*window));
|
|
|
|
if (!window) err(EX_OSERR, "malloc");
|
|
|
|
window->id = id;
|
|
|
|
window->pad = newpad(PadLines, COLS);
|
|
|
|
scrollok(window->pad, true);
|
|
|
|
wmove(window->pad, PadLines - 1, 0);
|
|
|
|
window->heat = Cold;
|
|
|
|
window->unread = 0;
|
|
|
|
window->scroll = PadLines;
|
|
|
|
window->mark = true;
|
|
|
|
windowAdd(window);
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
2020-02-02 07:28:14 +00:00
|
|
|
static void errExit(int eval) {
|
|
|
|
(void)eval;
|
|
|
|
reset_shell_mode();
|
|
|
|
}
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
void uiInit(void) {
|
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
termInit();
|
|
|
|
termNoFlow();
|
|
|
|
def_prog_mode();
|
2020-02-02 07:28:14 +00:00
|
|
|
err_set_exit(errExit);
|
2020-02-02 00:37:48 +00:00
|
|
|
colorInit();
|
|
|
|
status = newwin(1, COLS, 0, 0);
|
|
|
|
input = newpad(1, InputCols);
|
|
|
|
keypad(input, true);
|
|
|
|
nodelay(input, true);
|
|
|
|
windows.active = windowFor(Network);
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiDraw(void) {
|
|
|
|
wnoutrefresh(status);
|
|
|
|
pnoutrefresh(
|
|
|
|
windows.active->pad,
|
|
|
|
windows.active->scroll - WINDOW_LINES, 0,
|
|
|
|
1, 0,
|
|
|
|
BOTTOM - 1, RIGHT
|
|
|
|
);
|
|
|
|
// TODO: Input scrolling.
|
|
|
|
pnoutrefresh(
|
|
|
|
input,
|
|
|
|
0, 0,
|
|
|
|
BOTTOM, 0,
|
|
|
|
BOTTOM, RIGHT
|
|
|
|
);
|
|
|
|
doupdate();
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
struct Style {
|
|
|
|
attr_t attr;
|
|
|
|
enum Color fg, bg;
|
|
|
|
};
|
|
|
|
static const struct Style Reset = { A_NORMAL, Default, Default };
|
|
|
|
|
|
|
|
static short mapColor(enum Color color) {
|
|
|
|
switch (color) {
|
|
|
|
break; case White: return 8 + COLOR_WHITE;
|
|
|
|
break; case Black: return 0 + COLOR_BLACK;
|
|
|
|
break; case Blue: return 0 + COLOR_BLUE;
|
|
|
|
break; case Green: return 0 + COLOR_GREEN;
|
|
|
|
break; case Red: return 8 + COLOR_RED;
|
|
|
|
break; case Brown: return 0 + COLOR_RED;
|
|
|
|
break; case Magenta: return 0 + COLOR_MAGENTA;
|
|
|
|
break; case Orange: return 0 + COLOR_YELLOW;
|
|
|
|
break; case Yellow: return 8 + COLOR_YELLOW;
|
|
|
|
break; case LightGreen: return 8 + COLOR_GREEN;
|
|
|
|
break; case Cyan: return 0 + COLOR_CYAN;
|
|
|
|
break; case LightCyan: return 8 + COLOR_CYAN;
|
|
|
|
break; case LightBlue: return 8 + COLOR_BLUE;
|
|
|
|
break; case Pink: return 8 + COLOR_MAGENTA;
|
|
|
|
break; case Gray: return 8 + COLOR_BLACK;
|
|
|
|
break; case LightGray: return 0 + COLOR_WHITE;
|
|
|
|
break; default: return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void styleParse(struct Style *style, const char **str, size_t *len) {
|
|
|
|
switch (**str) {
|
|
|
|
break; case '\2': (*str)++; style->attr ^= A_BOLD;
|
|
|
|
break; case '\17': (*str)++; *style = Reset;
|
|
|
|
break; case '\26': (*str)++; style->attr ^= A_REVERSE;
|
|
|
|
break; case '\35': (*str)++; style->attr ^= A_ITALIC;
|
|
|
|
break; case '\37': (*str)++; style->attr ^= A_UNDERLINE;
|
|
|
|
break; case '\3': {
|
|
|
|
(*str)++;
|
|
|
|
if (!isdigit(**str)) {
|
|
|
|
style->fg = Default;
|
|
|
|
style->bg = Default;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
style->fg = *(*str)++ - '0';
|
|
|
|
if (isdigit(**str)) style->fg = style->fg * 10 + *(*str)++ - '0';
|
|
|
|
if ((*str)[0] != ',' || !isdigit((*str)[1])) break;
|
|
|
|
(*str)++;
|
|
|
|
style->bg = *(*str)++ - '0';
|
|
|
|
if (isdigit(**str)) style->bg = style->bg * 10 + *(*str)++ - '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*len = strcspn(*str, "\2\3\17\26\35\37");
|
|
|
|
}
|
|
|
|
|
2020-02-02 03:40:55 +00:00
|
|
|
static int wordWidth(const char *str) {
|
|
|
|
size_t len = strcspn(str, " ");
|
2020-02-02 06:54:51 +00:00
|
|
|
int width = 0;
|
|
|
|
while (len) {
|
|
|
|
wchar_t wc;
|
|
|
|
int n = mbtowc(&wc, str, len);
|
|
|
|
if (n < 1) return width + len;
|
|
|
|
width += (iswprint(wc) ? wcwidth(wc) : 0);
|
|
|
|
str += n;
|
|
|
|
len -= n;
|
|
|
|
}
|
|
|
|
return width;
|
2020-02-02 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
static void styleAdd(WINDOW *win, const char *str) {
|
2020-02-02 06:54:51 +00:00
|
|
|
int y, x, width;
|
|
|
|
getmaxyx(win, y, width);
|
2020-02-02 03:40:55 +00:00
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
size_t len;
|
|
|
|
struct Style style = Reset;
|
|
|
|
while (*str) {
|
2020-02-02 03:40:55 +00:00
|
|
|
if (*str == ' ') {
|
2020-02-02 06:54:51 +00:00
|
|
|
getyx(win, y, x);
|
2020-02-02 03:40:55 +00:00
|
|
|
const char *word = &str[strspn(str, " ")];
|
2020-02-02 07:04:08 +00:00
|
|
|
if (width - x - 1 <= wordWidth(word)) {
|
2020-02-02 03:40:55 +00:00
|
|
|
waddch(win, '\n');
|
|
|
|
str = word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
styleParse(&style, &str, &len);
|
2020-02-02 03:40:55 +00:00
|
|
|
size_t sp = strspn(str, " ");
|
|
|
|
sp += strcspn(&str[sp], " ");
|
|
|
|
if (sp < len) len = sp;
|
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
wattr_set(
|
|
|
|
win,
|
|
|
|
style.attr | colorAttr(mapColor(style.fg)),
|
|
|
|
colorPair(mapColor(style.fg), mapColor(style.bg)),
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
waddnstr(win, str, len);
|
|
|
|
str += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
void uiWrite(size_t id, enum Heat heat, const struct tm *time, const char *str) {
|
|
|
|
(void)time;
|
|
|
|
struct Window *window = windowFor(id);
|
|
|
|
waddch(window->pad, '\n');
|
2020-02-02 02:57:11 +00:00
|
|
|
styleAdd(window->pad, str);
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiFormat(
|
|
|
|
size_t id, enum Heat heat, const struct tm *time, const char *format, ...
|
|
|
|
) {
|
|
|
|
char buf[1024];
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
int len = vsnprintf(buf, sizeof(buf), format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
assert((size_t)len < sizeof(buf));
|
|
|
|
uiWrite(id, heat, time, buf);
|
|
|
|
}
|